All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: Apple Thunderbolt Display chaining
       [not found] <acbb3a86-ea15-47ec-90fa-72fbd94921b1@fnarfbargle.com>
@ 2022-03-29 11:31 ` Mika Westerberg
  2022-03-29 12:35   ` Brad Campbell
  0 siblings, 1 reply; 47+ messages in thread
From: Mika Westerberg @ 2022-03-29 11:31 UTC (permalink / raw)
  To: Brad Campbell; +Cc: linux-kernel

Hi,

On Tue, Mar 29, 2022 at 07:09:36PM +0800, Brad Campbell wrote:
> G'day Mika,
> 
> Back in 2019 you assisted me with an issue on an iMac with a "Light Ridge"
> controller running a pair of Apple 27" Thunderbolt displays. At the time I
> commented they worked when plugged into a port each, however they don't work
> when chained.
> 
> Back then things crashed horribly. Now they don't crash, and the PCI devices
> all work but there is an issue with the display.
> 
> I'm currently testing on vanilla git-head commit
> ae085d7f9365de7da27ab5c0d16b12d51ea7fca9 (Sunday March 27th). A recent
> kernel with all the "for 5.18" patches.
> 
> On both the iMac with the "Light Ridge" controller and a MacBookPro with a
> "Falcon Ridge" controller the result is the same.
> 
> Plugged into a port each, they work perfectly.

Right, this is because both get their own 10Gb/s lane.

> If I chain them, the first one plugged in works and when the second is
> plugged in it's almost like the link is being starved of bandwidth.
> Graphical displays like a desktop, or a terminal break up, tear or exhibit
> almost white noise/snow on both displays. Solid colours with no gradient
> sometimes displays cleanly until something else is displayed and then it
> breaks up.

I think this is related to bandwidth management. When you chain two TBT1
devices you end up having a single 10Gb/s lane used for both DisplayPort
tunnels (this is how Linux does it now). There are no hardware mechanism
to negotiate the bandwidth so the first DP tunnel gets dominated over
the second one.

I'm not entirely sure how macOS handles this. It may be that it uses one
lane for both PCIe and first DP tunnel and the second lane for the
second DP tunnel where as Linux just puts all DP through the second
lane.

The below completely untested hack patch tries to use different lane for
both tunnels. Can you try it out?

diff --git a/drivers/thunderbolt/tb.c b/drivers/thunderbolt/tb.c
index cbd0ad85ffb1..6ea4968d3629 100644
--- a/drivers/thunderbolt/tb.c
+++ b/drivers/thunderbolt/tb.c
@@ -871,6 +871,7 @@ static void tb_tunnel_dp(struct tb *tb)
 	struct tb_cm *tcm = tb_priv(tb);
 	struct tb_port *port, *in, *out;
 	struct tb_tunnel *tunnel;
+	bool first = true;
 
 	if (!tb_acpi_may_tunnel_dp()) {
 		tb_dbg(tb, "DP tunneling disabled, not creating tunnel\n");
@@ -891,6 +892,7 @@ static void tb_tunnel_dp(struct tb *tb)
 
 		if (tb_port_is_enabled(port)) {
 			tb_port_dbg(port, "in use\n");
+			first = false;
 			continue;
 		}
 
@@ -943,7 +945,8 @@ static void tb_tunnel_dp(struct tb *tb)
 	tb_dbg(tb, "available bandwidth for new DP tunnel %u/%u Mb/s\n",
 	       available_up, available_down);
 
-	tunnel = tb_tunnel_alloc_dp(tb, in, out, available_up, available_down);
+	tunnel = tb_tunnel_alloc_dp(tb, in, out, available_up, available_down,
+				    first ? 0 : 1);
 	if (!tunnel) {
 		tb_port_dbg(out, "could not allocate DP tunnel\n");
 		goto err_reclaim;
diff --git a/drivers/thunderbolt/tunnel.c b/drivers/thunderbolt/tunnel.c
index a473cc7d9a8d..717136d649e2 100644
--- a/drivers/thunderbolt/tunnel.c
+++ b/drivers/thunderbolt/tunnel.c
@@ -860,7 +860,7 @@ struct tb_tunnel *tb_tunnel_discover_dp(struct tb *tb, struct tb_port *in,
  */
 struct tb_tunnel *tb_tunnel_alloc_dp(struct tb *tb, struct tb_port *in,
 				     struct tb_port *out, int max_up,
-				     int max_down)
+				     int max_down, int link_nr)
 {
 	struct tb_tunnel *tunnel;
 	struct tb_path **paths;
@@ -884,21 +884,21 @@ struct tb_tunnel *tb_tunnel_alloc_dp(struct tb *tb, struct tb_port *in,
 	paths = tunnel->paths;
 
 	path = tb_path_alloc(tb, in, TB_DP_VIDEO_HOPID, out, TB_DP_VIDEO_HOPID,
-			     1, "Video");
+			     link_nr, "Video");
 	if (!path)
 		goto err_free;
 	tb_dp_init_video_path(path);
 	paths[TB_DP_VIDEO_PATH_OUT] = path;
 
 	path = tb_path_alloc(tb, in, TB_DP_AUX_TX_HOPID, out,
-			     TB_DP_AUX_TX_HOPID, 1, "AUX TX");
+			     TB_DP_AUX_TX_HOPID, link_nr, "AUX TX");
 	if (!path)
 		goto err_free;
 	tb_dp_init_aux_path(path);
 	paths[TB_DP_AUX_PATH_OUT] = path;
 
 	path = tb_path_alloc(tb, out, TB_DP_AUX_RX_HOPID, in,
-			     TB_DP_AUX_RX_HOPID, 1, "AUX RX");
+			     TB_DP_AUX_RX_HOPID, link_nr, "AUX RX");
 	if (!path)
 		goto err_free;
 	tb_dp_init_aux_path(path);
diff --git a/drivers/thunderbolt/tunnel.h b/drivers/thunderbolt/tunnel.h
index 03e56076b5bc..b5bcbe5763ab 100644
--- a/drivers/thunderbolt/tunnel.h
+++ b/drivers/thunderbolt/tunnel.h
@@ -72,7 +72,7 @@ struct tb_tunnel *tb_tunnel_discover_dp(struct tb *tb, struct tb_port *in,
 					bool alloc_hopid);
 struct tb_tunnel *tb_tunnel_alloc_dp(struct tb *tb, struct tb_port *in,
 				     struct tb_port *out, int max_up,
-				     int max_down);
+				     int max_down, int link_nr);
 struct tb_tunnel *tb_tunnel_alloc_dma(struct tb *tb, struct tb_port *nhi,
 				      struct tb_port *dst, int transmit_path,
 				      int transmit_ring, int receive_path,

^ permalink raw reply related	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-03-29 11:31 ` Apple Thunderbolt Display chaining Mika Westerberg
@ 2022-03-29 12:35   ` Brad Campbell
  2022-03-29 13:00     ` Mika Westerberg
  0 siblings, 1 reply; 47+ messages in thread
From: Brad Campbell @ 2022-03-29 12:35 UTC (permalink / raw)
  To: Mika Westerberg; +Cc: linux-kernel

On 29/3/22 19:31, Mika Westerberg wrote:
> Hi,
> 
> On Tue, Mar 29, 2022 at 07:09:36PM +0800, Brad Campbell wrote:
>> G'day Mika,
>>
>> Back in 2019 you assisted me with an issue on an iMac with a "Light Ridge"
>> controller running a pair of Apple 27" Thunderbolt displays. At the time I
>> commented they worked when plugged into a port each, however they don't work
>> when chained.
>>
>> Back then things crashed horribly. Now they don't crash, and the PCI devices
>> all work but there is an issue with the display.
>>
>> I'm currently testing on vanilla git-head commit
>> ae085d7f9365de7da27ab5c0d16b12d51ea7fca9 (Sunday March 27th). A recent
>> kernel with all the "for 5.18" patches.
>>
>> On both the iMac with the "Light Ridge" controller and a MacBookPro with a
>> "Falcon Ridge" controller the result is the same.
>>
>> Plugged into a port each, they work perfectly.
> 
> Right, this is because both get their own 10Gb/s lane.
> 
>> If I chain them, the first one plugged in works and when the second is
>> plugged in it's almost like the link is being starved of bandwidth.
>> Graphical displays like a desktop, or a terminal break up, tear or exhibit
>> almost white noise/snow on both displays. Solid colours with no gradient
>> sometimes displays cleanly until something else is displayed and then it
>> breaks up.
> 
> I think this is related to bandwidth management. When you chain two TBT1
> devices you end up having a single 10Gb/s lane used for both DisplayPort
> tunnels (this is how Linux does it now). There are no hardware mechanism
> to negotiate the bandwidth so the first DP tunnel gets dominated over
> the second one.
> 
> I'm not entirely sure how macOS handles this. It may be that it uses one
> lane for both PCIe and first DP tunnel and the second lane for the
> second DP tunnel where as Linux just puts all DP through the second
> lane.
> 
> The below completely untested hack patch tries to use different lane for
> both tunnels. Can you try it out?
> 
> diff --git a/drivers/thunderbolt/tb.c b/drivers/thunderbolt/tb.c
> index cbd0ad85ffb1..6ea4968d3629 100644
> --- a/drivers/thunderbolt/tb.c

For all forms of hot-plug this works perfectly! Got it in one.

I've tried all of the obvious permutations of plug and unplug. Once they are up and running it's all good.

Where it falls down is if the machine is booted with the displays plugged in. I've attached the dmesg for that at the end. If I leave the chain unplugged until the kernel has started to boot and then plug it in, it all detects up and runs well.

There is an additional issue that I bumped up against on the laptop once, but it's easier to hit on the iMac. This is the relevant bit of dmesg for that.
When a (single or chain) display is unplugged, the thunderbolt controller stops seeing plug events. It's effectively dead until rebooted.

[  144.603624] thunderbolt 0000:07:00.0: acking hot unplug event on 0:3
[  144.603638] thunderbolt 0000:07:00.0: acking hot unplug event on 0:4
[  144.649819] pcieport 0000:19:04.0: pciehp: pciehp_isr: no response from device
[  144.649836] pcieport 0000:20:04.0: pciehp: pciehp_isr: no response from device
[  144.649849] pcieport 0000:19:04.0: pciehp: pciehp_isr: no response from device
[  144.649849] thunderbolt 0000:07:00.0: 0:3: switch unplugged
[  144.649853] pcieport 0000:20:04.0: pciehp: pciehp_isr: no response from device
[  144.649854] thunderbolt 0000:07:00.0: 0:7 <-> 3:a (PCI): deactivating
[  144.649862] pcieport 0000:06:04.0: pciehp: Slot(4-1): Link Down
[  144.649866] pcieport 0000:06:04.0: pciehp: Slot(4-1): Card not present
[  144.649883] pcieport 0000:19:05.0: can't change power state from D3cold to D0 (config space inaccessible)
[  144.650434] pcieport 0000:20:05.0: can't change power state from D3cold to D0 (config space inaccessible)
[  144.650578] pcieport 0000:20:04.0: can't change power state from D3cold to D0 (config space inaccessible)
[  144.656146] pci_bus 0000:1c: busn_res: [bus 1c] is released
[  144.656230] pci_bus 0000:1b: busn_res: [bus 1b-1c] is released
[  144.656299] pci_bus 0000:1a: busn_res: [bus 1a-1c] is released
[  144.656380] pci_bus 0000:1d: busn_res: [bus 1d] is released
[  144.656463] pci_bus 0000:1e: busn_res: [bus 1e] is released
[  144.656562] pci_bus 0000:23: busn_res: [bus 23] is released
[  144.656594] pci_bus 0000:22: busn_res: [bus 22-23] is released
[  144.656638] pci_bus 0000:21: busn_res: [bus 21-23] is released
[  144.656698] pci_bus 0000:24: busn_res: [bus 24] is released
[  144.656751] pci_bus 0000:25: busn_res: [bus 25] is released
[  144.656779] pci_bus 0000:26: busn_res: [bus 26-35] is released
[  144.656807] pci_bus 0000:36: busn_res: [bus 36-45] is released
[  144.656834] pci_bus 0000:20: busn_res: [bus 20-45] is released
[  144.656869] pci_bus 0000:1f: busn_res: [bus 1f-45] is released
[  144.656896] pci_bus 0000:46: busn_res: [bus 46-55] is released
[  144.656923] pci_bus 0000:19: busn_res: [bus 19-55] is released
[  144.871381] thunderbolt 0000:07:00.0: acking hot unplug event on 0:3
[  145.093518] thunderbolt 0000:07:00.0: 0: timeout writing config space 1 to 0x39
[  145.093536] thunderbolt 0000:07:00.0: deactivating PCIe Down path from 0:7 to 3:10
[  145.139771] thunderbolt 0000:07:00.0: acking hot unplug event on 0:3
[  145.408226] thunderbolt 0000:07:00.0: acking hot unplug event on 0:3
[  145.533276] thunderbolt 0000:07:00.0: 0: timeout reading config space 0 from 0x10
[  145.533291] thunderbolt 0000:07:00.0: 0:7: hop deactivation failed for hop 0, index 8
[  145.533298] thunderbolt 0000:07:00.0: deactivating PCIe Up path from 3:10 to 0:7
[  145.676684] thunderbolt 0000:07:00.0: acking hot unplug event on 0:3
[  145.945107] thunderbolt 0000:07:00.0: acking hot unplug event on 0:3
[  145.973104] thunderbolt 0000:07:00.0: 0: timeout reading config space 0 from 0x10
[  145.973118] thunderbolt 0000:07:00.0: 0:3: hop deactivation failed for hop 1, index 8
[  145.973129] thunderbolt 0000:07:00.0: 0:c <-> 303:b (DP): deactivating
[  146.213523] thunderbolt 0000:07:00.0: acking hot unplug event on 0:3
[  146.412874] thunderbolt 0000:07:00.0: 0: timeout reading config space 1 from 0x3c
[  146.481970] thunderbolt 0000:07:00.0: acking hot unplug event on 0:3
[  146.852702] thunderbolt 0000:07:00.0: 0: timeout reading config space 1 from 0x39
[  147.292462] thunderbolt 0000:07:00.0: 0: timeout reading config space 1 from 0x39
[  147.292478] thunderbolt 0000:07:00.0: deactivating Video path from 0:12 to 303:11
[  147.732238] thunderbolt 0000:07:00.0: 0: timeout reading config space 0 from 0x12
[  147.732255] thunderbolt 0000:07:00.0: 0:c: hop deactivation failed for hop 0, index 9
[  147.732261] thunderbolt 0000:07:00.0: 0:c: adding -5 NFC credits to 5
[  148.172037] thunderbolt 0000:07:00.0: 0: timeout writing config space 1 to 0x4
[  148.172051] thunderbolt 0000:07:00.0: 0:c: nfc credits deallocation failed for hop 0
[  148.172057] thunderbolt 0000:07:00.0: deactivating AUX TX path from 0:12 to 303:11
[  148.611855] thunderbolt 0000:07:00.0: 0: timeout reading config space 0 from 0x10
[  148.611869] thunderbolt 0000:07:00.0: 0:c: hop deactivation failed for hop 0, index 8
[  148.611875] thunderbolt 0000:07:00.0: deactivating AUX RX path from 303:11 to 0:12
[  149.051620] thunderbolt 0000:07:00.0: 0: timeout reading config space 0 from 0x12
[  149.051634] thunderbolt 0000:07:00.0: 0:3: hop deactivation failed for hop 2, index 9
[  149.051640] thunderbolt 0000:07:00.0: 0: released DP resource for port 12
[  149.051650] thunderbolt 0000:07:00.0: 3:7 <-> 303:a (PCI): deactivating
[  149.051654] thunderbolt 0000:07:00.0: deactivating PCIe Down path from 3:7 to 303:10
[  149.051658] thunderbolt 0000:07:00.0: deactivating PCIe Up path from 303:10 to 3:7
[  149.051663] thunderbolt 0000:07:00.0: 0:d <-> 3:b (DP): deactivating
[  149.491440] thunderbolt 0000:07:00.0: 0: timeout reading config space 1 from 0x3c
[  149.931229] thunderbolt 0000:07:00.0: 0: timeout reading config space 1 from 0x39
[  150.380986] thunderbolt 0000:07:00.0: 0: timeout reading config space 1 from 0x39
[  150.381001] thunderbolt 0000:07:00.0: deactivating Video path from 0:13 to 3:11
[  150.820803] thunderbolt 0000:07:00.0: 0: timeout reading config space 0 from 0x12
[  150.820817] thunderbolt 0000:07:00.0: 0:d: hop deactivation failed for hop 0, index 9
[  150.820823] thunderbolt 0000:07:00.0: 0:d: adding -5 NFC credits to 5
[  151.270628] thunderbolt 0000:07:00.0: 0: timeout writing config space 1 to 0x4
[  151.270642] thunderbolt 0000:07:00.0: 0:d: nfc credits deallocation failed for hop 0
[  151.270648] thunderbolt 0000:07:00.0: deactivating AUX TX path from 0:13 to 3:11
[  151.710341] thunderbolt 0000:07:00.0: 0: timeout reading config space 0 from 0x10
[  151.710360] thunderbolt 0000:07:00.0: 0:d: hop deactivation failed for hop 0, index 8
[  151.710368] thunderbolt 0000:07:00.0: deactivating AUX RX path from 3:11 to 0:13
[  152.160109] thunderbolt 0000:07:00.0: 0: timeout reading config space 0 from 0x10
[  152.160124] thunderbolt 0000:07:00.0: 0:4: hop deactivation failed for hop 1, index 8
[  152.160131] thunderbolt 0000:07:00.0: 0: released DP resource for port 13
[  152.160141] thunderbolt 0000:07:00.0: 303:b: DP OUT resource unavailable
[  152.160144] thunderbolt 0000:07:00.0: 3:b: DP OUT resource unavailable
[  152.160242] thunderbolt 0-303: device disconnected
[  152.160292] thunderbolt 0-3: device disconnected
[  152.160326] thunderbolt 0000:07:00.0: looking for DP IN <-> DP OUT pairs:
[  152.599916] thunderbolt 0000:07:00.0: 0: timeout reading config space 1 from 0x39
[  152.599930] thunderbolt 0000:07:00.0: 0:c: DP IN available
[  153.039710] thunderbolt 0000:07:00.0: 0: timeout reading config space 1 from 0x39
[  153.039724] thunderbolt 0000:07:00.0: 0:d: DP IN available
[  153.039727] thunderbolt 0000:07:00.0: no suitable DP IN adapter available, not tunneling
[  153.039733] thunderbolt 0000:07:00.0: 0:4: got unplug event for disconnected port, ignoring
[  153.039736] thunderbolt 0000:07:00.0: 0:3: got unplug event for disconnected port, ignoring
[  153.039739] thunderbolt 0000:07:00.0: 0:3: got unplug event for disconnected port, ignoring
[  153.039742] thunderbolt 0000:07:00.0: 0:3: got unplug event for disconnected port, ignoring
[  153.039745] thunderbolt 0000:07:00.0: 0:3: got unplug event for disconnected port, ignoring
[  153.039747] thunderbolt 0000:07:00.0: 0:3: got unplug event for disconnected port, ignoring
[  153.039750] thunderbolt 0000:07:00.0: 0:3: got unplug event for disconnected port, ignoring
[  153.039753] thunderbolt 0000:07:00.0: 0:3: got unplug event for disconnected port, ignoring

Once it gets to here, nothing I plug in gets detected.


This is the Laptop dmesg from boot with the display chain plugged in.

[    0.000000] Linux version 5.17.0+ (brad@bklaptop) (gcc (Debian 8.3.0-6) 8.3.0, GNU ld (GNU Binutils for Debian) 2.31.1) #35 SMP PREEMPT_DYNAMIC Tue Mar 29 19:37:34 AWST 2022
[    0.000000] Command line: ro root=UUID=c500d66c-50ec-42a2-a333-eb48d6c9d97b thunderbolt.dyndbg initrd=boot\initrd.img-5.17.0+
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    0.000000] signal: max sigframe size: 1776
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000059000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000bffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000008ad0ffff] usable
[    0.000000] BIOS-e820: [mem 0x000000008ad10000-0x000000008ad52fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000008ad53000-0x000000008ad61fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008ad62000-0x000000008ad8efff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000008ad8f000-0x000000008ae38fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008ae39000-0x000000008ae8efff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008ae8f000-0x000000008aed1fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008aed2000-0x000000008aefefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008aeff000-0x000000008af83fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008af84000-0x000000008afeffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008aff0000-0x000000008affffff] usable
[    0.000000] BIOS-e820: [mem 0x000000008b000000-0x000000008f9fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffe10000-0x00000000ffe3ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000046f5fffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0x73d4c190-0x73d5c1cf] usable ==> usable
[    0.000000] e820: update [mem 0x73d4c190-0x73d5c1cf] usable ==> usable
[    0.000000] e820: update [mem 0x73d6f190-0x73d6fd98] usable ==> usable
[    0.000000] e820: update [mem 0x73d6f190-0x73d6fd98] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x0000000000057fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000000058000-0x0000000000058fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000059000-0x000000000008efff] usable
[    0.000000] reserve setup_data: [mem 0x000000000008f000-0x000000000008ffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000000a0000-0x00000000000bffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000073d4c18f] usable
[    0.000000] reserve setup_data: [mem 0x0000000073d4c190-0x0000000073d5c1cf] usable
[    0.000000] reserve setup_data: [mem 0x0000000073d5c1d0-0x0000000073d6f18f] usable
[    0.000000] reserve setup_data: [mem 0x0000000073d6f190-0x0000000073d6fd98] usable
[    0.000000] reserve setup_data: [mem 0x0000000073d6fd99-0x000000008ad0ffff] usable
[    0.000000] reserve setup_data: [mem 0x000000008ad10000-0x000000008ad52fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000008ad53000-0x000000008ad61fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008ad62000-0x000000008ad8efff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000008ad8f000-0x000000008ae38fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008ae39000-0x000000008ae8efff] reserved
[    0.000000] reserve setup_data: [mem 0x000000008ae8f000-0x000000008aed1fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008aed2000-0x000000008aefefff] reserved
[    0.000000] reserve setup_data: [mem 0x000000008aeff000-0x000000008af83fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008af84000-0x000000008afeffff] reserved
[    0.000000] reserve setup_data: [mem 0x000000008aff0000-0x000000008affffff] usable
[    0.000000] reserve setup_data: [mem 0x000000008b000000-0x000000008f9fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ffe10000-0x00000000ffe3ffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000046f5fffff] usable
[    0.000000] efi: EFI v1.10 by Apple
[    0.000000] efi: ACPI=0x8ad8e000 ACPI 2.0=0x8ad8e014 SMBIOS=0x8ad11000 
[    0.000000] SMBIOS 2.4 present.
[    0.000000] DMI: Apple Inc. MacBookPro11,1/Mac-189A3D4F975D5FFC, BIOS 432.60.3.0.0 10/27/2021
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2599.997 MHz processor
[    0.000115] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000118] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000126] last_pfn = 0x46f600 max_arch_pfn = 0x400000000
[    0.000212] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.001095] last_pfn = 0x8b000 max_arch_pfn = 0x400000000
[    0.001142] Using GB pages for direct mapping
[    0.002200] Secure boot disabled
[    0.002201] RAMDISK: [mem 0x7076d000-0x70e8ffff]
[    0.002204] ACPI: Early table checksum verification disabled
[    0.002206] ACPI: RSDP 0x000000008AD8E014 000024 (v02 APPLE )
[    0.002211] ACPI: XSDT 0x000000008AD8E1C0 0000A4 (v01 APPLE  Apple00  00000000      01000013)
[    0.002216] ACPI: FACP 0x000000008AD8C000 0000F4 (v05 APPLE  Apple00  00000000 Loki 0000005F)
[    0.002221] ACPI: DSDT 0x000000008AD7F000 007681 (v03 APPLE  MacBookP 00110001 INTL 20100915)
[    0.002224] ACPI: FACS 0x000000008AD18000 000040
[    0.002227] ACPI: FACS 0x000000008AD18000 000040
[    0.002229] ACPI: HPET 0x000000008AD8B000 000038 (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002232] ACPI: APIC 0x000000008AD8A000 0000BC (v02 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002235] ACPI: SBST 0x000000008AD88000 000030 (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002238] ACPI: ECDT 0x000000008AD87000 000053 (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002241] ACPI: SSDT 0x000000008AD7E000 00010B (v01 APPLE  SataAhci 00001000 INTL 20100915)
[    0.002244] ACPI: SSDT 0x000000008AD7D000 000024 (v01 APPLE  SmcDppt  00001000 INTL 20100915)
[    0.002247] ACPI: SSDT 0x000000008AD7A000 000FE9 (v01 APPLE  SDUsbLpt 00001000 INTL 20100915)
[    0.002250] ACPI: SSDT 0x000000008AD76000 000032 (v01 APPLE  SsdtS3   00001000 INTL 20100915)
[    0.002254] ACPI: SSDT 0x000000008AD73000 0028B2 (v01 APPLE  PcieTbt  00001000 INTL 20100915)
[    0.002257] ACPI: SSDT 0x000000008AD66000 0000B8 (v01 APPLE  Sdxc     00001000 INTL 20100915)
[    0.002260] ACPI: SSDT 0x000000008AD65000 0003E0 (v01 APPLE  SaHdaCdc 00001000 INTL 20100915)
[    0.002263] ACPI: SSDT 0x000000008AD64000 000594 (v01 PmRef  Cpu0Ist  00003000 INTL 20100915)
[    0.002266] ACPI: SSDT 0x000000008AD63000 000B83 (v01 PmRef  CpuPm    00003000 INTL 20100915)
[    0.002269] ACPI: DMAR 0x000000008AD62000 000088 (v01 APPLE  HSW      00000001 AAPL 00000001)
[    0.002272] ACPI: MCFG 0x000000008AD89000 00003C (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002274] ACPI: Reserving FACP table memory at [mem 0x8ad8c000-0x8ad8c0f3]
[    0.002276] ACPI: Reserving DSDT table memory at [mem 0x8ad7f000-0x8ad86680]
[    0.002278] ACPI: Reserving FACS table memory at [mem 0x8ad18000-0x8ad1803f]
[    0.002279] ACPI: Reserving FACS table memory at [mem 0x8ad18000-0x8ad1803f]
[    0.002280] ACPI: Reserving HPET table memory at [mem 0x8ad8b000-0x8ad8b037]
[    0.002281] ACPI: Reserving APIC table memory at [mem 0x8ad8a000-0x8ad8a0bb]
[    0.002282] ACPI: Reserving SBST table memory at [mem 0x8ad88000-0x8ad8802f]
[    0.002283] ACPI: Reserving ECDT table memory at [mem 0x8ad87000-0x8ad87052]
[    0.002285] ACPI: Reserving SSDT table memory at [mem 0x8ad7e000-0x8ad7e10a]
[    0.002286] ACPI: Reserving SSDT table memory at [mem 0x8ad7d000-0x8ad7d023]
[    0.002287] ACPI: Reserving SSDT table memory at [mem 0x8ad7a000-0x8ad7afe8]
[    0.002288] ACPI: Reserving SSDT table memory at [mem 0x8ad76000-0x8ad76031]
[    0.002289] ACPI: Reserving SSDT table memory at [mem 0x8ad73000-0x8ad758b1]
[    0.002290] ACPI: Reserving SSDT table memory at [mem 0x8ad66000-0x8ad660b7]
[    0.002292] ACPI: Reserving SSDT table memory at [mem 0x8ad65000-0x8ad653df]
[    0.002293] ACPI: Reserving SSDT table memory at [mem 0x8ad64000-0x8ad64593]
[    0.002294] ACPI: Reserving SSDT table memory at [mem 0x8ad63000-0x8ad63b82]
[    0.002295] ACPI: Reserving DMAR table memory at [mem 0x8ad62000-0x8ad62087]
[    0.002296] ACPI: Reserving MCFG table memory at [mem 0x8ad89000-0x8ad8903b]
[    0.002302] ACPI: DMI detected to setup _OSI("Darwin"): Apple hardware
[    0.002323] Zone ranges:
[    0.002324]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.002326]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.002328]   Normal   [mem 0x0000000100000000-0x000000046f5fffff]
[    0.002329] Movable zone start for each node
[    0.002330] Early memory node ranges
[    0.002331]   node   0: [mem 0x0000000000001000-0x0000000000057fff]
[    0.002333]   node   0: [mem 0x0000000000059000-0x000000000008efff]
[    0.002334]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.002335]   node   0: [mem 0x0000000000100000-0x000000008ad0ffff]
[    0.002336]   node   0: [mem 0x000000008ad53000-0x000000008ad61fff]
[    0.002337]   node   0: [mem 0x000000008ad8f000-0x000000008ae38fff]
[    0.002339]   node   0: [mem 0x000000008ae8f000-0x000000008aed1fff]
[    0.002340]   node   0: [mem 0x000000008aeff000-0x000000008af83fff]
[    0.002340]   node   0: [mem 0x000000008aff0000-0x000000008affffff]
[    0.002341]   node   0: [mem 0x0000000100000000-0x000000046f5fffff]
[    0.002344] Initmem setup node 0 [mem 0x0000000000001000-0x000000046f5fffff]
[    0.002348] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.002350] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.002351] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.002375] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.006131] On node 0, zone DMA32: 67 pages in unavailable ranges
[    0.006137] On node 0, zone DMA32: 45 pages in unavailable ranges
[    0.006139] On node 0, zone DMA32: 86 pages in unavailable ranges
[    0.006142] On node 0, zone DMA32: 45 pages in unavailable ranges
[    0.006144] On node 0, zone DMA32: 108 pages in unavailable ranges
[    0.030224] On node 0, zone Normal: 20480 pages in unavailable ranges
[    0.030257] On node 0, zone Normal: 2560 pages in unavailable ranges
[    0.030265] Reserving Intel graphics memory at [mem 0x8ba00000-0x8f9fffff]
[    0.030384] ACPI: PM-Timer IO Port: 0x1808
[    0.030391] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.030393] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.030394] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.030395] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.030396] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.030397] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.030398] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.030399] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.030409] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-39
[    0.030412] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.030415] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.030418] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.030420] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.030423] TSC deadline timer available
[    0.030424] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.030446] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.030448] PM: hibernation: Registered nosave memory: [mem 0x00058000-0x00058fff]
[    0.030451] PM: hibernation: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    0.030453] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000bffff]
[    0.030454] PM: hibernation: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[    0.030456] PM: hibernation: Registered nosave memory: [mem 0x73d4c000-0x73d4cfff]
[    0.030458] PM: hibernation: Registered nosave memory: [mem 0x73d5c000-0x73d5cfff]
[    0.030460] PM: hibernation: Registered nosave memory: [mem 0x73d6f000-0x73d6ffff]
[    0.030462] PM: hibernation: Registered nosave memory: [mem 0x73d6f000-0x73d6ffff]
[    0.030464] PM: hibernation: Registered nosave memory: [mem 0x8ad10000-0x8ad52fff]
[    0.030466] PM: hibernation: Registered nosave memory: [mem 0x8ad62000-0x8ad8efff]
[    0.030468] PM: hibernation: Registered nosave memory: [mem 0x8ae39000-0x8ae8efff]
[    0.030470] PM: hibernation: Registered nosave memory: [mem 0x8aed2000-0x8aefefff]
[    0.030473] PM: hibernation: Registered nosave memory: [mem 0x8af84000-0x8afeffff]
[    0.030475] PM: hibernation: Registered nosave memory: [mem 0x8b000000-0x8f9fffff]
[    0.030476] PM: hibernation: Registered nosave memory: [mem 0x8fa00000-0xe00f7fff]
[    0.030477] PM: hibernation: Registered nosave memory: [mem 0xe00f8000-0xe00f8fff]
[    0.030478] PM: hibernation: Registered nosave memory: [mem 0xe00f9000-0xfed1bfff]
[    0.030479] PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.030480] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xffe0ffff]
[    0.030481] PM: hibernation: Registered nosave memory: [mem 0xffe10000-0xffe3ffff]
[    0.030482] PM: hibernation: Registered nosave memory: [mem 0xffe40000-0xffffffff]
[    0.030484] [mem 0x8fa00000-0xe00f7fff] available for PCI devices
[    0.030488] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.030494] setup_percpu: NR_CPUS:4 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[    0.030677] percpu: Embedded 52 pages/cpu s173096 r8192 d31704 u524288
[    0.030685] pcpu-alloc: s173096 r8192 d31704 u524288 alloc=1*2097152
[    0.030688] pcpu-alloc: [0] 0 1 2 3 
[    0.030709] Built 1 zonelists, mobility grouping on.  Total pages: 4105486
[    0.030711] Kernel command line: ro root=UUID=c500d66c-50ec-42a2-a333-eb48d6c9d97b thunderbolt.dyndbg initrd=boot\initrd.img-5.17.0+
[    0.031577] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.031994] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.032035] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.080035] Memory: 15923600K/16683256K available (10248K kernel code, 2251K rwdata, 2740K rodata, 996K init, 740K bss, 759396K reserved, 0K cma-reserved)
[    0.080068] random: get_random_u64 called from cache_random_seq_create+0x63/0x150 with crng_init=0
[    0.080136] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.080771] Dynamic Preempt: voluntary
[    0.080797] rcu: Preemptible hierarchical RCU implementation.
[    0.080799] 	Trampoline variant of Tasks RCU enabled.
[    0.080800] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[    0.081771] NR_IRQS: 4352, nr_irqs: 728, preallocated irqs: 16
[    0.081996] Console: colour dummy device 80x25
[    0.082323] printk: console [tty0] enabled
[    0.082332] ACPI: Core revision 20211217
[    0.082431] hpet: HPET dysfunctional in PC10. Force disabled.
[    0.082434] APIC: Switch to symmetric I/O mode setup
[    0.082437] DMAR: Host address width 39
[    0.082439] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[    0.082445] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap c0000020660462 ecap f0101a
[    0.082449] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[    0.082455] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008020660462 ecap f010da
[    0.082458] DMAR: RMRR base: 0x0000008b800000 end: 0x0000008f9fffff
[    0.082462] DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
[    0.082465] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[    0.083061] DMAR-IR: Enabled IRQ remapping in xapic mode
[    0.083550] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x257a391c223, max_idle_ns: 440795220104 ns
[    0.083559] Calibrating delay loop (skipped), value calculated using timer frequency.. 5199.99 BogoMIPS (lpj=25999970)
[    0.083564] pid_max: default: 32768 minimum: 301
[    0.093556] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.093556] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.093556] CPU0: Thermal monitoring enabled (TM1)
[    0.093556] process: using mwait in idle threads
[    0.093556] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
[    0.093556] Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
[    0.093556] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.093556] Spectre V2 : Kernel not compiled with retpoline; no mitigation available!
[    0.093556] Spectre V2 : Vulnerable
[    0.093556] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.093556] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    0.093556] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.093556] Spectre V2 : User space: Mitigation: STIBP via prctl
[    0.093556] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.093556] SRBDS: Mitigation: Microcode
[    0.093556] MDS: Mitigation: Clear CPU buffers
[    0.093556] Freeing SMP alternatives memory: 28K
[    0.093556] smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 1220
[    0.093556] smpboot: CPU0: Intel(R) Core(TM) i5-4278U CPU @ 2.60GHz (family: 0x6, model: 0x45, stepping: 0x1)
[    0.093556] cblist_init_generic: Setting adjustable number of callback queues.
[    0.093556] cblist_init_generic: Setting shift to 2 and lim to 1.
[    0.093556] Performance Events: PEBS fmt2+, Haswell events, 16-deep LBR, full-width counters, Intel PMU driver.
[    0.093556] ... version:                3
[    0.093556] ... bit width:              48
[    0.093556] ... generic registers:      4
[    0.093556] ... value mask:             0000ffffffffffff
[    0.093556] ... max period:             00007fffffffffff
[    0.093556] ... fixed-purpose events:   3
[    0.093556] ... event mask:             000000070000000f
[    0.093556] rcu: Hierarchical SRCU implementation.
[    0.093556] smp: Bringing up secondary CPUs ...
[    0.093556] x86: Booting SMP configuration:
[    0.093556] .... node  #0, CPUs:      #1 #2
[    0.093556] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[    0.093556]  #3
[    0.093556] smp: Brought up 1 node, 4 CPUs
[    0.093556] smpboot: Max logical packages: 1
[    0.093556] smpboot: Total of 4 processors activated (20799.97 BogoMIPS)
[    0.093556] devtmpfs: initialized
[    0.093556] ACPI: PM: Registering ACPI NVS region [mem 0x8ad10000-0x8ad52fff] (274432 bytes)
[    0.093556] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.093556] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.093556] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.093556] thermal_sys: Registered thermal governor 'step_wise'
[    0.093556] thermal_sys: Registered thermal governor 'user_space'
[    0.093556] cpuidle: using governor ladder
[    0.093556] cpuidle: using governor menu
[    0.093556] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.093556] PCI: MMCONFIG for domain 0000 [bus 00-9b] at [mem 0xe0000000-0xe9bfffff] (base 0xe0000000)
[    0.093556] PCI: not using MMCONFIG
[    0.093556] PCI: Using configuration type 1 for base access
[    0.093556] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[    0.093556] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.093556] cryptd: max_cpu_qlen set to 1000
[    0.093556] ACPI: Disabled all _OSI OS vendors
[    0.093556] ACPI: Added _OSI(Module Device)
[    0.093556] ACPI: Added _OSI(Processor Device)
[    0.093556] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.093556] ACPI: Added _OSI(Processor Aggregator Device)
[    0.093556] ACPI: Added _OSI(Linux-Dell-Video)
[    0.093556] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.093556] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.093556] ACPI: Added _OSI(Darwin)
[    0.095344] ACPI: 10 ACPI AML tables successfully acquired and loaded
[    0.095710] ACPI: EC: EC started
[    0.095713] ACPI: EC: interrupt blocked
[    0.097071] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.097074] ACPI: EC: Boot ECDT EC used to handle transactions
[    0.097259] ACPI: BIOS _OSI(Darwin) query honored via DMI
[    0.097574] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.097610] ACPI Error: Needed type [Reference], found [Integer] 000000008f49646e (20211217/exresop-69)
[    0.097610] ACPI Error: AE_AML_OPERAND_TYPE, While resolving operands for [OpcodeName unavailable] (20211217/dswexec-434)
[    0.097610] ACPI Error: Aborting method \_PR.CPU0._PDC due to previous error (AE_AML_OPERAND_TYPE) (20211217/psparse-531)
[    0.097610] ACPI: Dynamic OEM Table Load:
[    0.097610] ACPI: SSDT 0xFFFF9D0500AF1000 00067C (v01 PmRef  ApIst    00003000 INTL 20100915)
[    0.097610] ACPI: Dynamic OEM Table Load:
[    0.097610] ACPI: SSDT 0xFFFF9D0500C8F200 000119 (v01 PmRef  ApCst    00003000 INTL 20100915)
[    0.097610] ACPI: Interpreter enabled
[    0.097610] ACPI: PM: (supports S0 S3 S4 S5)
[    0.097610] ACPI: Using IOAPIC for interrupt routing
[    0.097610] PCI: MMCONFIG for domain 0000 [bus 00-9b] at [mem 0xe0000000-0xe9bfffff] (base 0xe0000000)
[    0.097610] PCI: MMCONFIG at [mem 0xe0000000-0xe9bfffff] reserved in ACPI motherboard resources
[    0.097610] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.097610] ACPI: Enabled 4 GPEs in block 00 to 7F
[    0.107469] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.107476] acpi PNP0A08:00: _OSC: OS assumes control of [PCIeHotplug SHPCHotplug AER PCIeCapability LTR DPC]
[    0.107482] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-9b] only partially covers this bridge
[    0.107639] PCI host bridge to bus 0000:00
[    0.107642] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.107645] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.107648] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000fffff window]
[    0.107651] pci_bus 0000:00: root bus resource [mem 0x8fa00000-0xfeafffff window]
[    0.107654] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff window]
[    0.107658] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.107669] pci 0000:00:00.0: [8086:0a04] type 00 class 0x060000
[    0.107748] pci 0000:00:02.0: [8086:0a2e] type 00 class 0x030000
[    0.107757] pci 0000:00:02.0: reg 0x10: [mem 0xb0000000-0xb03fffff 64bit]
[    0.107764] pci 0000:00:02.0: reg 0x18: [mem 0xa0000000-0xafffffff 64bit pref]
[    0.107770] pci 0000:00:02.0: reg 0x20: [io  0x2000-0x203f]
[    0.107781] pci 0000:00:02.0: BAR 2: assigned to efifb
[    0.107785] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.107875] pci 0000:00:03.0: [8086:0a0c] type 00 class 0x040300
[    0.107884] pci 0000:00:03.0: reg 0x10: [mem 0xb0c10000-0xb0c13fff 64bit]
[    0.107999] pci 0000:00:14.0: [8086:9c31] type 00 class 0x0c0330
[    0.108014] pci 0000:00:14.0: reg 0x10: [mem 0xb0c00000-0xb0c0ffff 64bit]
[    0.108065] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.108247] pci 0000:00:16.0: [8086:9c3a] type 00 class 0x078000
[    0.108266] pci 0000:00:16.0: reg 0x10: [mem 0xb0c2a100-0xb0c2a11f 64bit]
[    0.108327] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.108378] pci 0000:00:1b.0: [8086:9c20] type 00 class 0x040300
[    0.108394] pci 0000:00:1b.0: reg 0x10: [mem 0xb0c14000-0xb0c17fff 64bit]
[    0.108454] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.108513] pci 0000:00:1c.0: [8086:9c10] type 01 class 0x060400
[    0.108572] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.108589] pci 0000:00:1c.0: Enabling MPC IRBNCE
[    0.108592] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled
[    0.108682] pci 0000:00:1c.1: [8086:9c12] type 01 class 0x060400
[    0.108749] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.108765] pci 0000:00:1c.1: Enabling MPC IRBNCE
[    0.108768] pci 0000:00:1c.1: Intel PCH root port ACS workaround enabled
[    0.108858] pci 0000:00:1c.2: [8086:9c14] type 01 class 0x060400
[    0.108924] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.108940] pci 0000:00:1c.2: Enabling MPC IRBNCE
[    0.108943] pci 0000:00:1c.2: Intel PCH root port ACS workaround enabled
[    0.109031] pci 0000:00:1c.4: [8086:9c18] type 01 class 0x060400
[    0.109096] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.109112] pci 0000:00:1c.4: Enabling MPC IRBNCE
[    0.109115] pci 0000:00:1c.4: Intel PCH root port ACS workaround enabled
[    0.109211] pci 0000:00:1c.5: [8086:9c1a] type 01 class 0x060400
[    0.109277] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
[    0.109293] pci 0000:00:1c.5: Enabling MPC IRBNCE
[    0.109295] pci 0000:00:1c.5: Intel PCH root port ACS workaround enabled
[    0.109389] pci 0000:00:1f.0: [8086:9c43] type 00 class 0x060100
[    0.109538] pci 0000:00:1f.3: [8086:9c22] type 00 class 0x0c0500
[    0.109554] pci 0000:00:1f.3: reg 0x10: [mem 0xb0c2a000-0xb0c2a0ff 64bit]
[    0.109572] pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
[    0.109654] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.109713] pci 0000:02:00.0: [14e4:1570] type 00 class 0x048000
[    0.109736] pci 0000:02:00.0: reg 0x10: [mem 0xb0b00000-0xb0b0ffff 64bit]
[    0.109752] pci 0000:02:00.0: reg 0x18: [mem 0x90000000-0x9fffffff 64bit pref]
[    0.109768] pci 0000:02:00.0: reg 0x20: [mem 0xb0a00000-0xb0afffff 64bit]
[    0.109862] pci 0000:02:00.0: supports D1
[    0.109864] pci 0000:02:00.0: PME# supported from D0 D3hot
[    0.109967] pci 0000:00:1c.1: PCI bridge to [bus 02]
[    0.109973] pci 0000:00:1c.1:   bridge window [mem 0xb0a00000-0xb0bfffff]
[    0.109978] pci 0000:00:1c.1:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.110038] pci 0000:03:00.0: [14e4:43ba] type 00 class 0x028000
[    0.110061] pci 0000:03:00.0: reg 0x10: [mem 0xb0800000-0xb0807fff 64bit]
[    0.110076] pci 0000:03:00.0: reg 0x18: [mem 0xb0400000-0xb07fffff 64bit]
[    0.110197] pci 0000:03:00.0: supports D1 D2
[    0.110200] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.110342] pci 0000:00:1c.2: PCI bridge to [bus 03]
[    0.110348] pci 0000:00:1c.2:   bridge window [mem 0xb0400000-0xb08fffff]
[    0.110412] pci 0000:05:00.0: [8086:156d] type 01 class 0x060400
[    0.110466] pci 0000:05:00.0: enabling Extended Tags
[    0.110548] pci 0000:05:00.0: supports D1 D2
[    0.110550] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.133583] pci 0000:00:1c.4: PCI bridge to [bus 05-6b]
[    0.133589] pci 0000:00:1c.4:   bridge window [io  0x3000-0x5fff]
[    0.133593] pci 0000:00:1c.4:   bridge window [mem 0xb0d00000-0xbd1fffff]
[    0.133599] pci 0000:00:1c.4:   bridge window [mem 0xbd200000-0xc93fffff 64bit pref]
[    0.133703] pci 0000:06:00.0: [8086:156d] type 01 class 0x060400
[    0.133761] pci 0000:06:00.0: enabling Extended Tags
[    0.133845] pci 0000:06:00.0: supports D1 D2
[    0.133847] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.133958] pci 0000:06:03.0: [8086:156d] type 01 class 0x060400
[    0.134016] pci 0000:06:03.0: enabling Extended Tags
[    0.134099] pci 0000:06:03.0: supports D1 D2
[    0.134101] pci 0000:06:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.134209] pci 0000:06:04.0: [8086:156d] type 01 class 0x060400
[    0.134258] pci 0000:06:04.0: enabling Extended Tags
[    0.134345] pci 0000:06:04.0: supports D1 D2
[    0.134347] pci 0000:06:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.134450] pci 0000:06:05.0: [8086:156d] type 01 class 0x060400
[    0.134500] pci 0000:06:05.0: enabling Extended Tags
[    0.134587] pci 0000:06:05.0: supports D1 D2
[    0.134589] pci 0000:06:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.134693] pci 0000:06:06.0: [8086:156d] type 01 class 0x060400
[    0.134742] pci 0000:06:06.0: enabling Extended Tags
[    0.134828] pci 0000:06:06.0: supports D1 D2
[    0.134830] pci 0000:06:06.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.134940] pci 0000:05:00.0: PCI bridge to [bus 06-6b]
[    0.134948] pci 0000:05:00.0:   bridge window [io  0x3000-0x4fff]
[    0.134952] pci 0000:05:00.0:   bridge window [mem 0xb0d00000-0xb91fffff]
[    0.134960] pci 0000:05:00.0:   bridge window [mem 0xbd200000-0xc53fffff 64bit pref]
[    0.135036] pci 0000:07:00.0: [8086:156c] type 00 class 0x088000
[    0.135059] pci 0000:07:00.0: reg 0x10: [mem 0xb0d00000-0xb0d3ffff]
[    0.135073] pci 0000:07:00.0: reg 0x14: [mem 0xb0d40000-0xb0d40fff]
[    0.135140] pci 0000:07:00.0: enabling Extended Tags
[    0.135250] pci 0000:07:00.0: supports D1 D2
[    0.135252] pci 0000:07:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.163593] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.163604] pci 0000:06:00.0:   bridge window [mem 0xb0d00000-0xb0dfffff]
[    0.163723] pci 0000:08:00.0: [8086:1513] type 01 class 0x060400
[    0.163827] pci 0000:08:00.0: enabling Extended Tags
[    0.163983] pci 0000:08:00.0: supports D1 D2
[    0.163985] pci 0000:08:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.193591] pci 0000:06:03.0: PCI bridge to [bus 08-38]
[    0.193600] pci 0000:06:03.0:   bridge window [io  0x3000-0x3fff]
[    0.193605] pci 0000:06:03.0:   bridge window [mem 0xb0e00000-0xb51fffff]
[    0.193612] pci 0000:06:03.0:   bridge window [mem 0xbd200000-0xc13fffff 64bit pref]
[    0.193703] acpiphp: Slot [1] registered
[    0.193728] acpiphp: Slot [2] registered
[    0.193752] acpiphp: Slot [3] registered
[    0.193775] acpiphp: Slot [4] registered
[    0.193799] acpiphp: Slot [5] registered
[    0.193854] pci 0000:09:00.0: [8086:1513] type 01 class 0x060400
[    0.193964] pci 0000:09:00.0: enabling Extended Tags
[    0.194123] pci 0000:09:00.0: supports D1 D2
[    0.194125] pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.194298] pci 0000:09:01.0: [8086:1513] type 01 class 0x060400
[    0.194408] pci 0000:09:01.0: enabling Extended Tags
[    0.194567] pci 0000:09:01.0: supports D1 D2
[    0.194569] pci 0000:09:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.194724] pci 0000:09:02.0: [8086:1513] type 01 class 0x060400
[    0.194834] pci 0000:09:02.0: enabling Extended Tags
[    0.194992] pci 0000:09:02.0: supports D1 D2
[    0.194994] pci 0000:09:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.195155] pci 0000:09:04.0: [8086:1513] type 01 class 0x060400
[    0.195265] pci 0000:09:04.0: enabling Extended Tags
[    0.195426] pci 0000:09:04.0: supports D1 D2
[    0.195428] pci 0000:09:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.195602] pci 0000:09:05.0: [8086:1513] type 01 class 0x060400
[    0.195697] pci 0000:09:05.0: enabling Extended Tags
[    0.195858] pci 0000:09:05.0: supports D1 D2
[    0.195860] pci 0000:09:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.196049] pci 0000:08:00.0: PCI bridge to [bus 09-18]
[    0.196067] pci 0000:08:00.0:   bridge window [mem 0xb0e00000-0xb11fffff]
[    0.196079] pci 0000:08:00.0:   bridge window [mem 0xbd200000-0xbd3fffff 64bit pref]
[    0.196171] acpiphp: Slot [1-1] registered
[    0.196229] pci 0000:0a:00.0: [12d8:400c] type 01 class 0x060400
[    0.196586] pci 0000:0a:00.0: supports D1 D2
[    0.196588] pci 0000:0a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.223598] pci 0000:09:00.0: PCI bridge to [bus 0a-0c]
[    0.223617] pci 0000:09:00.0:   bridge window [mem 0xb1100000-0xb11fffff]
[    0.223790] pci 0000:0b:03.0: [12d8:400c] type 01 class 0x060400
[    0.224101] pci 0000:0b:03.0: supports D1 D2
[    0.224103] pci 0000:0b:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.224298] pci 0000:0a:00.0: PCI bridge to [bus 0b-0c]
[    0.224321] pci 0000:0a:00.0:   bridge window [mem 0xb1100000-0xb11fffff]
[    0.224479] pci 0000:0c:00.0: [12d8:400e] type 00 class 0x0c0310
[    0.224527] pci 0000:0c:00.0: reg 0x10: [mem 0xb1101000-0xb1101fff]
[    0.224816] pci 0000:0c:00.0: supports D1 D2
[    0.224818] pci 0000:0c:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.224968] pci 0000:0c:00.1: [12d8:400e] type 00 class 0x0c0310
[    0.225015] pci 0000:0c:00.1: reg 0x10: [mem 0xb1100000-0xb1100fff]
[    0.225304] pci 0000:0c:00.1: supports D1 D2
[    0.225307] pci 0000:0c:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.225432] pci 0000:0c:00.2: [12d8:400f] type 00 class 0x0c0320
[    0.225479] pci 0000:0c:00.2: reg 0x10: [mem 0xb1102000-0xb11020ff]
[    0.225767] pci 0000:0c:00.2: supports D1 D2
[    0.225769] pci 0000:0c:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.226010] pci 0000:0b:03.0: PCI bridge to [bus 0c]
[    0.226033] pci 0000:0b:03.0:   bridge window [mem 0xb1100000-0xb11fffff]
[    0.226196] pci 0000:0d:00.0: [14e4:16b0] type 00 class 0x020000
[    0.226260] pci 0000:0d:00.0: reg 0x10: [mem 0xbd300000-0xbd30ffff 64bit pref]
[    0.226303] pci 0000:0d:00.0: reg 0x18: [mem 0xbd310000-0xbd31ffff 64bit pref]
[    0.226616] pci 0000:0d:00.0: PME# supported from D0 D3hot D3cold
[    0.253614] pci 0000:09:01.0: PCI bridge to [bus 0d]
[    0.253642] pci 0000:09:01.0:   bridge window [mem 0xbd300000-0xbd3fffff 64bit pref]
[    0.253754] pci 0000:0e:00.0: [11c1:5901] type 00 class 0x0c0010
[    0.253818] pci 0000:0e:00.0: reg 0x10: [mem 0xb1000000-0xb1000fff 64bit]
[    0.254144] pci 0000:0e:00.0: supports D1 D2
[    0.254146] pci 0000:0e:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.283613] pci 0000:09:02.0: PCI bridge to [bus 0e]
[    0.283631] pci 0000:09:02.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.283807] pci 0000:0f:00.0: [8086:1513] type 01 class 0x060400
[    0.283965] pci 0000:0f:00.0: enabling Extended Tags
[    0.284202] pci 0000:0f:00.0: supports D1 D2
[    0.284204] pci 0000:0f:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.313604] pci 0000:09:04.0: PCI bridge to [bus 0f-17]
[    0.313622] pci 0000:09:04.0:   bridge window [mem 0xb0e00000-0xb0ffffff]
[    0.313635] pci 0000:09:04.0:   bridge window [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.313758] acpiphp: Slot [1-2] registered
[    0.313784] acpiphp: Slot [2-1] registered
[    0.313810] acpiphp: Slot [3-1] registered
[    0.313835] acpiphp: Slot [4-1] registered
[    0.313917] pci 0000:10:00.0: [8086:1513] type 01 class 0x060400
[    0.314082] pci 0000:10:00.0: enabling Extended Tags
[    0.314324] pci 0000:10:00.0: supports D1 D2
[    0.314326] pci 0000:10:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.314569] pci 0000:10:01.0: [8086:1513] type 01 class 0x060400
[    0.314734] pci 0000:10:01.0: enabling Extended Tags
[    0.314974] pci 0000:10:01.0: supports D1 D2
[    0.314976] pci 0000:10:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.315203] pci 0000:10:02.0: [8086:1513] type 01 class 0x060400
[    0.315368] pci 0000:10:02.0: enabling Extended Tags
[    0.315608] pci 0000:10:02.0: supports D1 D2
[    0.315610] pci 0000:10:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.315841] pci 0000:10:04.0: [8086:1513] type 01 class 0x060400
[    0.315983] pci 0000:10:04.0: enabling Extended Tags
[    0.316227] pci 0000:10:04.0: supports D1 D2
[    0.316229] pci 0000:10:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.316475] pci 0000:10:05.0: [8086:1513] type 01 class 0x060400
[    0.316617] pci 0000:10:05.0: enabling Extended Tags
[    0.316861] pci 0000:10:05.0: supports D1 D2
[    0.316863] pci 0000:10:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.317133] pci 0000:0f:00.0: PCI bridge to [bus 10-17]
[    0.317159] pci 0000:0f:00.0:   bridge window [mem 0xb0e00000-0xb0ffffff]
[    0.317176] pci 0000:0f:00.0:   bridge window [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.317294] acpiphp: Slot [1-3] registered
[    0.317373] pci 0000:11:00.0: [12d8:400c] type 01 class 0x060400
[    0.317862] pci 0000:11:00.0: supports D1 D2
[    0.317864] pci 0000:11:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.318147] pci 0000:10:00.0: PCI bridge to [bus 11-13]
[    0.318173] pci 0000:10:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.318408] pci 0000:12:03.0: [12d8:400c] type 01 class 0x060400
[    0.318831] pci 0000:12:03.0: supports D1 D2
[    0.318833] pci 0000:12:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.319089] pci 0000:11:00.0: PCI bridge to [bus 12-13]
[    0.319120] pci 0000:11:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.319333] pci 0000:13:00.0: [12d8:400e] type 00 class 0x0c0310
[    0.319397] pci 0000:13:00.0: reg 0x10: [mem 0xb0f01000-0xb0f01fff]
[    0.319791] pci 0000:13:00.0: supports D1 D2
[    0.319793] pci 0000:13:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.319996] pci 0000:13:00.1: [12d8:400e] type 00 class 0x0c0310
[    0.320060] pci 0000:13:00.1: reg 0x10: [mem 0xb0f00000-0xb0f00fff]
[    0.320454] pci 0000:13:00.1: supports D1 D2
[    0.320456] pci 0000:13:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.320617] pci 0000:13:00.2: [12d8:400f] type 00 class 0x0c0320
[    0.320681] pci 0000:13:00.2: reg 0x10: [mem 0xb0f02000-0xb0f020ff]
[    0.321077] pci 0000:13:00.2: supports D1 D2
[    0.321079] pci 0000:13:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.321414] pci 0000:12:03.0: PCI bridge to [bus 13]
[    0.321445] pci 0000:12:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.321670] pci 0000:14:00.0: [14e4:16b0] type 00 class 0x020000
[    0.321756] pci 0000:14:00.0: reg 0x10: [mem 0xbd200000-0xbd20ffff 64bit pref]
[    0.321813] pci 0000:14:00.0: reg 0x18: [mem 0xbd210000-0xbd21ffff 64bit pref]
[    0.322239] pci 0000:14:00.0: PME# supported from D0 D3hot D3cold
[    0.322557] pci 0000:10:01.0: PCI bridge to [bus 14]
[    0.322597] pci 0000:10:01.0:   bridge window [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.322752] pci 0000:15:00.0: [11c1:5901] type 00 class 0x0c0010
[    0.322838] pci 0000:15:00.0: reg 0x10: [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.323278] pci 0000:15:00.0: supports D1 D2
[    0.323280] pci 0000:15:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.323574] pci 0000:10:02.0: PCI bridge to [bus 15]
[    0.323600] pci 0000:10:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.323738] pci 0000:10:04.0: PCI bridge to [bus 16]
[    0.323872] pci 0000:10:05.0: PCI bridge to [bus 17]
[    0.324074] pci 0000:09:05.0: PCI bridge to [bus 18]
[    0.324224] pci 0000:06:04.0: PCI bridge to [bus 39]
[    0.324294] pci 0000:06:05.0: PCI bridge to [bus 3a-6a]
[    0.324302] pci 0000:06:05.0:   bridge window [io  0x4000-0x4fff]
[    0.324307] pci 0000:06:05.0:   bridge window [mem 0xb5200000-0xb91fffff]
[    0.324314] pci 0000:06:05.0:   bridge window [mem 0xc1400000-0xc53fffff 64bit pref]
[    0.324357] pci 0000:06:06.0: PCI bridge to [bus 6b]
[    0.324457] pci 0000:04:00.0: [1c5c:174a] type 00 class 0x010802
[    0.324482] pci 0000:04:00.0: reg 0x10: [mem 0xb0900000-0xb0903fff 64bit]
[    0.324493] pci 0000:04:00.0: reg 0x18: [mem 0xb0905000-0xb0905fff]
[    0.324505] pci 0000:04:00.0: reg 0x1c: [mem 0xb0904000-0xb0904fff]
[    0.324658] pci 0000:04:00.0: 16.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x4 link at 0000:00:1c.5 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
[    0.324864] pci 0000:00:1c.5: PCI bridge to [bus 04]
[    0.324870] pci 0000:00:1c.5:   bridge window [mem 0xb0900000-0xb09fffff]
[    0.324895] pci_bus 0000:00: on NUMA node 0
[    0.325635] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    0.325638] ACPI: PCI: Interrupt link LNKA disabled
[    0.325672] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    0.325674] ACPI: PCI: Interrupt link LNKB disabled
[    0.325706] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    0.325708] ACPI: PCI: Interrupt link LNKC disabled
[    0.325739] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    0.325742] ACPI: PCI: Interrupt link LNKD disabled
[    0.325773] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    0.325775] ACPI: PCI: Interrupt link LNKE disabled
[    0.325807] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    0.325809] ACPI: PCI: Interrupt link LNKF disabled
[    0.325841] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    0.325843] ACPI: PCI: Interrupt link LNKG disabled
[    0.325874] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    0.325877] ACPI: PCI: Interrupt link LNKH disabled
[    0.326025] ACPI: EC: interrupt unblocked
[    0.326028] ACPI: EC: event unblocked
[    0.326036] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.326040] ACPI: EC: GPE=0x4e
[    0.326043] ACPI: \_SB_.PCI0.LPCB.EC__: Boot ECDT EC initialization complete
[    0.326048] ACPI: \_SB_.PCI0.LPCB.EC__: EC: Used to handle transactions and events
[    0.326104] iommu: Default domain type: Translated 
[    0.326107] iommu: DMA domain TLB invalidation policy: lazy mode 
[    0.326149] SCSI subsystem initialized
[    0.326156] libata version 3.00 loaded.
[    0.326213] Registered efivars operations
[    0.326317] PCI: Using ACPI for IRQ routing
[    0.331529] PCI: pci_cache_line_size set to 64 bytes
[    0.331778] e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
[    0.331780] e820: reserve RAM buffer [mem 0x0008f000-0x0008ffff]
[    0.331781] e820: reserve RAM buffer [mem 0x73d4c190-0x73ffffff]
[    0.331782] e820: reserve RAM buffer [mem 0x73d6f190-0x73ffffff]
[    0.331783] e820: reserve RAM buffer [mem 0x8ad10000-0x8bffffff]
[    0.331785] e820: reserve RAM buffer [mem 0x8ad62000-0x8bffffff]
[    0.331787] e820: reserve RAM buffer [mem 0x8ae39000-0x8bffffff]
[    0.331788] e820: reserve RAM buffer [mem 0x8aed2000-0x8bffffff]
[    0.331789] e820: reserve RAM buffer [mem 0x8af84000-0x8bffffff]
[    0.331790] e820: reserve RAM buffer [mem 0x8b000000-0x8bffffff]
[    0.331791] e820: reserve RAM buffer [mem 0x46f600000-0x46fffffff]
[    0.331806] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.331806] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.331806] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.331806] vgaarb: loaded
[    0.331806] clocksource: Switched to clocksource tsc-early
[    0.331806] pnp: PnP ACPI init
[    0.331806] system 00:00: [mem 0xfed00000-0xfed03fff] has been reserved
[    0.331806] system 00:01: [io  0xffff] has been reserved
[    0.331806] system 00:01: [io  0x1800-0x187f] has been reserved
[    0.331806] system 00:01: [io  0x0800-0x087f] has been reserved
[    0.331806] system 00:03: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.331806] system 00:03: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.331806] system 00:03: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.331806] system 00:03: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.331806] system 00:03: [mem 0xe0000000-0xefffffff] could not be reserved
[    0.331806] system 00:03: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.331806] system 00:03: [mem 0xfed90000-0xfed93fff] could not be reserved
[    0.331806] system 00:03: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.331806] system 00:03: [mem 0xff000000-0xffffffff] could not be reserved
[    0.331806] system 00:03: [mem 0xfee00000-0xfeefffff] has been reserved
[    0.331806] system 00:04: [mem 0x20000000-0x201fffff] could not be reserved
[    0.331806] system 00:04: [mem 0x40000000-0x401fffff] could not be reserved
[    0.331806] pnp: PnP ACPI: found 5 devices
[    0.331806] pci 0000:00:02.0: assigning 3 device properties
[    0.331806] pci 0000:07:00.0: assigning 9 device properties
[    0.331806] pci 0000:08:00.0: assigning 3 device properties
[    0.331806] pci 0000:0f:00.0: assigning 3 device properties
[    0.331806] pci 0000:0e:00.0: assigning 2 device properties
[    0.331806] pci 0000:15:00.0: assigning 2 device properties
[    0.331806] pci 0000:00:1b.0: assigning 4 device properties
[    0.335638] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.335677] NET: Registered PF_INET protocol family
[    0.335841] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.338524] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[    0.338559] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.338782] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.338926] TCP: Hash tables configured (established 131072 bind 65536)
[    0.338956] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
[    0.338999] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
[    0.339068] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.339143] RPC: Registered named UNIX socket transport module.
[    0.339147] RPC: Registered udp transport module.
[    0.339151] RPC: Registered tcp transport module.
[    0.339154] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.339166] pci 0000:06:00.0: bridge window [io  0x1000-0x0fff] to [bus 07] add_size 1000
[    0.339174] pci 0000:06:00.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 07] add_size 200000 add_align 100000
[    0.339188] pci 0000:10:04.0: bridge window [io  0x1000-0x0fff] to [bus 16] add_size 1000
[    0.339194] pci 0000:10:04.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 16] add_size 200000 add_align 100000
[    0.339202] pci 0000:10:04.0: bridge window [mem 0x00100000-0x000fffff] to [bus 16] add_size 200000 add_align 100000
[    0.339210] pci 0000:10:05.0: bridge window [io  0x1000-0x0fff] to [bus 17] add_size 1000
[    0.339216] pci 0000:10:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 17] add_size 200000 add_align 100000
[    0.339224] pci 0000:10:05.0: bridge window [mem 0x00100000-0x000fffff] to [bus 17] add_size 200000 add_align 100000
[    0.339232] pci 0000:0f:00.0: bridge window [io  0x1000-0x0fff] to [bus 10-17] add_size 2000
[    0.339239] pci 0000:09:04.0: bridge window [io  0x1000-0x0fff] to [bus 0f-17] add_size 3000
[    0.339246] pci 0000:09:05.0: bridge window [io  0x1000-0x0fff] to [bus 18] add_size 1000
[    0.339252] pci 0000:09:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 18] add_size 200000 add_align 100000
[    0.339259] pci 0000:09:05.0: bridge window [mem 0x00100000-0x000fffff] to [bus 18] add_size 200000 add_align 100000
[    0.339268] pci 0000:08:00.0: bridge window [io  0x1000-0x0fff] to [bus 09-18] add_size 4000
[    0.339276] pci 0000:06:04.0: bridge window [io  0x1000-0x0fff] to [bus 39] add_size 1000
[    0.339282] pci 0000:06:04.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 39] add_size 200000 add_align 100000
[    0.339289] pci 0000:06:04.0: bridge window [mem 0x00100000-0x000fffff] to [bus 39] add_size 200000 add_align 100000
[    0.339297] pci 0000:06:06.0: bridge window [io  0x1000-0x0fff] to [bus 6b] add_size 1000
[    0.339303] pci 0000:06:06.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 6b] add_size 200000 add_align 100000
[    0.339311] pci 0000:06:06.0: bridge window [mem 0x00100000-0x000fffff] to [bus 6b] add_size 200000 add_align 100000
[    0.339323] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.339337] pci 0000:00:1c.1: PCI bridge to [bus 02]
[    0.339344] pci 0000:00:1c.1:   bridge window [mem 0xb0a00000-0xb0bfffff]
[    0.339350] pci 0000:00:1c.1:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.339360] pci 0000:00:1c.2: PCI bridge to [bus 03]
[    0.339366] pci 0000:00:1c.2:   bridge window [mem 0xb0400000-0xb08fffff]
[    0.339382] pci 0000:06:00.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339389] pci 0000:06:00.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339395] pci 0000:06:04.0: BAR 8: no space for [mem size 0x00200000]
[    0.339400] pci 0000:06:04.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339407] pci 0000:06:04.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339413] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339419] pci 0000:06:06.0: BAR 8: no space for [mem size 0x00200000]
[    0.339424] pci 0000:06:06.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339430] pci 0000:06:06.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339435] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339441] pci 0000:06:00.0: BAR 7: no space for [io  size 0x1000]
[    0.339446] pci 0000:06:00.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339451] pci 0000:06:04.0: BAR 7: no space for [io  size 0x1000]
[    0.339456] pci 0000:06:04.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339461] pci 0000:06:06.0: BAR 7: no space for [io  size 0x1000]
[    0.339465] pci 0000:06:06.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339471] pci 0000:06:06.0: BAR 8: no space for [mem size 0x00200000]
[    0.339476] pci 0000:06:06.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339482] pci 0000:06:06.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339488] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339494] pci 0000:06:06.0: BAR 7: no space for [io  size 0x1000]
[    0.339498] pci 0000:06:06.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339503] pci 0000:06:04.0: BAR 8: no space for [mem size 0x00200000]
[    0.339508] pci 0000:06:04.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339514] pci 0000:06:04.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339519] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339525] pci 0000:06:04.0: BAR 7: no space for [io  size 0x1000]
[    0.339530] pci 0000:06:04.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339536] pci 0000:06:00.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339542] pci 0000:06:00.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339548] pci 0000:06:00.0: BAR 7: no space for [io  size 0x1000]
[    0.339553] pci 0000:06:00.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339558] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.339566] pci 0000:06:00.0:   bridge window [mem 0xb0d00000-0xb0dfffff]
[    0.339580] pci 0000:08:00.0: BAR 7: no space for [io  size 0x4000]
[    0.339585] pci 0000:08:00.0: BAR 7: failed to assign [io  size 0x4000]
[    0.339590] pci 0000:08:00.0: BAR 7: no space for [io  size 0x4000]
[    0.339594] pci 0000:08:00.0: BAR 7: failed to assign [io  size 0x4000]
[    0.339601] pci 0000:09:05.0: BAR 8: no space for [mem size 0x00200000]
[    0.339606] pci 0000:09:05.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339612] pci 0000:09:05.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339618] pci 0000:09:05.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339624] pci 0000:09:04.0: BAR 7: no space for [io  size 0x3000]
[    0.339629] pci 0000:09:04.0: BAR 7: failed to assign [io  size 0x3000]
[    0.339633] pci 0000:09:05.0: BAR 7: no space for [io  size 0x1000]
[    0.339638] pci 0000:09:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339643] pci 0000:09:05.0: BAR 8: no space for [mem size 0x00200000]
[    0.339648] pci 0000:09:05.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339654] pci 0000:09:05.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339660] pci 0000:09:05.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339666] pci 0000:09:05.0: BAR 7: no space for [io  size 0x1000]
[    0.339670] pci 0000:09:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339675] pci 0000:09:04.0: BAR 7: no space for [io  size 0x3000]
[    0.339680] pci 0000:09:04.0: BAR 7: failed to assign [io  size 0x3000]
[    0.339686] pci 0000:0b:03.0: PCI bridge to [bus 0c]
[    0.339701] pci 0000:0b:03.0:   bridge window [mem 0xb1100000-0xb11fffff]
[    0.339727] pci 0000:0a:00.0: PCI bridge to [bus 0b-0c]
[    0.339742] pci 0000:0a:00.0:   bridge window [mem 0xb1100000-0xb11fffff]
[    0.339768] pci 0000:09:00.0: PCI bridge to [bus 0a-0c]
[    0.339780] pci 0000:09:00.0:   bridge window [mem 0xb1100000-0xb11fffff]
[    0.339801] pci 0000:09:01.0: PCI bridge to [bus 0d]
[    0.339818] pci 0000:09:01.0:   bridge window [mem 0xbd300000-0xbd3fffff 64bit pref]
[    0.339834] pci 0000:09:02.0: PCI bridge to [bus 0e]
[    0.339846] pci 0000:09:02.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.339867] pci 0000:0f:00.0: BAR 7: no space for [io  size 0x2000]
[    0.339872] pci 0000:0f:00.0: BAR 7: failed to assign [io  size 0x2000]
[    0.339877] pci 0000:0f:00.0: BAR 7: no space for [io  size 0x2000]
[    0.339882] pci 0000:0f:00.0: BAR 7: failed to assign [io  size 0x2000]
[    0.339889] pci 0000:10:04.0: BAR 8: no space for [mem size 0x00200000]
[    0.339894] pci 0000:10:04.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339900] pci 0000:10:04.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339906] pci 0000:10:04.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339912] pci 0000:10:05.0: BAR 8: no space for [mem size 0x00200000]
[    0.339917] pci 0000:10:05.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339923] pci 0000:10:05.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339928] pci 0000:10:05.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339934] pci 0000:10:04.0: BAR 7: no space for [io  size 0x1000]
[    0.339939] pci 0000:10:04.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339944] pci 0000:10:05.0: BAR 7: no space for [io  size 0x1000]
[    0.339948] pci 0000:10:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339954] pci 0000:10:05.0: BAR 8: no space for [mem size 0x00200000]
[    0.339959] pci 0000:10:05.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339965] pci 0000:10:05.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339971] pci 0000:10:05.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339977] pci 0000:10:05.0: BAR 7: no space for [io  size 0x1000]
[    0.339981] pci 0000:10:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339986] pci 0000:10:04.0: BAR 8: no space for [mem size 0x00200000]
[    0.339991] pci 0000:10:04.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339997] pci 0000:10:04.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.340002] pci 0000:10:04.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.340008] pci 0000:10:04.0: BAR 7: no space for [io  size 0x1000]
[    0.340013] pci 0000:10:04.0: BAR 7: failed to assign [io  size 0x1000]
[    0.340019] pci 0000:12:03.0: PCI bridge to [bus 13]
[    0.340038] pci 0000:12:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.340072] pci 0000:11:00.0: PCI bridge to [bus 12-13]
[    0.340091] pci 0000:11:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.340124] pci 0000:10:00.0: PCI bridge to [bus 11-13]
[    0.340140] pci 0000:10:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.340169] pci 0000:10:01.0: PCI bridge to [bus 14]
[    0.340193] pci 0000:10:01.0:   bridge window [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.340214] pci 0000:10:02.0: PCI bridge to [bus 15]
[    0.340230] pci 0000:10:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.340258] pci 0000:10:04.0: PCI bridge to [bus 16]
[    0.340297] pci 0000:10:05.0: PCI bridge to [bus 17]
[    0.340336] pci 0000:0f:00.0: PCI bridge to [bus 10-17]
[    0.340352] pci 0000:0f:00.0:   bridge window [mem 0xb0e00000-0xb0ffffff]
[    0.340365] pci 0000:0f:00.0:   bridge window [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.340386] pci 0000:09:04.0: PCI bridge to [bus 0f-17]
[    0.340398] pci 0000:09:04.0:   bridge window [mem 0xb0e00000-0xb0ffffff]
[    0.340408] pci 0000:09:04.0:   bridge window [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.340424] pci 0000:09:05.0: PCI bridge to [bus 18]
[    0.340452] pci 0000:08:00.0: PCI bridge to [bus 09-18]
[    0.340464] pci 0000:08:00.0:   bridge window [mem 0xb0e00000-0xb11fffff]
[    0.340474] pci 0000:08:00.0:   bridge window [mem 0xbd200000-0xbd3fffff 64bit pref]
[    0.340490] pci 0000:06:03.0: PCI bridge to [bus 08-38]
[    0.340496] pci 0000:06:03.0:   bridge window [io  0x3000-0x3fff]
[    0.340504] pci 0000:06:03.0:   bridge window [mem 0xb0e00000-0xb51fffff]
[    0.340512] pci 0000:06:03.0:   bridge window [mem 0xbd200000-0xc13fffff 64bit pref]
[    0.340523] pci 0000:06:04.0: PCI bridge to [bus 39]
[    0.340539] pci 0000:06:05.0: PCI bridge to [bus 3a-6a]
[    0.340545] pci 0000:06:05.0:   bridge window [io  0x4000-0x4fff]
[    0.340553] pci 0000:06:05.0:   bridge window [mem 0xb5200000-0xb91fffff]
[    0.340561] pci 0000:06:05.0:   bridge window [mem 0xc1400000-0xc53fffff 64bit pref]
[    0.340572] pci 0000:06:06.0: PCI bridge to [bus 6b]
[    0.340588] pci 0000:05:00.0: PCI bridge to [bus 06-6b]
[    0.340594] pci 0000:05:00.0:   bridge window [io  0x3000-0x4fff]
[    0.340602] pci 0000:05:00.0:   bridge window [mem 0xb0d00000-0xb91fffff]
[    0.340610] pci 0000:05:00.0:   bridge window [mem 0xbd200000-0xc53fffff 64bit pref]
[    0.340621] pci 0000:00:1c.4: PCI bridge to [bus 05-6b]
[    0.340626] pci 0000:00:1c.4:   bridge window [io  0x3000-0x5fff]
[    0.340633] pci 0000:00:1c.4:   bridge window [mem 0xb0d00000-0xbd1fffff]
[    0.340639] pci 0000:00:1c.4:   bridge window [mem 0xbd200000-0xc93fffff 64bit pref]
[    0.340649] pci 0000:00:1c.5: PCI bridge to [bus 04]
[    0.340655] pci 0000:00:1c.5:   bridge window [mem 0xb0900000-0xb09fffff]
[    0.340666] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.340671] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.340676] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000fffff window]
[    0.340681] pci_bus 0000:00: resource 7 [mem 0x8fa00000-0xfeafffff window]
[    0.340687] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff window]
[    0.340692] pci_bus 0000:02: resource 1 [mem 0xb0a00000-0xb0bfffff]
[    0.340697] pci_bus 0000:02: resource 2 [mem 0x90000000-0x9fffffff 64bit pref]
[    0.340703] pci_bus 0000:03: resource 1 [mem 0xb0400000-0xb08fffff]
[    0.340708] pci_bus 0000:05: resource 0 [io  0x3000-0x5fff]
[    0.340713] pci_bus 0000:05: resource 1 [mem 0xb0d00000-0xbd1fffff]
[    0.340718] pci_bus 0000:05: resource 2 [mem 0xbd200000-0xc93fffff 64bit pref]
[    0.340724] pci_bus 0000:06: resource 0 [io  0x3000-0x4fff]
[    0.340728] pci_bus 0000:06: resource 1 [mem 0xb0d00000-0xb91fffff]
[    0.340733] pci_bus 0000:06: resource 2 [mem 0xbd200000-0xc53fffff 64bit pref]
[    0.340739] pci_bus 0000:07: resource 1 [mem 0xb0d00000-0xb0dfffff]
[    0.340744] pci_bus 0000:08: resource 0 [io  0x3000-0x3fff]
[    0.340748] pci_bus 0000:08: resource 1 [mem 0xb0e00000-0xb51fffff]
[    0.340753] pci_bus 0000:08: resource 2 [mem 0xbd200000-0xc13fffff 64bit pref]
[    0.340759] pci_bus 0000:09: resource 1 [mem 0xb0e00000-0xb11fffff]
[    0.340764] pci_bus 0000:09: resource 2 [mem 0xbd200000-0xbd3fffff 64bit pref]
[    0.340769] pci_bus 0000:0a: resource 1 [mem 0xb1100000-0xb11fffff]
[    0.340774] pci_bus 0000:0b: resource 1 [mem 0xb1100000-0xb11fffff]
[    0.340779] pci_bus 0000:0c: resource 1 [mem 0xb1100000-0xb11fffff]
[    0.340784] pci_bus 0000:0d: resource 2 [mem 0xbd300000-0xbd3fffff 64bit pref]
[    0.340790] pci_bus 0000:0e: resource 1 [mem 0xb1000000-0xb10fffff]
[    0.340795] pci_bus 0000:0f: resource 1 [mem 0xb0e00000-0xb0ffffff]
[    0.340800] pci_bus 0000:0f: resource 2 [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.340806] pci_bus 0000:10: resource 1 [mem 0xb0e00000-0xb0ffffff]
[    0.340811] pci_bus 0000:10: resource 2 [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.340817] pci_bus 0000:11: resource 1 [mem 0xb0f00000-0xb0ffffff]
[    0.340822] pci_bus 0000:12: resource 1 [mem 0xb0f00000-0xb0ffffff]
[    0.340827] pci_bus 0000:13: resource 1 [mem 0xb0f00000-0xb0ffffff]
[    0.340832] pci_bus 0000:14: resource 2 [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.340838] pci_bus 0000:15: resource 1 [mem 0xb0e00000-0xb0efffff]
[    0.340843] pci_bus 0000:3a: resource 0 [io  0x4000-0x4fff]
[    0.340848] pci_bus 0000:3a: resource 1 [mem 0xb5200000-0xb91fffff]
[    0.340853] pci_bus 0000:3a: resource 2 [mem 0xc1400000-0xc53fffff 64bit pref]
[    0.340859] pci_bus 0000:04: resource 1 [mem 0xb0900000-0xb09fffff]
[    0.341255] pci 0000:05:00.0: CLS mismatch (256 != 128), using 64 bytes
[    0.341283] pci 0000:0c:00.0: MSI is not implemented on this device, disabling it
[    0.341288] pci 0000:0c:00.0: PME# is unreliable, disabling it
[    0.341674] pci 0000:0c:00.1: MSI is not implemented on this device, disabling it
[    0.341680] pci 0000:0c:00.1: PME# is unreliable, disabling it
[    0.341786] pci 0000:0c:00.2: MSI is not implemented on this device, disabling it
[    0.341792] pci 0000:0c:00.2: PME# is unreliable, disabling it
[    0.341857] pci 0000:0c:00.2: EHCI: unrecognized capability 00
[    0.341914] pci 0000:13:00.0: MSI is not implemented on this device, disabling it
[    0.341920] pci 0000:13:00.0: PME# is unreliable, disabling it
[    0.342240] pci 0000:13:00.1: MSI is not implemented on this device, disabling it
[    0.342246] pci 0000:13:00.1: PME# is unreliable, disabling it
[    0.342370] pci 0000:13:00.2: MSI is not implemented on this device, disabling it
[    0.342375] pci 0000:13:00.2: PME# is unreliable, disabling it
[    0.342452] pci 0000:13:00.2: EHCI: unrecognized capability 00
[    0.342533] DMAR: No ATSR found
[    0.342536] DMAR: No SATC found
[    0.342540] DMAR: IOMMU feature pgsel_inv inconsistent
[    0.342542] DMAR: IOMMU feature sc_support inconsistent
[    0.342546] DMAR: IOMMU feature pass_through inconsistent
[    0.342548] Unpacking initramfs...
[    0.342555] DMAR: dmar0: Using Queued invalidation
[    0.342564] DMAR: dmar1: Using Queued invalidation
[    0.438728] pci 0000:00:00.0: Adding to iommu group 0
[    0.438760] pci 0000:00:02.0: Adding to iommu group 1
[    0.438781] pci 0000:00:03.0: Adding to iommu group 2
[    0.438802] pci 0000:00:14.0: Adding to iommu group 3
[    0.438832] pci 0000:00:16.0: Adding to iommu group 4
[    0.438852] pci 0000:00:1b.0: Adding to iommu group 5
[    0.438872] pci 0000:00:1c.0: Adding to iommu group 6
[    0.438892] pci 0000:00:1c.1: Adding to iommu group 7
[    0.438912] pci 0000:00:1c.2: Adding to iommu group 8
[    0.438931] pci 0000:00:1c.4: Adding to iommu group 9
[    0.438951] pci 0000:00:1c.5: Adding to iommu group 10
[    0.438986] pci 0000:00:1f.0: Adding to iommu group 11
[    0.439007] pci 0000:00:1f.3: Adding to iommu group 11
[    0.439026] pci 0000:02:00.0: Adding to iommu group 12
[    0.439045] pci 0000:03:00.0: Adding to iommu group 13
[    0.439064] pci 0000:05:00.0: Adding to iommu group 14
[    0.439085] pci 0000:06:00.0: Adding to iommu group 15
[    0.439104] pci 0000:06:03.0: Adding to iommu group 16
[    0.439125] pci 0000:06:04.0: Adding to iommu group 17
[    0.439145] pci 0000:06:05.0: Adding to iommu group 18
[    0.439165] pci 0000:06:06.0: Adding to iommu group 19
[    0.439174] pci 0000:07:00.0: Adding to iommu group 15
[    0.439182] pci 0000:08:00.0: Adding to iommu group 16
[    0.439191] pci 0000:09:00.0: Adding to iommu group 16
[    0.439200] pci 0000:09:01.0: Adding to iommu group 16
[    0.439210] pci 0000:09:02.0: Adding to iommu group 16
[    0.439218] pci 0000:09:04.0: Adding to iommu group 16
[    0.439227] pci 0000:09:05.0: Adding to iommu group 16
[    0.439236] pci 0000:0a:00.0: Adding to iommu group 16
[    0.439246] pci 0000:0b:03.0: Adding to iommu group 16
[    0.439254] pci 0000:0c:00.0: Adding to iommu group 16
[    0.439262] pci 0000:0c:00.1: Adding to iommu group 16
[    0.439270] pci 0000:0c:00.2: Adding to iommu group 16
[    0.439279] pci 0000:0d:00.0: Adding to iommu group 16
[    0.439287] pci 0000:0e:00.0: Adding to iommu group 16
[    0.439296] pci 0000:0f:00.0: Adding to iommu group 16
[    0.439305] pci 0000:10:00.0: Adding to iommu group 16
[    0.439313] pci 0000:10:01.0: Adding to iommu group 16
[    0.439322] pci 0000:10:02.0: Adding to iommu group 16
[    0.439330] pci 0000:10:04.0: Adding to iommu group 16
[    0.439339] pci 0000:10:05.0: Adding to iommu group 16
[    0.439347] pci 0000:11:00.0: Adding to iommu group 16
[    0.439356] pci 0000:12:03.0: Adding to iommu group 16
[    0.439365] pci 0000:13:00.0: Adding to iommu group 16
[    0.439374] pci 0000:13:00.1: Adding to iommu group 16
[    0.439382] pci 0000:13:00.2: Adding to iommu group 16
[    0.439392] pci 0000:14:00.0: Adding to iommu group 16
[    0.439400] pci 0000:15:00.0: Adding to iommu group 16
[    0.439419] pci 0000:04:00.0: Adding to iommu group 20
[    0.441516] DMAR: Intel(R) Virtualization Technology for Directed I/O
[    0.441521] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.441525] software IO TLB: mapped [mem 0x000000006c76d000-0x000000007076d000] (64MB)
[    0.441536] ACPI: bus type thunderbolt registered
[    0.441709] thunderbolt 0000:07:00.0: total paths: 12
[    0.441972] thunderbolt 0000:07:00.0: allocating TX ring 0 of size 10
[    0.442009] thunderbolt 0000:07:00.0: allocating RX ring 0 of size 10
[    0.442030] thunderbolt 0000:07:00.0: control channel created
[    0.442034] thunderbolt 0000:07:00.0: ICM not supported on this controller
[    0.442046] thunderbolt 0000:07:00.0: freeing RX ring 0
[    0.442055] thunderbolt 0000:07:00.0: freeing TX ring 0
[    0.442069] thunderbolt 0000:07:00.0: allocating TX ring 0 of size 10
[    0.442079] thunderbolt 0000:07:00.0: allocating RX ring 0 of size 10
[    0.442090] thunderbolt 0000:07:00.0: control channel created
[    0.442093] thunderbolt 0000:07:00.0: using software connection manager
[    0.442096] thunderbolt 0000:07:00.0: device link creation from 0000:06:00.0 failed
[    0.442144] thunderbolt 0000:07:00.0: created link from 0000:06:03.0
[    0.442160] thunderbolt 0000:07:00.0: created link from 0000:06:04.0
[    0.442176] thunderbolt 0000:07:00.0: created link from 0000:06:05.0
[    0.442192] thunderbolt 0000:07:00.0: created link from 0000:06:06.0
[    0.442331] thunderbolt 0000:07:00.0: NHI initialized, starting thunderbolt
[    0.442333] thunderbolt 0000:07:00.0: control channel starting...
[    0.442335] thunderbolt 0000:07:00.0: starting TX ring 0
[    0.442343] thunderbolt 0000:07:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[    0.442347] thunderbolt 0000:07:00.0: starting RX ring 0
[    0.442355] thunderbolt 0000:07:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[    0.442359] thunderbolt 0000:07:00.0: security level set to user
[    0.442522] thunderbolt 0000:07:00.0: current switch config:
[    0.442525] thunderbolt 0000:07:00.0:  Thunderbolt 2 Switch: 8086:156d (Revision: 0, TB Version: 2)
[    0.442529] thunderbolt 0000:07:00.0:   Max Port Number: 12
[    0.442531] thunderbolt 0000:07:00.0:   Config:
[    0.442533] thunderbolt 0000:07:00.0:    Upstream Port Number: 5 Depth: 0 Route String: 0x0 Enabled: 1, PlugEventsDelay: 255ms
[    0.442536] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[    0.444230] Freeing initrd memory: 7308K
[    0.555337] thunderbolt 0000:07:00.0: initializing Switch at 0x0 (depth: 0, up port: 5)
[    0.555977] thunderbolt 0000:07:00.0: 0: DROM version: 1
[    0.557382] thunderbolt 0000:07:00.0: 0: uid: 0x1000f0811ee60
[    0.559302] thunderbolt 0000:07:00.0:  Port 1: 8086:156d (Revision: 0, TB Version: 1, Type: Port (0x1))
[    0.559306] thunderbolt 0000:07:00.0:   Max hop id (in/out): 15/15
[    0.559307] thunderbolt 0000:07:00.0:   Max counters: 16
[    0.559308] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.559310] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.561221] thunderbolt 0000:07:00.0:  Port 2: 8086:156d (Revision: 0, TB Version: 1, Type: Port (0x1))
[    0.561224] thunderbolt 0000:07:00.0:   Max hop id (in/out): 15/15
[    0.561225] thunderbolt 0000:07:00.0:   Max counters: 16
[    0.561226] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.561227] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.563142] thunderbolt 0000:07:00.0:  Port 3: 8086:156d (Revision: 0, TB Version: 1, Type: Port (0x1))
[    0.563144] thunderbolt 0000:07:00.0:   Max hop id (in/out): 15/15
[    0.563145] thunderbolt 0000:07:00.0:   Max counters: 16
[    0.563146] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.563147] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.565062] thunderbolt 0000:07:00.0:  Port 4: 8086:156d (Revision: 0, TB Version: 1, Type: Port (0x1))
[    0.565064] thunderbolt 0000:07:00.0:   Max hop id (in/out): 15/15
[    0.565066] thunderbolt 0000:07:00.0:   Max counters: 16
[    0.565067] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.565068] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.565830] thunderbolt 0000:07:00.0:  Port 5: 8086:156d (Revision: 0, TB Version: 1, Type: NHI (0x2))
[    0.565832] thunderbolt 0000:07:00.0:   Max hop id (in/out): 11/11
[    0.565833] thunderbolt 0000:07:00.0:   Max counters: 16
[    0.565834] thunderbolt 0000:07:00.0:   NFC Credits: 0xf00000
[    0.565835] thunderbolt 0000:07:00.0:   Credits (total/control): 15/0
[    0.566086] thunderbolt 0000:07:00.0:  Port 6: 8086:156d (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[    0.566088] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.566089] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.566090] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.566091] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.566343] random: fast init done
[    0.566343] thunderbolt 0000:07:00.0:  Port 7: 8086:156d (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[    0.566348] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.566350] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.566351] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.566352] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.566598] thunderbolt 0000:07:00.0:  Port 8: 8086:156d (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[    0.566600] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.566601] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.566602] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.566603] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.566854] thunderbolt 0000:07:00.0:  Port 9: 8086:156d (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[    0.566856] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.566857] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.566858] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.566859] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.566860] thunderbolt 0000:07:00.0: 0:a: disabled by eeprom
[    0.567110] thunderbolt 0000:07:00.0:  Port 11: 8086:156d (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0101))
[    0.567112] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    0.567113] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.567114] thunderbolt 0000:07:00.0:   NFC Credits: 0xf0000b
[    0.567115] thunderbolt 0000:07:00.0:   Credits (total/control): 15/0
[    0.567366] thunderbolt 0000:07:00.0:  Port 12: 8086:156d (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0101))
[    0.567368] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    0.567369] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.567370] thunderbolt 0000:07:00.0:   NFC Credits: 0xf00000
[    0.567371] thunderbolt 0000:07:00.0:   Credits (total/control): 15/0
[    0.572358] thunderbolt 0000:07:00.0: 0: TMU: current mode: HiFi
[    0.572488] thunderbolt 0000:07:00.0: 0:1: is connected, link is up (state: 2)
[    0.572741] thunderbolt 0000:07:00.0: current switch config:
[    0.572742] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[    0.572744] thunderbolt 0000:07:00.0:   Max Port Number: 13
[    0.572746] thunderbolt 0000:07:00.0:   Config:
[    0.572746] thunderbolt 0000:07:00.0:    Upstream Port Number: 1 Depth: 1 Route String: 0x1 Enabled: 1, PlugEventsDelay: 255ms
[    0.572749] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[    0.577349] thunderbolt 0000:07:00.0: initializing Switch at 0x1 (depth: 1, up port: 1)
[    0.594755] thunderbolt 0000:07:00.0: 1: reading drom (length: 0x97)
[    1.088413] thunderbolt 0000:07:00.0: 1: DROM version: 1
[    1.089437] thunderbolt 0000:07:00.0: 1: uid: 0x1000100189170
[    1.092380] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.092383] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.092384] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.092385] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.092386] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.095323] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.095325] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.095326] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.095327] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c0000e
[    1.095328] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.098267] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.098269] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.098270] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.098271] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.098272] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.101211] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.101213] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.101214] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.101215] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.101216] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.101217] thunderbolt 0000:07:00.0: 1:5: disabled by eeprom
[    1.101218] thunderbolt 0000:07:00.0: 1:6: disabled by eeprom
[    1.102107] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.102109] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.102110] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.102111] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.102112] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.103002] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.103005] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.103006] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.103007] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.103008] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.103009] thunderbolt 0000:07:00.0: 1:9: disabled by eeprom
[    1.103899] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[    1.103901] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.103902] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.103903] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.103904] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.105051] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[    1.105054] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    1.105055] thunderbolt 0000:07:00.0:   Max counters: 2
[    1.105056] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.105057] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.105058] thunderbolt 0000:07:00.0: 1:c: disabled by eeprom
[    1.105059] thunderbolt 0000:07:00.0: 1:d: disabled by eeprom
[    1.122959] thunderbolt 0000:07:00.0: 1: TMU: current mode: bi-directional, HiFi
[    1.122975] thunderbolt 0-1: new device found, vendor=0x1 device=0x8002
[    1.122979] thunderbolt 0-1: Apple, Inc. Thunderbolt Display
[    1.123471] thunderbolt 0000:07:00.0: 1:3: is connected, link is up (state: 2)
[    1.123727] thunderbolt 0000:07:00.0: current switch config:
[    1.123728] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[    1.123729] thunderbolt 0000:07:00.0:   Max Port Number: 13
[    1.123731] thunderbolt 0000:07:00.0:   Config:
[    1.123731] thunderbolt 0000:07:00.0:    Upstream Port Number: 3 Depth: 2 Route String: 0x301 Enabled: 1, PlugEventsDelay: 255ms
[    1.123733] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[    1.128335] thunderbolt 0000:07:00.0: initializing Switch at 0x301 (depth: 2, up port: 3)
[    1.145741] thunderbolt 0000:07:00.0: 301: reading drom (length: 0x97)
[    1.621354] random: crng init done
[    1.639398] thunderbolt 0000:07:00.0: 301: DROM version: 1
[    1.640422] thunderbolt 0000:07:00.0: 301: uid: 0x100010102a740
[    1.643365] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.643367] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.643369] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.643370] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.643371] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.646309] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.646311] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.646312] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.646313] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.646314] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.649252] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.649255] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.649256] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.649257] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.649258] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.652196] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.652198] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.652199] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.652200] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.652201] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.652202] thunderbolt 0000:07:00.0: 301:5: disabled by eeprom
[    1.652204] thunderbolt 0000:07:00.0: 301:6: disabled by eeprom
[    1.653092] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.653094] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.653095] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.653096] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.653097] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.653988] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.653990] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.653991] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.653992] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.653993] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.653994] thunderbolt 0000:07:00.0: 301:9: disabled by eeprom
[    1.654884] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[    1.654887] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.654888] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.654889] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.654890] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.656036] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[    1.656038] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    1.656039] thunderbolt 0000:07:00.0:   Max counters: 2
[    1.656040] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.656041] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.656042] thunderbolt 0000:07:00.0: 301:c: disabled by eeprom
[    1.656043] thunderbolt 0000:07:00.0: 301:d: disabled by eeprom
[    1.674373] thunderbolt 0000:07:00.0: 301: TMU: current mode: bi-directional, HiFi
[    1.674389] thunderbolt 0-301: new device found, vendor=0x1 device=0x8002
[    1.674392] thunderbolt 0-301: Apple, Inc. Thunderbolt Display
[    1.674503] thunderbolt 0000:07:00.0: 301:1: is unplugged (state: 7)
[    1.674757] thunderbolt 0000:07:00.0: 301:b: DP adapter HPD set, queuing hotplug
[    1.675141] thunderbolt 0000:07:00.0: 0:3: is unplugged (state: 7)
[    1.676677] thunderbolt 0000:07:00.0: 0:6 <-> 1:a (PCI): discovered
[    1.679236] thunderbolt 0000:07:00.0: 0:b <-> 1:b (DP): discovered
[    1.680900] thunderbolt 0000:07:00.0: 1:7 <-> 301:a (PCI): discovered
[    1.681286] thunderbolt 0000:07:00.0: 0:b: DP IN resource available
[    1.681287] thunderbolt 0000:07:00.0: 0:c: DP IN resource available
[    1.681415] thunderbolt 0000:07:00.0: 301:b: DP OUT resource available
[    1.681420] thunderbolt 0000:07:00.0: looking for DP IN <-> DP OUT pairs:
[    1.681428] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
[    1.681433] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[    1.681435] RAPL PMU: hw unit of domain package 2^-14 Joules
[    1.681437] RAPL PMU: hw unit of domain dram 2^-14 Joules
[    1.681439] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[    1.681544] thunderbolt 0000:07:00.0: 0:b: in use
[    1.681672] thunderbolt 0000:07:00.0: 0:c: DP IN available
[    1.681800] thunderbolt 0000:07:00.0: 301:b: DP OUT available
[    1.681803] thunderbolt 0000:07:00.0: 0: allocated DP resource for port 12
[    1.681806] thunderbolt 0000:07:00.0: 301:b: calculating available bandwidth
[    1.681935] thunderbolt 0000:07:00.0: 0:1: link total bandwidth 9000 Mb/s
[    1.681940] thunderbolt 0000:07:00.0: 1:1: link total bandwidth 9000 Mb/s
[    1.682056] thunderbolt 0000:07:00.0: 1:3: link total bandwidth 9000 Mb/s
[    1.682060] thunderbolt 0000:07:00.0: 301:3: link total bandwidth 9000 Mb/s
[    1.682063] thunderbolt 0000:07:00.0: available bandwidth for new DP tunnel 9000/9000 Mb/s
[    1.682072] thunderbolt 0000:07:00.0: 0:c <-> 301:b (DP): activating
[    1.682076] thunderbolt 0000:07:00.0: activating Video path from 0:12 to 301:11
[    1.682080] thunderbolt 0000:07:00.0: 301:4: adding 12 NFC credits to 0
[    1.682182] thunderbolt 0000:07:00.0: 1:2: adding 12 NFC credits to 14
[    1.682272] Initialise system trusted keyrings
[    1.682297] workingset: timestamp_bits=62 max_order=22 bucket_order=0
[    1.682310] thunderbolt 0000:07:00.0: 0:c: adding 12 NFC credits to 0
[    1.682565] thunderbolt 0000:07:00.0: 301:4: Writing hop 2
[    1.682568] thunderbolt 0000:07:00.0: 301:4:  In HopID: 8 => Out port: 11 Out HopID: 9
[    1.682571] thunderbolt 0000:07:00.0: 301:4:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.682574] thunderbolt 0000:07:00.0: 301:4:    Counter enabled: 0 Counter index: 2047
[    1.682577] thunderbolt 0000:07:00.0: 301:4:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.682581] thunderbolt 0000:07:00.0: 301:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.682820] thunderbolt 0000:07:00.0: 1:2: Writing hop 1
[    1.682823] thunderbolt 0000:07:00.0: 1:2:  In HopID: 10 => Out port: 4 Out HopID: 8
[    1.682826] thunderbolt 0000:07:00.0: 1:2:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.682829] thunderbolt 0000:07:00.0: 1:2:    Counter enabled: 0 Counter index: 2047
[    1.682831] thunderbolt 0000:07:00.0: 1:2:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.682834] thunderbolt 0000:07:00.0: 1:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.683077] thunderbolt 0000:07:00.0: 0:c: Writing hop 0
[    1.683079] thunderbolt 0000:07:00.0: 0:c:  In HopID: 9 => Out port: 2 Out HopID: 10
[    1.683082] thunderbolt 0000:07:00.0: 0:c:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.683085] thunderbolt 0000:07:00.0: 0:c:    Counter enabled: 0 Counter index: 2047
[    1.683088] thunderbolt 0000:07:00.0: 0:c:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.683090] thunderbolt 0000:07:00.0: 0:c:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.683206] thunderbolt 0000:07:00.0: path activation complete
[    1.683208] thunderbolt 0000:07:00.0: activating AUX TX path from 0:12 to 301:11
[    1.683333] thunderbolt 0000:07:00.0: 301:4: Writing hop 2
[    1.683336] thunderbolt 0000:07:00.0: 301:4:  In HopID: 9 => Out port: 11 Out HopID: 8
[    1.683339] thunderbolt 0000:07:00.0: 301:4:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.683342] thunderbolt 0000:07:00.0: 301:4:    Counter enabled: 0 Counter index: 2047
[    1.683345] thunderbolt 0000:07:00.0: 301:4:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.683348] thunderbolt 0000:07:00.0: 301:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.683496] NFS: Registering the id_resolver key type
[    1.683502] Key type id_resolver registered
[    1.683504] Key type id_legacy registered
[    1.683518] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    1.683564] Key type asymmetric registered
[    1.683570] Asymmetric key parser 'x509' registered
[    1.683590] thunderbolt 0000:07:00.0: 1:2: Writing hop 1
[    1.683593] thunderbolt 0000:07:00.0: 1:2:  In HopID: 11 => Out port: 4 Out HopID: 9
[    1.683596] thunderbolt 0000:07:00.0: 1:2:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.683599] thunderbolt 0000:07:00.0: 1:2:    Counter enabled: 0 Counter index: 2047
[    1.683602] thunderbolt 0000:07:00.0: 1:2:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.683605] thunderbolt 0000:07:00.0: 1:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.683844] thunderbolt 0000:07:00.0: 0:c: Writing hop 0
[    1.683846] thunderbolt 0000:07:00.0: 0:c:  In HopID: 8 => Out port: 2 Out HopID: 11
[    1.683849] thunderbolt 0000:07:00.0: 0:c:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.683852] thunderbolt 0000:07:00.0: 0:c:    Counter enabled: 0 Counter index: 2047
[    1.683854] thunderbolt 0000:07:00.0: 0:c:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.683857] thunderbolt 0000:07:00.0: 0:c:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.683972] thunderbolt 0000:07:00.0: path activation complete
[    1.683974] thunderbolt 0000:07:00.0: activating AUX RX path from 301:11 to 0:12
[    1.684828] pcieport 0000:06:00.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.684856] thunderbolt 0000:07:00.0: 0:2: Writing hop 2
[    1.684859] thunderbolt 0000:07:00.0: 0:2:  In HopID: 9 => Out port: 12 Out HopID: 8
[    1.684862] thunderbolt 0000:07:00.0: 0:2:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.684865] thunderbolt 0000:07:00.0: 0:2:    Counter enabled: 0 Counter index: 2047
[    1.684868] thunderbolt 0000:07:00.0: 0:2:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.684869] thunderbolt 0000:07:00.0: 0:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.685014] thunderbolt 0000:07:00.0: 1:4: Writing hop 1
[    1.685016] thunderbolt 0000:07:00.0: 1:4:  In HopID: 8 => Out port: 2 Out HopID: 9
[    1.685017] thunderbolt 0000:07:00.0: 1:4:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.685019] thunderbolt 0000:07:00.0: 1:4:    Counter enabled: 0 Counter index: 2047
[    1.685020] thunderbolt 0000:07:00.0: 1:4:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.685022] thunderbolt 0000:07:00.0: 1:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.685070] pcieport 0000:06:03.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.685268] thunderbolt 0000:07:00.0: 301:b: Writing hop 0
[    1.685271] thunderbolt 0000:07:00.0: 301:b:  In HopID: 8 => Out port: 4 Out HopID: 8
[    1.685272] thunderbolt 0000:07:00.0: 301:b:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.685274] thunderbolt 0000:07:00.0: 301:b:    Counter enabled: 0 Counter index: 2047
[    1.685275] thunderbolt 0000:07:00.0: 301:b:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.685277] thunderbolt 0000:07:00.0: 301:b:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.685343] pcieport 0000:06:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.685399] thunderbolt 0000:07:00.0: path activation complete
[    1.685492] pcieport 0000:06:05.0: enabling device (0000 -> 0003)
[    1.685603] pcieport 0000:06:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.685875] pcieport 0000:06:06.0: pciehp: Slot #6 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.688396] pcieport 0000:09:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.688723] pcieport 0000:09:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.692060] pcieport 0000:10:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.692477] pcieport 0000:10:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.693419] ACPI: AC: AC Adapter [ADP1] (off-line)
[    1.693485] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    1.693520] ACPI: button: Lid Switch [LID0]
[    1.693555] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    1.693605] ACPI: button: Power Button [PWRB]
[    1.693643] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
[    1.693662] ACPI: button: Sleep Button [SLPB]
[    1.693698] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    1.693727] ACPI: button: Power Button [PWRF]
[    1.694025] smbus_hc ACPI0001:00: SBS HC: offset = 0x20, query_bit = 0x10
[    2.084427] ACPI: Smart Battery System [SBS0]: Battery Slot [BAT0] (battery present)
[    2.094060] hpet_acpi_add: no address or irqs in _CRS
[    2.095215] loop: module loaded
[    2.095456] nvme nvme0: pci function 0000:04:00.0
[    2.095778] tun: Universal TUN/TAP device driver, 1.6
[    2.095854] mousedev: PS/2 mouse device common for all mice
[    2.095872] rtc_cmos 00:02: RTC can wake from S4
[    2.096122] rtc_cmos 00:02: registered as rtc0
[    2.096159] rtc_cmos 00:02: setting system clock to 2022-03-29T11:59:31 UTC (1648555171)
[    2.096164] rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram
[    2.096349] device-mapper: ioctl: 4.46.0-ioctl (2022-02-22) initialised: dm-devel@redhat.com
[    2.096362] intel_pstate: Intel P-state driver initializing
[    2.096463] efifb: probing for efifb
[    2.096475] efifb: framebuffer at 0xa0000000, using 16000k, total 16000k
[    2.096477] efifb: mode is 2560x1600x32, linelength=10240, pages=1
[    2.096480] efifb: scrolling: redraw
[    2.096481] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    2.099678] Console: switching to colour frame buffer device 320x100
[    2.102699] fb0: EFI VGA frame buffer device
[    2.102766] NET: Registered PF_PACKET protocol family
[    2.102785] Key type dns_resolver registered
[    2.102951] microcode: sig=0x40651, pf=0x40, revision=0x26
[    2.102994] microcode: Microcode Update Driver: v2.2.
[    2.102998] IPI shorthand broadcast: enabled
[    2.103016] AVX2 version of gcm_enc/dec engaged.
[    2.103053] AES CTR mode by8 optimization enabled
[    2.103173] sched_clock: Marking stable (2101571718, 1596895)->(2126440420, -23271807)
[    2.103233] registered taskstats version 1
[    2.103240] Loading compiled-in X.509 certificates
[    2.151368] nvme0: Identify(0x6), Invalid Field in Command (sct 0x0 / sc 0x2) 
[    2.169559] nvme nvme0: 4/0/0 default/read/poll queues
[    2.174555]  nvme0n1: p1 p2 p3 p4 p5 p6 p7
[    2.342092] Freeing unused kernel image (initmem) memory: 996K
[    2.393654] Write protecting the kernel read-only data: 16384k
[    2.394001] Freeing unused kernel image (text/rodata gap) memory: 2036K
[    2.394174] Freeing unused kernel image (rodata/data gap) memory: 1356K
[    2.394191] Run /init as init process
[    2.394198]   with arguments:
[    2.394200]     /init
[    2.394201]   with environment:
[    2.394202]     HOME=/
[    2.394203]     TERM=linux
[    2.447245] udevd[942]: starting version 3.2.9
[    2.447977] udevd[943]: starting eudev-3.2.9
[    2.472473] ACPI: bus type USB registered
[    2.472620] usbcore: registered new interface driver usbfs
[    2.472649] usbcore: registered new interface driver hub
[    2.472678] usbcore: registered new device driver usb
[    2.478504] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    2.478618] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    2.480102] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x000000000004b810
[    2.480285] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
[    2.480308] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.480326] usb usb1: Product: xHCI Host Controller
[    2.480337] usb usb1: Manufacturer: Linux 5.17.0+ xhci-hcd
[    2.480349] usb usb1: SerialNumber: 0000:00:14.0
[    2.480480] hub 1-0:1.0: USB hub found
[    2.480503] hub 1-0:1.0: 9 ports detected
[    2.481218] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    2.481237] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    2.481275] xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
[    2.481370] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.17
[    2.481396] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.481416] usb usb2: Product: xHCI Host Controller
[    2.481430] usb usb2: Manufacturer: Linux 5.17.0+ xhci-hcd
[    2.481446] usb usb2: SerialNumber: 0000:00:14.0
[    2.481614] hub 2-0:1.0: USB hub found
[    2.481745] hub 2-0:1.0: 4 ports detected
[    2.482996] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[    2.483195] i2c i2c-0: 2/2 memory slots populated (from DMI)
[    2.545303] applesmc: key=571 fan=1 temp=32 index=31 acc=0 lux=2 kbd=1
[    2.545465] applesmc applesmc.768: hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[    2.553629] tg3 0000:0d:00.0 eth0: Tigon3 [partno(BCM957761) rev 57785100] (PCI Express) MAC address c8:2a:14:4f:80:3e
[    2.553669] tg3 0000:0d:00.0 eth0: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    2.553697] tg3 0000:0d:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    2.553711] tg3 0000:0d:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[    2.644243] tg3 0000:14:00.0 eth1: Tigon3 [partno(BCM957761) rev 57785100] (PCI Express) MAC address 38:c9:86:48:0c:c8
[    2.644288] tg3 0000:14:00.0 eth1: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    2.644320] tg3 0000:14:00.0 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    2.644347] tg3 0000:14:00.0 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[    2.723618] tsc: Refined TSC clocksource calibration: 2599.999 MHz
[    2.723627] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x257a3b2ad7e, max_idle_ns: 440795282337 ns
[    2.723652] clocksource: Switched to clocksource tsc
[    2.763615] usb 1-3: new full-speed USB device number 2 using xhci_hcd
[    2.956261] usb 1-3: New USB device found, idVendor=05ac, idProduct=8290, bcdDevice= 1.69
[    2.956266] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.956268] usb 1-3: Product: Bluetooth USB Host Controller
[    2.956270] usb 1-3: Manufacturer: Broadcom Corp.
[    2.963223] hid: raw HID events driver (C) Jiri Kosina
[    2.967806] usbcore: registered new interface driver usbhid
[    2.967808] usbhid: USB HID core driver
[    2.968579] input: Broadcom Corp. Bluetooth USB Host Controller as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:05AC:8290.0001/input/input4
[    3.033708] hid-generic 0003:05AC:8290.0001: input,hidraw0: USB HID v1.11 Keyboard [Broadcom Corp. Bluetooth USB Host Controller] on usb-0000:00:14.0-3/input0
[    3.033837] input: Broadcom Corp. Bluetooth USB Host Controller as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:05AC:8290.0002/input/input5
[    3.034415] hid-generic 0003:05AC:8290.0002: input,hidraw1: USB HID v1.11 Mouse [Broadcom Corp. Bluetooth USB Host Controller] on usb-0000:00:14.0-3/input1
[    3.103822] usb 2-3: new SuperSpeed USB device number 2 using xhci_hcd
[    3.136366] usb 2-3: New USB device found, idVendor=05ac, idProduct=8406, bcdDevice= 8.20
[    3.136382] usb 2-3: New USB device strings: Mfr=3, Product=4, SerialNumber=5
[    3.136384] usb 2-3: Product: Card Reader
[    3.136385] usb 2-3: Manufacturer: Apple
[    3.136396] usb 2-3: SerialNumber: 000000000820
[    3.139801] usb-storage 2-3:1.0: USB Mass Storage device detected
[    3.139888] scsi host0: usb-storage 2-3:1.0
[    3.139991] usbcore: registered new interface driver usb-storage
[    3.140193] usbcore: registered new interface driver uas
[    3.283614] usb 1-5: new full-speed USB device number 3 using xhci_hcd
[    3.469334] usb 1-5: New USB device found, idVendor=05ac, idProduct=0259, bcdDevice= 2.24
[    3.469350] usb 1-5: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.469351] usb 1-5: Product: Apple Internal Keyboard / Trackpad
[    3.469353] usb 1-5: Manufacturer: Apple Inc.
[    3.478644] input: Apple Inc. Apple Internal Keyboard / Trackpad as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/0003:05AC:0259.0003/input/input6
[    3.543758] apple 0003:05AC:0259.0003: input,hidraw2: USB HID v1.11 Keyboard [Apple Inc. Apple Internal Keyboard / Trackpad] on usb-0000:00:14.0-5/input0
[    3.543956] apple 0003:05AC:0259.0004: hidraw3: USB HID v1.11 Device [Apple Inc. Apple Internal Keyboard / Trackpad] on usb-0000:00:14.0-5/input1
[    4.165623] scsi 0:0:0:0: Direct-Access     APPLE    SD Card Reader   3.00 PQ: 0 ANSI: 6
[    4.166191] sd 0:0:0:0: [sda] Media removed, stopped polling
[    4.166281] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    4.166828] sd 0:0:0:0: [sda] Attached SCSI removable disk
[    6.008925] process '/usr/bin/fstype' started with executable stack
[    6.088823] PM: Image not found (code -22)
[    6.090825] PM: hibernation: Marking nosave pages: [mem 0x00000000-0x00000fff]
[    6.090829] PM: hibernation: Marking nosave pages: [mem 0x00058000-0x00058fff]
[    6.090831] PM: hibernation: Marking nosave pages: [mem 0x0008f000-0x0008ffff]
[    6.090832] PM: hibernation: Marking nosave pages: [mem 0x000a0000-0x000fffff]
[    6.090834] PM: hibernation: Marking nosave pages: [mem 0x73d4c000-0x73d4cfff]
[    6.090836] PM: hibernation: Marking nosave pages: [mem 0x73d5c000-0x73d5cfff]
[    6.090837] PM: hibernation: Marking nosave pages: [mem 0x73d6f000-0x73d6ffff]
[    6.090838] PM: hibernation: Marking nosave pages: [mem 0x73d6f000-0x73d6ffff]
[    6.090839] PM: hibernation: Marking nosave pages: [mem 0x8ad10000-0x8ad52fff]
[    6.090841] PM: hibernation: Marking nosave pages: [mem 0x8ad62000-0x8ad8efff]
[    6.090842] PM: hibernation: Marking nosave pages: [mem 0x8ae39000-0x8ae8efff]
[    6.090844] PM: hibernation: Marking nosave pages: [mem 0x8aed2000-0x8aefefff]
[    6.090846] PM: hibernation: Marking nosave pages: [mem 0x8af84000-0x8afeffff]
[    6.090848] PM: hibernation: Marking nosave pages: [mem 0x8b000000-0xffffffff]
[    6.091867] PM: hibernation: Basic memory bitmaps created
[    6.092567] PM: hibernation: Basic memory bitmaps freed
[    6.268197] EXT4-fs (nvme0n1p4): mounted filesystem with ordered data mode. Quota mode: disabled.
[    6.407358] udevd[1205]: starting version 3.2.9
[    6.431424] udevd[1206]: starting eudev-3.2.9
[    6.496759] Linux agpgart interface v0.103
[    6.502273] ACPI: bus type drm_connector registered
[    6.512529] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    6.520105] input: bcm5974 as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.2/input/input7
[    6.522268] tg3 0000:0d:00.0 eth2: renamed from eth0
[    6.524274] usbcore: registered new interface driver bcm5974
[    6.541011] i915 0000:00:02.0: [drm] VT-d active for gfx access
[    6.542410] checking generic (a0000000 fa0000) vs hw (b0000000 400000)
[    6.542414] checking generic (a0000000 fa0000) vs hw (a0000000 10000000)
[    6.542416] fb0: switching to i915 from EFI VGA
[    6.544438] Console: switching to colour dummy device 80x25
[    6.544730] i915 0000:00:02.0: vgaarb: deactivate vga console
[    6.544778] i915 0000:00:02.0: [drm] Transparent Hugepage support is recommended for optimal performance when IOMMU is enabled!
[    6.544798] i915 0000:00:02.0: [drm] DMAR active, disabling use of stolen memory
[    6.550715] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    6.593976] snd_hda_codec_cirrus hdaudioC1D0: autoconfig for CS4208: line_outs=2 (0x12/0x13/0x0/0x0/0x0) type:speaker
[    6.593989] snd_hda_codec_cirrus hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    6.593995] snd_hda_codec_cirrus hdaudioC1D0:    hp_outs=1 (0x10/0x0/0x0/0x0/0x0)
[    6.594001] snd_hda_codec_cirrus hdaudioC1D0:    mono: mono_out=0x0
[    6.594005] snd_hda_codec_cirrus hdaudioC1D0:    dig-out=0x21/0x0
[    6.594008] snd_hda_codec_cirrus hdaudioC1D0:    inputs:
[    6.594012] snd_hda_codec_cirrus hdaudioC1D0:      Internal Mic=0x1c
[    6.594016] snd_hda_codec_cirrus hdaudioC1D0:      Mic=0x18
[    6.605452] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    6.605649] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    6.605658] cfg80211: failed to load regulatory.db
[    6.609866] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input8
[    6.611748] brcmfmac 0000:03:00.0: enabling device (0000 -> 0002)
[    6.612255] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input9
[    6.612885] input: HDA Intel PCH SPDIF as /devices/pci0000:00/0000:00:1b.0/sound/card1/input10
[    6.642979] Bluetooth: Core ver 2.22
[    6.643021] NET: Registered PF_BLUETOOTH protocol family
[    6.643024] Bluetooth: HCI device and connection manager initialized
[    6.643028] Bluetooth: HCI socket layer initialized
[    6.643030] Bluetooth: L2CAP socket layer initialized
[    6.643035] Bluetooth: SCO socket layer initialized
[    6.644815] usbcore: registered new interface driver btusb
[    6.654309] [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0
[    6.655039] ACPI: video: Video Device [IGPU] (multi-head: yes  rom: no  post: no)
[    6.655465] acpi device:02: registered as cooling_device4
[    6.655547] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input11
[    6.655675] snd_hda_intel 0000:00:03.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[    6.733833] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43602-pcie for chip BCM43602/1
[    6.734032] brcmfmac 0000:03:00.0: Direct firmware load for brcm/brcmfmac43602-pcie.Apple Inc.-MacBookPro11,1.bin failed with error -2
[    6.734810] brcmfmac 0000:03:00.0: Direct firmware load for brcm/brcmfmac43602-pcie.Apple Inc.-MacBookPro11,1.txt failed with error -2
[    6.734824] brcmfmac 0000:03:00.0: Direct firmware load for brcm/brcmfmac43602-pcie.txt failed with error -2
[    6.746944] udevd[1237]: Unable to EVIOCGABS device "/dev/input/event6"
[    6.746955] udevd[1237]: Unable to EVIOCGABS device "/dev/input/event6"
[    6.746960] udevd[1237]: Unable to EVIOCGABS device "/dev/input/event6"
[    6.746965] udevd[1237]: Unable to EVIOCGABS device "/dev/input/event6"
[    6.772925] Bluetooth: hci0: BCM: chip id 102 build 0729
[    6.773932] Bluetooth: hci0: BCM: product 05ac:8290
[    6.774876] Bluetooth: hci0: BCM: features 0x2f
[    6.790925] Bluetooth: hci0: BlueZ 5.50
[    6.821570] fbcon: i915drmfb (fb0) is primary device
[    7.246024] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43602-pcie for chip BCM43602/1
[    7.246047] brcmfmac: brcmf_c_process_clm_blob: no clm_blob available (err=-2), device may have limited channels available
[    7.246610] brcmfmac: brcmf_c_preinit_dcmds: Firmware: BCM43602/1 wl0: Nov 10 2015 06:38:10 version 7.35.177.61 (r598657) FWID 01-ea662a8c
[    8.334691] Console: switching to colour frame buffer device 320x90
[    8.354101] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[    8.421833] input: HDA Intel HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card0/input12
[    8.422091] input: HDA Intel HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/sound/card0/input13
[    8.422534] input: HDA Intel HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.0/sound/card0/input14
[    8.422947] input: HDA Intel HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:03.0/sound/card0/input15
[    8.423864] input: HDA Intel HDMI HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:03.0/sound/card0/input16
[    8.651739] Adding 19528700k swap on /dev/mapper/swap.  Priority:-2 extents:1 across:19528700k SS
[    8.663693] EXT4-fs (nvme0n1p4): re-mounted. Quota mode: disabled.
[   14.900072] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Quota mode: disabled.
[   15.106143] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[   18.840023] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   18.840026] Bluetooth: BNEP filters: protocol multicast
[   18.840029] Bluetooth: BNEP socket layer initialized
[   19.188102] broken atomic modeset userspace detected, disabling atomic


^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-03-29 12:35   ` Brad Campbell
@ 2022-03-29 13:00     ` Mika Westerberg
  2022-03-29 14:06       ` Brad Campbell
  0 siblings, 1 reply; 47+ messages in thread
From: Mika Westerberg @ 2022-03-29 13:00 UTC (permalink / raw)
  To: Brad Campbell; +Cc: linux-kernel

Hi,

On Tue, Mar 29, 2022 at 08:35:49PM +0800, Brad Campbell wrote:
> On 29/3/22 19:31, Mika Westerberg wrote:
> > Hi,
> > 
> > On Tue, Mar 29, 2022 at 07:09:36PM +0800, Brad Campbell wrote:
> >> G'day Mika,
> >>
> >> Back in 2019 you assisted me with an issue on an iMac with a "Light Ridge"
> >> controller running a pair of Apple 27" Thunderbolt displays. At the time I
> >> commented they worked when plugged into a port each, however they don't work
> >> when chained.
> >>
> >> Back then things crashed horribly. Now they don't crash, and the PCI devices
> >> all work but there is an issue with the display.
> >>
> >> I'm currently testing on vanilla git-head commit
> >> ae085d7f9365de7da27ab5c0d16b12d51ea7fca9 (Sunday March 27th). A recent
> >> kernel with all the "for 5.18" patches.
> >>
> >> On both the iMac with the "Light Ridge" controller and a MacBookPro with a
> >> "Falcon Ridge" controller the result is the same.
> >>
> >> Plugged into a port each, they work perfectly.
> > 
> > Right, this is because both get their own 10Gb/s lane.
> > 
> >> If I chain them, the first one plugged in works and when the second is
> >> plugged in it's almost like the link is being starved of bandwidth.
> >> Graphical displays like a desktop, or a terminal break up, tear or exhibit
> >> almost white noise/snow on both displays. Solid colours with no gradient
> >> sometimes displays cleanly until something else is displayed and then it
> >> breaks up.
> > 
> > I think this is related to bandwidth management. When you chain two TBT1
> > devices you end up having a single 10Gb/s lane used for both DisplayPort
> > tunnels (this is how Linux does it now). There are no hardware mechanism
> > to negotiate the bandwidth so the first DP tunnel gets dominated over
> > the second one.
> > 
> > I'm not entirely sure how macOS handles this. It may be that it uses one
> > lane for both PCIe and first DP tunnel and the second lane for the
> > second DP tunnel where as Linux just puts all DP through the second
> > lane.
> > 
> > The below completely untested hack patch tries to use different lane for
> > both tunnels. Can you try it out?
> > 
> > diff --git a/drivers/thunderbolt/tb.c b/drivers/thunderbolt/tb.c
> > index cbd0ad85ffb1..6ea4968d3629 100644
> > --- a/drivers/thunderbolt/tb.c
> 
> For all forms of hot-plug this works perfectly! Got it in one.
> 
> I've tried all of the obvious permutations of plug and unplug. Once
> they are up and running it's all good.

Okay good to know.

> Where it falls down is if the machine is booted with the displays
> plugged in. I've attached the dmesg for that at the end. If I leave
> the chain unplugged until the kernel has started to boot and then plug
> it in, it all detects up and runs well.

Indeed, I did not add this to the "discovery" path yet.

I wonder what happens if you change this:

+       tunnel = tb_tunnel_alloc_dp(tb, in, out, available_up, available_down,
+                                   first ? 0 : 1);

to this in your tree:

+       tunnel = tb_tunnel_alloc_dp(tb, in, out, available_up, available_down,
+                                   first ? 1 : 0);

There are probably other things to consider too but let's check this one
first.

> There is an additional issue that I bumped up against on the laptop once, but it's easier to hit on the iMac. This is the relevant bit of dmesg for that.
> When a (single or chain) display is unplugged, the thunderbolt controller stops seeing plug events. It's effectively dead until rebooted.
> 
> [  144.603624] thunderbolt 0000:07:00.0: acking hot unplug event on 0:3
> [  144.603638] thunderbolt 0000:07:00.0: acking hot unplug event on 0:4
> [  144.649819] pcieport 0000:19:04.0: pciehp: pciehp_isr: no response from device
> [  144.649836] pcieport 0000:20:04.0: pciehp: pciehp_isr: no response from device
> [  144.649849] pcieport 0000:19:04.0: pciehp: pciehp_isr: no response from device
> [  144.649849] thunderbolt 0000:07:00.0: 0:3: switch unplugged
> [  144.649853] pcieport 0000:20:04.0: pciehp: pciehp_isr: no response from device
> [  144.649854] thunderbolt 0000:07:00.0: 0:7 <-> 3:a (PCI): deactivating
> [  144.649862] pcieport 0000:06:04.0: pciehp: Slot(4-1): Link Down
> [  144.649866] pcieport 0000:06:04.0: pciehp: Slot(4-1): Card not present
> [  144.649883] pcieport 0000:19:05.0: can't change power state from D3cold to D0 (config space inaccessible)
> [  144.650434] pcieport 0000:20:05.0: can't change power state from D3cold to D0 (config space inaccessible)
> [  144.650578] pcieport 0000:20:04.0: can't change power state from D3cold to D0 (config space inaccessible)
> [  144.656146] pci_bus 0000:1c: busn_res: [bus 1c] is released
> [  144.656230] pci_bus 0000:1b: busn_res: [bus 1b-1c] is released
> [  144.656299] pci_bus 0000:1a: busn_res: [bus 1a-1c] is released
> [  144.656380] pci_bus 0000:1d: busn_res: [bus 1d] is released
> [  144.656463] pci_bus 0000:1e: busn_res: [bus 1e] is released
> [  144.656562] pci_bus 0000:23: busn_res: [bus 23] is released
> [  144.656594] pci_bus 0000:22: busn_res: [bus 22-23] is released
> [  144.656638] pci_bus 0000:21: busn_res: [bus 21-23] is released
> [  144.656698] pci_bus 0000:24: busn_res: [bus 24] is released
> [  144.656751] pci_bus 0000:25: busn_res: [bus 25] is released
> [  144.656779] pci_bus 0000:26: busn_res: [bus 26-35] is released
> [  144.656807] pci_bus 0000:36: busn_res: [bus 36-45] is released
> [  144.656834] pci_bus 0000:20: busn_res: [bus 20-45] is released
> [  144.656869] pci_bus 0000:1f: busn_res: [bus 1f-45] is released
> [  144.656896] pci_bus 0000:46: busn_res: [bus 46-55] is released
> [  144.656923] pci_bus 0000:19: busn_res: [bus 19-55] is released
> [  144.871381] thunderbolt 0000:07:00.0: acking hot unplug event on 0:3
> [  145.093518] thunderbolt 0000:07:00.0: 0: timeout writing config space 1 to 0x39
> [  145.093536] thunderbolt 0000:07:00.0: deactivating PCIe Down path from 0:7 to 3:10
> [  145.139771] thunderbolt 0000:07:00.0: acking hot unplug event on 0:3
> [  145.408226] thunderbolt 0000:07:00.0: acking hot unplug event on 0:3
> [  145.533276] thunderbolt 0000:07:00.0: 0: timeout reading config space 0 from 0x10
> [  145.533291] thunderbolt 0000:07:00.0: 0:7: hop deactivation failed for hop 0, index 8
> [  145.533298] thunderbolt 0000:07:00.0: deactivating PCIe Up path from 3:10 to 0:7
> [  145.676684] thunderbolt 0000:07:00.0: acking hot unplug event on 0:3
> [  145.945107] thunderbolt 0000:07:00.0: acking hot unplug event on 0:3
> [  145.973104] thunderbolt 0000:07:00.0: 0: timeout reading config space 0 from 0x10
> [  145.973118] thunderbolt 0000:07:00.0: 0:3: hop deactivation failed for hop 1, index 8
> [  145.973129] thunderbolt 0000:07:00.0: 0:c <-> 303:b (DP): deactivating
> [  146.213523] thunderbolt 0000:07:00.0: acking hot unplug event on 0:3
> [  146.412874] thunderbolt 0000:07:00.0: 0: timeout reading config space 1 from 0x3c
> [  146.481970] thunderbolt 0000:07:00.0: acking hot unplug event on 0:3
> [  146.852702] thunderbolt 0000:07:00.0: 0: timeout reading config space 1 from 0x39
> [  147.292462] thunderbolt 0000:07:00.0: 0: timeout reading config space 1 from 0x39
> [  147.292478] thunderbolt 0000:07:00.0: deactivating Video path from 0:12 to 303:11
> [  147.732238] thunderbolt 0000:07:00.0: 0: timeout reading config space 0 from 0x12
> [  147.732255] thunderbolt 0000:07:00.0: 0:c: hop deactivation failed for hop 0, index 9
> [  147.732261] thunderbolt 0000:07:00.0: 0:c: adding -5 NFC credits to 5
> [  148.172037] thunderbolt 0000:07:00.0: 0: timeout writing config space 1 to 0x4
> [  148.172051] thunderbolt 0000:07:00.0: 0:c: nfc credits deallocation failed for hop 0
> [  148.172057] thunderbolt 0000:07:00.0: deactivating AUX TX path from 0:12 to 303:11
> [  148.611855] thunderbolt 0000:07:00.0: 0: timeout reading config space 0 from 0x10
> [  148.611869] thunderbolt 0000:07:00.0: 0:c: hop deactivation failed for hop 0, index 8
> [  148.611875] thunderbolt 0000:07:00.0: deactivating AUX RX path from 303:11 to 0:12
> [  149.051620] thunderbolt 0000:07:00.0: 0: timeout reading config space 0 from 0x12
> [  149.051634] thunderbolt 0000:07:00.0: 0:3: hop deactivation failed for hop 2, index 9
> [  149.051640] thunderbolt 0000:07:00.0: 0: released DP resource for port 12
> [  149.051650] thunderbolt 0000:07:00.0: 3:7 <-> 303:a (PCI): deactivating
> [  149.051654] thunderbolt 0000:07:00.0: deactivating PCIe Down path from 3:7 to 303:10
> [  149.051658] thunderbolt 0000:07:00.0: deactivating PCIe Up path from 303:10 to 3:7
> [  149.051663] thunderbolt 0000:07:00.0: 0:d <-> 3:b (DP): deactivating
> [  149.491440] thunderbolt 0000:07:00.0: 0: timeout reading config space 1 from 0x3c
> [  149.931229] thunderbolt 0000:07:00.0: 0: timeout reading config space 1 from 0x39
> [  150.380986] thunderbolt 0000:07:00.0: 0: timeout reading config space 1 from 0x39
> [  150.381001] thunderbolt 0000:07:00.0: deactivating Video path from 0:13 to 3:11
> [  150.820803] thunderbolt 0000:07:00.0: 0: timeout reading config space 0 from 0x12
> [  150.820817] thunderbolt 0000:07:00.0: 0:d: hop deactivation failed for hop 0, index 9
> [  150.820823] thunderbolt 0000:07:00.0: 0:d: adding -5 NFC credits to 5
> [  151.270628] thunderbolt 0000:07:00.0: 0: timeout writing config space 1 to 0x4
> [  151.270642] thunderbolt 0000:07:00.0: 0:d: nfc credits deallocation failed for hop 0
> [  151.270648] thunderbolt 0000:07:00.0: deactivating AUX TX path from 0:13 to 3:11
> [  151.710341] thunderbolt 0000:07:00.0: 0: timeout reading config space 0 from 0x10
> [  151.710360] thunderbolt 0000:07:00.0: 0:d: hop deactivation failed for hop 0, index 8
> [  151.710368] thunderbolt 0000:07:00.0: deactivating AUX RX path from 3:11 to 0:13
> [  152.160109] thunderbolt 0000:07:00.0: 0: timeout reading config space 0 from 0x10
> [  152.160124] thunderbolt 0000:07:00.0: 0:4: hop deactivation failed for hop 1, index 8
> [  152.160131] thunderbolt 0000:07:00.0: 0: released DP resource for port 13
> [  152.160141] thunderbolt 0000:07:00.0: 303:b: DP OUT resource unavailable
> [  152.160144] thunderbolt 0000:07:00.0: 3:b: DP OUT resource unavailable
> [  152.160242] thunderbolt 0-303: device disconnected
> [  152.160292] thunderbolt 0-3: device disconnected
> [  152.160326] thunderbolt 0000:07:00.0: looking for DP IN <-> DP OUT pairs:
> [  152.599916] thunderbolt 0000:07:00.0: 0: timeout reading config space 1 from 0x39
> [  152.599930] thunderbolt 0000:07:00.0: 0:c: DP IN available
> [  153.039710] thunderbolt 0000:07:00.0: 0: timeout reading config space 1 from 0x39
> [  153.039724] thunderbolt 0000:07:00.0: 0:d: DP IN available
> [  153.039727] thunderbolt 0000:07:00.0: no suitable DP IN adapter available, not tunneling
> [  153.039733] thunderbolt 0000:07:00.0: 0:4: got unplug event for disconnected port, ignoring
> [  153.039736] thunderbolt 0000:07:00.0: 0:3: got unplug event for disconnected port, ignoring
> [  153.039739] thunderbolt 0000:07:00.0: 0:3: got unplug event for disconnected port, ignoring
> [  153.039742] thunderbolt 0000:07:00.0: 0:3: got unplug event for disconnected port, ignoring
> [  153.039745] thunderbolt 0000:07:00.0: 0:3: got unplug event for disconnected port, ignoring
> [  153.039747] thunderbolt 0000:07:00.0: 0:3: got unplug event for disconnected port, ignoring
> [  153.039750] thunderbolt 0000:07:00.0: 0:3: got unplug event for disconnected port, ignoring
> [  153.039753] thunderbolt 0000:07:00.0: 0:3: got unplug event for disconnected port, ignoring
> 
> Once it gets to here, nothing I plug in gets detected.

It is hard to tell what might be wrong here. Apple systems are not
exactly the most standard ones and it could be that we are simply
missing some magic step. The

  [  145.093518] thunderbolt 0000:07:00.0: 0: timeout writing config space 1 to 0x39

tells that the DP adapter config write fails and we do have a quirk in
capabilities (cap.c) for some of the TBT1 controllers. Can you share the
full dmesg from this system so I can check if we cover this controller
in the quirk?

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-03-29 13:00     ` Mika Westerberg
@ 2022-03-29 14:06       ` Brad Campbell
  2022-03-30 10:18         ` Mika Westerberg
  0 siblings, 1 reply; 47+ messages in thread
From: Brad Campbell @ 2022-03-29 14:06 UTC (permalink / raw)
  To: Mika Westerberg; +Cc: linux-kernel

G'day,

On 29/3/22 21:00, Mika Westerberg wrote:
> Hi,
> 
> On Tue, Mar 29, 2022 at 08:35:49PM +0800, Brad Campbell wrote:
>> On 29/3/22 19:31, Mika Westerberg wrote:
>>> Hi,
>>>
>>> On Tue, Mar 29, 2022 at 07:09:36PM +0800, Brad Campbell wrote:
>>>> G'day Mika,
>>>>
>>>> Back in 2019 you assisted me with an issue on an iMac with a "Light Ridge"
>>>> controller running a pair of Apple 27" Thunderbolt displays. At the time I
>>>> commented they worked when plugged into a port each, however they don't work
>>>> when chained.
>>>>
>>>> Back then things crashed horribly. Now they don't crash, and the PCI devices
>>>> all work but there is an issue with the display.
>>>>
>>>> I'm currently testing on vanilla git-head commit
>>>> ae085d7f9365de7da27ab5c0d16b12d51ea7fca9 (Sunday March 27th). A recent
>>>> kernel with all the "for 5.18" patches.
>>>>
>>>> On both the iMac with the "Light Ridge" controller and a MacBookPro with a
>>>> "Falcon Ridge" controller the result is the same.
>>>>
>>>> Plugged into a port each, they work perfectly.
>>>
>>> Right, this is because both get their own 10Gb/s lane.
>>>
>>>> If I chain them, the first one plugged in works and when the second is
>>>> plugged in it's almost like the link is being starved of bandwidth.
>>>> Graphical displays like a desktop, or a terminal break up, tear or exhibit
>>>> almost white noise/snow on both displays. Solid colours with no gradient
>>>> sometimes displays cleanly until something else is displayed and then it
>>>> breaks up.
>>>
>>> I think this is related to bandwidth management. When you chain two TBT1
>>> devices you end up having a single 10Gb/s lane used for both DisplayPort
>>> tunnels (this is how Linux does it now). There are no hardware mechanism
>>> to negotiate the bandwidth so the first DP tunnel gets dominated over
>>> the second one.
>>>
>>> I'm not entirely sure how macOS handles this. It may be that it uses one
>>> lane for both PCIe and first DP tunnel and the second lane for the
>>> second DP tunnel where as Linux just puts all DP through the second
>>> lane.
>>>
>>> The below completely untested hack patch tries to use different lane for
>>> both tunnels. Can you try it out?
>>>
>>> diff --git a/drivers/thunderbolt/tb.c b/drivers/thunderbolt/tb.c
>>> index cbd0ad85ffb1..6ea4968d3629 100644
>>> --- a/drivers/thunderbolt/tb.c
>>
>> For all forms of hot-plug this works perfectly! Got it in one.
>>
>> I've tried all of the obvious permutations of plug and unplug. Once
>> they are up and running it's all good.
> 
> Okay good to know.
> 
>> Where it falls down is if the machine is booted with the displays
>> plugged in. I've attached the dmesg for that at the end. If I leave
>> the chain unplugged until the kernel has started to boot and then plug
>> it in, it all detects up and runs well.
> 
> Indeed, I did not add this to the "discovery" path yet.
> 
> I wonder what happens if you change this:
> 
> +       tunnel = tb_tunnel_alloc_dp(tb, in, out, available_up, available_down,
> +                                   first ? 0 : 1);
> 
> to this in your tree:
> 
> +       tunnel = tb_tunnel_alloc_dp(tb, in, out, available_up, available_down,
> +                                   first ? 1 : 0);
> 

Here's where it gets all "Apple..y". On the iMac this does the job no matter which
port the chain is plugged into. Boots and displays correctly first time, every time.

It turns out on the laptop, one port works and the other doesn't. Changing the order
simply changes which port works. So I assume the EFI sets up the first display using
the first lane if it's in the first port, and the second if it's in the second.

That means had I managed to perform the first test in the "other port" consistently,
it would have worked there also.

> There are probably other things to consider too but let's check this one
> first.
> 
>> There is an additional issue that I bumped up against on the laptop once, but it's easier to hit on the iMac. This is the relevant bit of dmesg for that.
>> When a (single or chain) display is unplugged, the thunderbolt controller stops seeing plug events. It's effectively dead until rebooted.
>>
.....
>> [  153.039753] thunderbolt 0000:07:00.0: 0:3: got unplug event for disconnected port, ignoring
>>
>> Once it gets to here, nothing I plug in gets detected.
> 
> It is hard to tell what might be wrong here. Apple systems are not
> exactly the most standard ones and it could be that we are simply
> missing some magic step. The
> 
>    [  145.093518] thunderbolt 0000:07:00.0: 0: timeout writing config space 1 to 0x39
> 
> tells that the DP adapter config write fails and we do have a quirk in
> capabilities (cap.c) for some of the TBT1 controllers. Can you share the
> full dmesg from this system so I can check if we cover this controller
> in the quirk?


I'm also seeing DP errors from time to time on one head on re-plug. Once it's dead, it takes a reboot to bring it back. That's another whole kettle of fish. This iMac is possessed.

[   74.513327] [drm:radeon_dp_link_train [radeon]] *ERROR* displayport link status failed
[   74.513409] [drm:radeon_dp_link_train [radeon]] *ERROR* clock recovery failed
[   74.833164] [drm:radeon_dp_link_train [radeon]] *ERROR* displayport link status failed
[   74.833238] [drm:radeon_dp_link_train [radeon]] *ERROR* clock recovery failed

This is a "Boot with nothing plugged in, plug, settle, unplug" on the iMac.

[    0.000000] Linux version 5.17.0+ (brad@bkmac) (gcc (Debian 8.3.0-6) 8.3.0, GNU ld (GNU Binutils for Debian) 2.31.1) #38 SMP PREEMPT_DYNAMIC Tue Mar 29 21:41:20 AWST 2022
[    0.000000] Command line: ro root=UUID=de35d1a6-e0e1-40b0-b46a-3974a04adf4b libata.allow_tpm=1 netconsole=6666@192.168.2.87/eth0,6666@192.168.2.208/dc:a6:32:61:33:da oops=panic panic=10 thunderbolt.dyndbg pci=assign-busses,realloc,hpbussize=0x10,hpmmiosize=128M,hpmmioprefsize=1G initrd=boot\initrd.img-5.17.0+
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    0.000000] signal: max sigframe size: 1776
[    0.000000] reserving inaccessible SNB gfx pages
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008e000-0x000000000008ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000bffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000020200000-0x000000003fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000040000000-0x00000000401fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000040200000-0x000000008ed32fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008ed33000-0x000000008ed5efff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000008ed5f000-0x000000008ed70fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008ed71000-0x000000008ed8efff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000008ed8f000-0x000000008ee5afff] usable
[    0.000000] BIOS-e820: [mem 0x000000008ee5b000-0x000000008ee8efff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008ee8f000-0x000000008eed6fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008eed7000-0x000000008eefefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008eeff000-0x000000008efa2fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008efa3000-0x000000008f8fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffed8000-0x00000000ffefffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000086fefffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0x899b1018-0x899ccc57] usable ==> usable
[    0.000000] e820: update [mem 0x899b1018-0x899ccc57] usable ==> usable
[    0.000000] e820: update [mem 0x89a4f018-0x89a6033f] usable ==> usable
[    0.000000] e820: update [mem 0x89a4f018-0x89a6033f] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000008dfff] usable
[    0.000000] reserve setup_data: [mem 0x000000000008e000-0x000000000008ffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000000a0000-0x00000000000bffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000020000000-0x00000000201fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000020200000-0x000000003fffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000040000000-0x00000000401fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000040200000-0x00000000899b1017] usable
[    0.000000] reserve setup_data: [mem 0x00000000899b1018-0x00000000899ccc57] usable
[    0.000000] reserve setup_data: [mem 0x00000000899ccc58-0x0000000089a4f017] usable
[    0.000000] reserve setup_data: [mem 0x0000000089a4f018-0x0000000089a6033f] usable
[    0.000000] reserve setup_data: [mem 0x0000000089a60340-0x000000008ed32fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008ed33000-0x000000008ed5efff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000008ed5f000-0x000000008ed70fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008ed71000-0x000000008ed8efff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000008ed8f000-0x000000008ee5afff] usable
[    0.000000] reserve setup_data: [mem 0x000000008ee5b000-0x000000008ee8efff] reserved
[    0.000000] reserve setup_data: [mem 0x000000008ee8f000-0x000000008eed6fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008eed7000-0x000000008eefefff] reserved
[    0.000000] reserve setup_data: [mem 0x000000008eeff000-0x000000008efa2fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008efa3000-0x000000008f8fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ffed8000-0x00000000ffefffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000086fefffff] usable
[    0.000000] efi: EFI v1.10 by Apple
[    0.000000] efi: ACPI=0x8ed8e000 ACPI 2.0=0x8ed8e014 SMBIOS=0x8ed3b000
[    0.000000] SMBIOS 2.4 present.
[    0.000000] DMI: Apple Inc. iMac12,2/Mac-942B59F58194171B, BIOS 87.0.0.0.0 06/14/2019
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 3399.741 MHz processor
[    0.000096] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000098] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000104] last_pfn = 0x86ff00 max_arch_pfn = 0x400000000
[    0.000753] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT
[    0.001371] last_pfn = 0x8efa3 max_arch_pfn = 0x400000000
[    0.002466] Secure boot disabled
[    0.002467] RAMDISK: [mem 0x7e4ad000-0x7fffffff]
[    0.002471] ACPI: Early table checksum verification disabled
[    0.002474] ACPI: RSDP 0x000000008ED8E014 000024 (v02 APPLE )
[    0.002478] ACPI: XSDT 0x000000008ED8E1C0 0000A4 (v01 APPLE  Apple00  0000F000      01000013)
[    0.002482] ACPI: FACP 0x000000008ED8C000 0000F4 (v04 APPLE  Apple00  0000F000 Loki 0000005F)
[    0.002487] ACPI: DSDT 0x000000008ED81000 0053FB (v01 APPLE  iMac     00210001 INTL 20061109)
[    0.002490] ACPI: FACS 0x000000008ED3E000 000040
[    0.002492] ACPI: FACS 0x000000008ED3E000 000040
[    0.002494] ACPI: HPET 0x000000008ED8B000 000038 (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002497] ACPI: APIC 0x000000008ED8A000 0000BC (v02 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002499] ACPI: SBST 0x000000008ED88000 000030 (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002502] ACPI: ECDT 0x000000008ED87000 000053 (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002505] ACPI: SSDT 0x000000008ED7E000 00020D (v01 APPLE  SataAhci 00001000 INTL 20061109)
[    0.002507] ACPI: SSDT 0x000000008ED7C000 0000B1 (v01 APPLE  SmcDppt  00001000 INTL 20061109)
[    0.002510] ACPI: SSDT 0x000000008ED7A000 000646 (v01 APPLE  UsbNoRmh 00001000 INTL 20061109)
[    0.002512] ACPI: SSDT 0x000000008ED78000 00013D (v01 APPLE  SataPrt1 00001000 INTL 20061109)
[    0.002515] ACPI: SSDT 0x000000008ED77000 0000A0 (v02 APPLE  IGHda    00001000 INTL 20061109)
[    0.002517] ACPI: SSDT 0x000000008ED75000 000032 (v01 APPLE  SsdtS3   00001000 INTL 20061109)
[    0.002520] ACPI: SSDT 0x000000008ED74000 000548 (v01 PmRef  Cpu0Ist  00003000 INTL 20061109)
[    0.002522] ACPI: SSDT 0x000000008ED73000 0009B1 (v01 PmRef  CpuPm    00003000 INTL 20061109)
[    0.002525] ACPI: SSDT 0x000000008ED72000 000315 (v01 PmRef  Cpu0Tst  00003000 INTL 20061109)
[    0.002528] ACPI: SSDT 0x000000008ED71000 00037A (v01 PmRef  ApTst    00003000 INTL 20061109)
[    0.002530] ACPI: MCFG 0x000000008ED89000 00003C (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002532] ACPI: Reserving FACP table memory at [mem 0x8ed8c000-0x8ed8c0f3]
[    0.002534] ACPI: Reserving DSDT table memory at [mem 0x8ed81000-0x8ed863fa]
[    0.002535] ACPI: Reserving FACS table memory at [mem 0x8ed3e000-0x8ed3e03f]
[    0.002536] ACPI: Reserving FACS table memory at [mem 0x8ed3e000-0x8ed3e03f]
[    0.002537] ACPI: Reserving HPET table memory at [mem 0x8ed8b000-0x8ed8b037]
[    0.002538] ACPI: Reserving APIC table memory at [mem 0x8ed8a000-0x8ed8a0bb]
[    0.002539] ACPI: Reserving SBST table memory at [mem 0x8ed88000-0x8ed8802f]
[    0.002540] ACPI: Reserving ECDT table memory at [mem 0x8ed87000-0x8ed87052]
[    0.002541] ACPI: Reserving SSDT table memory at [mem 0x8ed7e000-0x8ed7e20c]
[    0.002542] ACPI: Reserving SSDT table memory at [mem 0x8ed7c000-0x8ed7c0b0]
[    0.002544] ACPI: Reserving SSDT table memory at [mem 0x8ed7a000-0x8ed7a645]
[    0.002545] ACPI: Reserving SSDT table memory at [mem 0x8ed78000-0x8ed7813c]
[    0.002546] ACPI: Reserving SSDT table memory at [mem 0x8ed77000-0x8ed7709f]
[    0.002547] ACPI: Reserving SSDT table memory at [mem 0x8ed75000-0x8ed75031]
[    0.002548] ACPI: Reserving SSDT table memory at [mem 0x8ed74000-0x8ed74547]
[    0.002549] ACPI: Reserving SSDT table memory at [mem 0x8ed73000-0x8ed739b0]
[    0.002550] ACPI: Reserving SSDT table memory at [mem 0x8ed72000-0x8ed72314]
[    0.002551] ACPI: Reserving SSDT table memory at [mem 0x8ed71000-0x8ed71379]
[    0.002552] ACPI: Reserving MCFG table memory at [mem 0x8ed89000-0x8ed8903b]
[    0.002559] ACPI: DMI detected to setup _OSI("Darwin"): Apple hardware
[    0.002585] Zone ranges:
[    0.002586]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.002588]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.002589]   Normal   [mem 0x0000000100000000-0x000000086fefffff]
[    0.002590] Movable zone start for each node
[    0.002591] Early memory node ranges
[    0.002592]   node   0: [mem 0x0000000000001000-0x000000000008dfff]
[    0.002593]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.002594]   node   0: [mem 0x0000000000100000-0x000000001fffffff]
[    0.002595]   node   0: [mem 0x0000000020200000-0x000000003fffffff]
[    0.002596]   node   0: [mem 0x0000000040200000-0x000000008ed32fff]
[    0.002597]   node   0: [mem 0x000000008ed5f000-0x000000008ed70fff]
[    0.002598]   node   0: [mem 0x000000008ed8f000-0x000000008ee5afff]
[    0.002599]   node   0: [mem 0x000000008ee8f000-0x000000008eed6fff]
[    0.002600]   node   0: [mem 0x000000008eeff000-0x000000008efa2fff]
[    0.002601]   node   0: [mem 0x0000000100000000-0x000000086fefffff]
[    0.002604] Initmem setup node 0 [mem 0x0000000000001000-0x000000086fefffff]
[    0.002608] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.002609] On node 0, zone DMA: 2 pages in unavailable ranges
[    0.002628] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.004122] On node 0, zone DMA32: 512 pages in unavailable ranges
[    0.006366] On node 0, zone DMA32: 512 pages in unavailable ranges
[    0.006372] On node 0, zone DMA32: 44 pages in unavailable ranges
[    0.006374] On node 0, zone DMA32: 30 pages in unavailable ranges
[    0.006376] On node 0, zone DMA32: 52 pages in unavailable ranges
[    0.006378] On node 0, zone DMA32: 40 pages in unavailable ranges
[    0.060489] On node 0, zone Normal: 4189 pages in unavailable ranges
[    0.060496] On node 0, zone Normal: 256 pages in unavailable ranges
[    0.060658] ACPI: PM-Timer IO Port: 0x408
[    0.060664] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.060666] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.060667] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.060668] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.060669] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.060670] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.060670] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.060671] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.060680] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[    0.060683] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.060684] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.060688] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.060689] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.060692] TSC deadline timer available
[    0.060693] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[    0.060714] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.060716] PM: hibernation: Registered nosave memory: [mem 0x0008e000-0x0008ffff]
[    0.060718] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000bffff]
[    0.060719] PM: hibernation: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[    0.060721] PM: hibernation: Registered nosave memory: [mem 0x20000000-0x201fffff]
[    0.060723] PM: hibernation: Registered nosave memory: [mem 0x40000000-0x401fffff]
[    0.060725] PM: hibernation: Registered nosave memory: [mem 0x899b1000-0x899b1fff]
[    0.060726] PM: hibernation: Registered nosave memory: [mem 0x899cc000-0x899ccfff]
[    0.060728] PM: hibernation: Registered nosave memory: [mem 0x89a4f000-0x89a4ffff]
[    0.060730] PM: hibernation: Registered nosave memory: [mem 0x89a60000-0x89a60fff]
[    0.060732] PM: hibernation: Registered nosave memory: [mem 0x8ed33000-0x8ed5efff]
[    0.060734] PM: hibernation: Registered nosave memory: [mem 0x8ed71000-0x8ed8efff]
[    0.060735] PM: hibernation: Registered nosave memory: [mem 0x8ee5b000-0x8ee8efff]
[    0.060737] PM: hibernation: Registered nosave memory: [mem 0x8eed7000-0x8eefefff]
[    0.060739] PM: hibernation: Registered nosave memory: [mem 0x8efa3000-0x8f8fffff]
[    0.060740] PM: hibernation: Registered nosave memory: [mem 0x8f900000-0xe00f7fff]
[    0.060741] PM: hibernation: Registered nosave memory: [mem 0xe00f8000-0xe00f8fff]
[    0.060742] PM: hibernation: Registered nosave memory: [mem 0xe00f9000-0xfed1bfff]
[    0.060743] PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.060743] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xffed7fff]
[    0.060744] PM: hibernation: Registered nosave memory: [mem 0xffed8000-0xffefffff]
[    0.060745] PM: hibernation: Registered nosave memory: [mem 0xfff00000-0xffffffff]
[    0.060747] [mem 0x8f900000-0xe00f7fff] available for PCI devices
[    0.060750] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.063046] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[    0.063213] percpu: Embedded 44 pages/cpu s139880 r8192 d32152 u262144
[    0.063220] pcpu-alloc: s139880 r8192 d32152 u262144 alloc=1*2097152
[    0.063222] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
[    0.063243] Built 1 zonelists, mobility grouping on.  Total pages: 8251733
[    0.063245] Kernel command line: ro root=UUID=de35d1a6-e0e1-40b0-b46a-3974a04adf4b libata.allow_tpm=1 netconsole=6666@192.168.2.87/eth0,6666@192.168.2.208/dc:a6:32:61:33:da oops=panic panic=10 thunderbolt.dyndbg pci=assign-busses,realloc,hpbussize=0x10,hpmmiosize=128M,hpmmioprefsize=1G initrd=boot\initrd.img-5.17.0+
[    0.063305] Unknown kernel command line parameters "netconsole=6666@192.168.2.87/eth0,6666@192.168.2.208/dc:a6:32:61:33:da", will be passed to user space.
[    0.064928] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.065750] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.065814] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.152435] Memory: 32777104K/33531496K available (8192K kernel code, 2298K rwdata, 1860K rodata, 956K init, 2628K bss, 754136K reserved, 0K cma-reserved)
[    0.152469] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.152683] Dynamic Preempt: voluntary
[    0.152706] rcu: Preemptible hierarchical RCU implementation.
[    0.152708] 	Trampoline variant of Tasks RCU enabled.
[    0.152709] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[    0.152718] NR_IRQS: 4352, nr_irqs: 488, preallocated irqs: 16
[    0.152909] random: get_random_bytes called from start_kernel+0x443/0x5fb with crng_init=0
[    0.152933] Console: colour dummy device 80x25
[    0.153202] printk: console [tty0] enabled
[    0.153210] ACPI: Core revision 20211217
[    0.153295] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.153310] APIC: Switch to symmetric I/O mode setup
[    0.153689] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.203313] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x31015a3e4e5, max_idle_ns: 440795312435 ns
[    0.203318] Calibrating delay loop (skipped), value calculated using timer frequency.. 6799.48 BogoMIPS (lpj=33997410)
[    0.203322] pid_max: default: 32768 minimum: 301
[    0.207607] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.207671] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.207790] CPU0: Thermal monitoring enabled (TM1)
[    0.207794] process: using mwait in idle threads
[    0.207797] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.207799] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.207802] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.207805] Spectre V2 : Kernel not compiled with retpoline; no mitigation available!
[    0.207806] Spectre V2 : Vulnerable
[    0.207809] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.207811] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    0.207813] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.207816] Spectre V2 : User space: Mitigation: STIBP via prctl
[    0.207818] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.207821] MDS: Mitigation: Clear CPU buffers
[    0.207979] Freeing SMP alternatives memory: 24K
[    0.208248] smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 1054
[    0.208255] smpboot: CPU0: Intel(R) Core(TM) i7-2600 CPU @ 3.40GHz (family: 0x6, model: 0x2a, stepping: 0x7)
[    0.208319] cblist_init_generic: Setting adjustable number of callback queues.
[    0.208324] cblist_init_generic: Setting shift to 3 and lim to 1.
[    0.208334] Performance Events: PEBS fmt1+, SandyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
[    0.208347] ... version:                3
[    0.208349] ... bit width:              48
[    0.208351] ... generic registers:      4
[    0.208352] ... value mask:             0000ffffffffffff
[    0.208354] ... max period:             00007fffffffffff
[    0.208356] ... fixed-purpose events:   3
[    0.208357] ... event mask:             000000070000000f
[    0.208434] rcu: Hierarchical SRCU implementation.
[    0.208533] smp: Bringing up secondary CPUs ...
[    0.208578] x86: Booting SMP configuration:
[    0.208580] .... node  #0, CPUs:      #1 #2 #3 #4
[    0.216851] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[    0.216851]  #5 #6 #7
[    0.226647] smp: Brought up 1 node, 8 CPUs
[    0.226647] smpboot: Max logical packages: 1
[    0.226647] smpboot: Total of 8 processors activated (54395.85 BogoMIPS)
[    0.228833] devtmpfs: initialized
[    0.228833] ACPI: PM: Registering ACPI NVS region [mem 0x8ed33000-0x8ed5efff] (180224 bytes)
[    0.228833] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.228833] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[    0.228833] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.228833] thermal_sys: Registered thermal governor 'step_wise'
[    0.228833] thermal_sys: Registered thermal governor 'user_space'
[    0.228833] cpuidle: using governor ladder
[    0.228833] cpuidle: using governor menu
[    0.228833] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.228833] PCI: MMCONFIG for domain 0000 [bus 00-fb] at [mem 0xe0000000-0xefbfffff] (base 0xe0000000)
[    0.228833] PCI: not using MMCONFIG
[    0.228833] PCI: Using configuration type 1 for base access
[    0.228833] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[    0.233843] ACPI: Disabled all _OSI OS vendors
[    0.233843] ACPI: Added _OSI(Module Device)
[    0.233843] ACPI: Added _OSI(Processor Device)
[    0.233843] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.233843] ACPI: Added _OSI(Processor Aggregator Device)
[    0.233843] ACPI: Added _OSI(Linux-Dell-Video)
[    0.233843] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.233843] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.233843] ACPI: Added _OSI(Darwin)
[    0.235643] ACPI: 11 ACPI AML tables successfully acquired and loaded
[    0.235845] ACPI: EC: EC started
[    0.235847] ACPI: EC: interrupt blocked
[    0.236349] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.236351] ACPI: EC: Boot ECDT EC used to handle transactions
[    0.236480] ACPI: BIOS _OSI(Darwin) query honored via DMI
[    0.236612] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.236814] ACPI: Dynamic OEM Table Load:
[    0.236821] ACPI: SSDT 0xFFFF888100379800 000781 (v01 PmRef  Cpu0Cst  00003001 INTL 20061109)
[    0.237138] ACPI: Dynamic OEM Table Load:
[    0.237144] ACPI: SSDT 0xFFFF88810036E800 0003A4 (v01 PmRef  ApIst    00003000 INTL 20061109)
[    0.237376] ACPI: Dynamic OEM Table Load:
[    0.237381] ACPI: SSDT 0xFFFF8881000FA600 000119 (v01 PmRef  ApCst    00003000 INTL 20061109)
[    0.238160] ACPI: Interpreter enabled
[    0.238174] ACPI: PM: (supports S0 S3 S4 S5)
[    0.238176] ACPI: Using IOAPIC for interrupt routing
[    0.238194] PCI: MMCONFIG for domain 0000 [bus 00-fb] at [mem 0xe0000000-0xefbfffff] (base 0xe0000000)
[    0.238404] PCI: MMCONFIG at [mem 0xe0000000-0xefbfffff] reserved in ACPI motherboard resources
[    0.238417] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.238510] ACPI: Enabled 6 GPEs in block 00 to 3F
[    0.241368] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.241374] acpi PNP0A08:00: _OSC: OS assumes control of [PCIeHotplug SHPCHotplug AER PCIeCapability LTR DPC]
[    0.241379] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-fb] only partially covers this bridge
[    0.241515] PCI host bridge to bus 0000:00
[    0.241518] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.241521] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.241524] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000fffff window]
[    0.241527] pci_bus 0000:00: root bus resource [mem 0x8f900000-0xfeafffff window]
[    0.241530] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff window]
[    0.241533] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.241543] pci 0000:00:00.0: [8086:0100] type 00 class 0x060000
[    0.241605] pci 0000:00:01.0: [8086:0101] type 01 class 0x060400
[    0.241633] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.241688] pci 0000:00:02.0: [8086:0102] type 00 class 0x038000
[    0.241696] pci 0000:00:02.0: reg 0x10: [mem 0xa8000000-0xa83fffff 64bit]
[    0.241701] pci 0000:00:02.0: reg 0x18: [mem 0xa0000000-0xa7ffffff 64bit pref]
[    0.241706] pci 0000:00:02.0: reg 0x20: [io  0x3000-0x303f]
[    0.241776] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
[    0.241796] pci 0000:00:16.0: reg 0x10: [mem 0xa8907100-0xa890710f 64bit]
[    0.241862] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.241908] pci 0000:00:1a.0: [8086:1c2c] type 00 class 0x0c0300
[    0.241946] pci 0000:00:1a.0: reg 0x20: [io  0x3140-0x315f]
[    0.242029] pci 0000:00:1a.7: [8086:1c2d] type 00 class 0x0c0320
[    0.242045] pci 0000:00:1a.7: reg 0x10: [mem 0xa8906c00-0xa8906fff]
[    0.242121] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
[    0.242287] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
[    0.242303] pci 0000:00:1b.0: reg 0x10: [mem 0xa8900000-0xa8903fff 64bit]
[    0.242364] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.242422] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
[    0.242501] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.242568] pci 0000:00:1c.1: [8086:1c12] type 01 class 0x060400
[    0.242647] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.243346] pci 0000:00:1c.2: [8086:1c14] type 01 class 0x060400
[    0.243426] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.243491] pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
[    0.243570] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.243634] pci 0000:00:1d.0: [8086:1c27] type 00 class 0x0c0300
[    0.243672] pci 0000:00:1d.0: reg 0x20: [io  0x30e0-0x30ff]
[    0.243755] pci 0000:00:1d.7: [8086:1c26] type 00 class 0x0c0320
[    0.243770] pci 0000:00:1d.7: reg 0x10: [mem 0xa8906800-0xa8906bff]
[    0.243846] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.244009] pci 0000:00:1f.0: [8086:1c44] type 00 class 0x060100
[    0.244152] pci 0000:00:1f.2: [8086:1c02] type 00 class 0x010601
[    0.244165] pci 0000:00:1f.2: reg 0x10: [io  0x3168-0x316f]
[    0.244172] pci 0000:00:1f.2: reg 0x14: [io  0x317c-0x317f]
[    0.244180] pci 0000:00:1f.2: reg 0x18: [io  0x3160-0x3167]
[    0.244187] pci 0000:00:1f.2: reg 0x1c: [io  0x3178-0x317b]
[    0.244194] pci 0000:00:1f.2: reg 0x20: [io  0x3060-0x307f]
[    0.244202] pci 0000:00:1f.2: reg 0x24: [mem 0xa8906000-0xa89067ff]
[    0.244236] pci 0000:00:1f.2: PME# supported from D3hot
[    0.244282] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
[    0.244297] pci 0000:00:1f.3: reg 0x10: [mem 0xa8907000-0xa89070ff 64bit]
[    0.244312] pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
[    0.244414] pci 0000:01:00.0: [1002:6720] type 00 class 0x030000
[    0.244430] pci 0000:01:00.0: reg 0x10: [mem 0x90000000-0x9fffffff 64bit pref]
[    0.244441] pci 0000:01:00.0: reg 0x18: [mem 0xa8800000-0xa881ffff 64bit]
[    0.244448] pci 0000:01:00.0: reg 0x20: [io  0x2000-0x20ff]
[    0.244461] pci 0000:01:00.0: reg 0x30: [mem 0xa8820000-0xa883ffff pref]
[    0.244468] pci 0000:01:00.0: enabling Extended Tags
[    0.244478] pci 0000:01:00.0: BAR 0: assigned to efifb
[    0.244507] pci 0000:01:00.0: supports D1 D2
[    0.244595] pci 0000:01:00.1: [1002:aa88] type 00 class 0x040300
[    0.244609] pci 0000:01:00.1: reg 0x10: [mem 0xa8840000-0xa8843fff 64bit]
[    0.244634] pci 0000:01:00.1: enabling Extended Tags
[    0.244670] pci 0000:01:00.1: supports D1 D2
[    0.244762] pci 0000:00:01.0: PCI bridge to [bus 01-ff]
[    0.244765] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.244768] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.244772] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.244775] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
[    0.244848] pci 0000:02:00.0: [14e4:16b4] type 00 class 0x020000
[    0.244882] pci 0000:02:00.0: reg 0x10: [mem 0xa8400000-0xa840ffff 64bit pref]
[    0.244904] pci 0000:02:00.0: reg 0x18: [mem 0xa8410000-0xa841ffff 64bit pref]
[    0.245059] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[    0.245173] pci 0000:00:1c.0: PCI bridge to [bus 02-ff]
[    0.245180] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.245186] pci 0000:00:1c.0:   bridge window [mem 0xa8400000-0xa84fffff 64bit pref]
[    0.245189] pci_bus 0000:02: busn_res: [bus 02-ff] end is updated to 02
[    0.245260] pci 0000:03:00.0: [168c:0030] type 00 class 0x028000
[    0.245291] pci 0000:03:00.0: reg 0x10: [mem 0xa8600000-0xa861ffff 64bit]
[    0.245351] pci 0000:03:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    0.245442] pci 0000:03:00.0: supports D1 D2
[    0.245444] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.245544] pci 0000:00:1c.1: PCI bridge to [bus 03-ff]
[    0.245550] pci 0000:00:1c.1:   bridge window [mem 0xa8600000-0xa86fffff]
[    0.245557] pci_bus 0000:03: busn_res: [bus 03-ff] end is updated to 03
[    0.245628] pci 0000:04:00.0: [11c1:5901] type 00 class 0x0c0010
[    0.245662] pci 0000:04:00.0: reg 0x10: [mem 0xa8500000-0xa8500fff 64bit]
[    0.245824] pci 0000:04:00.0: supports D1 D2
[    0.245827] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.246021] pci 0000:00:1c.2: PCI bridge to [bus 04-ff]
[    0.246028] pci 0000:00:1c.2:   bridge window [mem 0xa8500000-0xa85fffff]
[    0.246034] pci_bus 0000:04: busn_res: [bus 04-ff] end is updated to 04
[    0.246107] pci 0000:05:00.0: [8086:1513] type 01 class 0x060400
[    0.246172] pci 0000:05:00.0: enabling Extended Tags
[    0.246267] pci 0000:05:00.0: supports D1 D2
[    0.246269] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.246395] pci 0000:00:1c.4: PCI bridge to [bus 05-ff]
[    0.246400] pci 0000:00:1c.4:   bridge window [io  0x4000-0x4fff]
[    0.246404] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xacefffff]
[    0.246410] pci 0000:00:1c.4:   bridge window [mem 0xacf00000-0xb0efffff 64bit pref]
[    0.246495] acpiphp: Slot [3] registered
[    0.246517] acpiphp: Slot [4] registered
[    0.246558] pci 0000:06:00.0: [8086:1513] type 01 class 0x060400
[    0.246629] pci 0000:06:00.0: enabling Extended Tags
[    0.246729] pci 0000:06:00.0: supports D1 D2
[    0.246731] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.246843] pci 0000:06:03.0: [8086:1513] type 01 class 0x060400
[    0.246904] pci 0000:06:03.0: enabling Extended Tags
[    0.247005] pci 0000:06:03.0: supports D1 D2
[    0.247007] pci 0000:06:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.247113] pci 0000:06:04.0: [8086:1513] type 01 class 0x060400
[    0.247173] pci 0000:06:04.0: enabling Extended Tags
[    0.247275] pci 0000:06:04.0: supports D1 D2
[    0.247277] pci 0000:06:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.247384] pci 0000:06:05.0: [8086:1513] type 01 class 0x060400
[    0.247444] pci 0000:06:05.0: enabling Extended Tags
[    0.247546] pci 0000:06:05.0: supports D1 D2
[    0.247548] pci 0000:06:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.247657] pci 0000:06:06.0: [8086:1513] type 01 class 0x060400
[    0.247718] pci 0000:06:06.0: enabling Extended Tags
[    0.247819] pci 0000:06:06.0: supports D1 D2
[    0.247821] pci 0000:06:06.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.247937] pci 0000:05:00.0: PCI bridge to [bus 06-ff]
[    0.247949] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xa8efffff]
[    0.248054] acpiphp: Slot [1] registered
[    0.248095] pci 0000:07:00.0: [8086:1513] type 00 class 0x088000
[    0.248123] pci 0000:07:00.0: reg 0x10: [mem 0xa8a00000-0xa8a3ffff]
[    0.248139] pci 0000:07:00.0: reg 0x14: [mem 0xa8a40000-0xa8a40fff]
[    0.248219] pci 0000:07:00.0: enabling Extended Tags
[    0.248344] pci 0000:07:00.0: supports D1 D2
[    0.248346] pci 0000:07:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.248487] pci 0000:06:00.0: PCI bridge to [bus 07-ff]
[    0.248500] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.248508] pci_bus 0000:07: busn_res: [bus 07-ff] end is updated to 07
[    0.248565] pci 0000:06:03.0: PCI bridge to [bus 08-ff]
[    0.248577] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xa8bfffff]
[    0.248586] pci_bus 0000:08: busn_res: [bus 08-ff] end is updated to 17
[    0.248647] pci 0000:06:04.0: PCI bridge to [bus 18-ff]
[    0.248659] pci 0000:06:04.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.248668] pci_bus 0000:18: busn_res: [bus 18-ff] end is updated to 27
[    0.248728] pci 0000:06:05.0: PCI bridge to [bus 28-ff]
[    0.248740] pci 0000:06:05.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.248749] pci_bus 0000:28: busn_res: [bus 28-ff] end is updated to 37
[    0.248805] pci 0000:06:06.0: PCI bridge to [bus 38-ff]
[    0.248817] pci 0000:06:06.0:   bridge window [mem 0xa8e00000-0xa8efffff]
[    0.248826] pci_bus 0000:38: busn_res: [bus 38-ff] end is updated to 47
[    0.248832] pci_bus 0000:06: busn_res: [bus 06-ff] end is updated to 47
[    0.248838] pci_bus 0000:05: busn_res: [bus 05-ff] end is updated to 47
[    0.248842] pci_bus 0000:00: on NUMA node 0
[    0.249094] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    0.249097] ACPI: PCI: Interrupt link LNKA disabled
[    0.249128] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    0.249131] ACPI: PCI: Interrupt link LNKB disabled
[    0.249160] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    0.249162] ACPI: PCI: Interrupt link LNKC disabled
[    0.249191] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    0.249193] ACPI: PCI: Interrupt link LNKD disabled
[    0.249221] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    0.249224] ACPI: PCI: Interrupt link LNKE disabled
[    0.249252] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    0.249254] ACPI: PCI: Interrupt link LNKF disabled
[    0.249282] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    0.249284] ACPI: PCI: Interrupt link LNKG disabled
[    0.249312] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    0.249315] ACPI: PCI: Interrupt link LNKH disabled
[    0.249400] ACPI: EC: interrupt unblocked
[    0.249402] ACPI: EC: event unblocked
[    0.249407] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.249409] ACPI: EC: GPE=0x17
[    0.249410] ACPI: \_SB_.PCI0.LPCB.EC__: Boot ECDT EC initialization complete
[    0.249413] ACPI: \_SB_.PCI0.LPCB.EC__: EC: Used to handle transactions and events
[    0.249469] SCSI subsystem initialized
[    0.249475] libata version 3.00 loaded.
[    0.249475] Registered efivars operations
[    0.249475] PCI: Using ACPI for IRQ routing
[    0.256644] PCI: pci_cache_line_size set to 64 bytes
[    0.256712] e820: reserve RAM buffer [mem 0x0008e000-0x0008ffff]
[    0.256714] e820: reserve RAM buffer [mem 0x899b1018-0x8bffffff]
[    0.256715] e820: reserve RAM buffer [mem 0x89a4f018-0x8bffffff]
[    0.256716] e820: reserve RAM buffer [mem 0x8ed33000-0x8fffffff]
[    0.256717] e820: reserve RAM buffer [mem 0x8ed71000-0x8fffffff]
[    0.256719] e820: reserve RAM buffer [mem 0x8ee5b000-0x8fffffff]
[    0.256720] e820: reserve RAM buffer [mem 0x8eed7000-0x8fffffff]
[    0.256721] e820: reserve RAM buffer [mem 0x8efa3000-0x8fffffff]
[    0.256722] e820: reserve RAM buffer [mem 0x86ff00000-0x86fffffff]
[    0.256731] pci 0000:01:00.0: vgaarb: setting as boot VGA device
[    0.256731] pci 0000:01:00.0: vgaarb: bridge control possible
[    0.256731] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    0.256731] vgaarb: loaded
[    0.256731] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.256731] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.256731] clocksource: Switched to clocksource tsc-early
[    0.256731] VFS: Disk quotas dquot_6.6.0
[    0.256731] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.256731] pnp: PnP ACPI init
[    0.256731] system 00:00: [mem 0xfed00000-0xfed003ff] has been reserved
[    0.256731] system 00:01: [io  0x0680-0x069f] has been reserved
[    0.256731] system 00:01: [io  0x1000-0x100f] has been reserved
[    0.256731] system 00:01: [io  0xffff] has been reserved
[    0.256731] system 00:01: [io  0xffff] has been reserved
[    0.256731] system 00:01: [io  0x0400-0x047f] has been reserved
[    0.256731] system 00:01: [io  0x0500-0x057f] has been reserved
[    0.256731] system 00:01: [io  0x164e-0x164f] has been reserved
[    0.256731] system 00:03: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.256731] system 00:03: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.256731] system 00:03: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.256731] system 00:03: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.256731] system 00:03: [mem 0xe0000000-0xefffffff] could not be reserved
[    0.256731] system 00:03: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.256731] system 00:03: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.256731] system 00:03: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.256731] system 00:03: [mem 0xff000000-0xffffffff] could not be reserved
[    0.256731] system 00:03: [mem 0xfee00000-0xfeefffff] has been reserved
[    0.256760] pnp: PnP ACPI: found 4 devices
[    0.256776] pci 0000:01:00.0: assigning 74 device properties
[    0.256776] pci 0000:04:00.0: assigning 2 device properties
[    0.256776] pci 0000:07:00.0: assigning 3 device properties
[    0.256776] pci 0000:00:1b.0: assigning 4 device properties
[    0.259086] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.259108] NET: Registered PF_INET protocol family
[    0.259266] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.261123] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    0.261161] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.261427] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.261513] TCP: Hash tables configured (established 262144 bind 65536)
[    0.261539] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.261600] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.261681] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.261689] pci 0000:03:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[    0.261695] pci_bus 0000:00: max bus depth: 3 pci_try_num: 4
[    0.261704] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.261707] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.261711] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.261714] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.261719] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.261724] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.261728] pci 0000:00:1c.0:   bridge window [mem 0xa8400000-0xa84fffff 64bit pref]
[    0.261736] pci 0000:03:00.0: BAR 6: assigned [mem 0xa8620000-0xa862ffff pref]
[    0.261739] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.261744] pci 0000:00:1c.1:   bridge window [mem 0xa8600000-0xa86fffff]
[    0.261752] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.261757] pci 0000:00:1c.2:   bridge window [mem 0xa8500000-0xa85fffff]
[    0.261766] pci 0000:05:00.0: BAR 9: no space for [mem size 0x100000000 64bit pref]
[    0.261769] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x100000000 64bit pref]
[    0.261773] pci 0000:05:00.0: BAR 7: no space for [io  size 0x4000]
[    0.261775] pci 0000:05:00.0: BAR 7: failed to assign [io  size 0x4000]
[    0.261779] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.261782] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.261785] pci 0000:06:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.261788] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.261791] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.261794] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.261797] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.261800] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.261803] pci 0000:06:03.0: BAR 7: no space for [io  size 0x1000]
[    0.261805] pci 0000:06:03.0: BAR 7: failed to assign [io  size 0x1000]
[    0.261807] pci 0000:06:04.0: BAR 7: no space for [io  size 0x1000]
[    0.261810] pci 0000:06:04.0: BAR 7: failed to assign [io  size 0x1000]
[    0.261812] pci 0000:06:05.0: BAR 7: no space for [io  size 0x1000]
[    0.261814] pci 0000:06:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.261817] pci 0000:06:06.0: BAR 7: no space for [io  size 0x1000]
[    0.261819] pci 0000:06:06.0: BAR 7: failed to assign [io  size 0x1000]
[    0.261822] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.261829] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.261841] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.261847] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xa8bfffff]
[    0.261859] pci 0000:06:04.0: PCI bridge to [bus 18-27]
[    0.261866] pci 0000:06:04.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.261878] pci 0000:06:05.0: PCI bridge to [bus 28-37]
[    0.261885] pci 0000:06:05.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.261896] pci 0000:06:06.0: PCI bridge to [bus 38-47]
[    0.261903] pci 0000:06:06.0:   bridge window [mem 0xa8e00000-0xa8efffff]
[    0.261915] pci 0000:05:00.0: PCI bridge to [bus 06-47]
[    0.261922] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xa8efffff]
[    0.261933] pci 0000:00:1c.4: PCI bridge to [bus 05-47]
[    0.261936] pci 0000:00:1c.4:   bridge window [io  0x4000-0x4fff]
[    0.261941] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xacefffff]
[    0.261945] pci 0000:00:1c.4:   bridge window [mem 0xacf00000-0xb0efffff 64bit pref]
[    0.261952] pci_bus 0000:00: No. 2 try to assign unassigned res
[    0.261957] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.261959] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.261962] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.261965] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.261969] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.261974] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.261978] pci 0000:00:1c.0:   bridge window [mem 0xa8400000-0xa84fffff 64bit pref]
[    0.261985] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.261989] pci 0000:00:1c.1:   bridge window [mem 0xa8600000-0xa86fffff]
[    0.261997] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.262002] pci 0000:00:1c.2:   bridge window [mem 0xa8500000-0xa85fffff]
[    0.262010] pci 0000:05:00.0: BAR 9: no space for [mem size 0x100000000 64bit pref]
[    0.262013] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x100000000 64bit pref]
[    0.262016] pci 0000:05:00.0: BAR 7: no space for [io  size 0x4000]
[    0.262019] pci 0000:05:00.0: BAR 7: failed to assign [io  size 0x4000]
[    0.262022] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.262025] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.262028] pci 0000:06:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.262031] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.262034] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.262036] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.262039] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.262042] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.262045] pci 0000:06:03.0: BAR 7: no space for [io  size 0x1000]
[    0.262047] pci 0000:06:03.0: BAR 7: failed to assign [io  size 0x1000]
[    0.262050] pci 0000:06:04.0: BAR 7: no space for [io  size 0x1000]
[    0.262052] pci 0000:06:04.0: BAR 7: failed to assign [io  size 0x1000]
[    0.262054] pci 0000:06:05.0: BAR 7: no space for [io  size 0x1000]
[    0.262057] pci 0000:06:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.262059] pci 0000:06:06.0: BAR 7: no space for [io  size 0x1000]
[    0.262061] pci 0000:06:06.0: BAR 7: failed to assign [io  size 0x1000]
[    0.262064] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.262071] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.262083] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.262089] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xa8bfffff]
[    0.262101] pci 0000:06:04.0: PCI bridge to [bus 18-27]
[    0.262108] pci 0000:06:04.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.262120] pci 0000:06:05.0: PCI bridge to [bus 28-37]
[    0.262126] pci 0000:06:05.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.262138] pci 0000:06:06.0: PCI bridge to [bus 38-47]
[    0.262145] pci 0000:06:06.0:   bridge window [mem 0xa8e00000-0xa8efffff]
[    0.262157] pci 0000:05:00.0: PCI bridge to [bus 06-47]
[    0.262163] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xa8efffff]
[    0.262175] pci 0000:00:1c.4: PCI bridge to [bus 05-47]
[    0.262178] pci 0000:00:1c.4:   bridge window [io  0x4000-0x4fff]
[    0.262182] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xacefffff]
[    0.262187] pci 0000:00:1c.4:   bridge window [mem 0xacf00000-0xb0efffff 64bit pref]
[    0.262193] pci_bus 0000:00: No. 3 try to assign unassigned res
[    0.262195] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.262196] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.262197] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.262200] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.262205] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xa8bfffff] released
[    0.262207] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.262213] pci 0000:06:04.0: resource 8 [mem 0xa8c00000-0xa8cfffff] released
[    0.262215] pci 0000:06:04.0: PCI bridge to [bus 18-27]
[    0.262220] pci 0000:06:05.0: resource 8 [mem 0xa8d00000-0xa8dfffff] released
[    0.262223] pci 0000:06:05.0: PCI bridge to [bus 28-37]
[    0.262228] pci 0000:06:06.0: resource 8 [mem 0xa8e00000-0xa8efffff] released
[    0.262230] pci 0000:06:06.0: PCI bridge to [bus 38-47]
[    0.262235] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xa8efffff] released
[    0.262238] pci 0000:05:00.0: PCI bridge to [bus 06-47]
[    0.262243] pci 0000:00:1c.4: resource 7 [io  0x4000-0x4fff] released
[    0.262246] pci 0000:00:1c.4: PCI bridge to [bus 05-47]
[    0.262252] pci 0000:00:1c.4: resource 9 [mem 0xacf00000-0xb0efffff 64bit pref] released
[    0.262255] pci 0000:00:1c.4: PCI bridge to [bus 05-47]
[    0.262266] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x100000000 64bit pref]
[    0.262270] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x100000000 64bit pref]
[    0.262273] pci 0000:00:1c.4: BAR 7: assigned [io  0x4000-0x7fff]
[    0.262276] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.262278] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.262281] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.262284] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.262288] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.262293] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.262297] pci 0000:00:1c.0:   bridge window [mem 0xa8400000-0xa84fffff 64bit pref]
[    0.262303] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.262308] pci 0000:00:1c.1:   bridge window [mem 0xa8600000-0xa86fffff]
[    0.262316] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.262320] pci 0000:00:1c.2:   bridge window [mem 0xa8500000-0xa85fffff]
[    0.262329] pci 0000:05:00.0: BAR 8: no space for [mem size 0x20100000]
[    0.262331] pci 0000:05:00.0: BAR 8: failed to assign [mem size 0x20100000]
[    0.262334] pci 0000:05:00.0: BAR 9: no space for [mem size 0x100000000 64bit pref]
[    0.262337] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x100000000 64bit pref]
[    0.262340] pci 0000:05:00.0: BAR 7: assigned [io  0x4000-0x7fff]
[    0.262343] pci 0000:06:00.0: BAR 8: no space for [mem size 0x00100000]
[    0.262345] pci 0000:06:00.0: BAR 8: failed to assign [mem size 0x00100000]
[    0.262348] pci 0000:06:03.0: BAR 8: no space for [mem size 0x08000000]
[    0.262350] pci 0000:06:03.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.262353] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.262356] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.262358] pci 0000:06:04.0: BAR 8: no space for [mem size 0x08000000]
[    0.262361] pci 0000:06:04.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.262363] pci 0000:06:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.262366] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.262369] pci 0000:06:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.262371] pci 0000:06:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.262374] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.262377] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.262380] pci 0000:06:06.0: BAR 8: no space for [mem size 0x08000000]
[    0.262382] pci 0000:06:06.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.262385] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.262387] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.262390] pci 0000:06:03.0: BAR 7: assigned [io  0x4000-0x4fff]
[    0.262393] pci 0000:06:04.0: BAR 7: assigned [io  0x5000-0x5fff]
[    0.262395] pci 0000:06:05.0: BAR 7: assigned [io  0x6000-0x6fff]
[    0.262398] pci 0000:06:06.0: BAR 7: assigned [io  0x7000-0x7fff]
[    0.262400] pci 0000:07:00.0: BAR 0: no space for [mem size 0x00040000]
[    0.262403] pci 0000:07:00.0: BAR 0: failed to assign [mem size 0x00040000]
[    0.262405] pci 0000:07:00.0: BAR 1: no space for [mem size 0x00001000]
[    0.262408] pci 0000:07:00.0: BAR 1: failed to assign [mem size 0x00001000]
[    0.262410] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.262426] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.262430] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.262446] pci 0000:06:04.0: PCI bridge to [bus 18-27]
[    0.262450] pci 0000:06:04.0:   bridge window [io  0x5000-0x5fff]
[    0.262466] pci 0000:06:05.0: PCI bridge to [bus 28-37]
[    0.262470] pci 0000:06:05.0:   bridge window [io  0x6000-0x6fff]
[    0.262486] pci 0000:06:06.0: PCI bridge to [bus 38-47]
[    0.262490] pci 0000:06:06.0:   bridge window [io  0x7000-0x7fff]
[    0.262506] pci 0000:05:00.0: PCI bridge to [bus 06-47]
[    0.262510] pci 0000:05:00.0:   bridge window [io  0x4000-0x7fff]
[    0.262526] pci 0000:00:1c.4: PCI bridge to [bus 05-47]
[    0.262529] pci 0000:00:1c.4:   bridge window [io  0x4000-0x7fff]
[    0.262533] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xacefffff]
[    0.262541] pci_bus 0000:00: No. 4 try to assign unassigned res
[    0.262544] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xacefffff] released
[    0.262547] pci 0000:00:1c.4: PCI bridge to [bus 05-47]
[    0.262551] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.262552] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.262554] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.262558] release child resource [mem 0xa8400000-0xa840ffff 64bit pref]
[    0.262559] release child resource [mem 0xa8410000-0xa841ffff 64bit pref]
[    0.262560] pci 0000:00:1c.0: resource 9 [mem 0xa8400000-0xa84fffff 64bit pref] released
[    0.262562] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.262569] release child resource [mem 0xa8600000-0xa861ffff 64bit]
[    0.262570] release child resource [mem 0xa8620000-0xa862ffff pref]
[    0.262571] pci 0000:00:1c.1: resource 8 [mem 0xa8600000-0xa86fffff] released
[    0.262573] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.262577] release child resource [mem 0xa8500000-0xa8500fff 64bit]
[    0.262578] pci 0000:00:1c.2: resource 8 [mem 0xa8500000-0xa85fffff] released
[    0.262580] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.262589] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.262593] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.262596] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.262599] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.262602] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xc8afffff]
[    0.262606] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x100000000 64bit pref]
[    0.262609] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x100000000 64bit pref]
[    0.262612] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.262621] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.262623] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.262626] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.262629] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.262633] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.262649] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.262664] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.262669] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.262673] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.262680] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.262694] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.262697] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.262702] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.262710] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.262725] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.262730] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.262738] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xc8afffff]
[    0.262741] pci 0000:05:00.0: BAR 9: no space for [mem size 0x100000000 64bit pref]
[    0.262744] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x100000000 64bit pref]
[    0.262748] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.262750] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.262753] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.262756] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.262759] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xb8afffff]
[    0.262761] pci 0000:06:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.262764] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.262767] pci 0000:06:05.0: BAR 8: assigned [mem 0xb8b00000-0xc0afffff]
[    0.262770] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.262773] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.262776] pci 0000:06:06.0: BAR 8: assigned [mem 0xc0b00000-0xc8afffff]
[    0.262778] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.262781] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.262785] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.262791] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.262797] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.262804] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.262816] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.262820] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.262826] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.262838] pci 0000:06:04.0: PCI bridge to [bus 18-27]
[    0.262842] pci 0000:06:04.0:   bridge window [io  0x5000-0x5fff]
[    0.262849] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xb8afffff]
[    0.262860] pci 0000:06:05.0: PCI bridge to [bus 28-37]
[    0.262864] pci 0000:06:05.0:   bridge window [io  0x6000-0x6fff]
[    0.262871] pci 0000:06:05.0:   bridge window [mem 0xb8b00000-0xc0afffff]
[    0.262883] pci 0000:06:06.0: PCI bridge to [bus 38-47]
[    0.262886] pci 0000:06:06.0:   bridge window [io  0x7000-0x7fff]
[    0.262893] pci 0000:06:06.0:   bridge window [mem 0xc0b00000-0xc8afffff]
[    0.262905] pci 0000:05:00.0: PCI bridge to [bus 06-47]
[    0.262908] pci 0000:05:00.0:   bridge window [io  0x4000-0x7fff]
[    0.262915] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xc8afffff]
[    0.262926] pci 0000:00:1c.4: PCI bridge to [bus 05-47]
[    0.262929] pci 0000:00:1c.4:   bridge window [io  0x4000-0x7fff]
[    0.262934] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xc8afffff]
[    0.262942] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.262945] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.262947] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000fffff window]
[    0.262950] pci_bus 0000:00: resource 7 [mem 0x8f900000-0xfeafffff window]
[    0.262953] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff window]
[    0.262955] pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
[    0.262957] pci_bus 0000:01: resource 1 [mem 0xa8800000-0xa88fffff]
[    0.262960] pci_bus 0000:01: resource 2 [mem 0x90000000-0x9fffffff 64bit pref]
[    0.262963] pci_bus 0000:02: resource 1 [mem 0xa8700000-0xa87fffff]
[    0.262965] pci_bus 0000:02: resource 2 [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.262968] pci_bus 0000:03: resource 1 [mem 0x8fa00000-0x8fafffff]
[    0.262970] pci_bus 0000:04: resource 1 [mem 0x8fb00000-0x8fbfffff]
[    0.262972] pci_bus 0000:05: resource 0 [io  0x4000-0x7fff]
[    0.262975] pci_bus 0000:05: resource 1 [mem 0xa8a00000-0xc8afffff]
[    0.262977] pci_bus 0000:06: resource 0 [io  0x4000-0x7fff]
[    0.262979] pci_bus 0000:06: resource 1 [mem 0xa8a00000-0xc8afffff]
[    0.262982] pci_bus 0000:07: resource 1 [mem 0xa8a00000-0xa8afffff]
[    0.262984] pci_bus 0000:08: resource 0 [io  0x4000-0x4fff]
[    0.262986] pci_bus 0000:08: resource 1 [mem 0xa8b00000-0xb0afffff]
[    0.262988] pci_bus 0000:18: resource 0 [io  0x5000-0x5fff]
[    0.262991] pci_bus 0000:18: resource 1 [mem 0xb0b00000-0xb8afffff]
[    0.262993] pci_bus 0000:28: resource 0 [io  0x6000-0x6fff]
[    0.262995] pci_bus 0000:28: resource 1 [mem 0xb8b00000-0xc0afffff]
[    0.262998] pci_bus 0000:38: resource 0 [io  0x7000-0x7fff]
[    0.263000] pci_bus 0000:38: resource 1 [mem 0xc0b00000-0xc8afffff]
[    0.263430] pci 0000:01:00.1: D0 power state depends on 0000:01:00.0
[    0.263462] PCI: CLS 256 bytes, default 64
[    0.263501] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.263504] software IO TLB: mapped [mem 0x0000000083000000-0x0000000087000000] (64MB)
[    0.263511] ACPI: bus type thunderbolt registered
[    0.263531] Trying to unpack rootfs image as initramfs...
[    0.263655] thunderbolt 0000:07:00.0: total paths: 32
[    0.263829] thunderbolt 0000:07:00.0: allocating TX ring 0 of size 10
[    0.263849] thunderbolt 0000:07:00.0: allocating RX ring 0 of size 10
[    0.263861] thunderbolt 0000:07:00.0: control channel created
[    0.263864] thunderbolt 0000:07:00.0: ICM not supported on this controller
[    0.263874] thunderbolt 0000:07:00.0: freeing RX ring 0
[    0.263881] thunderbolt 0000:07:00.0: freeing TX ring 0
[    0.263891] thunderbolt 0000:07:00.0: allocating TX ring 0 of size 10
[    0.263899] thunderbolt 0000:07:00.0: allocating RX ring 0 of size 10
[    0.263907] thunderbolt 0000:07:00.0: control channel created
[    0.263908] thunderbolt 0000:07:00.0: using software connection manager
[    0.263923] thunderbolt 0000:07:00.0: created link from 0000:06:03.0
[    0.263935] thunderbolt 0000:07:00.0: created link from 0000:06:04.0
[    0.263945] thunderbolt 0000:07:00.0: created link from 0000:06:05.0
[    0.263956] thunderbolt 0000:07:00.0: created link from 0000:06:06.0
[    0.264007] thunderbolt 0000:07:00.0: NHI initialized, starting thunderbolt
[    0.264009] thunderbolt 0000:07:00.0: control channel starting...
[    0.264010] thunderbolt 0000:07:00.0: starting TX ring 0
[    0.264018] thunderbolt 0000:07:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[    0.264020] thunderbolt 0000:07:00.0: starting RX ring 0
[    0.264028] thunderbolt 0000:07:00.0: enabling interrupt at register 0x38204 bit 0 (0x0 -> 0x1)
[    0.264031] thunderbolt 0000:07:00.0: security level set to user
[    0.264186] thunderbolt 0000:07:00.0: current switch config:
[    0.264188] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[    0.264190] thunderbolt 0000:07:00.0:   Max Port Number: 13
[    0.264192] thunderbolt 0000:07:00.0:   Config:
[    0.264192] thunderbolt 0000:07:00.0:    Upstream Port Number: 6 Depth: 0 Route String: 0x0 Enabled: 1, PlugEventsDelay: 255ms
[    0.264194] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[    0.268795] thunderbolt 0000:07:00.0: initializing Switch at 0x0 (depth: 0, up port: 6)
[    0.269307] thunderbolt 0000:07:00.0: 0: DROM version: 1
[    0.270842] thunderbolt 0000:07:00.0: 0: uid: 0x1000a13f2da20
[    0.273786] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    0.273788] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    0.273790] thunderbolt 0000:07:00.0:   Max counters: 32
[    0.273791] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.273792] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.276729] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    0.276731] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    0.276732] thunderbolt 0000:07:00.0:   Max counters: 32
[    0.276733] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.276734] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.279673] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    0.279675] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    0.279676] thunderbolt 0000:07:00.0:   Max counters: 32
[    0.279677] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.279678] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.280314] random: fast init done
[    0.282618] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    0.282620] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    0.282621] thunderbolt 0000:07:00.0:   Max counters: 32
[    0.282622] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.282622] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.282624] thunderbolt 0000:07:00.0: 0:5: disabled by eeprom
[    0.283514] thunderbolt 0000:07:00.0:  Port 6: 8086:1513 (Revision: 2, TB Version: 1, Type: NHI (0x2))
[    0.283516] thunderbolt 0000:07:00.0:   Max hop id (in/out): 31/31
[    0.283517] thunderbolt 0000:07:00.0:   Max counters: 32
[    0.283518] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.283519] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.284410] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    0.284412] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.284413] thunderbolt 0000:07:00.0:   Max counters: 1
[    0.284414] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.284415] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.285306] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    0.285308] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.285309] thunderbolt 0000:07:00.0:   Max counters: 1
[    0.285309] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.285310] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.286202] thunderbolt 0000:07:00.0:  Port 9: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    0.286204] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.286205] thunderbolt 0000:07:00.0:   Max counters: 1
[    0.286206] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.286206] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.287098] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    0.287100] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.287101] thunderbolt 0000:07:00.0:   Max counters: 1
[    0.287102] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.287103] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.288250] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[    0.288252] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    0.288253] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.288254] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.288255] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.289146] thunderbolt 0000:07:00.0:  Port 12: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0101))
[    0.289148] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    0.289149] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.289150] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.289151] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.290042] thunderbolt 0000:07:00.0:  Port 13: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0101))
[    0.290044] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    0.290045] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.290046] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.290047] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.306383] thunderbolt 0000:07:00.0: 0: TMU: current mode: HiFi
[    0.306511] thunderbolt 0000:07:00.0: 0:1: is unplugged (state: 7)
[    0.306638] thunderbolt 0000:07:00.0: 0:3: is unplugged (state: 7)
[    0.307535] thunderbolt 0000:07:00.0: 0:c: DP IN resource available
[    0.307536] thunderbolt 0000:07:00.0: 0:d: DP IN resource available
[    0.307704] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer
[    0.307711] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[    0.307713] RAPL PMU: hw unit of domain package 2^-16 Joules
[    0.307715] RAPL PMU: hw unit of domain pp1-gpu 2^-16 Joules
[    0.308322] Initialise system trusted keyrings
[    0.308342] workingset: timestamp_bits=62 max_order=23 bucket_order=0
[    0.309043] Key type asymmetric registered
[    0.309046] Asymmetric key parser 'x509' registered
[    0.309057] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
[    0.309888] pcieport 0000:06:03.0: enabling device (0000 -> 0003)
[    0.309973] pcieport 0000:06:03.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    0.310128] pcieport 0000:06:04.0: enabling device (0000 -> 0003)
[    0.310200] pcieport 0000:06:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    0.310346] pcieport 0000:06:05.0: enabling device (0000 -> 0003)
[    0.310416] pcieport 0000:06:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    0.310558] pcieport 0000:06:06.0: enabling device (0000 -> 0003)
[    0.310626] pcieport 0000:06:06.0: pciehp: Slot #6 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    0.319731] brd: module loaded
[    0.319979] Intel(R) 2.5G Ethernet Linux Driver
[    0.319983] Copyright(c) 2018 Intel Corporation.
[    0.320034] i8042: PNP: No PS/2 controller found.
[    0.320071] mousedev: PS/2 mouse device common for all mice
[    0.320196] intel_pstate: Intel P-state driver initializing
[    0.320314] efifb: probing for efifb
[    0.320331] efifb: framebuffer at 0x90010000, using 14400k, total 14400k
[    0.320333] efifb: mode is 2560x1440x32, linelength=10240, pages=1
[    0.320336] efifb: scrolling: redraw
[    0.320337] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.329847] Console: switching to colour frame buffer device 320x90
[    0.338924] fb0: EFI VGA frame buffer device
[    0.339018] Key type dns_resolver registered
[    0.339081] microcode: sig=0x206a7, pf=0x2, revision=0x2f
[    0.339244] microcode: Microcode Update Driver: v2.2.
[    0.339247] IPI shorthand broadcast: enabled
[    0.339304] sched_clock: Marking stable (338821064, 418411)->(351133395, -11893920)
[    0.339365] registered taskstats version 1
[    0.339390] Loading compiled-in X.509 certificates
[    0.509968] Freeing initrd memory: 27980K
[    0.510364] Freeing unused kernel image (initmem) memory: 956K
[    0.573487] Write protecting the kernel read-only data: 12288k
[    0.574175] Freeing unused kernel image (text/rodata gap) memory: 2044K
[    0.574237] Freeing unused kernel image (rodata/data gap) memory: 188K
[    0.574268] Run /init as init process
[    0.574283]   with arguments:
[    0.574284]     /init
[    0.574285]   with environment:
[    0.574285]     HOME=/
[    0.574286]     TERM=linux
[    0.574287]     netconsole=6666@192.168.2.87/eth0,6666@192.168.2.208/dc:a6:32:61:33:da
[    0.618160] udevd[818]: starting version 3.2.9
[    0.618352] random: udevd: uninitialized urandom read (16 bytes read)
[    0.618397] random: udevd: uninitialized urandom read (16 bytes read)
[    0.618941] udevd[819]: starting eudev-3.2.9
[    0.626378] random: udevd: uninitialized urandom read (16 bytes read)
[    0.633744] ACPI: bus type USB registered
[    0.633793] usbcore: registered new interface driver usbfs
[    0.633827] usbcore: registered new interface driver hub
[    0.633861] usbcore: registered new device driver usb
[    0.635165] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.635198] ACPI: bus type drm_connector registered
[    0.635420] ehci-pci: EHCI PCI platform driver
[    0.635556] ehci-pci 0000:00:1a.7: EHCI Host Controller
[    0.635596] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 1
[    0.635639] ehci-pci 0000:00:1a.7: debug port 2
[    0.635656] uhci_hcd: USB Universal Host Controller Interface driver
[    0.635690] ahci 0000:00:1f.2: version 3.0
[    0.636016] cryptd: max_cpu_qlen set to 1000
[    0.637174] AVX version of gcm_enc/dec engaged.
[    0.637218] AES CTR mode by8 optimization enabled
[    0.639598] ehci-pci 0000:00:1a.7: irq 23, io mem 0xa8906c00
[    0.646071] radeon: unknown parameter 'pm' ignored
[    0.646158] [drm] radeon kernel modesetting enabled.
[    0.646206] checking generic (90010000 e10000) vs hw (90000000 10000000)
[    0.646207] fb0: switching to radeon from EFI VGA
[    0.646304] Console: switching to colour dummy device 80x25
[    0.646358] radeon 0000:01:00.0: vgaarb: deactivate vga console
[    0.646522] [drm] initializing kernel modesetting (BARTS 0x1002:0x6720 0x106B:0x0B00 0x00).
[    0.646527] radeon 0000:01:00.0: vram limit (0) must be a power of 2
[    0.653595] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x7 impl SATA mode
[    0.653706] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst
[    0.663346] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[    0.663377] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
[    0.663382] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.663385] usb usb1: Product: EHCI Host Controller
[    0.663387] usb usb1: Manufacturer: Linux 5.17.0+ ehci_hcd
[    0.663389] usb usb1: SerialNumber: 0000:00:1a.7
[    0.663506] hub 1-0:1.0: USB hub found
[    0.663559] hub 1-0:1.0: 6 ports detected
[    0.663772] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[    0.663783] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 2
[    0.663824] uhci_hcd 0000:00:1a.0: detected 2 ports
[    0.663953] uhci_hcd 0000:00:1a.0: irq 21, io port 0x00003140
[    0.664073] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17
[    0.664078] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.664081] usb usb2: Product: UHCI Host Controller
[    0.664083] usb usb2: Manufacturer: Linux 5.17.0+ uhci_hcd
[    0.664085] usb usb2: SerialNumber: 0000:00:1a.0
[    0.664159] hub 2-0:1.0: USB hub found
[    0.664169] hub 2-0:1.0: 2 ports detected
[    0.664365] ehci-pci 0000:00:1d.7: EHCI Host Controller
[    0.664373] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 3
[    0.664482] ehci-pci 0000:00:1d.7: debug port 2
[    0.668523] ehci-pci 0000:00:1d.7: irq 22, io mem 0xa8906800
[    0.693361] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    0.693432] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
[    0.693437] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.693440] usb usb3: Product: EHCI Host Controller
[    0.693442] usb usb3: Manufacturer: Linux 5.17.0+ ehci_hcd
[    0.693444] usb usb3: SerialNumber: 0000:00:1d.7
[    0.693707] hub 3-0:1.0: USB hub found
[    0.693716] hub 3-0:1.0: 8 ports detected
[    0.694057] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    0.694066] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
[    0.694102] uhci_hcd 0000:00:1d.0: detected 2 ports
[    0.694225] uhci_hcd 0000:00:1d.0: irq 19, io port 0x000030e0
[    0.694373] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17
[    0.694379] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.694385] usb usb4: Product: UHCI Host Controller
[    0.694388] usb usb4: Manufacturer: Linux 5.17.0+ uhci_hcd
[    0.694392] usb usb4: SerialNumber: 0000:00:1d.0
[    0.694597] hub 4-0:1.0: USB hub found
[    0.694609] hub 4-0:1.0: 2 ports detected
[    0.703534] firewire_ohci 0000:04:00.0: added OHCI v1.10 device as card 0, 8 IR + 8 IT contexts, quirks 0x0, physUB
[    0.714061] scsi host0: ahci
[    0.714248] scsi host1: ahci
[    0.714550] scsi host2: ahci
[    0.714715] scsi host3: ahci
[    0.714828] scsi host4: ahci
[    0.714906] scsi host5: ahci
[    0.714947] ata1: SATA max UDMA/133 abar m2048@0xa8906000 port 0xa8906100 irq 44
[    0.714959] ata2: SATA max UDMA/133 abar m2048@0xa8906000 port 0xa8906180 irq 44
[    0.714970] ata3: SATA max UDMA/133 abar m2048@0xa8906000 port 0xa8906200 irq 44
[    0.714974] ata4: DUMMY
[    0.714977] ata5: DUMMY
[    0.714980] ata6: DUMMY
[    0.948048] ATOM BIOS: Apple
[    0.948194] radeon 0000:01:00.0: VRAM: 1024M 0x0000000000000000 - 0x000000003FFFFFFF (1024M used)
[    0.948198] radeon 0000:01:00.0: GTT: 1024M 0x0000000040000000 - 0x000000007FFFFFFF
[    0.948204] [drm] Detected VRAM RAM=1024M, BAR=256M
[    0.948206] [drm] RAM width 256bits DDR
[    0.948223] [drm] radeon: 1024M of VRAM memory ready
[    0.948225] [drm] radeon: 1024M of GTT memory ready.
[    0.948231] [drm] Loading BARTS Microcode
[    0.948281] [drm] External GPIO thermal controller with fan control
[    0.948295] == power state 0 ==
[    0.948297] 	ui class: none
[    0.948299] 	internal class: boot
[    0.948301] 	caps:
[    0.948302] 	uvd    vclk: 0 dclk: 0
[    0.948304] 		power level 0    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    0.948306] 		power level 1    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    0.948308] 		power level 2    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    0.948309] 	status: c r b
[    0.948312] == power state 1 ==
[    0.948313] 	ui class: performance
[    0.948314] 	internal class: none
[    0.948316] 	caps:
[    0.948317] 	uvd    vclk: 0 dclk: 0
[    0.948318] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    0.948320] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    0.948322] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    0.948324] 	status:
[    0.948325] == power state 2 ==
[    0.948326] 	ui class: none
[    0.948327] 	internal class: uvd
[    0.948329] 	caps: video
[    0.948330] 	uvd    vclk: 54000 dclk: 40000
[    0.948332] 		power level 0    sclk: 29800 mclk: 90000 vddc: 950 vddci: 1100
[    0.948334] 		power level 1    sclk: 29800 mclk: 90000 vddc: 950 vddci: 1100
[    0.948336] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    0.948337] 	status:
[    0.948339] == power state 3 ==
[    0.948340] 	ui class: none
[    0.948341] 	internal class: uvd_mvc
[    0.948342] 	caps: video
[    0.948344] 	uvd    vclk: 70000 dclk: 56000
[    0.948345] 		power level 0    sclk: 50200 mclk: 90000 vddc: 1050 vddci: 1100
[    0.948347] 		power level 1    sclk: 50200 mclk: 90000 vddc: 1050 vddci: 1100
[    0.948349] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    0.948351] 	status:
[    0.948352] == power state 4 ==
[    0.948353] 	ui class: battery
[    0.948354] 	internal class: none
[    0.948356] 	caps:
[    0.948357] 	uvd    vclk: 0 dclk: 0
[    0.948358] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    0.948360] 		power level 1    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    0.948362] 		power level 2    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    0.948364] 	status:
[    0.953223] [drm] radeon: dpm initialized
[    0.953276] [drm] GART: num cpu pages 262144, num gpu pages 262144
[    0.953703] [drm] enabling PCIE gen 2 link speeds, disable with radeon.pcie_gen2=0
[    0.965568] [drm] PCIE GART of 1024M enabled (table at 0x0000000000162000).
[    0.965668] radeon 0000:01:00.0: WB enabled
[    0.965671] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000040000c00
[    0.965673] radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000040000c0c
[    0.966420] radeon 0000:01:00.0: fence driver on ring 5 use gpu addr 0x0000000000072118
[    0.966936] radeon 0000:01:00.0: radeon: MSI limited to 32-bit
[    0.966985] radeon 0000:01:00.0: radeon: using MSI.
[    0.967014] [drm] radeon: irq initialized.
[    0.983325] usb 3-1: new high-speed USB device number 2 using ehci-pci
[    0.983341] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    0.983379] [drm] ring test on 0 succeeded in 1 usecs
[    0.983391] [drm] ring test on 3 succeeded in 6 usecs
[    1.053339] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    1.053361] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    1.053386] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.054986] ata2.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    1.055062] ata1.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    1.055070] ata2.00: supports DRM functions and may not be fully accessible
[    1.055075] ata2.00: ATA-9: Samsung SSD 850 EVO 500GB, EMT02B6Q, max UDMA/133
[    1.055116] ata1.00: supports DRM functions and may not be fully accessible
[    1.055121] ata1.00: ATA-9: Samsung SSD 850 PRO 256GB, EXM03B6Q, max UDMA/133
[    1.055228] ata3.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    1.055234] ata3.00: ATAPI: OPTIARC DVD RW AD-5690H, 4AH5, max UDMA/100
[    1.055695] ata2.00: 976773168 sectors, multi 1: LBA48 NCQ (depth 32), AA
[    1.055745] ata1.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 32), AA
[    1.057329] ata3.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    1.057338] ata3.00: configured for UDMA/100
[    1.057661] ata2.00: Features: Trust Dev-Sleep NCQ-sndrcv
[    1.057780] ata1.00: Features: Trust Dev-Sleep NCQ-sndrcv
[    1.057994] ata2.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    1.058080] ata1.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    1.058087] ata2.00: supports DRM functions and may not be fully accessible
[    1.058116] ata1.00: supports DRM functions and may not be fully accessible
[    1.060745] ata1.00: configured for UDMA/133
[    1.060857] scsi 0:0:0:0: Direct-Access     ATA      Samsung SSD 850  3B6Q PQ: 0 ANSI: 5
[    1.060885] ata2.00: configured for UDMA/133
[    1.061105] scsi 1:0:0:0: Direct-Access     ATA      Samsung SSD 850  2B6Q PQ: 0 ANSI: 5
[    1.062539] scsi 2:0:0:0: CD-ROM            OPTIARC  DVD RW AD-5690H  4AH5 PQ: 0 ANSI: 5
[    1.160524] [drm] ring test on 5 succeeded in 2 usecs
[    1.160536] [drm] UVD initialized successfully.
[    1.160659] [drm] ib test on ring 0 succeeded in 0 usecs
[    1.160764] [drm] ib test on ring 3 succeeded in 0 usecs
[    1.183782] usb 3-1: New USB device found, idVendor=0424, idProduct=2514, bcdDevice= 0.03
[    1.183788] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.184057] hub 3-1:1.0: USB hub found
[    1.184265] hub 3-1:1.0: 4 ports detected
[    1.213408] firewire_core 0000:04:00.0: created device fw0: GUID a4b197fffe3f2da2, S800
[    1.213418] firewire_core 0000:04:00.0: phy config: new root=ffc0, gap_count=63
[    1.225131] tg3 0000:02:00.0 eth0: Tigon3 [partno(BCM957765) rev 57785100] (PCI Express) MAC address 3c:07:54:14:b2:08
[    1.225138] tg3 0000:02:00.0 eth0: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    1.225141] tg3 0000:02:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    1.225145] tg3 0000:02:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[    1.353372] tsc: Refined TSC clocksource calibration: 3400.023 MHz
[    1.353390] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x31026473058, max_idle_ns: 440795314252 ns
[    1.353502] clocksource: Switched to clocksource tsc
[    1.354006] usb 1-1: New USB device found, idVendor=0424, idProduct=2514, bcdDevice= 0.03
[    1.354012] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.354303] hub 1-1:1.0: USB hub found
[    1.354388] hub 1-1:1.0: 3 ports detected
[    1.356445] sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[    1.356461] sd 0:0:0:0: [sda] Write Protect is off
[    1.356467] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.356474] sd 1:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[    1.356483] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.356485] sd 1:0:0:0: [sdb] Write Protect is off
[    1.356493] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    1.356502] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.358800] sd 1:0:0:0: [sdb] supports TCG Opal
[    1.358804] sd 1:0:0:0: [sdb] Attached SCSI disk
[    1.358939]  sda: sda1 sda2 sda3 sda4 sda5 sda6
[    1.359813] sd 0:0:0:0: [sda] supports TCG Opal
[    1.359817] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.360297] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    1.360324] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    1.360350] sr 2:0:0:0: Attached scsi generic sg2 type 5
[    1.455637] sr 2:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda caddy
[    1.455646] cdrom: Uniform CD-ROM driver Revision: 3.20
[    1.503373] usb 3-1.1: new high-speed USB device number 3 using ehci-pci
[    1.503375] usb 1-2: new high-speed USB device number 3 using ehci-pci
[    1.524492] sr 2:0:0:0: Attached scsi CD-ROM sr0
[    1.659016] usb 3-1.1: New USB device found, idVendor=05ac, idProduct=8403, bcdDevice=98.33
[    1.659022] usb 3-1.1: New USB device strings: Mfr=3, Product=4, SerialNumber=2
[    1.659025] usb 3-1.1: Product: Card Reader
[    1.659027] usb 3-1.1: Manufacturer: Apple
[    1.659029] usb 3-1.1: SerialNumber: 000000009833
[    1.661033] usb-storage 3-1.1:1.0: USB Mass Storage device detected
[    1.661105] scsi host6: usb-storage 3-1.1:1.0
[    1.661177] usbcore: registered new interface driver usb-storage
[    1.661435] usbcore: registered new interface driver uas
[    1.716763] usb 1-2: New USB device found, idVendor=05ac, idProduct=850b, bcdDevice= 7.55
[    1.716769] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    1.716772] usb 1-2: Product: FaceTime HD Camera (Built-in)
[    1.716774] usb 1-2: Manufacturer: Apple Inc.
[    1.716776] usb 1-2: SerialNumber: CCGB8K062WDDJRLX
[    1.753372] usb 3-1.2: new low-speed USB device number 4 using ehci-pci
[    1.803371] usb 1-1.1: new full-speed USB device number 4 using ehci-pci
[    1.813527] [drm] ib test on ring 5 succeeded
[    1.883371] [drm] radeon atom DIG backlight initialized
[    1.883382] [drm] Radeon Display Connectors
[    1.883386] [drm] Connector 0:
[    1.883390] [drm]   eDP-1
[    1.883393] [drm]   HPD3
[    1.883396] [drm]   DDC: 0x6450 0x6450 0x6454 0x6454 0x6458 0x6458 0x645c 0x645c
[    1.883402] [drm]   Encoders:
[    1.883405] [drm]     LCD1: INTERNAL_UNIPHY2
[    1.883408] [drm] Connector 1:
[    1.883411] [drm]   DP-1
[    1.883413] [drm]   HPD1
[    1.883416] [drm]   DDC: 0x6430 0x6430 0x6434 0x6434 0x6438 0x6438 0x643c 0x643c
[    1.883422] [drm]   Encoders:
[    1.883425] [drm]     DFP1: INTERNAL_UNIPHY1
[    1.883428] [drm] Connector 2:
[    1.883430] [drm]   DP-2
[    1.883433] [drm]   HPD2
[    1.883435] [drm]   DDC: 0x6440 0x6440 0x6444 0x6444 0x6448 0x6448 0x644c 0x644c
[    1.883441] [drm]   Encoders:
[    1.883444] [drm]     DFP2: INTERNAL_UNIPHY1
[    1.883447] [drm] Connector 3:
[    1.883449] [drm]   DP-3
[    1.883452] [drm]   HPD4
[    1.883454] [drm]   DDC: 0x6460 0x6460 0x6464 0x6464 0x6468 0x6468 0x646c 0x646c
[    1.883460] [drm]   Encoders:
[    1.883462] [drm]     DFP3: INTERNAL_UNIPHY2
[    1.883465] [drm] Connector 4:
[    1.883468] [drm]   DP-4
[    1.883478] [drm]   HPD5
[    1.883479] [drm]   DDC: 0x6470 0x6470 0x6474 0x6474 0x6478 0x6478 0x647c 0x647c
[    1.883481] [drm]   Encoders:
[    1.883483] [drm]     DFP4: INTERNAL_UNIPHY
[    1.883484] [drm] Connector 5:
[    1.883485] [drm]   VGA-1
[    1.883486] [drm]   DDC: 0x64d8 0x64d8 0x64dc 0x64dc 0x64e0 0x64e0 0x64e4 0x64e4
[    1.883488] [drm]   Encoders:
[    1.883489] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[    1.910390] usb 3-1.2: New USB device found, idVendor=05ac, idProduct=8242, bcdDevice= 0.16
[    1.910396] usb 3-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.910399] usb 3-1.2: Product: IR Receiver
[    1.910401] usb 3-1.2: Manufacturer: Apple Computer, Inc.
[    1.913641] hid: raw HID events driver (C) Jiri Kosina
[    1.913729] switching from power state:
[    1.913736] 	ui class: none
[    1.913739] 	internal class: boot
[    1.913744] 	caps:
[    1.913746] 	uvd    vclk: 0 dclk: 0
[    1.913749] 		power level 0    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    1.913751] 		power level 1    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    1.913753] 		power level 2    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    1.913755] 	status: c b
[    1.913757] switching to power state:
[    1.913759] 	ui class: performance
[    1.913760] 	internal class: none
[    1.913764] 	caps:
[    1.913767] 	uvd    vclk: 0 dclk: 0
[    1.913770] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    1.913774] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    1.913776] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    1.913778] 	status: r
[    1.916040] usbcore: registered new interface driver usbhid
[    1.916044] usbhid: USB HID core driver
[    1.916839] input: Apple Computer, Inc. IR Receiver as /devices/pci0000:00/0000:00:1d.7/usb3/3-1/3-1.2/3-1.2:1.0/0003:05AC:8242.0001/input/input0
[    1.955731] usb 1-1.1: New USB device found, idVendor=0a5c, idProduct=4500, bcdDevice= 1.00
[    1.955745] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.955751] usb 1-1.1: Product: BRCM2046 Hub
[    1.955756] usb 1-1.1: Manufacturer: Apple Inc.
[    1.956041] hub 1-1.1:1.0: USB hub found
[    1.956258] hub 1-1.1:1.0: 3 ports detected
[    1.983417] appleir 0003:05AC:8242.0001: input,hiddev96,hidraw0: USB HID v1.11 Device [Apple Computer, Inc. IR Receiver] on usb-0000:00:1d.7-1.2/input0
[    2.003323] usb 3-1.4: new low-speed USB device number 5 using ehci-pci
[    2.053327] usb 1-1.2: new high-speed USB device number 5 using ehci-pci
[    2.159005] usb 3-1.4: New USB device found, idVendor=047d, idProduct=1020, bcdDevice= 1.06
[    2.159010] usb 3-1.4: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    2.159021] usb 3-1.4: Product: Kensington Expert Mouse
[    2.162134] input: Kensington Expert Mouse as /devices/pci0000:00/0000:00:1d.7/usb3/3-1/3-1.4/3-1.4:1.0/0003:047D:1020.0002/input/input1
[    2.162254] hid-generic 0003:047D:1020.0002: input,hidraw1: USB HID v1.11 Mouse [Kensington Expert Mouse] on usb-0000:00:1d.7-1.4/input0
[    2.212129] usb 1-1.2: New USB device found, idVendor=05ac, idProduct=1006, bcdDevice=96.15
[    2.212135] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.212146] usb 1-1.2: Product: Keyboard Hub
[    2.212149] usb 1-1.2: Manufacturer: Apple, Inc.
[    2.212151] usb 1-1.2: SerialNumber: 000000000000
[    2.212384] hub 1-1.2:1.0: USB hub found
[    2.212475] hub 1-1.2:1.0: 3 ports detected
[    2.303330] usb 1-1.1.1: new full-speed USB device number 6 using ehci-pci
[    2.458041] usb 1-1.1.1: New USB device found, idVendor=05ac, idProduct=8215, bcdDevice= 2.08
[    2.458047] usb 1-1.1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.458050] usb 1-1.1.1: Product: Bluetooth USB Host Controller
[    2.458052] usb 1-1.1.1: Manufacturer: Apple Inc.
[    2.458054] usb 1-1.1.1: SerialNumber: 3451C9ED7F9B
[    2.553327] usb 1-1.2.2: new low-speed USB device number 7 using ehci-pci
[    2.705215] scsi 6:0:0:0: Direct-Access     APPLE    SD Card Reader   1.00 PQ: 0 ANSI: 0
[    2.705422] sd 6:0:0:0: Attached scsi generic sg3 type 0
[    2.706171] sd 6:0:0:0: [sdc] Media removed, stopped polling
[    2.707037] sd 6:0:0:0: [sdc] Attached SCSI removable disk
[    2.710129] usb 1-1.2.2: New USB device found, idVendor=05ac, idProduct=0220, bcdDevice= 0.71
[    2.710135] usb 1-1.2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.710139] usb 1-1.2.2: Product: Apple Keyboard
[    2.710141] usb 1-1.2.2: Manufacturer: Apple, Inc
[    2.716730] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/0003:05AC:0220.0003/input/input2
[    2.783446] apple 0003:05AC:0220.0003: input,hidraw2: USB HID v1.11 Keyboard [Apple, Inc Apple Keyboard] on usb-0000:00:1a.7-1.2.2/input0
[    2.783515] apple 0003:05AC:0220.0004: Fn key not found (Apple Wireless Keyboard clone?), disabling Fn key handling
[    2.783538] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.1/0003:05AC:0220.0004/input/input3
[    2.803327] usb 1-1.1.2: new full-speed USB device number 8 using ehci-pci
[    2.853435] apple 0003:05AC:0220.0004: input,hidraw3: USB HID v1.11 Device [Apple, Inc Apple Keyboard] on usb-0000:00:1a.7-1.2.2/input1
[    2.956914] usb 1-1.1.2: New USB device found, idVendor=05ac, idProduct=820a, bcdDevice= 1.00
[    2.956920] usb 1-1.1.2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.958791] input: HID 05ac:820a as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.1/1-1.1.2/1-1.1.2:1.0/0003:05AC:820A.0005/input/input4
[    3.023513] hid-generic 0003:05AC:820A.0005: input,hidraw4: USB HID v1.11 Keyboard [HID 05ac:820a] on usb-0000:00:1a.7-1.1.2/input0
[    3.143358] usb 1-1.1.3: new full-speed USB device number 9 using ehci-pci
[    3.156821] [drm] fb mappable at 0x90363000
[    3.156825] [drm] vram apper at 0x90000000
[    3.156827] [drm] size 14745600
[    3.156828] [drm] fb depth is 24
[    3.156829] [drm]    pitch is 10240
[    3.156922] fbcon: radeondrmfb (fb0) is primary device
[    3.296894] usb 1-1.1.3: New USB device found, idVendor=05ac, idProduct=820b, bcdDevice= 1.00
[    3.296896] usb 1-1.1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.298761] input: HID 05ac:820b as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.1/1-1.1.3/1-1.1.3:1.0/0003:05AC:820B.0006/input/input5
[    3.298942] hid-generic 0003:05AC:820B.0006: input,hidraw5: USB HID v1.11 Mouse [HID 05ac:820b] on usb-0000:00:1a.7-1.1.3/input0
[    3.998003] switching from power state:
[    3.998005] 	ui class: performance
[    3.998006] 	internal class: none
[    3.998007] 	caps:
[    3.998007] 	uvd    vclk: 0 dclk: 0
[    3.998008] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    3.998009] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    3.998010] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    3.998011] 	status: c r
[    3.998012] switching to power state:
[    3.998012] 	ui class: performance
[    3.998012] 	internal class: none
[    3.998013] 	caps:
[    3.998013] 	uvd    vclk: 0 dclk: 0
[    3.998014] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    3.998015] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    3.998015] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    3.998016] 	status: c r
[    5.113858] Console: switching to colour frame buffer device 320x90
[    5.117515] radeon 0000:01:00.0: [drm] fb0: radeondrmfb frame buffer device
[    5.173472] [drm] Initialized radeon 2.50.0 20080528 for 0000:01:00.0 on minor 0
[    5.200405] [drm] amdgpu kernel modesetting enabled.
[    5.265466] netpoll: netconsole: local port 6666
[    5.265482] netpoll: netconsole: local IPv4 address 192.168.2.87
[    5.265494] netpoll: netconsole: interface 'eth0'
[    5.265503] netpoll: netconsole: remote port 6666
[    5.265512] netpoll: netconsole: remote IPv4 address 192.168.2.208
[    5.265523] netpoll: netconsole: remote ethernet address dc:a6:32:61:33:da
[    5.265539] netpoll: netconsole: device eth0 not up yet, forcing it
[    8.974159] tg3 0000:02:00.0 eth0: Link is up at 1000 Mbps, full duplex
[    8.974175] tg3 0000:02:00.0 eth0: Flow control is off for TX and off for RX
[    8.974188] tg3 0000:02:00.0 eth0: EEE is enabled
[    8.987693] printk: console [netcon0] enabled
[    8.987705] netconsole: network logging started
[   10.125434] thunderbolt 0000:07:00.0: acking hot plug event on 0:4
[   10.125567] thunderbolt 0000:07:00.0: 0:4: hotplug: scanning
[   10.125581] thunderbolt 0000:07:00.0: 0:4: hotplug: no switch found
[   10.142591] thunderbolt 0000:07:00.0: acking hot plug event on 0:3
[   10.142719] thunderbolt 0000:07:00.0: 0:3: hotplug: scanning
[   10.142805] thunderbolt 0000:07:00.0: 0:3: is connected, link is up (state: 2)
[   10.143036] thunderbolt 0000:07:00.0: current switch config:
[   10.143043] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[   10.143048] thunderbolt 0000:07:00.0:   Max Port Number: 13
[   10.143051] thunderbolt 0000:07:00.0:   Config:
[   10.143053] thunderbolt 0000:07:00.0:    Upstream Port Number: 0 Depth: 0 Route String: 0x0 Enabled: 0, PlugEventsDelay: 10ms
[   10.143057] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[   10.147638] thunderbolt 0000:07:00.0: initializing Switch at 0x3 (depth: 1, up port: 1)
[   10.165137] thunderbolt 0000:07:00.0: 3: reading drom (length: 0x97)
[   10.659751] thunderbolt 0000:07:00.0: 3: DROM version: 1
[   10.660774] thunderbolt 0000:07:00.0: 3: uid: 0x1000100189170
[   10.663717] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   10.663725] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   10.663728] thunderbolt 0000:07:00.0:   Max counters: 32
[   10.663730] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   10.663732] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   10.666660] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   10.666668] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   10.666671] thunderbolt 0000:07:00.0:   Max counters: 32
[   10.666673] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   10.666676] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   10.669602] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   10.669607] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   10.669609] thunderbolt 0000:07:00.0:   Max counters: 32
[   10.669611] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   10.669613] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   10.672546] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   10.672550] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   10.672552] thunderbolt 0000:07:00.0:   Max counters: 32
[   10.672554] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   10.672556] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   10.672559] thunderbolt 0000:07:00.0: 3:5: disabled by eeprom
[   10.672561] thunderbolt 0000:07:00.0: 3:6: disabled by eeprom
[   10.673443] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[   10.673447] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[   10.673450] thunderbolt 0000:07:00.0:   Max counters: 1
[   10.673452] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   10.673454] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   10.674338] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[   10.674342] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[   10.674344] thunderbolt 0000:07:00.0:   Max counters: 1
[   10.674346] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   10.674348] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   10.674350] thunderbolt 0000:07:00.0: 3:9: disabled by eeprom
[   10.675234] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[   10.675238] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[   10.675240] thunderbolt 0000:07:00.0:   Max counters: 1
[   10.675242] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   10.675244] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   10.676386] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[   10.676390] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[   10.676392] thunderbolt 0000:07:00.0:   Max counters: 2
[   10.676394] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   10.676396] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   10.676398] thunderbolt 0000:07:00.0: 3:c: disabled by eeprom
[   10.676400] thunderbolt 0000:07:00.0: 3:d: disabled by eeprom
[   10.694741] thunderbolt 0000:07:00.0: 3: TMU: current mode: bi-directional, HiFi
[   10.694798] thunderbolt 0-3: new device found, vendor=0x1 device=0x8002
[   10.694835] thunderbolt 0-3: Apple, Inc. Thunderbolt Display
[   10.694926] thunderbolt 0000:07:00.0: 3:3: is connected, link is up (state: 2)
[   10.695182] thunderbolt 0000:07:00.0: current switch config:
[   10.695183] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[   10.695185] thunderbolt 0000:07:00.0:   Max Port Number: 13
[   10.695186] thunderbolt 0000:07:00.0:   Config:
[   10.695187] thunderbolt 0000:07:00.0:    Upstream Port Number: 0 Depth: 0 Route String: 0x0 Enabled: 0, PlugEventsDelay: 10ms
[   10.695196] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[   10.699794] thunderbolt 0000:07:00.0: initializing Switch at 0x303 (depth: 2, up port: 3)
[   10.717244] thunderbolt 0000:07:00.0: 303: reading drom (length: 0x97)
[   10.958752] thunderbolt 0000:07:00.0: acking hot plug event on 303:b
[   10.958761] thunderbolt 0000:07:00.0: acking hot plug event on 303:b
[   11.010979] random: crng init done
[   11.011005] random: 1 urandom warning(s) missed due to ratelimiting
[   11.212737] thunderbolt 0000:07:00.0: 303: DROM version: 1
[   11.213799] thunderbolt 0000:07:00.0: 303: uid: 0x100010102a740
[   11.216752] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   11.216760] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   11.216763] thunderbolt 0000:07:00.0:   Max counters: 32
[   11.216765] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   11.216767] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   11.219694] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   11.219698] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   11.219701] thunderbolt 0000:07:00.0:   Max counters: 32
[   11.219702] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   11.219704] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   11.222638] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   11.222641] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   11.222644] thunderbolt 0000:07:00.0:   Max counters: 32
[   11.222646] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   11.222648] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   11.225582] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   11.225586] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   11.225588] thunderbolt 0000:07:00.0:   Max counters: 32
[   11.225590] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   11.225592] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   11.225594] thunderbolt 0000:07:00.0: 303:5: disabled by eeprom
[   11.225597] thunderbolt 0000:07:00.0: 303:6: disabled by eeprom
[   11.226478] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[   11.226482] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[   11.226484] thunderbolt 0000:07:00.0:   Max counters: 1
[   11.226486] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   11.226488] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   11.227374] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[   11.227378] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[   11.227380] thunderbolt 0000:07:00.0:   Max counters: 1
[   11.227381] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   11.227383] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   11.227385] thunderbolt 0000:07:00.0: 303:9: disabled by eeprom
[   11.228270] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[   11.228274] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[   11.228276] thunderbolt 0000:07:00.0:   Max counters: 1
[   11.228278] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   11.228280] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   11.229422] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[   11.229426] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[   11.229428] thunderbolt 0000:07:00.0:   Max counters: 2
[   11.229430] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   11.229432] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   11.229434] thunderbolt 0000:07:00.0: 303:c: disabled by eeprom
[   11.229436] thunderbolt 0000:07:00.0: 303:d: disabled by eeprom
[   11.247507] thunderbolt 0000:07:00.0: 303: TMU: current mode: bi-directional, HiFi
[   11.247552] thunderbolt 0-303: new device found, vendor=0x1 device=0x8002
[   11.247586] thunderbolt 0-303: Apple, Inc. Thunderbolt Display
[   11.247678] thunderbolt 0000:07:00.0: 303:1: is unplugged (state: 7)
[   11.247937] thunderbolt 0000:07:00.0: 303:b: DP adapter HPD set, queuing hotplug
[   11.248192] thunderbolt 0000:07:00.0: 3:b: DP adapter HPD set, queuing hotplug
[   11.248320] thunderbolt 0000:07:00.0: 303:b: DP OUT resource available
[   11.248324] thunderbolt 0000:07:00.0: looking for DP IN <-> DP OUT pairs:
[   11.248449] thunderbolt 0000:07:00.0: 0:c: DP IN available
[   11.248578] thunderbolt 0000:07:00.0: 303:b: DP OUT available
[   11.248581] thunderbolt 0000:07:00.0: 0: allocated DP resource for port 12
[   11.248584] thunderbolt 0000:07:00.0: 303:b: calculating available bandwidth
[   11.248704] thunderbolt 0000:07:00.0: 0:3: link total bandwidth 9000 Mb/s
[   11.248707] thunderbolt 0000:07:00.0: 3:1: link total bandwidth 9000 Mb/s
[   11.248832] thunderbolt 0000:07:00.0: 3:3: link total bandwidth 9000 Mb/s
[   11.248834] thunderbolt 0000:07:00.0: 303:3: link total bandwidth 9000 Mb/s
[   11.248837] thunderbolt 0000:07:00.0: available bandwidth for new DP tunnel 9000/9000 Mb/s
[   11.248847] thunderbolt 0000:07:00.0: 0:c <-> 303:b (DP): activating
[   11.248851] thunderbolt 0000:07:00.0: activating Video path from 0:12 to 303:11
[   11.248854] thunderbolt 0000:07:00.0: 303:4: adding 12 NFC credits to 0
[   11.248960] thunderbolt 0000:07:00.0: 3:2: adding 12 NFC credits to 0
[   11.249087] thunderbolt 0000:07:00.0: 0:c: adding 5 NFC credits to 0
[   11.249344] thunderbolt 0000:07:00.0: 303:4: Writing hop 2
[   11.249347] thunderbolt 0000:07:00.0: 303:4:  In HopID: 8 => Out port: 11 Out HopID: 9
[   11.249350] thunderbolt 0000:07:00.0: 303:4:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[   11.249353] thunderbolt 0000:07:00.0: 303:4:    Counter enabled: 0 Counter index: 2047
[   11.249356] thunderbolt 0000:07:00.0: 303:4:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[   11.249359] thunderbolt 0000:07:00.0: 303:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   11.249600] thunderbolt 0000:07:00.0: 3:2: Writing hop 1
[   11.249602] thunderbolt 0000:07:00.0: 3:2:  In HopID: 8 => Out port: 4 Out HopID: 8
[   11.249605] thunderbolt 0000:07:00.0: 3:2:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[   11.249608] thunderbolt 0000:07:00.0: 3:2:    Counter enabled: 0 Counter index: 2047
[   11.249611] thunderbolt 0000:07:00.0: 3:2:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[   11.249614] thunderbolt 0000:07:00.0: 3:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   11.249855] thunderbolt 0000:07:00.0: 0:c: Writing hop 0
[   11.249858] thunderbolt 0000:07:00.0: 0:c:  In HopID: 9 => Out port: 4 Out HopID: 8
[   11.249861] thunderbolt 0000:07:00.0: 0:c:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[   11.249864] thunderbolt 0000:07:00.0: 0:c:    Counter enabled: 0 Counter index: 2047
[   11.249866] thunderbolt 0000:07:00.0: 0:c:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[   11.249869] thunderbolt 0000:07:00.0: 0:c:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   11.249983] thunderbolt 0000:07:00.0: path activation complete
[   11.249986] thunderbolt 0000:07:00.0: activating AUX TX path from 0:12 to 303:11
[   11.250111] thunderbolt 0000:07:00.0: 303:4: Writing hop 2
[   11.250114] thunderbolt 0000:07:00.0: 303:4:  In HopID: 9 => Out port: 11 Out HopID: 8
[   11.250117] thunderbolt 0000:07:00.0: 303:4:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   11.250120] thunderbolt 0000:07:00.0: 303:4:    Counter enabled: 0 Counter index: 2047
[   11.250122] thunderbolt 0000:07:00.0: 303:4:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   11.250125] thunderbolt 0000:07:00.0: 303:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   11.250368] thunderbolt 0000:07:00.0: 3:2: Writing hop 1
[   11.250370] thunderbolt 0000:07:00.0: 3:2:  In HopID: 9 => Out port: 4 Out HopID: 9
[   11.250373] thunderbolt 0000:07:00.0: 3:2:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   11.250376] thunderbolt 0000:07:00.0: 3:2:    Counter enabled: 0 Counter index: 2047
[   11.250378] thunderbolt 0000:07:00.0: 3:2:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   11.250381] thunderbolt 0000:07:00.0: 3:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   11.250623] thunderbolt 0000:07:00.0: 0:c: Writing hop 0
[   11.250626] thunderbolt 0000:07:00.0: 0:c:  In HopID: 8 => Out port: 4 Out HopID: 9
[   11.250629] thunderbolt 0000:07:00.0: 0:c:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   11.250632] thunderbolt 0000:07:00.0: 0:c:    Counter enabled: 0 Counter index: 2047
[   11.250634] thunderbolt 0000:07:00.0: 0:c:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   11.250637] thunderbolt 0000:07:00.0: 0:c:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   11.250751] thunderbolt 0000:07:00.0: path activation complete
[   11.250753] thunderbolt 0000:07:00.0: activating AUX RX path from 303:11 to 0:12
[   11.250879] thunderbolt 0000:07:00.0: 0:4: Writing hop 2
[   11.250882] thunderbolt 0000:07:00.0: 0:4:  In HopID: 8 => Out port: 12 Out HopID: 8
[   11.250885] thunderbolt 0000:07:00.0: 0:4:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   11.250888] thunderbolt 0000:07:00.0: 0:4:    Counter enabled: 0 Counter index: 2047
[   11.250890] thunderbolt 0000:07:00.0: 0:4:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   11.250893] thunderbolt 0000:07:00.0: 0:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   11.251135] thunderbolt 0000:07:00.0: 3:4: Writing hop 1
[   11.251138] thunderbolt 0000:07:00.0: 3:4:  In HopID: 8 => Out port: 2 Out HopID: 8
[   11.251141] thunderbolt 0000:07:00.0: 3:4:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   11.251143] thunderbolt 0000:07:00.0: 3:4:    Counter enabled: 0 Counter index: 2047
[   11.251146] thunderbolt 0000:07:00.0: 3:4:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   11.251149] thunderbolt 0000:07:00.0: 3:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   11.251392] thunderbolt 0000:07:00.0: 303:b: Writing hop 0
[   11.251394] thunderbolt 0000:07:00.0: 303:b:  In HopID: 8 => Out port: 4 Out HopID: 8
[   11.251397] thunderbolt 0000:07:00.0: 303:b:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   11.251400] thunderbolt 0000:07:00.0: 303:b:    Counter enabled: 0 Counter index: 2047
[   11.251402] thunderbolt 0000:07:00.0: 303:b:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   11.251405] thunderbolt 0000:07:00.0: 303:b:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   11.251519] thunderbolt 0000:07:00.0: path activation complete
[   11.252928] thunderbolt 0000:07:00.0: 3:b: DP OUT resource available
[   11.252931] thunderbolt 0000:07:00.0: looking for DP IN <-> DP OUT pairs:
[   11.253055] thunderbolt 0000:07:00.0: 0:c: in use
[   11.253183] thunderbolt 0000:07:00.0: 0:d: DP IN available
[   11.253311] thunderbolt 0000:07:00.0: 303:b: in use
[   11.253441] thunderbolt 0000:07:00.0: 3:b: DP OUT available
[   11.253444] thunderbolt 0000:07:00.0: 0: allocated DP resource for port 13
[   11.253446] thunderbolt 0000:07:00.0: 3:b: calculating available bandwidth
[   11.253568] thunderbolt 0000:07:00.0: 0:3: link total bandwidth 9000 Mb/s
[   11.253571] thunderbolt 0000:07:00.0: 3:1: link total bandwidth 9000 Mb/s
[   11.253574] thunderbolt 0000:07:00.0: available bandwidth for new DP tunnel 9000/9000 Mb/s
[   11.253580] thunderbolt 0000:07:00.0: 0:d <-> 3:b (DP): activating
[   11.253583] thunderbolt 0000:07:00.0: activating Video path from 0:13 to 3:11
[   11.253586] thunderbolt 0000:07:00.0: 3:1: adding 12 NFC credits to 0
[   11.253696] thunderbolt 0000:07:00.0: 0:d: adding 5 NFC credits to 0
[   11.253951] thunderbolt 0000:07:00.0: 3:1: Writing hop 1
[   11.253954] thunderbolt 0000:07:00.0: 3:1:  In HopID: 8 => Out port: 11 Out HopID: 9
[   11.253957] thunderbolt 0000:07:00.0: 3:1:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[   11.253960] thunderbolt 0000:07:00.0: 3:1:    Counter enabled: 0 Counter index: 2047
[   11.253962] thunderbolt 0000:07:00.0: 3:1:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[   11.253965] thunderbolt 0000:07:00.0: 3:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   11.254207] thunderbolt 0000:07:00.0: 0:d: Writing hop 0
[   11.254210] thunderbolt 0000:07:00.0: 0:d:  In HopID: 9 => Out port: 3 Out HopID: 8
[   11.254213] thunderbolt 0000:07:00.0: 0:d:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[   11.254216] thunderbolt 0000:07:00.0: 0:d:    Counter enabled: 0 Counter index: 2047
[   11.254218] thunderbolt 0000:07:00.0: 0:d:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[   11.254221] thunderbolt 0000:07:00.0: 0:d:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   11.254335] thunderbolt 0000:07:00.0: path activation complete
[   11.254337] thunderbolt 0000:07:00.0: activating AUX TX path from 0:13 to 3:11
[   11.254464] thunderbolt 0000:07:00.0: 3:1: Writing hop 1
[   11.254466] thunderbolt 0000:07:00.0: 3:1:  In HopID: 9 => Out port: 11 Out HopID: 8
[   11.254469] thunderbolt 0000:07:00.0: 3:1:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   11.254472] thunderbolt 0000:07:00.0: 3:1:    Counter enabled: 0 Counter index: 2047
[   11.254474] thunderbolt 0000:07:00.0: 3:1:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   11.254477] thunderbolt 0000:07:00.0: 3:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   11.254719] thunderbolt 0000:07:00.0: 0:d: Writing hop 0
[   11.254722] thunderbolt 0000:07:00.0: 0:d:  In HopID: 8 => Out port: 3 Out HopID: 9
[   11.254725] thunderbolt 0000:07:00.0: 0:d:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   11.254728] thunderbolt 0000:07:00.0: 0:d:    Counter enabled: 0 Counter index: 2047
[   11.254730] thunderbolt 0000:07:00.0: 0:d:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   11.254733] thunderbolt 0000:07:00.0: 0:d:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   11.254847] thunderbolt 0000:07:00.0: path activation complete
[   11.254849] thunderbolt 0000:07:00.0: activating AUX RX path from 3:11 to 0:13
[   11.254975] thunderbolt 0000:07:00.0: 0:3: Writing hop 1
[   11.254978] thunderbolt 0000:07:00.0: 0:3:  In HopID: 8 => Out port: 13 Out HopID: 8
[   11.254981] thunderbolt 0000:07:00.0: 0:3:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   11.254984] thunderbolt 0000:07:00.0: 0:3:    Counter enabled: 0 Counter index: 2047
[   11.254986] thunderbolt 0000:07:00.0: 0:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   11.254989] thunderbolt 0000:07:00.0: 0:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   11.255231] thunderbolt 0000:07:00.0: 3:b: Writing hop 0
[   11.255234] thunderbolt 0000:07:00.0: 3:b:  In HopID: 8 => Out port: 1 Out HopID: 8
[   11.255237] thunderbolt 0000:07:00.0: 3:b:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   11.255240] thunderbolt 0000:07:00.0: 3:b:    Counter enabled: 0 Counter index: 2047
[   11.255242] thunderbolt 0000:07:00.0: 3:b:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   11.255245] thunderbolt 0000:07:00.0: 3:b:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   11.255359] thunderbolt 0000:07:00.0: path activation complete
[   12.053721] switching from power state:
[   12.053734] 	ui class: performance
[   12.053742] 	internal class: none
[   12.053751] 	caps:
[   12.053756] 	uvd    vclk: 0 dclk: 0
[   12.053763] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   12.053776] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[   12.053789] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[   12.053802] 	status: c r
[   12.053808] switching to power state:
[   12.054617] 	ui class: performance
[   12.055420] 	internal class: none
[   12.056214] 	caps:
[   12.057002] 	uvd    vclk: 0 dclk: 0
[   12.057786] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   12.058580] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[   12.059340] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[   12.060092] 	status: c r
[   16.064929]  sdb: sdb1
[   16.114586] process '/usr/bin/fstype' started with executable stack
[   16.139070] EXT4-fs (sda6): mounted filesystem with ordered data mode. Quota mode: none.
[   16.317180] udevd[1211]: starting version 3.2.9
[   16.340923] udevd[1212]: starting eudev-3.2.9
[   16.371186] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input6
[   16.372498] ACPI: button: Power Button [PWRB]
[   16.373686] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input7
[   16.375361] ACPI: button: Sleep Button [SLPB]
[   16.376505] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input8
[   16.385176] thunderbolt 0000:07:00.0: 0:7 <-> 3:a (PCI): activating
[   16.385182] thunderbolt 0000:07:00.0: activating PCIe Down path from 0:7 to 3:10
[   16.385491] thunderbolt 0000:07:00.0: 3:1: Writing hop 1
[   16.385494] thunderbolt 0000:07:00.0: 3:1:  In HopID: 10 => Out port: 10 Out HopID: 8
[   16.385497] thunderbolt 0000:07:00.0: 3:1:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   16.385499] thunderbolt 0000:07:00.0: 3:1:    Counter enabled: 0 Counter index: 2047
[   16.385501] thunderbolt 0000:07:00.0: 3:1:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   16.385504] thunderbolt 0000:07:00.0: 3:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   16.385767] thunderbolt 0000:07:00.0: 0:7: Writing hop 0
[   16.385770] thunderbolt 0000:07:00.0: 0:7:  In HopID: 8 => Out port: 3 Out HopID: 10
[   16.385771] thunderbolt 0000:07:00.0: 0:7:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   16.385773] thunderbolt 0000:07:00.0: 0:7:    Counter enabled: 0 Counter index: 2047
[   16.385774] thunderbolt 0000:07:00.0: 0:7:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   16.385775] thunderbolt 0000:07:00.0: 0:7:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   16.385793] thunderbolt 0000:07:00.0: path activation complete
[   16.385795] thunderbolt 0000:07:00.0: activating PCIe Up path from 3:10 to 0:7
[   16.385980] thunderbolt 0000:07:00.0: 0:3: Writing hop 1
[   16.385983] thunderbolt 0000:07:00.0: 0:3:  In HopID: 9 => Out port: 7 Out HopID: 8
[   16.385985] thunderbolt 0000:07:00.0: 0:3:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   16.385987] thunderbolt 0000:07:00.0: 0:3:    Counter enabled: 0 Counter index: 2047
[   16.385990] thunderbolt 0000:07:00.0: 0:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   16.385992] thunderbolt 0000:07:00.0: 0:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   16.386220] thunderbolt 0000:07:00.0: 3:a: Writing hop 0
[   16.386222] thunderbolt 0000:07:00.0: 3:a:  In HopID: 8 => Out port: 1 Out HopID: 9
[   16.386225] thunderbolt 0000:07:00.0: 3:a:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   16.386228] thunderbolt 0000:07:00.0: 3:a:    Counter enabled: 0 Counter index: 2047
[   16.386230] thunderbolt 0000:07:00.0: 3:a:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   16.386232] thunderbolt 0000:07:00.0: 3:a:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   16.386303] thunderbolt 0000:07:00.0: path activation complete
[   16.386334] pcieport 0000:06:04.0: pciehp: Slot(4-1): Card present
[   16.388174] thunderbolt 0000:07:00.0: 3:7 <-> 303:a (PCI): activating
[   16.388179] thunderbolt 0000:07:00.0: activating PCIe Down path from 3:7 to 303:10
[   16.388446] thunderbolt 0000:07:00.0: 303:3: Writing hop 1
[   16.388450] thunderbolt 0000:07:00.0: 303:3:  In HopID: 8 => Out port: 10 Out HopID: 8
[   16.388452] thunderbolt 0000:07:00.0: 303:3:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   16.388456] thunderbolt 0000:07:00.0: 303:3:    Counter enabled: 0 Counter index: 2047
[   16.388458] thunderbolt 0000:07:00.0: 303:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   16.388461] thunderbolt 0000:07:00.0: 303:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   16.388664] thunderbolt 0000:07:00.0: 3:7: Writing hop 0
[   16.388668] thunderbolt 0000:07:00.0: 3:7:  In HopID: 8 => Out port: 3 Out HopID: 8
[   16.388671] thunderbolt 0000:07:00.0: 3:7:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   16.388673] thunderbolt 0000:07:00.0: 3:7:    Counter enabled: 0 Counter index: 2047
[   16.388675] thunderbolt 0000:07:00.0: 3:7:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   16.388678] thunderbolt 0000:07:00.0: 3:7:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   16.389008] thunderbolt 0000:07:00.0: path activation complete
[   16.389011] thunderbolt 0000:07:00.0: activating PCIe Up path from 303:10 to 3:7
[   16.389029] thunderbolt 0000:07:00.0: 3:3: Writing hop 1
[   16.389031] thunderbolt 0000:07:00.0: 3:3:  In HopID: 8 => Out port: 7 Out HopID: 8
[   16.389034] thunderbolt 0000:07:00.0: 3:3:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   16.389036] thunderbolt 0000:07:00.0: 3:3:    Counter enabled: 0 Counter index: 2047
[   16.389039] thunderbolt 0000:07:00.0: 3:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   16.389041] thunderbolt 0000:07:00.0: 3:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   16.392253] thunderbolt 0000:07:00.0: 303:a: Writing hop 0
[   16.392258] thunderbolt 0000:07:00.0: 303:a:  In HopID: 8 => Out port: 3 Out HopID: 8
[   16.392261] thunderbolt 0000:07:00.0: 303:a:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   16.392263] thunderbolt 0000:07:00.0: 303:a:    Counter enabled: 0 Counter index: 2047
[   16.392265] thunderbolt 0000:07:00.0: 303:a:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   16.392268] thunderbolt 0000:07:00.0: 303:a:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   16.392473] thunderbolt 0000:07:00.0: path activation complete
[   16.409513] mc: Linux media interface: v0.10
[   16.414093] videodev: Linux video capture interface: v2.00
[   16.416723] snd_hda_intel 0000:00:1b.0: enabling device (0000 -> 0002)
[   16.417835] snd_hda_intel 0000:01:00.1: enabling device (0000 -> 0002)
[   16.421006] Bluetooth: Core ver 2.22
[   16.422147] NET: Registered PF_BLUETOOTH protocol family
[   16.423253] Bluetooth: HCI device and connection manager initialized
[   16.423357] ACPI: button: Power Button [PWRF]
[   16.424424] Bluetooth: HCI socket layer initialized
[   16.426528] Bluetooth: L2CAP socket layer initialized
[   16.427643] Bluetooth: SCO socket layer initialized
[   16.430278] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input9
[   16.434556] usbcore: registered new interface driver btusb
[   16.435894] usb 1-2: Found UVC 1.00 device FaceTime HD Camera (Built-in) (05ac:850b)
[   16.440269] snd_hda_codec_cirrus hdaudioC0D0: autoconfig for CS4206: line_outs=2 (0x9/0xb/0x0/0x0/0x0) type:speaker
[   16.441325] snd_hda_codec_cirrus hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   16.442357] snd_hda_codec_cirrus hdaudioC0D0:    hp_outs=1 (0xa/0x0/0x0/0x0/0x0)
[   16.443388] snd_hda_codec_cirrus hdaudioC0D0:    mono: mono_out=0x0
[   16.444394] snd_hda_codec_cirrus hdaudioC0D0:    dig-out=0x10/0x0
[   16.445409] snd_hda_codec_cirrus hdaudioC0D0:    inputs:
[   16.446319] snd_hda_codec_cirrus hdaudioC0D0:      Mic=0xd
[   16.447316] snd_hda_codec_cirrus hdaudioC0D0:      Line=0xc
[   16.448343] snd_hda_codec_cirrus hdaudioC0D0:    dig-in=0xf
[   16.456480] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[   16.457685] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[   16.458900] input: HDA Intel PCH SPDIF In as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[   16.461199] input: FaceTime HD Camera (Built-in):  as /devices/pci0000:00/0000:00:1a.7/usb1/1-2/1-2:1.0/input/input13
[   16.462476] usbcore: registered new interface driver uvcvideo
[   16.514159] usb 1-1.1.2: USB disconnect, device number 8
[   16.565031] Bluetooth: hci0: BCM: chip id 254 build 0518
[   16.567037] Bluetooth: hci0: BCM: product 05ac:8215
[   16.569079] Bluetooth: hci0: BCM: features 0x00
[   16.573427] pci 0000:18:00.0: [8086:1513] type 01 class 0x060400
[   16.574591] pci 0000:18:00.0: enabling Extended Tags
[   16.575643] pci 0000:18:00.0: supports D1 D2
[   16.576455] pci 0000:18:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   16.586909] Bluetooth: hci0: Bluetooth USB Host Controller
[   16.594461] applesmc: key=332 fan=3 temp=50 index=49 acc=0 lux=2 kbd=0
[   16.595435] applesmc applesmc.768: hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[   16.603389] pci 0000:18:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   16.604428] pci 0000:19:00.0: [8086:1513] type 01 class 0x060400
[   16.605426] pci 0000:19:00.0: enabling Extended Tags
[   16.606433] pci 0000:19:00.0: supports D1 D2
[   16.607243] pci 0000:19:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   16.608246] pci 0000:19:01.0: [8086:1513] type 01 class 0x060400
[   16.609321] pci 0000:19:01.0: enabling Extended Tags
[   16.610333] pci 0000:19:01.0: supports D1 D2
[   16.611158] pci 0000:19:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[   16.612157] pci 0000:19:02.0: [8086:1513] type 01 class 0x060400
[   16.613194] pci 0000:19:02.0: enabling Extended Tags
[   16.614227] pci 0000:19:02.0: supports D1 D2
[   16.615048] pci 0000:19:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[   16.616048] pci 0000:19:04.0: [8086:1513] type 01 class 0x060400
[   16.617075] pci 0000:19:04.0: enabling Extended Tags
[   16.618095] pci 0000:19:04.0: supports D1 D2
[   16.618914] pci 0000:19:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[   16.619927] pci 0000:19:05.0: [8086:1513] type 01 class 0x060400
[   16.620942] pci 0000:19:05.0: enabling Extended Tags
[   16.621969] pci 0000:19:05.0: supports D1 D2
[   16.622791] pci 0000:19:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[   16.623860] pci 0000:18:00.0: PCI bridge to [bus 19-27]
[   16.624824] pci 0000:18:00.0:   bridge window [io  0x0000-0x0fff]
[   16.625667] pci 0000:18:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   16.626515] pci 0000:18:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   16.627350] pci 0000:19:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   16.628206] pci 0000:19:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   16.629061] pci 0000:19:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   16.629901] pci 0000:19:04.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   16.630730] pci 0000:19:05.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   16.631723] pci 0000:1a:00.0: [12d8:400c] type 01 class 0x060400
[   16.633018] pci 0000:1a:00.0: supports D1 D2
[   16.633853] pci 0000:1a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   16.673403] pci 0000:19:00.0: PCI bridge to [bus 1a-27]
[   16.674252] pci 0000:19:00.0:   bridge window [io  0x0000-0x0fff]
[   16.675046] pci 0000:19:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   16.675844] pci 0000:19:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   16.676634] pci 0000:1a:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   16.677667] pci 0000:1b:03.0: [12d8:400c] type 01 class 0x060400
[   16.678859] pci 0000:1b:03.0: supports D1 D2
[   16.679638] pci 0000:1b:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[   16.680642] pci 0000:1a:00.0: PCI bridge to [bus 1b-27]
[   16.681536] pci 0000:1a:00.0:   bridge window [io  0x0000-0x0fff]
[   16.682320] pci 0000:1a:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   16.683103] pci 0000:1a:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   16.683889] pci 0000:1b:03.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   16.684861] pci 0000:1c:00.0: [12d8:400e] type 00 class 0x0c0310
[   16.685741] pci 0000:1c:00.0: reg 0x10: [mem 0x00000000-0x00000fff]
[   16.686759] pci 0000:1c:00.0: supports D1 D2
[   16.687500] pci 0000:1c:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   16.688413] pci 0000:1c:00.1: [12d8:400e] type 00 class 0x0c0310
[   16.689326] pci 0000:1c:00.1: reg 0x10: [mem 0x00000000-0x00000fff]
[   16.690516] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[   16.690570] pci 0000:1c:00.1: supports D1 D2
[   16.692399] pci 0000:1c:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[   16.693628] ohci-pci: OHCI PCI platform driver
[   16.693650] pci 0000:1c:00.2: [12d8:400f] type 00 class 0x0c0320
[   16.695576] pci 0000:1c:00.2: reg 0x10: [mem 0x00000000-0x000000ff]
[   16.696632] pci 0000:1c:00.2: supports D1 D2
[   16.697393] pci 0000:1c:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[   16.698442] pci 0000:1b:03.0: PCI bridge to [bus 1c-27]
[   16.699311] pci 0000:1b:03.0:   bridge window [io  0x0000-0x0fff]
[   16.700091] pci 0000:1b:03.0:   bridge window [mem 0x00000000-0x000fffff]
[   16.700852] pci 0000:1b:03.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   16.701594] pci_bus 0000:1c: busn_res: [bus 1c-27] end is updated to 1c
[   16.702336] pci_bus 0000:1b: busn_res: [bus 1b-27] end is updated to 1c
[   16.703073] pci_bus 0000:1a: busn_res: [bus 1a-27] end is updated to 1c
[   16.704018] pci 0000:1d:00.0: [14e4:16b0] type 00 class 0x020000
[   16.704898] pci 0000:1d:00.0: reg 0x10: [mem 0x00000000-0x0000ffff 64bit pref]
[   16.705689] pci 0000:1d:00.0: reg 0x18: [mem 0x00000000-0x0000ffff 64bit pref]
[   16.706748] pci 0000:1d:00.0: PME# supported from D0 D3hot D3cold
[   16.733429] pci 0000:19:01.0: PCI bridge to [bus 1d-27]
[   16.734193] pci 0000:19:01.0:   bridge window [io  0x0000-0x0fff]
[   16.734924] pci 0000:19:01.0:   bridge window [mem 0x00000000-0x000fffff]
[   16.735654] pci 0000:19:01.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   16.736368] pci_bus 0000:1d: busn_res: [bus 1d-27] end is updated to 1d
[   16.737239] pci 0000:1e:00.0: [11c1:5901] type 00 class 0x0c0010
[   16.738087] pci 0000:1e:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[   16.739112] pci 0000:1e:00.0: supports D1 D2
[   16.739812] pci 0000:1e:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   16.763425] pci 0000:19:02.0: PCI bridge to [bus 1e-27]
[   16.764175] pci 0000:19:02.0:   bridge window [io  0x0000-0x0fff]
[   16.764887] pci 0000:19:02.0:   bridge window [mem 0x00000000-0x000fffff]
[   16.765602] pci 0000:19:02.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   16.766304] pci_bus 0000:1e: busn_res: [bus 1e-27] end is updated to 1e
[   16.767204] pci 0000:1f:00.0: [8086:1513] type 01 class 0x060400
[   16.768126] pci 0000:1f:00.0: enabling Extended Tags
[   16.769089] pci 0000:1f:00.0: supports D1 D2
[   16.769786] pci 0000:1f:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   16.793413] pci 0000:19:04.0: PCI bridge to [bus 1f-27]
[   16.794142] pci 0000:19:04.0:   bridge window [io  0x0000-0x0fff]
[   16.794824] pci 0000:19:04.0:   bridge window [mem 0x00000000-0x000fffff]
[   16.795511] pci 0000:19:04.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   16.796188] pci 0000:1f:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   16.797105] pci 0000:20:00.0: [8086:1513] type 01 class 0x060400
[   16.798009] pci 0000:20:00.0: enabling Extended Tags
[   16.798948] pci 0000:20:00.0: supports D1 D2
[   16.799619] pci 0000:20:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   16.800539] pci 0000:20:01.0: [8086:1513] type 01 class 0x060400
[   16.801470] pci 0000:20:01.0: enabling Extended Tags
[   16.802407] pci 0000:20:01.0: supports D1 D2
[   16.803079] pci 0000:20:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[   16.804039] pci 0000:20:02.0: [8086:1513] type 01 class 0x060400
[   16.804970] pci 0000:20:02.0: enabling Extended Tags
[   16.805908] pci 0000:20:02.0: supports D1 D2
[   16.806580] pci 0000:20:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[   16.807500] pci 0000:20:04.0: [8086:1513] type 01 class 0x060400
[   16.808431] pci 0000:20:04.0: enabling Extended Tags
[   16.809372] pci 0000:20:04.0: supports D1 D2
[   16.810044] pci 0000:20:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[   16.810966] pci 0000:20:05.0: [8086:1513] type 01 class 0x060400
[   16.811895] pci 0000:20:05.0: enabling Extended Tags
[   16.812837] pci 0000:20:05.0: supports D1 D2
[   16.813537] pci 0000:20:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[   16.814511] pci 0000:1f:00.0: PCI bridge to [bus 20-27]
[   16.815302] pci 0000:1f:00.0:   bridge window [io  0x0000-0x0fff]
[   16.815994] pci 0000:1f:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   16.816693] pci 0000:1f:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   16.817384] pci 0000:20:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   16.818099] pci 0000:20:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   16.818808] pci 0000:20:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   16.819509] pci 0000:20:04.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   16.820206] pci 0000:20:05.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   16.821110] pci 0000:21:00.0: [12d8:400c] type 01 class 0x060400
[   16.822356] pci 0000:21:00.0: supports D1 D2
[   16.823031] pci 0000:21:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   16.824042] pci 0000:20:00.0: PCI bridge to [bus 21-27]
[   16.824843] pci 0000:20:00.0:   bridge window [io  0x0000-0x0fff]
[   16.825529] pci 0000:20:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   16.826219] pci 0000:20:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   16.826895] pci 0000:21:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   16.827885] pci 0000:22:03.0: [12d8:400c] type 01 class 0x060400
[   16.829059] pci 0000:22:03.0: supports D1 D2
[   16.829734] pci 0000:22:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[   16.830703] pci 0000:21:00.0: PCI bridge to [bus 22-27]
[   16.831507] pci 0000:21:00.0:   bridge window [io  0x0000-0x0fff]
[   16.832192] pci 0000:21:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   16.832888] pci 0000:21:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   16.833592] pci 0000:22:03.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   16.834568] pci 0000:23:00.0: [12d8:400e] type 00 class 0x0c0310
[   16.835391] pci 0000:23:00.0: reg 0x10: [mem 0x00000000-0x00000fff]
[   16.836427] pci 0000:23:00.0: supports D1 D2
[   16.837096] pci 0000:23:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   16.837991] pci 0000:23:00.1: [12d8:400e] type 00 class 0x0c0310
[   16.838842] pci 0000:23:00.1: reg 0x10: [mem 0x00000000-0x00000fff]
[   16.839868] pci 0000:23:00.1: supports D1 D2
[   16.840529] pci 0000:23:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[   16.841373] pci 0000:23:00.2: [12d8:400f] type 00 class 0x0c0320
[   16.842221] pci 0000:23:00.2: reg 0x10: [mem 0x00000000-0x000000ff]
[   16.843247] pci 0000:23:00.2: supports D1 D2
[   16.843934] pci 0000:23:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[   16.844996] pci 0000:22:03.0: PCI bridge to [bus 23-27]
[   16.845786] pci 0000:22:03.0:   bridge window [io  0x0000-0x0fff]
[   16.846467] pci 0000:22:03.0:   bridge window [mem 0x00000000-0x000fffff]
[   16.847153] pci 0000:22:03.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   16.847821] pci_bus 0000:23: busn_res: [bus 23-27] end is updated to 23
[   16.848505] pci_bus 0000:22: busn_res: [bus 22-27] end is updated to 23
[   16.849182] pci_bus 0000:21: busn_res: [bus 21-27] end is updated to 23
[   16.850067] pci 0000:24:00.0: [14e4:16b0] type 00 class 0x020000
[   16.850891] pci 0000:24:00.0: reg 0x10: [mem 0x00000000-0x0000ffff 64bit pref]
[   16.851608] pci 0000:24:00.0: reg 0x18: [mem 0x00000000-0x0000ffff 64bit pref]
[   16.852700] pci 0000:24:00.0: PME# supported from D0 D3hot D3cold
[   16.853775] pci 0000:20:01.0: PCI bridge to [bus 24-27]
[   16.854565] pci 0000:20:01.0:   bridge window [io  0x0000-0x0fff]
[   16.855245] pci 0000:20:01.0:   bridge window [mem 0x00000000-0x000fffff]
[   16.855929] pci 0000:20:01.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   16.856592] pci_bus 0000:24: busn_res: [bus 24-27] end is updated to 24
[   16.857470] pci 0000:25:00.0: [11c1:5901] type 00 class 0x0c0010
[   16.858290] pci 0000:25:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[   16.859374] pci 0000:25:00.0: supports D1 D2
[   16.860036] pci 0000:25:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   16.861029] pci 0000:20:02.0: PCI bridge to [bus 25-27]
[   16.861818] pci 0000:20:02.0:   bridge window [io  0x0000-0x0fff]
[   16.862500] pci 0000:20:02.0:   bridge window [mem 0x00000000-0x000fffff]
[   16.863183] pci 0000:20:02.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   16.863877] pci_bus 0000:25: busn_res: [bus 25-27] end is updated to 25
[   16.864704] pci 0000:20:04.0: PCI bridge to [bus 26-27]
[   16.865477] pci 0000:20:04.0:   bridge window [io  0x0000-0x0fff]
[   16.866152] pci 0000:20:04.0:   bridge window [mem 0x00000000-0x000fffff]
[   16.866832] pci 0000:20:04.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   16.867493] pci_bus 0000:26: busn_res: [bus 26-27] end is updated to 27
[   16.868211] pci_bus 0000:28: busn_res: [bus 28-37] end is updated to 37
[   16.868880] pci 0000:20:05.0: devices behind bridge are unusable because [bus 28-37] cannot be assigned for them
[   16.869560] pci_bus 0000:20: busn_res: [bus 20-27] end can not be updated to 37
[   16.870245] pci_bus 0000:1f: busn_res: [bus 1f-27] end can not be updated to 37
[   16.870956] pci_bus 0000:38: busn_res: [bus 38-47] end is updated to 47
[   16.871633] pci 0000:19:05.0: devices behind bridge are unusable because [bus 38-47] cannot be assigned for them
[   16.872322] pci_bus 0000:19: busn_res: [bus 19-27] end can not be updated to 47
[   16.873020] pci 0000:20:04.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 26-27] add_size 3ff00000 add_align 100000
[   16.873754] pci 0000:20:04.0: bridge window [mem 0x00100000-0x001fffff] to [bus 26-27] add_size 7f00000 add_align 100000
[   16.874477] pci 0000:1f:00.0: bridge window [mem 0x00100000-0x004fffff 64bit pref] to [bus 20-27] add_size 3ff00000 add_align 100000
[   16.875187] pci 0000:1f:00.0: bridge window [mem 0x00100000-0x004fffff] to [bus 20-27] add_size 7f00000 add_align 100000
[   16.875896] pci 0000:19:04.0: bridge window [mem 0x00100000-0x004fffff 64bit pref] to [bus 1f-27] add_size 7fb00000 add_align 100000
[   16.876609] pci 0000:19:04.0: bridge window [mem 0x00100000-0x004fffff] to [bus 1f-27] add_size fb00000 add_align 100000
[   16.877322] pci 0000:18:00.0: bridge window [mem 0x00100000-0x007fffff 64bit pref] to [bus 19-27] add_size 7fb00000 add_align 100000
[   16.878043] pci 0000:18:00.0: bridge window [mem 0x00100000-0x007fffff] to [bus 19-27] add_size fb00000 add_align 100000
[   16.878763] pcieport 0000:06:04.0: bridge window [mem 0x00100000-0x007fffff 64bit pref] to [bus 18-27] add_size bf400000 add_align 100000
[   16.879497] pcieport 0000:06:04.0: BAR 9: no space for [mem size 0x00700000 64bit pref]
[   16.880231] pcieport 0000:06:04.0: BAR 9: failed to assign [mem size 0x00700000 64bit pref]
[   16.880960] pcieport 0000:06:04.0: BAR 9: no space for [mem size 0x00700000 64bit pref]
[   16.881690] pcieport 0000:06:04.0: BAR 9: failed to assign [mem size 0x00700000 64bit pref]
[   16.882421] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xb8afffff]
[   16.883154] pci 0000:18:00.0: BAR 9: no space for [mem size 0x00700000 64bit pref]
[   16.883920] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0x00700000 64bit pref]
[   16.884684] pci 0000:18:00.0: BAR 7: assigned [io  0x5000-0x5fff]
[   16.885435] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xb8afffff]
[   16.886173] pci 0000:18:00.0: BAR 9: no space for [mem size 0x00700000 64bit pref]
[   16.886911] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0x00700000 64bit pref]
[   16.887651] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[   16.888395] pci 0000:19:00.0: BAR 9: assigned [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   16.889145] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0d00000-0xb0dfffff]
[   16.889895] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0e00000-0xb0efffff 64bit pref]
[   16.890649] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[   16.891398] pci 0000:19:02.0: BAR 9: assigned [mem 0xb1000000-0xb10fffff 64bit pref]
[   16.892146] pci 0000:19:04.0: BAR 8: assigned [mem 0xb1100000-0xb4f7ffff]
[   16.892892] pci 0000:19:04.0: BAR 9: assigned [mem 0xb5000000-0xb51fffff 64bit pref]
[   16.893663] pci 0000:19:00.0: BAR 7: assigned [io  0x5000-0x5fff]
[   16.894424] pci 0000:19:01.0: BAR 7: no space for [io  size 0x1000]
[   16.895169] pci 0000:19:01.0: BAR 7: failed to assign [io  size 0x1000]
[   16.895917] pci 0000:19:02.0: BAR 7: no space for [io  size 0x1000]
[   16.896663] pci 0000:19:02.0: BAR 7: failed to assign [io  size 0x1000]
[   16.897405] pci 0000:19:04.0: BAR 7: no space for [io  size 0x4000]
[   16.898159] pci 0000:19:04.0: BAR 7: failed to assign [io  size 0x4000]
[   16.898901] pci 0000:19:00.0: BAR 7: assigned [io  0x5000-0x5fff]
[   16.899638] pci 0000:19:01.0: BAR 7: no space for [io  size 0x1000]
[   16.900373] pci 0000:19:01.0: BAR 7: failed to assign [io  size 0x1000]
[   16.901110] pci 0000:19:02.0: BAR 7: no space for [io  size 0x1000]
[   16.901849] pci 0000:19:02.0: BAR 7: failed to assign [io  size 0x1000]
[   16.902588] pci 0000:19:04.0: BAR 7: no space for [io  size 0x4000]
[   16.903333] pci 0000:19:04.0: BAR 7: failed to assign [io  size 0x4000]
[   16.904092] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[   16.904826] pci 0000:1a:00.0: BAR 9: assigned [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   16.905559] pci 0000:1a:00.0: BAR 7: assigned [io  0x5000-0x5fff]
[   16.906291] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[   16.907022] pci 0000:1b:03.0: BAR 9: assigned [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   16.907754] pci 0000:1b:03.0: BAR 7: assigned [io  0x5000-0x5fff]
[   16.908483] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[   16.909219] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[   16.909953] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[   16.910684] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[   16.911409] pci 0000:1b:03.0:   bridge window [io  0x5000-0x5fff]
[   16.912139] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[   16.912868] pci 0000:1b:03.0:   bridge window [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   16.913641] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[   16.914377] pci 0000:1a:00.0:   bridge window [io  0x5000-0x5fff]
[   16.915110] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[   16.915841] pci 0000:1a:00.0:   bridge window [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   16.916583] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[   16.917310] pci 0000:19:00.0:   bridge window [io  0x5000-0x5fff]
[   16.918042] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[   16.918775] pci 0000:19:00.0:   bridge window [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   16.919513] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e0ffff 64bit pref]
[   16.920265] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0e10000-0xb0e1ffff 64bit pref]
[   16.921015] pci 0000:19:01.0: PCI bridge to [bus 1d]
[   16.921747] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff]
[   16.922479] pci 0000:19:01.0:   bridge window [mem 0xb0e00000-0xb0efffff 64bit pref]
[   16.923213] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff 64bit]
[   16.923997] pci 0000:19:02.0: PCI bridge to [bus 1e]
[   16.924732] pci 0000:19:02.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[   16.925461] pci 0000:19:02.0:   bridge window [mem 0xb1000000-0xb10fffff 64bit pref]
[   16.926195] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb1100000-0xb4f7ffff]
[   16.926915] pci 0000:1f:00.0: BAR 9: assigned [mem 0xb5000000-0xb51fffff 64bit pref]
[   16.927635] pci 0000:1f:00.0: BAR 7: no space for [io  size 0x4000]
[   16.928358] pci 0000:1f:00.0: BAR 7: failed to assign [io  size 0x4000]
[   16.929083] pci 0000:1f:00.0: BAR 7: no space for [io  size 0x4000]
[   16.929803] pci 0000:1f:00.0: BAR 7: failed to assign [io  size 0x4000]
[   16.930522] pci 0000:20:00.0: BAR 8: assigned [mem 0xb1100000-0xb11fffff]
[   16.931238] pci 0000:20:00.0: BAR 9: assigned [mem 0xb5000000-0xb50fffff 64bit pref]
[   16.931956] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[   16.932676] pci 0000:20:01.0: BAR 9: assigned [mem 0xb5100000-0xb51fffff 64bit pref]
[   16.933418] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1300000-0xb13fffff]
[   16.934154] pci 0000:20:02.0: BAR 9: assigned [mem 0xb1400000-0xb14fffff 64bit pref]
[   16.934864] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1500000-0xb32bffff]
[   16.935567] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[   16.936273] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[   16.936980] pci 0000:20:00.0: BAR 7: no space for [io  size 0x1000]
[   16.937678] pci 0000:20:00.0: BAR 7: failed to assign [io  size 0x1000]
[   16.938370] pci 0000:20:01.0: BAR 7: no space for [io  size 0x1000]
[   16.939051] pci 0000:20:01.0: BAR 7: failed to assign [io  size 0x1000]
[   16.939729] pci 0000:20:02.0: BAR 7: no space for [io  size 0x1000]
[   16.940402] pci 0000:20:02.0: BAR 7: failed to assign [io  size 0x1000]
[   16.941074] pci 0000:20:04.0: BAR 7: no space for [io  size 0x1000]
[   16.941741] pci 0000:20:04.0: BAR 7: failed to assign [io  size 0x1000]
[   16.942406] pci 0000:20:00.0: BAR 8: assigned [mem 0xb1100000-0xb11fffff]
[   16.943068] pci 0000:20:00.0: BAR 9: assigned [mem 0xb5000000-0xb50fffff 64bit pref]
[   16.943757] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[   16.944423] pci 0000:20:01.0: BAR 9: assigned [mem 0xb5100000-0xb51fffff 64bit pref]
[   16.945066] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1300000-0xb13fffff]
[   16.945709] pci 0000:20:02.0: BAR 9: assigned [mem 0xb1400000-0xb14fffff 64bit pref]
[   16.946351] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1500000-0xb32bffff]
[   16.946993] pci 0000:20:04.0: BAR 9: assigned [mem 0xb3300000-0xb33fffff 64bit pref]
[   16.947632] pci 0000:20:00.0: BAR 7: no space for [io  size 0x1000]
[   16.948269] pci 0000:20:00.0: BAR 7: failed to assign [io  size 0x1000]
[   16.948906] pci 0000:20:01.0: BAR 7: no space for [io  size 0x1000]
[   16.949539] pci 0000:20:01.0: BAR 7: failed to assign [io  size 0x1000]
[   16.950173] pci 0000:20:02.0: BAR 7: no space for [io  size 0x1000]
[   16.950804] pci 0000:20:02.0: BAR 7: failed to assign [io  size 0x1000]
[   16.951434] pci 0000:20:04.0: BAR 7: no space for [io  size 0x1000]
[   16.952061] pci 0000:20:04.0: BAR 7: failed to assign [io  size 0x1000]
[   16.952691] pci 0000:20:04.0: BAR 9: [mem 0xb3300000-0xb33fffff 64bit pref] (failed to expand by 0x3ff00000)
[   16.953346] pci 0000:20:04.0: failed to add 3ff00000 res[9]=[mem 0xb3300000-0xb33fffff 64bit pref]
[   16.954013] pci 0000:21:00.0: BAR 8: assigned [mem 0xb1100000-0xb11fffff]
[   16.954660] pci 0000:21:00.0: BAR 9: assigned [mem 0xb5000000-0xb50fffff 64bit pref]
[   16.955307] pci 0000:21:00.0: BAR 7: no space for [io  size 0x1000]
[   16.955954] pci 0000:21:00.0: BAR 7: failed to assign [io  size 0x1000]
[   16.956601] pci 0000:22:03.0: BAR 8: assigned [mem 0xb1100000-0xb11fffff]
[   16.957248] pci 0000:22:03.0: BAR 9: assigned [mem 0xb5000000-0xb50fffff 64bit pref]
[   16.957894] pci 0000:22:03.0: BAR 7: no space for [io  size 0x1000]
[   16.958540] pci 0000:22:03.0: BAR 7: failed to assign [io  size 0x1000]
[   16.959189] pci 0000:23:00.0: BAR 0: assigned [mem 0xb1100000-0xb1100fff]
[   16.959850] pci 0000:23:00.1: BAR 0: assigned [mem 0xb1101000-0xb1101fff]
[   16.960506] pci 0000:23:00.2: BAR 0: assigned [mem 0xb1102000-0xb11020ff]
[   16.961159] pci 0000:22:03.0: PCI bridge to [bus 23]
[   16.961821] pci 0000:22:03.0:   bridge window [mem 0xb1100000-0xb11fffff]
[   16.962477] pci 0000:22:03.0:   bridge window [mem 0xb5000000-0xb50fffff 64bit pref]
[   16.963143] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[   16.963838] pci 0000:21:00.0:   bridge window [mem 0xb1100000-0xb11fffff]
[   16.964506] pci 0000:21:00.0:   bridge window [mem 0xb5000000-0xb50fffff 64bit pref]
[   16.965175] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[   16.965836] pci 0000:20:00.0:   bridge window [mem 0xb1100000-0xb11fffff]
[   16.966495] pci 0000:20:00.0:   bridge window [mem 0xb5000000-0xb50fffff 64bit pref]
[   16.967163] pci 0000:24:00.0: BAR 0: assigned [mem 0xb5100000-0xb510ffff 64bit pref]
[   16.967850] pci 0000:24:00.0: BAR 2: assigned [mem 0xb5110000-0xb511ffff 64bit pref]
[   16.968530] pci 0000:20:01.0: PCI bridge to [bus 24]
[   16.969188] pci 0000:20:01.0:   bridge window [mem 0xb1200000-0xb12fffff]
[   16.969841] pci 0000:20:01.0:   bridge window [mem 0xb5100000-0xb51fffff 64bit pref]
[   16.970503] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1300000-0xb1300fff 64bit]
[   16.971189] pci 0000:20:02.0: PCI bridge to [bus 25]
[   16.971853] pci 0000:20:02.0:   bridge window [mem 0xb1300000-0xb13fffff]
[   16.972512] pci 0000:20:02.0:   bridge window [mem 0xb1400000-0xb14fffff 64bit pref]
[   16.973181] pci 0000:20:04.0: PCI bridge to [bus 26-27]
[   16.973881] pci 0000:20:04.0:   bridge window [mem 0xb1500000-0xb32bffff]
[   16.974553] pci 0000:20:04.0:   bridge window [mem 0xb3300000-0xb33fffff 64bit pref]
[   16.975224] pci 0000:1f:00.0: PCI bridge to [bus 20-27]
[   16.975890] pci 0000:1f:00.0:   bridge window [mem 0xb1100000-0xb4f7ffff]
[   16.976556] pci 0000:1f:00.0:   bridge window [mem 0xb5000000-0xb51fffff 64bit pref]
[   16.977233] pci 0000:19:04.0: PCI bridge to [bus 1f-27]
[   16.977898] pci 0000:19:04.0:   bridge window [mem 0xb1100000-0xb4f7ffff]
[   16.978562] pci 0000:19:04.0:   bridge window [mem 0xb5000000-0xb51fffff 64bit pref]
[   16.979232] pci 0000:18:00.0: PCI bridge to [bus 19-27]
[   16.979898] pci 0000:18:00.0:   bridge window [io  0x5000-0x5fff]
[   16.980568] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xb8afffff]
[   16.981248] pcieport 0000:06:04.0: PCI bridge to [bus 18-27]
[   16.981912] pcieport 0000:06:04.0:   bridge window [io  0x5000-0x5fff]
[   16.982578] pcieport 0000:06:04.0:   bridge window [mem 0xb0b00000-0xb8afffff]
[   16.983250] PCI: No. 2 try to assign unassigned res
[   16.983252] pci 0000:1b:03.0: resource 7 [io  0x5000-0x5fff] released
[   16.983951] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[   16.984643] pci 0000:1a:00.0: resource 7 [io  0x5000-0x5fff] released
[   16.985307] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[   16.985987] pci 0000:19:00.0: resource 7 [io  0x5000-0x5fff] released
[   16.986652] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[   16.987328] pci 0000:18:00.0: resource 7 [io  0x5000-0x5fff] released
[   16.987993] pci 0000:18:00.0: PCI bridge to [bus 19-27]
[   16.988670] pci 0000:1b:03.0: resource 9 [mem 0xb0c00000-0xb0cfffff 64bit pref] released
[   16.989343] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[   16.990038] pci 0000:1a:00.0: resource 9 [mem 0xb0c00000-0xb0cfffff 64bit pref] released
[   16.990722] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[   16.991426] pci 0000:19:00.0: resource 9 [mem 0xb0c00000-0xb0cfffff 64bit pref] released
[   16.992118] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[   16.992824] release child resource [mem 0xb0e00000-0xb0e0ffff 64bit pref]
[   16.992825] release child resource [mem 0xb0e10000-0xb0e1ffff 64bit pref]
[   16.992826] pci 0000:19:01.0: resource 9 [mem 0xb0e00000-0xb0efffff 64bit pref] released
[   16.993551] pci 0000:19:01.0: PCI bridge to [bus 1d]
[   16.994279] pci 0000:19:02.0: resource 9 [mem 0xb1000000-0xb10fffff 64bit pref] released
[   16.994986] pci 0000:19:02.0: PCI bridge to [bus 1e]
[   16.995706] pci 0000:22:03.0: resource 9 [mem 0xb5000000-0xb50fffff 64bit pref] released
[   16.996419] pci 0000:22:03.0: PCI bridge to [bus 23]
[   16.997155] pci 0000:21:00.0: resource 9 [mem 0xb5000000-0xb50fffff 64bit pref] released
[   16.997874] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[   16.998618] pci 0000:20:00.0: resource 9 [mem 0xb5000000-0xb50fffff 64bit pref] released
[   16.999345] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[   17.000092] release child resource [mem 0xb5100000-0xb510ffff 64bit pref]
[   17.000092] release child resource [mem 0xb5110000-0xb511ffff 64bit pref]
[   17.000093] pci 0000:20:01.0: resource 9 [mem 0xb5100000-0xb51fffff 64bit pref] released
[   17.000829] pci 0000:20:01.0: PCI bridge to [bus 24]
[   17.001586] pci 0000:20:02.0: resource 9 [mem 0xb1400000-0xb14fffff 64bit pref] released
[   17.002332] pci 0000:20:02.0: PCI bridge to [bus 25]
[   17.003094] pci 0000:20:04.0: resource 9 [mem 0xb3300000-0xb33fffff 64bit pref] released
[   17.003881] pci 0000:20:04.0: PCI bridge to [bus 26-27]
[   17.004670] pci 0000:1f:00.0: resource 9 [mem 0xb5000000-0xb51fffff 64bit pref] released
[   17.005430] pci 0000:1f:00.0: PCI bridge to [bus 20-27]
[   17.006210] pci 0000:19:04.0: resource 9 [mem 0xb5000000-0xb51fffff 64bit pref] released
[   17.006979] pci 0000:19:04.0: PCI bridge to [bus 1f-27]
[   17.007759] release child resource [mem 0xb0b00000-0xb0b00fff]
[   17.007759] release child resource [mem 0xb0b01000-0xb0b01fff]
[   17.007760] release child resource [mem 0xb0b02000-0xb0b020ff]
[   17.007760] release child resource [mem 0xb0b00000-0xb0bfffff]
[   17.007761] release child resource [mem 0xb0b00000-0xb0bfffff]
[   17.007762] release child resource [mem 0xb0b00000-0xb0bfffff]
[   17.007762] release child resource [mem 0xb0d00000-0xb0dfffff]
[   17.007763] release child resource [mem 0xb0f00000-0xb0f00fff 64bit]
[   17.007763] release child resource [mem 0xb0f00000-0xb0ffffff]
[   17.007764] release child resource [mem 0xb1100000-0xb1100fff]
[   17.007765] release child resource [mem 0xb1101000-0xb1101fff]
[   17.007765] release child resource [mem 0xb1102000-0xb11020ff]
[   17.007766] release child resource [mem 0xb1100000-0xb11fffff]
[   17.007766] release child resource [mem 0xb1100000-0xb11fffff]
[   17.007767] release child resource [mem 0xb1100000-0xb11fffff]
[   17.007768] release child resource [mem 0xb1200000-0xb12fffff]
[   17.007768] release child resource [mem 0xb1300000-0xb1300fff 64bit]
[   17.007769] release child resource [mem 0xb1300000-0xb13fffff]
[   17.007769] release child resource [mem 0xb1500000-0xb32bffff]
[   17.007770] release child resource [mem 0xb1100000-0xb4f7ffff]
[   17.007771] release child resource [mem 0xb1100000-0xb4f7ffff]
[   17.007771] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xb8afffff] released
[   17.008542] pci 0000:18:00.0: PCI bridge to [bus 19-27]
[   17.009317] pcieport 0000:06:04.0: resource 8 [mem 0xb0b00000-0xb8afffff] released
[   17.010092] pcieport 0000:06:04.0: PCI bridge to [bus 18-27]
[   17.010871] release child resource [mem 0xa8a00000-0xa8a3ffff]
[   17.010872] release child resource [mem 0xa8a00000-0xa8a3ffff]
[   17.010872] release child resource [mem 0xa8a40000-0xa8a40fff]
[   17.010873] pcieport 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[   17.011653] pcieport 0000:06:00.0: PCI bridge to [bus 07]
[   17.012434] pcieport 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[   17.013217] pcieport 0000:06:03.0: PCI bridge to [bus 08-17]
[   17.014029] pcieport 0000:06:05.0: resource 8 [mem 0xb8b00000-0xc0afffff] released
[   17.014832] pcieport 0000:06:05.0: PCI bridge to [bus 28-37]
[   17.015615] pcieport 0000:06:06.0: resource 8 [mem 0xc0b00000-0xc8afffff] released
[   17.016395] pcieport 0000:06:06.0: PCI bridge to [bus 38-47]
[   17.017174] pcieport 0000:05:00.0: resource 8 [mem 0xa8a00000-0xc8afffff] released
[   17.017951] pcieport 0000:05:00.0: PCI bridge to [bus 06-47]
[   17.018734] pci 0000:20:04.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 26-27] add_size 3ff00000 add_align 100000
[   17.019533] pci 0000:20:04.0: bridge window [mem 0x00100000-0x01efffff] to [bus 26-27] add_size 6200000 add_align 100000
[   17.020332] pci 0000:1f:00.0: bridge window [mem 0x00100000-0x004fffff 64bit pref] to [bus 20-27] add_size 3ff00000 add_align 100000
[   17.021136] pci 0000:1f:00.0: bridge window [mem 0x00100000-0x03ffffff] to [bus 20-27] add_size 6200000 add_align 100000
[   17.021941] pci 0000:19:04.0: bridge window [mem 0x00100000-0x004fffff 64bit pref] to [bus 1f-27] add_size 7fb00000 add_align 100000
[   17.022747] pci 0000:19:04.0: bridge window [mem 0x00100000-0x03ffffff] to [bus 1f-27] add_size a300000 add_align 100000
[   17.023591] pci 0000:18:00.0: bridge window [mem 0x00100000-0x007fffff 64bit pref] to [bus 19-27] add_size 7fb00000 add_align 100000
[   17.024427] pci 0000:18:00.0: bridge window [mem 0x00100000-0x080fffff] to [bus 19-27] add_size a300000 add_align 100000
[   17.025252] pcieport 0000:06:04.0: bridge window [mem 0x00100000-0x007fffff 64bit pref] to [bus 18-27] add_size bf400000 add_align 100000
[   17.026098] pcieport 0000:06:04.0: bridge window [mem 0x00100000-0x080fffff] to [bus 18-27] add_size a300000 add_align 100000
[   17.026935] pcieport 0000:06:04.0: BAR 8: no space for [mem size 0x08000000]
[   17.027772] pcieport 0000:06:04.0: BAR 8: failed to assign [mem size 0x08000000]
[   17.028607] pcieport 0000:06:04.0: BAR 9: no space for [mem size 0x00700000 64bit pref]
[   17.029443] pcieport 0000:06:04.0: BAR 9: failed to assign [mem size 0x00700000 64bit pref]
[   17.030281] pcieport 0000:06:04.0: BAR 8: no space for [mem size 0x08000000]
[   17.031115] pcieport 0000:06:04.0: BAR 8: failed to assign [mem size 0x08000000]
[   17.031968] pcieport 0000:06:04.0: BAR 9: no space for [mem size 0x00700000 64bit pref]
[   17.032805] pcieport 0000:06:04.0: BAR 9: failed to assign [mem size 0x00700000 64bit pref]
[   17.033674] pci 0000:18:00.0: BAR 8: no space for [mem size 0x08000000]
[   17.034536] pci 0000:18:00.0: BAR 8: failed to assign [mem size 0x08000000]
[   17.035379] pci 0000:18:00.0: BAR 9: no space for [mem size 0x00700000 64bit pref]
[   17.036228] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0x00700000 64bit pref]
[   17.037077] pci 0000:18:00.0: BAR 7: assigned [io  0x5000-0x5fff]
[   17.037926] pci 0000:18:00.0: BAR 8: no space for [mem size 0x08000000]
[   17.038772] pci 0000:18:00.0: BAR 8: failed to assign [mem size 0x08000000]
[   17.039620] pci 0000:18:00.0: BAR 9: no space for [mem size 0x00700000 64bit pref]
[   17.040470] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0x00700000 64bit pref]
[   17.041319] pci 0000:19:00.0: BAR 8: no space for [mem size 0x00100000]
[   17.042172] pci 0000:19:00.0: BAR 8: failed to assign [mem size 0x00100000]
[   17.043025] pci 0000:19:00.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   17.044110] pci 0000:19:00.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   17.045267] pci 0000:19:01.0: BAR 8: no space for [mem size 0x00100000]
[   17.046174] pci 0000:19:01.0: BAR 8: failed to assign [mem size 0x00100000]
[   17.047054] pci 0000:19:01.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   17.047942] pci 0000:19:01.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   17.048801] pci 0000:19:02.0: BAR 8: no space for [mem size 0x00100000]
[   17.049657] pci 0000:19:02.0: BAR 8: failed to assign [mem size 0x00100000]
[   17.050517] pci 0000:19:02.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   17.051396] pci 0000:19:02.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   17.052270] pci 0000:19:04.0: BAR 8: no space for [mem size 0x03e80000]
[   17.053146] pci 0000:19:04.0: BAR 8: failed to assign [mem size 0x03e80000]
[   17.054042] pci 0000:19:04.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[   17.054926] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[   17.055794] pci 0000:19:00.0: BAR 7: assigned [io  0x5000-0x5fff]
[   17.056661] pci 0000:19:01.0: BAR 7: no space for [io  size 0x1000]
[   17.057524] pci 0000:19:01.0: BAR 7: failed to assign [io  size 0x1000]
[   17.058388] pci 0000:19:02.0: BAR 7: no space for [io  size 0x1000]
[   17.059249] pci 0000:19:02.0: BAR 7: failed to assign [io  size 0x1000]
[   17.060109] pci 0000:19:04.0: BAR 7: no space for [io  size 0x4000]
[   17.060967] pci 0000:19:04.0: BAR 7: failed to assign [io  size 0x4000]
[   17.061822] pci 0000:19:00.0: BAR 8: no space for [mem size 0x00100000]
[   17.062674] pci 0000:19:00.0: BAR 8: failed to assign [mem size 0x00100000]
[   17.063547] pci 0000:19:00.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   17.064408] pci 0000:19:00.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   17.065252] pci 0000:19:01.0: BAR 8: no space for [mem size 0x00100000]
[   17.066095] pci 0000:19:01.0: BAR 8: failed to assign [mem size 0x00100000]
[   17.066935] pci 0000:19:01.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   17.067773] pci 0000:19:01.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   17.068605] pci 0000:19:02.0: BAR 8: no space for [mem size 0x00100000]
[   17.069437] pci 0000:19:02.0: BAR 8: failed to assign [mem size 0x00100000]
[   17.070267] pci 0000:19:02.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   17.071096] pci 0000:19:02.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   17.071922] pci 0000:19:04.0: BAR 8: no space for [mem size 0x03e80000]
[   17.072746] pci 0000:19:04.0: BAR 8: failed to assign [mem size 0x03e80000]
[   17.073591] pci 0000:19:04.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[   17.074424] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[   17.075238] pci 0000:19:00.0: BAR 7: assigned [io  0x5000-0x5fff]
[   17.076050] pci 0000:19:01.0: BAR 7: no space for [io  size 0x1000]
[   17.076857] pci 0000:19:01.0: BAR 7: failed to assign [io  size 0x1000]
[   17.077661] pci 0000:19:02.0: BAR 7: no space for [io  size 0x1000]
[   17.078459] pci 0000:19:02.0: BAR 7: failed to assign [io  size 0x1000]
[   17.079255] pci 0000:19:04.0: BAR 7: no space for [io  size 0x4000]
[   17.080047] pci 0000:19:04.0: BAR 7: failed to assign [io  size 0x4000]
[   17.080834] pci 0000:1a:00.0: BAR 8: no space for [mem size 0x00100000]
[   17.081617] pci 0000:1a:00.0: BAR 8: failed to assign [mem size 0x00100000]
[   17.082397] pci 0000:1a:00.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   17.083177] pci 0000:1a:00.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   17.083981] pci 0000:1a:00.0: BAR 7: assigned [io  0x5000-0x5fff]
[   17.084771] pci 0000:1a:00.0: BAR 8: no space for [mem size 0x00100000]
[   17.085544] pci 0000:1a:00.0: BAR 8: failed to assign [mem size 0x00100000]
[   17.086317] pci 0000:1a:00.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   17.087090] pci 0000:1a:00.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   17.087865] pci 0000:1b:03.0: BAR 8: no space for [mem size 0x00100000]
[   17.088639] pci 0000:1b:03.0: BAR 8: failed to assign [mem size 0x00100000]
[   17.089410] pci 0000:1b:03.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   17.090183] pci 0000:1b:03.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   17.090956] pci 0000:1b:03.0: BAR 7: assigned [io  0x5000-0x5fff]
[   17.091726] pci 0000:1b:03.0: BAR 8: no space for [mem size 0x00100000]
[   17.092493] pci 0000:1b:03.0: BAR 8: failed to assign [mem size 0x00100000]
[   17.093263] pci 0000:1b:03.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   17.094065] pci 0000:1b:03.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   17.094838] pci 0000:1c:00.0: BAR 0: no space for [mem size 0x00001000]
[   17.095593] pci 0000:1c:00.0: BAR 0: failed to assign [mem size 0x00001000]
[   17.096348] pci 0000:1c:00.1: BAR 0: no space for [mem size 0x00001000]
[   17.097096] pci 0000:1c:00.1: BAR 0: failed to assign [mem size 0x00001000]
[   17.097841] pci 0000:1c:00.2: BAR 0: no space for [mem size 0x00000100]
[   17.098583] pci 0000:1c:00.2: BAR 0: failed to assign [mem size 0x00000100]
[   17.099325] pci 0000:1c:00.0: BAR 0: no space for [mem size 0x00001000]
[   17.100055] pci 0000:1c:00.0: BAR 0: failed to assign [mem size 0x00001000]
[   17.100783] pci 0000:1c:00.1: BAR 0: no space for [mem size 0x00001000]
[   17.101532] pci 0000:1c:00.1: BAR 0: failed to assign [mem size 0x00001000]
[   17.102252] pci 0000:1c:00.2: BAR 0: no space for [mem size 0x00000100]
[   17.102971] pci 0000:1c:00.2: BAR 0: failed to assign [mem size 0x00000100]
[   17.103716] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[   17.104453] pci 0000:1b:03.0:   bridge window [io  0x5000-0x5fff]
[   17.105205] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[   17.105925] pci 0000:1a:00.0:   bridge window [io  0x5000-0x5fff]
[   17.106673] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[   17.107384] pci 0000:19:00.0:   bridge window [io  0x5000-0x5fff]
[   17.108118] pci 0000:1d:00.0: BAR 0: no space for [mem size 0x00010000 64bit pref]
[   17.108830] pci 0000:1d:00.0: BAR 0: failed to assign [mem size 0x00010000 64bit pref]
[   17.109542] pci 0000:1d:00.0: BAR 2: no space for [mem size 0x00010000 64bit pref]
[   17.110254] pci 0000:1d:00.0: BAR 2: failed to assign [mem size 0x00010000 64bit pref]
[   17.110967] pci 0000:1d:00.0: BAR 0: no space for [mem size 0x00010000 64bit pref]
[   17.111679] pci 0000:1d:00.0: BAR 0: failed to assign [mem size 0x00010000 64bit pref]
[   17.112391] pci 0000:1d:00.0: BAR 2: no space for [mem size 0x00010000 64bit pref]
[   17.113104] pci 0000:1d:00.0: BAR 2: failed to assign [mem size 0x00010000 64bit pref]
[   17.113840] pci 0000:19:01.0: PCI bridge to [bus 1d]
[   17.114592] pci 0000:1e:00.0: BAR 0: no space for [mem size 0x00001000 64bit]
[   17.115307] pci 0000:1e:00.0: BAR 0: failed to assign [mem size 0x00001000 64bit]
[   17.116022] pci 0000:1e:00.0: BAR 0: no space for [mem size 0x00001000 64bit]
[   17.116734] pci 0000:1e:00.0: BAR 0: failed to assign [mem size 0x00001000 64bit]
[   17.117446] pci 0000:19:02.0: PCI bridge to [bus 1e]
[   17.118180] pci 0000:1f:00.0: BAR 8: no space for [mem size 0x03e80000]
[   17.118893] pci 0000:1f:00.0: BAR 8: failed to assign [mem size 0x03e80000]
[   17.119603] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[   17.120314] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[   17.121024] pci 0000:1f:00.0: BAR 7: no space for [io  size 0x4000]
[   17.121734] pci 0000:1f:00.0: BAR 7: failed to assign [io  size 0x4000]
[   17.122439] pci 0000:1f:00.0: BAR 8: no space for [mem size 0x03e80000]
[   17.123145] pci 0000:1f:00.0: BAR 8: failed to assign [mem size 0x03e80000]
[   17.123875] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[   17.124594] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[   17.125297] pci 0000:1f:00.0: BAR 7: no space for [io  size 0x4000]
[   17.126000] pci 0000:1f:00.0: BAR 7: failed to assign [io  size 0x4000]
[   17.126706] pci 0000:20:00.0: BAR 8: no space for [mem size 0x00100000]
[   17.127408] pci 0000:20:00.0: BAR 8: failed to assign [mem size 0x00100000]
[   17.128112] pci 0000:20:00.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   17.128819] pci 0000:20:00.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   17.129530] pci 0000:20:01.0: BAR 8: no space for [mem size 0x00100000]
[   17.130241] pci 0000:20:01.0: BAR 8: failed to assign [mem size 0x00100000]
[   17.130953] pci 0000:20:01.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   17.131665] pci 0000:20:01.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   17.132376] pci 0000:20:02.0: BAR 8: no space for [mem size 0x00100000]
[   17.133085] pci 0000:20:02.0: BAR 8: failed to assign [mem size 0x00100000]
[   17.133824] pci 0000:20:02.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   17.134551] pci 0000:20:02.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   17.135263] pci 0000:20:04.0: BAR 8: no space for [mem size 0x01dc0000]
[   17.135973] pci 0000:20:04.0: BAR 8: failed to assign [mem size 0x01dc0000]
[   17.136683] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[   17.137396] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[   17.138108] pci 0000:20:00.0: BAR 7: no space for [io  size 0x1000]
[   17.138818] pci 0000:20:00.0: BAR 7: failed to assign [io  size 0x1000]
[   17.139526] pci 0000:20:01.0: BAR 7: no space for [io  size 0x1000]
[   17.140231] pci 0000:20:01.0: BAR 7: failed to assign [io  size 0x1000]
[   17.140935] pci 0000:20:02.0: BAR 7: no space for [io  size 0x1000]
[   17.141639] pci 0000:20:02.0: BAR 7: failed to assign [io  size 0x1000]
[   17.142342] pci 0000:20:04.0: BAR 7: no space for [io  size 0x1000]
[   17.143045] pci 0000:20:04.0: BAR 7: failed to assign [io  size 0x1000]
[   17.143777] pci 0000:20:00.0: BAR 8: no space for [mem size 0x00100000]
[   17.144496] pci 0000:20:00.0: BAR 8: failed to assign [mem size 0x00100000]
[   17.145201] pci 0000:20:00.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   17.145909] pci 0000:20:00.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   17.146617] pci 0000:20:01.0: BAR 8: no space for [mem size 0x00100000]
[   17.147328] pci 0000:20:01.0: BAR 8: failed to assign [mem size 0x00100000]
[   17.148038] pci 0000:20:01.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   17.148750] pci 0000:20:01.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   17.149462] pci 0000:20:02.0: BAR 8: no space for [mem size 0x00100000]
[   17.150176] pci 0000:20:02.0: BAR 8: failed to assign [mem size 0x00100000]
[   17.150891] pci 0000:20:02.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   17.151606] pci 0000:20:02.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   17.152321] pci 0000:20:04.0: BAR 8: no space for [mem size 0x01dc0000]
[   17.153034] pci 0000:20:04.0: BAR 8: failed to assign [mem size 0x01dc0000]
[   17.153789] pci 0000:20:04.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   17.154538] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   17.155260] pci 0000:20:00.0: BAR 7: no space for [io  size 0x1000]
[   17.155981] pci 0000:20:00.0: BAR 7: failed to assign [io  size 0x1000]
[   17.156703] pci 0000:20:01.0: BAR 7: no space for [io  size 0x1000]
[   17.157422] pci 0000:20:01.0: BAR 7: failed to assign [io  size 0x1000]
[   17.158146] pci 0000:20:02.0: BAR 7: no space for [io  size 0x1000]
[   17.158856] pci 0000:20:02.0: BAR 7: failed to assign [io  size 0x1000]
[   17.159560] pci 0000:20:04.0: BAR 7: no space for [io  size 0x1000]
[   17.160308] pci 0000:20:04.0: BAR 7: failed to assign [io  size 0x1000]
[   17.161011] pci 0000:21:00.0: BAR 8: no space for [mem size 0x00100000]
[   17.161716] pci 0000:21:00.0: BAR 8: failed to assign [mem size 0x00100000]
[   17.162420] pci 0000:21:00.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   17.163128] pci 0000:21:00.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   17.163863] pci 0000:21:00.0: BAR 7: no space for [io  size 0x1000]
[   17.164596] pci 0000:21:00.0: BAR 7: failed to assign [io  size 0x1000]
[   17.165306] pci 0000:22:03.0: BAR 8: no space for [mem size 0x00100000]
[   17.166016] pci 0000:22:03.0: BAR 8: failed to assign [mem size 0x00100000]
[   17.166724] pci 0000:22:03.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   17.167436] pci 0000:22:03.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   17.168145] pci 0000:22:03.0: BAR 7: no space for [io  size 0x1000]
[   17.168853] pci 0000:22:03.0: BAR 7: failed to assign [io  size 0x1000]
[   17.169564] pci 0000:23:00.0: BAR 0: no space for [mem size 0x00001000]
[   17.170277] pci 0000:23:00.0: BAR 0: failed to assign [mem size 0x00001000]
[   17.170988] pci 0000:23:00.1: BAR 0: no space for [mem size 0x00001000]
[   17.171700] pci 0000:23:00.1: BAR 0: failed to assign [mem size 0x00001000]
[   17.172408] pci 0000:23:00.2: BAR 0: no space for [mem size 0x00000100]
[   17.173119] pci 0000:23:00.2: BAR 0: failed to assign [mem size 0x00000100]
[   17.173960] pci 0000:22:03.0: PCI bridge to [bus 23]
[   17.174739] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[   17.175491] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[   17.176231] pci 0000:24:00.0: BAR 0: no space for [mem size 0x00010000 64bit pref]
[   17.176934] pci 0000:24:00.0: BAR 0: failed to assign [mem size 0x00010000 64bit pref]
[   17.177638] pci 0000:24:00.0: BAR 2: no space for [mem size 0x00010000 64bit pref]
[   17.178339] pci 0000:24:00.0: BAR 2: failed to assign [mem size 0x00010000 64bit pref]
[   17.179042] pci 0000:20:01.0: PCI bridge to [bus 24]
[   17.179781] pci 0000:25:00.0: BAR 0: no space for [mem size 0x00001000 64bit]
[   17.180489] pci 0000:25:00.0: BAR 0: failed to assign [mem size 0x00001000 64bit]
[   17.181196] pci 0000:20:02.0: PCI bridge to [bus 25]
[   17.181938] pci 0000:20:04.0: PCI bridge to [bus 26-27]
[   17.182674] pci 0000:1f:00.0: PCI bridge to [bus 20-27]
[   17.183450] pci 0000:19:04.0: PCI bridge to [bus 1f-27]
[   17.184170] pci 0000:18:00.0: PCI bridge to [bus 19-27]
[   17.184862] pci 0000:18:00.0:   bridge window [io  0x5000-0x5fff]
[   17.185576] pcieport 0000:06:04.0: PCI bridge to [bus 18-27]
[   17.186268] pcieport 0000:06:04.0:   bridge window [io  0x5000-0x5fff]
[   17.187003] pcieport 0000:18:00.0: enabling device (0000 -> 0001)
[   17.188054] pcieport 0000:19:00.0: enabling device (0000 -> 0001)
[   17.190354] pcieport 0000:19:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[   17.191581] pcieport 0000:19:05.0: pciehp: Hotplug bridge without secondary bus, ignoring
[   17.192608] pcieport 0000:1a:00.0: enabling device (0000 -> 0001)
[   17.193592] pcieport 0000:1b:03.0: enabling device (0000 -> 0001)
[   17.194459] pci 0000:1c:00.0: MSI is not implemented on this device, disabling it
[   17.195285] pci 0000:1c:00.0: PME# is unreliable, disabling it
[   17.196148] ohci-pci 0000:1c:00.0: init 0000:1c:00.0 fail, -16
[   17.196888] ohci-pci: probe of 0000:1c:00.0 failed with error -16
[   17.197623] pci 0000:1c:00.1: MSI is not implemented on this device, disabling it
[   17.198358] pci 0000:1c:00.1: PME# is unreliable, disabling it
[   17.199182] ohci-pci 0000:1c:00.1: init 0000:1c:00.1 fail, -16
[   17.199905] ohci-pci: probe of 0000:1c:00.1 failed with error -16
[   17.200645] pci 0000:1c:00.2: MSI is not implemented on this device, disabling it
[   17.201389] pci 0000:1c:00.2: PME# is unreliable, disabling it
[   17.202664] ehci-pci 0000:1c:00.2: init 0000:1c:00.2 fail, -16
[   17.203421] ehci-pci: probe of 0000:1c:00.2 failed with error -16
[   17.204206] tg3 0000:1d:00.0: can't ioremap BAR 0: [??? 0x00000000 flags 0x0]
[   17.204934] tg3 0000:1d:00.0: Cannot map device registers, aborting
[   17.205681] tg3: probe of 0000:1d:00.0 failed with error -12
[   17.206461] firewire_ohci 0000:1e:00.0: invalid MMIO resource
[   17.209658] pcieport 0000:20:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[   17.211045] pcieport 0000:20:05.0: pciehp: Hotplug bridge without secondary bus, ignoring
[   17.212446] pci 0000:23:00.0: MSI is not implemented on this device, disabling it
[   17.213254] pci 0000:23:00.0: PME# is unreliable, disabling it
[   17.214188] ohci-pci 0000:23:00.0: init 0000:23:00.0 fail, -16
[   17.214970] ohci-pci: probe of 0000:23:00.0 failed with error -16
[   17.215751] pci 0000:23:00.1: MSI is not implemented on this device, disabling it
[   17.216538] pci 0000:23:00.1: PME# is unreliable, disabling it
[   17.217446] ohci-pci 0000:23:00.1: init 0000:23:00.1 fail, -16
[   17.218238] ohci-pci: probe of 0000:23:00.1 failed with error -16
[   17.219025] pci 0000:23:00.2: MSI is not implemented on this device, disabling it
[   17.219818] pci 0000:23:00.2: PME# is unreliable, disabling it
[   17.220725] ehci-pci 0000:23:00.2: init 0000:23:00.2 fail, -16
[   17.221513] ehci-pci: probe of 0000:23:00.2 failed with error -16
[   17.222361] tg3 0000:24:00.0: can't ioremap BAR 0: [??? 0x00000000 flags 0x0]
[   17.223157] tg3 0000:24:00.0: Cannot map device registers, aborting
[   17.224002] tg3: probe of 0000:24:00.0 failed with error -12
[   17.224875] firewire_ohci 0000:25:00.0: invalid MMIO resource
[   17.253913] usb 1-1.1.3: USB disconnect, device number 9
[   17.555863] Adding 16777212k swap on /dev/sda5.  Priority:-2 extents:1 across:16777212k SS
[   17.568627] EXT4-fs (sda6): re-mounted. Quota mode: none.
[   17.653178] device-mapper: ioctl: 4.46.0-ioctl (2022-02-22) initialised: dm-devel@redhat.com
[   20.396814] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Quota mode: none.
[   20.923922] NET: Registered PF_PACKET protocol family
[   23.867672] tg3 0000:02:00.0 eth0: Link is up at 1000 Mbps, full duplex
[   23.868577] tg3 0000:02:00.0 eth0: Flow control is off for TX and off for RX
[   23.869465] tg3 0000:02:00.0 eth0: EEE is enabled
[   27.035537] FS-Cache: Loaded
[   27.041268] RPC: Registered named UNIX socket transport module.
[   27.042065] RPC: Registered udp transport module.
[   27.042867] RPC: Registered tcp transport module.
[   27.043656] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   27.056203] NFS: Registering the id_resolver key type
[   27.057040] Key type id_resolver registered
[   27.057814] Key type id_legacy registered
[   28.173383] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[   28.624610] elogind-daemon[3017]: New seat seat0.
[   30.139163] switching from power state:
[   30.139170] 	ui class: performance
[   30.139172] 	internal class: none
[   30.139175] 	caps:
[   30.139176] 	uvd    vclk: 0 dclk: 0
[   30.139177] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   30.139179] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[   30.139181] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[   30.139182] 	status: c
[   30.139184] switching to power state:
[   30.139185] 	ui class: battery
[   30.139186] 	internal class: none
[   30.139187] 	caps:
[   30.139189] 	uvd    vclk: 0 dclk: 0
[   30.139190] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   30.139191] 		power level 1    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   30.139193] 		power level 2    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   30.139194] 	status: r
[   39.516464] thunderbolt 0000:07:00.0: acking hot unplug event on 0:3
[   39.516477] thunderbolt 0000:07:00.0: acking hot unplug event on 0:4
[   39.562792] pcieport 0000:19:04.0: pciehp: pciehp_isr: no response from device
[   39.562813] thunderbolt 0000:07:00.0: 0:3: switch unplugged
[   39.562834] pcieport 0000:20:04.0: pciehp: pciehp_isr: no response from device
[   39.562834] thunderbolt 0000:07:00.0: 0:c <-> 303:b (DP): deactivating
[   39.562875] pcieport 0000:19:04.0: pciehp: pciehp_isr: no response from device
[   39.562898] pcieport 0000:20:04.0: pciehp: pciehp_isr: no response from device
[   39.562923] pcieport 0000:06:04.0: pciehp: Slot(4-1): Link Down
[   39.562935] pcieport 0000:06:04.0: pciehp: Slot(4-1): Card not present
[   39.562954] pcieport 0000:19:05.0: can't change power state from D3cold to D0 (config space inaccessible)
[   39.563107] pcieport 0000:20:05.0: can't change power state from D3cold to D0 (config space inaccessible)
[   39.563203] pcieport 0000:20:04.0: can't change power state from D3cold to D0 (config space inaccessible)
[   39.568680] pci_bus 0000:1c: busn_res: [bus 1c] is released
[   39.568929] pci_bus 0000:1b: busn_res: [bus 1b-1c] is released
[   39.569058] pci_bus 0000:1a: busn_res: [bus 1a-1c] is released
[   39.569522] pci_bus 0000:1d: busn_res: [bus 1d] is released
[   39.569627] pci_bus 0000:1e: busn_res: [bus 1e] is released
[   39.569972] pci_bus 0000:23: busn_res: [bus 23] is released
[   39.570014] pci_bus 0000:22: busn_res: [bus 22-23] is released
[   39.570071] pci_bus 0000:21: busn_res: [bus 21-23] is released
[   39.570148] pci_bus 0000:24: busn_res: [bus 24] is released
[   39.570209] pci_bus 0000:25: busn_res: [bus 25] is released
[   39.570246] pci_bus 0000:26: busn_res: [bus 26-27] is released
[   39.570307] pci_bus 0000:20: busn_res: [bus 20-27] is released
[   39.570355] pci_bus 0000:1f: busn_res: [bus 1f-27] is released
[   39.570410] pci_bus 0000:19: busn_res: [bus 19-27] is released
[   39.784861] thunderbolt 0000:07:00.0: acking hot unplug event on 0:3
[   39.993714] thunderbolt 0000:07:00.0: 0: timeout reading config space 1 from 0x3c
[   40.053288] thunderbolt 0000:07:00.0: acking hot unplug event on 0:3
[   40.321705] thunderbolt 0000:07:00.0: acking hot unplug event on 0:3
[   40.433723] thunderbolt 0000:07:00.0: 0: timeout reading config space 1 from 0x39
[   40.590165] thunderbolt 0000:07:00.0: acking hot unplug event on 0:3
[   40.858598] thunderbolt 0000:07:00.0: acking hot unplug event on 0:3
[   40.873734] thunderbolt 0000:07:00.0: 0: timeout reading config space 1 from 0x39
[   40.873773] thunderbolt 0000:07:00.0: deactivating Video path from 0:12 to 303:11
[   41.127016] thunderbolt 0000:07:00.0: acking hot unplug event on 0:3
[   41.313743] thunderbolt 0000:07:00.0: 0: timeout reading config space 0 from 0x12
[   41.313782] thunderbolt 0000:07:00.0: 0:c: hop deactivation failed for hop 0, index 9
[   41.313810] thunderbolt 0000:07:00.0: 0:c: adding -5 NFC credits to 5
[   41.395444] thunderbolt 0000:07:00.0: acking hot unplug event on 0:3
[   41.753753] thunderbolt 0000:07:00.0: 0: timeout writing config space 1 to 0x4
[   41.753791] thunderbolt 0000:07:00.0: 0:c: nfc credits deallocation failed for hop 0
[   41.753819] thunderbolt 0000:07:00.0: deactivating AUX TX path from 0:12 to 303:11
[   42.193762] thunderbolt 0000:07:00.0: 0: timeout reading config space 0 from 0x10
[   42.193801] thunderbolt 0000:07:00.0: 0:c: hop deactivation failed for hop 0, index 8
[   42.193829] thunderbolt 0000:07:00.0: deactivating AUX RX path from 303:11 to 0:12
[   42.633773] thunderbolt 0000:07:00.0: 0: timeout reading config space 0 from 0x10
[   42.633813] thunderbolt 0000:07:00.0: 0:4: hop deactivation failed for hop 2, index 8
[   42.633841] thunderbolt 0000:07:00.0: 0: released DP resource for port 12
[   42.633851] thunderbolt 0000:07:00.0: 0:d <-> 3:b (DP): deactivating
[   43.073780] thunderbolt 0000:07:00.0: 0: timeout reading config space 1 from 0x3c
[   43.513791] thunderbolt 0000:07:00.0: 0: timeout reading config space 1 from 0x39
[   43.953800] thunderbolt 0000:07:00.0: 0: timeout reading config space 1 from 0x39
[   43.953839] thunderbolt 0000:07:00.0: deactivating Video path from 0:13 to 3:11
[   44.393809] thunderbolt 0000:07:00.0: 0: timeout reading config space 0 from 0x12
[   44.393848] thunderbolt 0000:07:00.0: 0:d: hop deactivation failed for hop 0, index 9
[   44.393875] thunderbolt 0000:07:00.0: 0:d: adding -5 NFC credits to 5
[   44.833817] thunderbolt 0000:07:00.0: 0: timeout writing config space 1 to 0x4
[   44.833855] thunderbolt 0000:07:00.0: 0:d: nfc credits deallocation failed for hop 0
[   44.833882] thunderbolt 0000:07:00.0: deactivating AUX TX path from 0:13 to 3:11
[   45.273827] thunderbolt 0000:07:00.0: 0: timeout reading config space 0 from 0x10
[   45.273866] thunderbolt 0000:07:00.0: 0:d: hop deactivation failed for hop 0, index 8
[   45.273894] thunderbolt 0000:07:00.0: deactivating AUX RX path from 3:11 to 0:13
[   45.713836] thunderbolt 0000:07:00.0: 0: timeout reading config space 0 from 0x10
[   45.713875] thunderbolt 0000:07:00.0: 0:3: hop deactivation failed for hop 1, index 8
[   45.713904] thunderbolt 0000:07:00.0: 0: released DP resource for port 13
[   45.713912] thunderbolt 0000:07:00.0: 0:7 <-> 3:a (PCI): deactivating
[   46.153849] thunderbolt 0000:07:00.0: 0: timeout writing config space 1 to 0x39
[   46.153887] thunderbolt 0000:07:00.0: deactivating PCIe Down path from 0:7 to 3:10
[   46.593827] thunderbolt 0000:07:00.0: 0: timeout reading config space 0 from 0x10
[   46.593866] thunderbolt 0000:07:00.0: 0:7: hop deactivation failed for hop 0, index 8
[   46.593894] thunderbolt 0000:07:00.0: deactivating PCIe Up path from 3:10 to 0:7
[   47.033864] thunderbolt 0000:07:00.0: 0: timeout reading config space 0 from 0x12
[   47.033903] thunderbolt 0000:07:00.0: 0:3: hop deactivation failed for hop 1, index 9
[   47.033934] thunderbolt 0000:07:00.0: 3:7 <-> 303:a (PCI): deactivating
[   47.033939] thunderbolt 0000:07:00.0: deactivating PCIe Down path from 3:7 to 303:10
[   47.033943] thunderbolt 0000:07:00.0: deactivating PCIe Up path from 303:10 to 3:7
[   47.033949] thunderbolt 0000:07:00.0: 303:b: DP OUT resource unavailable
[   47.033952] thunderbolt 0000:07:00.0: 3:b: DP OUT resource unavailable
[   47.034018] thunderbolt 0-303: device disconnected
[   47.034090] thunderbolt 0-3: device disconnected
[   47.034131] thunderbolt 0000:07:00.0: looking for DP IN <-> DP OUT pairs:
[   47.473874] thunderbolt 0000:07:00.0: 0: timeout reading config space 1 from 0x39
[   47.473913] thunderbolt 0000:07:00.0: 0:c: DP IN available
[   47.913883] thunderbolt 0000:07:00.0: 0: timeout reading config space 1 from 0x39
[   47.913922] thunderbolt 0000:07:00.0: 0:d: DP IN available
[   47.913925] thunderbolt 0000:07:00.0: no suitable DP IN adapter available, not tunneling
[   47.913931] thunderbolt 0000:07:00.0: 0:4: got unplug event for disconnected port, ignoring
[   47.913934] thunderbolt 0000:07:00.0: 0:3: got unplug event for disconnected port, ignoring
[   47.913937] thunderbolt 0000:07:00.0: 0:3: got unplug event for disconnected port, ignoring
[   47.913940] thunderbolt 0000:07:00.0: 0:3: got unplug event for disconnected port, ignoring
[   47.913943] thunderbolt 0000:07:00.0: 0:3: got unplug event for disconnected port, ignoring
[   47.913945] thunderbolt 0000:07:00.0: 0:3: got unplug event for disconnected port, ignoring
[   47.913948] thunderbolt 0000:07:00.0: 0:3: got unplug event for disconnected port, ignoring
[   47.913951] thunderbolt 0000:07:00.0: 0:3: got unplug event for disconnected port, ignoring
[   73.974036] elogind-daemon[3017]: New session c1 of user brad.


^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-03-29 14:06       ` Brad Campbell
@ 2022-03-30 10:18         ` Mika Westerberg
  2022-03-30 13:19           ` Brad Campbell
  0 siblings, 1 reply; 47+ messages in thread
From: Mika Westerberg @ 2022-03-30 10:18 UTC (permalink / raw)
  To: Brad Campbell; +Cc: linux-kernel

Hi,

On Tue, Mar 29, 2022 at 10:06:35PM +0800, Brad Campbell wrote:
> > Indeed, I did not add this to the "discovery" path yet.
> > 
> > I wonder what happens if you change this:
> > 
> > +       tunnel = tb_tunnel_alloc_dp(tb, in, out, available_up, available_down,
> > +                                   first ? 0 : 1);
> > 
> > to this in your tree:
> > 
> > +       tunnel = tb_tunnel_alloc_dp(tb, in, out, available_up, available_down,
> > +                                   first ? 1 : 0);
> > 
> 
> Here's where it gets all "Apple..y". On the iMac this does the job no matter which
> port the chain is plugged into. Boots and displays correctly first time, every time.
> 
> It turns out on the laptop, one port works and the other doesn't. Changing the order
> simply changes which port works. So I assume the EFI sets up the first display using
> the first lane if it's in the first port, and the second if it's in the second.
> 
> That means had I managed to perform the first test in the "other port" consistently,
> it would have worked there also.

Can you try the below patch too? I hard-code the lane based on the
DP adapter number in TBT gen1.

Let's first figure out proper solution to this issue and then look at
the other one.

diff --git a/drivers/thunderbolt/tunnel.c b/drivers/thunderbolt/tunnel.c
index a473cc7d9a8d..97d36a7bb527 100644
--- a/drivers/thunderbolt/tunnel.c
+++ b/drivers/thunderbolt/tunnel.c
@@ -865,6 +865,7 @@ struct tb_tunnel *tb_tunnel_alloc_dp(struct tb *tb, struct tb_port *in,
 	struct tb_tunnel *tunnel;
 	struct tb_path **paths;
 	struct tb_path *path;
+	int link_nr;
 
 	if (WARN_ON(!in->cap_adap || !out->cap_adap))
 		return NULL;
@@ -883,22 +884,32 @@ struct tb_tunnel *tb_tunnel_alloc_dp(struct tb *tb, struct tb_port *in,
 
 	paths = tunnel->paths;
 
+	/*
+	 * Hard code the lane for both DP IN adapters in first
+	 * generation hardware. This should follow what the Apple boot
+	 * firmware does.
+	 */
+	if (in->sw->generation == 1)
+		link_nr = in->port == 11 ? 1 : 0;
+	else
+		link_nr = 0;
+
 	path = tb_path_alloc(tb, in, TB_DP_VIDEO_HOPID, out, TB_DP_VIDEO_HOPID,
-			     1, "Video");
+			     link_nr, "Video");
 	if (!path)
 		goto err_free;
 	tb_dp_init_video_path(path);
 	paths[TB_DP_VIDEO_PATH_OUT] = path;
 
 	path = tb_path_alloc(tb, in, TB_DP_AUX_TX_HOPID, out,
-			     TB_DP_AUX_TX_HOPID, 1, "AUX TX");
+			     TB_DP_AUX_TX_HOPID, link_nr, "AUX TX");
 	if (!path)
 		goto err_free;
 	tb_dp_init_aux_path(path);
 	paths[TB_DP_AUX_PATH_OUT] = path;
 
 	path = tb_path_alloc(tb, out, TB_DP_AUX_RX_HOPID, in,
-			     TB_DP_AUX_RX_HOPID, 1, "AUX RX");
+			     TB_DP_AUX_RX_HOPID, link_nr, "AUX RX");
 	if (!path)
 		goto err_free;
 	tb_dp_init_aux_path(path);

^ permalink raw reply related	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-03-30 10:18         ` Mika Westerberg
@ 2022-03-30 13:19           ` Brad Campbell
  2022-03-30 13:43             ` Mika Westerberg
  0 siblings, 1 reply; 47+ messages in thread
From: Brad Campbell @ 2022-03-30 13:19 UTC (permalink / raw)
  To: Mika Westerberg; +Cc: linux-kernel

Hey Mika,

On 30/3/22 18:18, Mika Westerberg wrote:
> Hi,
> 
> On Tue, Mar 29, 2022 at 10:06:35PM +0800, Brad Campbell wrote:
>>> Indeed, I did not add this to the "discovery" path yet.
>>>
>>> I wonder what happens if you change this:
>>>
>>> +       tunnel = tb_tunnel_alloc_dp(tb, in, out, available_up, available_down,
>>> +                                   first ? 0 : 1);
>>>
>>> to this in your tree:
>>>
>>> +       tunnel = tb_tunnel_alloc_dp(tb, in, out, available_up, available_down,
>>> +                                   first ? 1 : 0);
>>>
>>
>> Here's where it gets all "Apple..y". On the iMac this does the job no matter which
>> port the chain is plugged into. Boots and displays correctly first time, every time.
>>
>> It turns out on the laptop, one port works and the other doesn't. Changing the order
>> simply changes which port works. So I assume the EFI sets up the first display using
>> the first lane if it's in the first port, and the second if it's in the second.
>>
>> That means had I managed to perform the first test in the "other port" consistently,
>> it would have worked there also.
> 
> Can you try the below patch too? I hard-code the lane based on the
> DP adapter number in TBT gen1.
> 
> Let's first figure out proper solution to this issue and then look at
> the other one.
> 
> diff --git a/drivers/thunderbolt/tunnel.c b/drivers/thunderbolt/tunnel.c
> index a473cc7d9a8d..97d36a7bb527 100644
> --- a/drivers/thunderbolt/tunnel.c
> +++ b/drivers/thunderbolt/tunnel.c
> @@ -865,6 +865,7 @@ struct tb_tunnel *tb_tunnel_alloc_dp(struct tb *tb, struct tb_port *in,

This one works from cold boot on both machines regardless of the port the chain is plugged into.
It fails on both machines on any hotplug with the symptoms of allocating them both the same link.
I added an extra debug into tunnel.c and verified that.


        path = tb_path_alloc(tb, in, TB_DP_VIDEO_HOPID, out, TB_DP_VIDEO_HOPID,
-                            1, "Video");
+                            link_nr, "Video");
        if (!path)
                goto err_free;
+       tb_dbg(tb, "Tunnel link %i\n", link_nr);
        tb_dp_init_video_path(path);
        paths[TB_DP_VIDEO_PATH_OUT] = path;
 
        path = tb_path_alloc(tb, in, TB_DP_AUX_TX_HOPID, out,
-                            TB_DP_AUX_TX_HOPID, 1, "AUX TX");
+                            TB_DP_AUX_TX_HOPID, link_nr, "AUX TX");


This dmesg was the laptop booted with the chain plugged in, then unplugged and re-plugged. You can see both get allocated Link 0.

[    0.000000] Linux version 5.17.0+ (brad@bklaptop) (gcc (Debian 8.3.0-6) 8.3.0, GNU ld (GNU Binutils for Debian) 2.31.1) #39 SMP PREEMPT_DYNAMIC Wed Mar 30 21:09:15 AWST 2022
[    0.000000] Command line: ro root=UUID=c500d66c-50ec-42a2-a333-eb48d6c9d97b thunderbolt.dyndbg initrd=boot\initrd.img-5.17.0+
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    0.000000] signal: max sigframe size: 1776
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000059000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000bffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000008ad0ffff] usable
[    0.000000] BIOS-e820: [mem 0x000000008ad10000-0x000000008ad52fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000008ad53000-0x000000008ad61fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008ad62000-0x000000008ad8efff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000008ad8f000-0x000000008ae38fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008ae39000-0x000000008ae8efff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008ae8f000-0x000000008aed1fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008aed2000-0x000000008aefefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008aeff000-0x000000008af83fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008af84000-0x000000008afeffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008aff0000-0x000000008affffff] usable
[    0.000000] BIOS-e820: [mem 0x000000008b000000-0x000000008f9fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffe10000-0x00000000ffe3ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000046f5fffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0x73d4b190-0x73d5b1cf] usable ==> usable
[    0.000000] e820: update [mem 0x73d4b190-0x73d5b1cf] usable ==> usable
[    0.000000] e820: update [mem 0x73d6e190-0x73d6ed98] usable ==> usable
[    0.000000] e820: update [mem 0x73d6e190-0x73d6ed98] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x0000000000057fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000000058000-0x0000000000058fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000059000-0x000000000008efff] usable
[    0.000000] reserve setup_data: [mem 0x000000000008f000-0x000000000008ffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000000a0000-0x00000000000bffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000073d4b18f] usable
[    0.000000] reserve setup_data: [mem 0x0000000073d4b190-0x0000000073d5b1cf] usable
[    0.000000] reserve setup_data: [mem 0x0000000073d5b1d0-0x0000000073d6e18f] usable
[    0.000000] reserve setup_data: [mem 0x0000000073d6e190-0x0000000073d6ed98] usable
[    0.000000] reserve setup_data: [mem 0x0000000073d6ed99-0x000000008ad0ffff] usable
[    0.000000] reserve setup_data: [mem 0x000000008ad10000-0x000000008ad52fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000008ad53000-0x000000008ad61fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008ad62000-0x000000008ad8efff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000008ad8f000-0x000000008ae38fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008ae39000-0x000000008ae8efff] reserved
[    0.000000] reserve setup_data: [mem 0x000000008ae8f000-0x000000008aed1fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008aed2000-0x000000008aefefff] reserved
[    0.000000] reserve setup_data: [mem 0x000000008aeff000-0x000000008af83fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008af84000-0x000000008afeffff] reserved
[    0.000000] reserve setup_data: [mem 0x000000008aff0000-0x000000008affffff] usable
[    0.000000] reserve setup_data: [mem 0x000000008b000000-0x000000008f9fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ffe10000-0x00000000ffe3ffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000046f5fffff] usable
[    0.000000] efi: EFI v1.10 by Apple
[    0.000000] efi: ACPI=0x8ad8e000 ACPI 2.0=0x8ad8e014 SMBIOS=0x8ad11000 
[    0.000000] SMBIOS 2.4 present.
[    0.000000] DMI: Apple Inc. MacBookPro11,1/Mac-189A3D4F975D5FFC, BIOS 432.60.3.0.0 10/27/2021
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2600.046 MHz processor
[    0.000117] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000120] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000128] last_pfn = 0x46f600 max_arch_pfn = 0x400000000
[    0.000215] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.001098] last_pfn = 0x8b000 max_arch_pfn = 0x400000000
[    0.001144] Using GB pages for direct mapping
[    0.002175] Secure boot disabled
[    0.002176] RAMDISK: [mem 0x7076d000-0x70e8ffff]
[    0.002179] ACPI: Early table checksum verification disabled
[    0.002181] ACPI: RSDP 0x000000008AD8E014 000024 (v02 APPLE )
[    0.002186] ACPI: XSDT 0x000000008AD8E1C0 0000A4 (v01 APPLE  Apple00  00000000      01000013)
[    0.002190] ACPI: FACP 0x000000008AD8C000 0000F4 (v05 APPLE  Apple00  00000000 Loki 0000005F)
[    0.002196] ACPI: DSDT 0x000000008AD7F000 007681 (v03 APPLE  MacBookP 00110001 INTL 20100915)
[    0.002199] ACPI: FACS 0x000000008AD18000 000040
[    0.002202] ACPI: FACS 0x000000008AD18000 000040
[    0.002204] ACPI: HPET 0x000000008AD8B000 000038 (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002207] ACPI: APIC 0x000000008AD8A000 0000BC (v02 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002210] ACPI: SBST 0x000000008AD88000 000030 (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002213] ACPI: ECDT 0x000000008AD87000 000053 (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002216] ACPI: SSDT 0x000000008AD7E000 00010B (v01 APPLE  SataAhci 00001000 INTL 20100915)
[    0.002219] ACPI: SSDT 0x000000008AD7D000 000024 (v01 APPLE  SmcDppt  00001000 INTL 20100915)
[    0.002222] ACPI: SSDT 0x000000008AD7A000 000FE9 (v01 APPLE  SDUsbLpt 00001000 INTL 20100915)
[    0.002225] ACPI: SSDT 0x000000008AD76000 000032 (v01 APPLE  SsdtS3   00001000 INTL 20100915)
[    0.002228] ACPI: SSDT 0x000000008AD73000 0028B2 (v01 APPLE  PcieTbt  00001000 INTL 20100915)
[    0.002231] ACPI: SSDT 0x000000008AD66000 0000B8 (v01 APPLE  Sdxc     00001000 INTL 20100915)
[    0.002234] ACPI: SSDT 0x000000008AD65000 0003E0 (v01 APPLE  SaHdaCdc 00001000 INTL 20100915)
[    0.002237] ACPI: SSDT 0x000000008AD64000 000594 (v01 PmRef  Cpu0Ist  00003000 INTL 20100915)
[    0.002240] ACPI: SSDT 0x000000008AD63000 000B83 (v01 PmRef  CpuPm    00003000 INTL 20100915)
[    0.002243] ACPI: DMAR 0x000000008AD62000 000088 (v01 APPLE  HSW      00000001 AAPL 00000001)
[    0.002246] ACPI: MCFG 0x000000008AD89000 00003C (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002249] ACPI: Reserving FACP table memory at [mem 0x8ad8c000-0x8ad8c0f3]
[    0.002251] ACPI: Reserving DSDT table memory at [mem 0x8ad7f000-0x8ad86680]
[    0.002252] ACPI: Reserving FACS table memory at [mem 0x8ad18000-0x8ad1803f]
[    0.002253] ACPI: Reserving FACS table memory at [mem 0x8ad18000-0x8ad1803f]
[    0.002254] ACPI: Reserving HPET table memory at [mem 0x8ad8b000-0x8ad8b037]
[    0.002256] ACPI: Reserving APIC table memory at [mem 0x8ad8a000-0x8ad8a0bb]
[    0.002257] ACPI: Reserving SBST table memory at [mem 0x8ad88000-0x8ad8802f]
[    0.002258] ACPI: Reserving ECDT table memory at [mem 0x8ad87000-0x8ad87052]
[    0.002259] ACPI: Reserving SSDT table memory at [mem 0x8ad7e000-0x8ad7e10a]
[    0.002260] ACPI: Reserving SSDT table memory at [mem 0x8ad7d000-0x8ad7d023]
[    0.002262] ACPI: Reserving SSDT table memory at [mem 0x8ad7a000-0x8ad7afe8]
[    0.002263] ACPI: Reserving SSDT table memory at [mem 0x8ad76000-0x8ad76031]
[    0.002264] ACPI: Reserving SSDT table memory at [mem 0x8ad73000-0x8ad758b1]
[    0.002265] ACPI: Reserving SSDT table memory at [mem 0x8ad66000-0x8ad660b7]
[    0.002266] ACPI: Reserving SSDT table memory at [mem 0x8ad65000-0x8ad653df]
[    0.002267] ACPI: Reserving SSDT table memory at [mem 0x8ad64000-0x8ad64593]
[    0.002268] ACPI: Reserving SSDT table memory at [mem 0x8ad63000-0x8ad63b82]
[    0.002270] ACPI: Reserving DMAR table memory at [mem 0x8ad62000-0x8ad62087]
[    0.002271] ACPI: Reserving MCFG table memory at [mem 0x8ad89000-0x8ad8903b]
[    0.002277] ACPI: DMI detected to setup _OSI("Darwin"): Apple hardware
[    0.002298] Zone ranges:
[    0.002299]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.002301]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.002303]   Normal   [mem 0x0000000100000000-0x000000046f5fffff]
[    0.002305] Movable zone start for each node
[    0.002306] Early memory node ranges
[    0.002307]   node   0: [mem 0x0000000000001000-0x0000000000057fff]
[    0.002309]   node   0: [mem 0x0000000000059000-0x000000000008efff]
[    0.002310]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.002311]   node   0: [mem 0x0000000000100000-0x000000008ad0ffff]
[    0.002313]   node   0: [mem 0x000000008ad53000-0x000000008ad61fff]
[    0.002314]   node   0: [mem 0x000000008ad8f000-0x000000008ae38fff]
[    0.002315]   node   0: [mem 0x000000008ae8f000-0x000000008aed1fff]
[    0.002316]   node   0: [mem 0x000000008aeff000-0x000000008af83fff]
[    0.002317]   node   0: [mem 0x000000008aff0000-0x000000008affffff]
[    0.002318]   node   0: [mem 0x0000000100000000-0x000000046f5fffff]
[    0.002321] Initmem setup node 0 [mem 0x0000000000001000-0x000000046f5fffff]
[    0.002325] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.002327] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.002328] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.002353] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.006105] On node 0, zone DMA32: 67 pages in unavailable ranges
[    0.006111] On node 0, zone DMA32: 45 pages in unavailable ranges
[    0.006113] On node 0, zone DMA32: 86 pages in unavailable ranges
[    0.006116] On node 0, zone DMA32: 45 pages in unavailable ranges
[    0.006118] On node 0, zone DMA32: 108 pages in unavailable ranges
[    0.030194] On node 0, zone Normal: 20480 pages in unavailable ranges
[    0.030224] On node 0, zone Normal: 2560 pages in unavailable ranges
[    0.030232] Reserving Intel graphics memory at [mem 0x8ba00000-0x8f9fffff]
[    0.030351] ACPI: PM-Timer IO Port: 0x1808
[    0.030358] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.030360] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.030361] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.030362] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.030363] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.030364] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.030365] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.030366] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.030376] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-39
[    0.030379] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.030381] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.030385] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.030386] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.030390] TSC deadline timer available
[    0.030391] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.030412] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.030415] PM: hibernation: Registered nosave memory: [mem 0x00058000-0x00058fff]
[    0.030417] PM: hibernation: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    0.030419] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000bffff]
[    0.030420] PM: hibernation: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[    0.030422] PM: hibernation: Registered nosave memory: [mem 0x73d4b000-0x73d4bfff]
[    0.030424] PM: hibernation: Registered nosave memory: [mem 0x73d5b000-0x73d5bfff]
[    0.030426] PM: hibernation: Registered nosave memory: [mem 0x73d6e000-0x73d6efff]
[    0.030428] PM: hibernation: Registered nosave memory: [mem 0x73d6e000-0x73d6efff]
[    0.030431] PM: hibernation: Registered nosave memory: [mem 0x8ad10000-0x8ad52fff]
[    0.030433] PM: hibernation: Registered nosave memory: [mem 0x8ad62000-0x8ad8efff]
[    0.030435] PM: hibernation: Registered nosave memory: [mem 0x8ae39000-0x8ae8efff]
[    0.030437] PM: hibernation: Registered nosave memory: [mem 0x8aed2000-0x8aefefff]
[    0.030439] PM: hibernation: Registered nosave memory: [mem 0x8af84000-0x8afeffff]
[    0.030441] PM: hibernation: Registered nosave memory: [mem 0x8b000000-0x8f9fffff]
[    0.030442] PM: hibernation: Registered nosave memory: [mem 0x8fa00000-0xe00f7fff]
[    0.030443] PM: hibernation: Registered nosave memory: [mem 0xe00f8000-0xe00f8fff]
[    0.030444] PM: hibernation: Registered nosave memory: [mem 0xe00f9000-0xfed1bfff]
[    0.030445] PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.030446] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xffe0ffff]
[    0.030447] PM: hibernation: Registered nosave memory: [mem 0xffe10000-0xffe3ffff]
[    0.030448] PM: hibernation: Registered nosave memory: [mem 0xffe40000-0xffffffff]
[    0.030450] [mem 0x8fa00000-0xe00f7fff] available for PCI devices
[    0.030455] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.030461] setup_percpu: NR_CPUS:4 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[    0.030642] percpu: Embedded 52 pages/cpu s173096 r8192 d31704 u524288
[    0.030650] pcpu-alloc: s173096 r8192 d31704 u524288 alloc=1*2097152
[    0.030653] pcpu-alloc: [0] 0 1 2 3 
[    0.030675] Built 1 zonelists, mobility grouping on.  Total pages: 4105486
[    0.030677] Kernel command line: ro root=UUID=c500d66c-50ec-42a2-a333-eb48d6c9d97b thunderbolt.dyndbg initrd=boot\initrd.img-5.17.0+
[    0.031542] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.031960] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.032000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.080020] Memory: 15923596K/16683256K available (10248K kernel code, 2251K rwdata, 2740K rodata, 996K init, 740K bss, 759400K reserved, 0K cma-reserved)
[    0.080052] random: get_random_u64 called from cache_random_seq_create+0x63/0x150 with crng_init=0
[    0.080120] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.080755] Dynamic Preempt: voluntary
[    0.080781] rcu: Preemptible hierarchical RCU implementation.
[    0.080783] 	Trampoline variant of Tasks RCU enabled.
[    0.080784] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[    0.081752] NR_IRQS: 4352, nr_irqs: 728, preallocated irqs: 16
[    0.081975] Console: colour dummy device 80x25
[    0.082304] printk: console [tty0] enabled
[    0.082312] ACPI: Core revision 20211217
[    0.082411] hpet: HPET dysfunctional in PC10. Force disabled.
[    0.082414] APIC: Switch to symmetric I/O mode setup
[    0.082417] DMAR: Host address width 39
[    0.082419] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[    0.082425] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap c0000020660462 ecap f0101a
[    0.082430] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[    0.082435] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008020660462 ecap f010da
[    0.082439] DMAR: RMRR base: 0x0000008b800000 end: 0x0000008f9fffff
[    0.082443] DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
[    0.082446] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[    0.083038] DMAR-IR: Enabled IRQ remapping in xapic mode
[    0.083525] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x257a67bf1a9, max_idle_ns: 440795300317 ns
[    0.083534] Calibrating delay loop (skipped), value calculated using timer frequency.. 5200.09 BogoMIPS (lpj=26000460)
[    0.083540] pid_max: default: 32768 minimum: 301
[    0.093531] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.093531] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.093531] CPU0: Thermal monitoring enabled (TM1)
[    0.093531] process: using mwait in idle threads
[    0.093531] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
[    0.093531] Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
[    0.093531] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.093531] Spectre V2 : Kernel not compiled with retpoline; no mitigation available!
[    0.093531] Spectre V2 : Vulnerable
[    0.093531] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.093531] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    0.093531] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.093531] Spectre V2 : User space: Mitigation: STIBP via prctl
[    0.093531] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.093531] SRBDS: Mitigation: Microcode
[    0.093531] MDS: Mitigation: Clear CPU buffers
[    0.093531] Freeing SMP alternatives memory: 28K
[    0.093531] smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 1220
[    0.093531] smpboot: CPU0: Intel(R) Core(TM) i5-4278U CPU @ 2.60GHz (family: 0x6, model: 0x45, stepping: 0x1)
[    0.093531] cblist_init_generic: Setting adjustable number of callback queues.
[    0.093531] cblist_init_generic: Setting shift to 2 and lim to 1.
[    0.093531] Performance Events: PEBS fmt2+, Haswell events, 16-deep LBR, full-width counters, Intel PMU driver.
[    0.093531] ... version:                3
[    0.093531] ... bit width:              48
[    0.093531] ... generic registers:      4
[    0.093531] ... value mask:             0000ffffffffffff
[    0.093531] ... max period:             00007fffffffffff
[    0.093531] ... fixed-purpose events:   3
[    0.093531] ... event mask:             000000070000000f
[    0.093531] rcu: Hierarchical SRCU implementation.
[    0.093531] smp: Bringing up secondary CPUs ...
[    0.093531] x86: Booting SMP configuration:
[    0.093531] .... node  #0, CPUs:      #1 #2
[    0.093531] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[    0.093531]  #3
[    0.093531] smp: Brought up 1 node, 4 CPUs
[    0.093531] smpboot: Max logical packages: 1
[    0.093531] smpboot: Total of 4 processors activated (20800.36 BogoMIPS)
[    0.093531] devtmpfs: initialized
[    0.093531] ACPI: PM: Registering ACPI NVS region [mem 0x8ad10000-0x8ad52fff] (274432 bytes)
[    0.093531] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.093531] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.093531] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.093531] thermal_sys: Registered thermal governor 'step_wise'
[    0.093531] thermal_sys: Registered thermal governor 'user_space'
[    0.093531] cpuidle: using governor ladder
[    0.093531] cpuidle: using governor menu
[    0.093531] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.093531] PCI: MMCONFIG for domain 0000 [bus 00-9b] at [mem 0xe0000000-0xe9bfffff] (base 0xe0000000)
[    0.093531] PCI: not using MMCONFIG
[    0.093531] PCI: Using configuration type 1 for base access
[    0.093531] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[    0.093531] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.093531] cryptd: max_cpu_qlen set to 1000
[    0.093531] ACPI: Disabled all _OSI OS vendors
[    0.093531] ACPI: Added _OSI(Module Device)
[    0.093531] ACPI: Added _OSI(Processor Device)
[    0.093531] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.093531] ACPI: Added _OSI(Processor Aggregator Device)
[    0.093531] ACPI: Added _OSI(Linux-Dell-Video)
[    0.093531] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.093531] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.093531] ACPI: Added _OSI(Darwin)
[    0.095337] ACPI: 10 ACPI AML tables successfully acquired and loaded
[    0.095705] ACPI: EC: EC started
[    0.095707] ACPI: EC: interrupt blocked
[    0.096787] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.096790] ACPI: EC: Boot ECDT EC used to handle transactions
[    0.096973] ACPI: BIOS _OSI(Darwin) query honored via DMI
[    0.097288] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.097324] ACPI Error: Needed type [Reference], found [Integer] 0000000011c38b8b (20211217/exresop-69)
[    0.097324] ACPI Error: AE_AML_OPERAND_TYPE, While resolving operands for [OpcodeName unavailable] (20211217/dswexec-434)
[    0.097324] ACPI Error: Aborting method \_PR.CPU0._PDC due to previous error (AE_AML_OPERAND_TYPE) (20211217/psparse-531)
[    0.097324] ACPI: Dynamic OEM Table Load:
[    0.097324] ACPI: SSDT 0xFFFF9F8AC0AF7800 00067C (v01 PmRef  ApIst    00003000 INTL 20100915)
[    0.097324] ACPI: Dynamic OEM Table Load:
[    0.097324] ACPI: SSDT 0xFFFF9F8AC0C8DC00 000119 (v01 PmRef  ApCst    00003000 INTL 20100915)
[    0.097324] ACPI: Interpreter enabled
[    0.097324] ACPI: PM: (supports S0 S3 S4 S5)
[    0.097324] ACPI: Using IOAPIC for interrupt routing
[    0.097324] PCI: MMCONFIG for domain 0000 [bus 00-9b] at [mem 0xe0000000-0xe9bfffff] (base 0xe0000000)
[    0.097324] PCI: MMCONFIG at [mem 0xe0000000-0xe9bfffff] reserved in ACPI motherboard resources
[    0.097324] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.097324] ACPI: Enabled 4 GPEs in block 00 to 7F
[    0.107003] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.107011] acpi PNP0A08:00: _OSC: OS assumes control of [PCIeHotplug SHPCHotplug AER PCIeCapability LTR DPC]
[    0.107016] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-9b] only partially covers this bridge
[    0.107173] PCI host bridge to bus 0000:00
[    0.107176] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.107179] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.107182] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000fffff window]
[    0.107185] pci_bus 0000:00: root bus resource [mem 0x8fa00000-0xfeafffff window]
[    0.107188] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff window]
[    0.107191] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.107203] pci 0000:00:00.0: [8086:0a04] type 00 class 0x060000
[    0.107280] pci 0000:00:02.0: [8086:0a2e] type 00 class 0x030000
[    0.107289] pci 0000:00:02.0: reg 0x10: [mem 0xb0000000-0xb03fffff 64bit]
[    0.107296] pci 0000:00:02.0: reg 0x18: [mem 0xa0000000-0xafffffff 64bit pref]
[    0.107302] pci 0000:00:02.0: reg 0x20: [io  0x2000-0x203f]
[    0.107313] pci 0000:00:02.0: BAR 2: assigned to efifb
[    0.107318] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.107406] pci 0000:00:03.0: [8086:0a0c] type 00 class 0x040300
[    0.107415] pci 0000:00:03.0: reg 0x10: [mem 0xb0c10000-0xb0c13fff 64bit]
[    0.107530] pci 0000:00:14.0: [8086:9c31] type 00 class 0x0c0330
[    0.107546] pci 0000:00:14.0: reg 0x10: [mem 0xb0c00000-0xb0c0ffff 64bit]
[    0.107596] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.107779] pci 0000:00:16.0: [8086:9c3a] type 00 class 0x078000
[    0.107797] pci 0000:00:16.0: reg 0x10: [mem 0xb0c2a100-0xb0c2a11f 64bit]
[    0.107858] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.107909] pci 0000:00:1b.0: [8086:9c20] type 00 class 0x040300
[    0.107924] pci 0000:00:1b.0: reg 0x10: [mem 0xb0c14000-0xb0c17fff 64bit]
[    0.107985] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.108045] pci 0000:00:1c.0: [8086:9c10] type 01 class 0x060400
[    0.108104] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.108121] pci 0000:00:1c.0: Enabling MPC IRBNCE
[    0.108124] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled
[    0.108214] pci 0000:00:1c.1: [8086:9c12] type 01 class 0x060400
[    0.108281] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.108297] pci 0000:00:1c.1: Enabling MPC IRBNCE
[    0.108300] pci 0000:00:1c.1: Intel PCH root port ACS workaround enabled
[    0.108389] pci 0000:00:1c.2: [8086:9c14] type 01 class 0x060400
[    0.108455] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.108471] pci 0000:00:1c.2: Enabling MPC IRBNCE
[    0.108474] pci 0000:00:1c.2: Intel PCH root port ACS workaround enabled
[    0.108561] pci 0000:00:1c.4: [8086:9c18] type 01 class 0x060400
[    0.108627] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.108643] pci 0000:00:1c.4: Enabling MPC IRBNCE
[    0.108646] pci 0000:00:1c.4: Intel PCH root port ACS workaround enabled
[    0.108740] pci 0000:00:1c.5: [8086:9c1a] type 01 class 0x060400
[    0.108806] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
[    0.108822] pci 0000:00:1c.5: Enabling MPC IRBNCE
[    0.108825] pci 0000:00:1c.5: Intel PCH root port ACS workaround enabled
[    0.108918] pci 0000:00:1f.0: [8086:9c43] type 00 class 0x060100
[    0.109067] pci 0000:00:1f.3: [8086:9c22] type 00 class 0x0c0500
[    0.109083] pci 0000:00:1f.3: reg 0x10: [mem 0xb0c2a000-0xb0c2a0ff 64bit]
[    0.109101] pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
[    0.109184] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.109243] pci 0000:02:00.0: [14e4:1570] type 00 class 0x048000
[    0.109266] pci 0000:02:00.0: reg 0x10: [mem 0xb0b00000-0xb0b0ffff 64bit]
[    0.109282] pci 0000:02:00.0: reg 0x18: [mem 0x90000000-0x9fffffff 64bit pref]
[    0.109298] pci 0000:02:00.0: reg 0x20: [mem 0xb0a00000-0xb0afffff 64bit]
[    0.109392] pci 0000:02:00.0: supports D1
[    0.109394] pci 0000:02:00.0: PME# supported from D0 D3hot
[    0.109498] pci 0000:00:1c.1: PCI bridge to [bus 02]
[    0.109504] pci 0000:00:1c.1:   bridge window [mem 0xb0a00000-0xb0bfffff]
[    0.109509] pci 0000:00:1c.1:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.109568] pci 0000:03:00.0: [14e4:43ba] type 00 class 0x028000
[    0.109591] pci 0000:03:00.0: reg 0x10: [mem 0xb0800000-0xb0807fff 64bit]
[    0.109606] pci 0000:03:00.0: reg 0x18: [mem 0xb0400000-0xb07fffff 64bit]
[    0.109727] pci 0000:03:00.0: supports D1 D2
[    0.109729] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.109872] pci 0000:00:1c.2: PCI bridge to [bus 03]
[    0.109877] pci 0000:00:1c.2:   bridge window [mem 0xb0400000-0xb08fffff]
[    0.109941] pci 0000:05:00.0: [8086:156d] type 01 class 0x060400
[    0.109995] pci 0000:05:00.0: enabling Extended Tags
[    0.110077] pci 0000:05:00.0: supports D1 D2
[    0.110079] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.133560] pci 0000:00:1c.4: PCI bridge to [bus 05-6b]
[    0.133566] pci 0000:00:1c.4:   bridge window [io  0x3000-0x5fff]
[    0.133570] pci 0000:00:1c.4:   bridge window [mem 0xb0d00000-0xbd1fffff]
[    0.133575] pci 0000:00:1c.4:   bridge window [mem 0xbd200000-0xc93fffff 64bit pref]
[    0.133680] pci 0000:06:00.0: [8086:156d] type 01 class 0x060400
[    0.133738] pci 0000:06:00.0: enabling Extended Tags
[    0.133822] pci 0000:06:00.0: supports D1 D2
[    0.133824] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.133935] pci 0000:06:03.0: [8086:156d] type 01 class 0x060400
[    0.133992] pci 0000:06:03.0: enabling Extended Tags
[    0.134075] pci 0000:06:03.0: supports D1 D2
[    0.134077] pci 0000:06:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.134186] pci 0000:06:04.0: [8086:156d] type 01 class 0x060400
[    0.134236] pci 0000:06:04.0: enabling Extended Tags
[    0.134323] pci 0000:06:04.0: supports D1 D2
[    0.134325] pci 0000:06:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.134429] pci 0000:06:05.0: [8086:156d] type 01 class 0x060400
[    0.134478] pci 0000:06:05.0: enabling Extended Tags
[    0.134565] pci 0000:06:05.0: supports D1 D2
[    0.134567] pci 0000:06:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.134671] pci 0000:06:06.0: [8086:156d] type 01 class 0x060400
[    0.134720] pci 0000:06:06.0: enabling Extended Tags
[    0.134806] pci 0000:06:06.0: supports D1 D2
[    0.134808] pci 0000:06:06.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.134918] pci 0000:05:00.0: PCI bridge to [bus 06-6b]
[    0.134925] pci 0000:05:00.0:   bridge window [io  0x3000-0x4fff]
[    0.134930] pci 0000:05:00.0:   bridge window [mem 0xb0d00000-0xb91fffff]
[    0.134938] pci 0000:05:00.0:   bridge window [mem 0xbd200000-0xc53fffff 64bit pref]
[    0.135013] pci 0000:07:00.0: [8086:156c] type 00 class 0x088000
[    0.135037] pci 0000:07:00.0: reg 0x10: [mem 0xb0d00000-0xb0d3ffff]
[    0.135050] pci 0000:07:00.0: reg 0x14: [mem 0xb0d40000-0xb0d40fff]
[    0.135117] pci 0000:07:00.0: enabling Extended Tags
[    0.135227] pci 0000:07:00.0: supports D1 D2
[    0.135230] pci 0000:07:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.163567] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.163579] pci 0000:06:00.0:   bridge window [mem 0xb0d00000-0xb0dfffff]
[    0.163698] pci 0000:08:00.0: [8086:1513] type 01 class 0x060400
[    0.163802] pci 0000:08:00.0: enabling Extended Tags
[    0.163957] pci 0000:08:00.0: supports D1 D2
[    0.163959] pci 0000:08:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.193568] pci 0000:06:03.0: PCI bridge to [bus 08-38]
[    0.193576] pci 0000:06:03.0:   bridge window [io  0x3000-0x3fff]
[    0.193581] pci 0000:06:03.0:   bridge window [mem 0xb0e00000-0xb51fffff]
[    0.193588] pci 0000:06:03.0:   bridge window [mem 0xbd200000-0xc13fffff 64bit pref]
[    0.193679] acpiphp: Slot [1] registered
[    0.193703] acpiphp: Slot [2] registered
[    0.193726] acpiphp: Slot [3] registered
[    0.193750] acpiphp: Slot [4] registered
[    0.193773] acpiphp: Slot [5] registered
[    0.193828] pci 0000:09:00.0: [8086:1513] type 01 class 0x060400
[    0.193938] pci 0000:09:00.0: enabling Extended Tags
[    0.194096] pci 0000:09:00.0: supports D1 D2
[    0.194099] pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.194271] pci 0000:09:01.0: [8086:1513] type 01 class 0x060400
[    0.194381] pci 0000:09:01.0: enabling Extended Tags
[    0.194539] pci 0000:09:01.0: supports D1 D2
[    0.194541] pci 0000:09:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.194696] pci 0000:09:02.0: [8086:1513] type 01 class 0x060400
[    0.194805] pci 0000:09:02.0: enabling Extended Tags
[    0.194963] pci 0000:09:02.0: supports D1 D2
[    0.194965] pci 0000:09:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.195125] pci 0000:09:04.0: [8086:1513] type 01 class 0x060400
[    0.195235] pci 0000:09:04.0: enabling Extended Tags
[    0.195395] pci 0000:09:04.0: supports D1 D2
[    0.195397] pci 0000:09:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.195571] pci 0000:09:05.0: [8086:1513] type 01 class 0x060400
[    0.195665] pci 0000:09:05.0: enabling Extended Tags
[    0.195826] pci 0000:09:05.0: supports D1 D2
[    0.195828] pci 0000:09:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.196017] pci 0000:08:00.0: PCI bridge to [bus 09-18]
[    0.196034] pci 0000:08:00.0:   bridge window [mem 0xb0e00000-0xb11fffff]
[    0.196046] pci 0000:08:00.0:   bridge window [mem 0xbd200000-0xbd3fffff 64bit pref]
[    0.196138] acpiphp: Slot [1-1] registered
[    0.196196] pci 0000:0a:00.0: [12d8:400c] type 01 class 0x060400
[    0.196551] pci 0000:0a:00.0: supports D1 D2
[    0.196553] pci 0000:0a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.223574] pci 0000:09:00.0: PCI bridge to [bus 0a-0c]
[    0.223592] pci 0000:09:00.0:   bridge window [mem 0xb1100000-0xb11fffff]
[    0.223765] pci 0000:0b:03.0: [12d8:400c] type 01 class 0x060400
[    0.224074] pci 0000:0b:03.0: supports D1 D2
[    0.224076] pci 0000:0b:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.224270] pci 0000:0a:00.0: PCI bridge to [bus 0b-0c]
[    0.224293] pci 0000:0a:00.0:   bridge window [mem 0xb1100000-0xb11fffff]
[    0.224450] pci 0000:0c:00.0: [12d8:400e] type 00 class 0x0c0310
[    0.224498] pci 0000:0c:00.0: reg 0x10: [mem 0xb1101000-0xb1101fff]
[    0.224786] pci 0000:0c:00.0: supports D1 D2
[    0.224788] pci 0000:0c:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.224937] pci 0000:0c:00.1: [12d8:400e] type 00 class 0x0c0310
[    0.224984] pci 0000:0c:00.1: reg 0x10: [mem 0xb1100000-0xb1100fff]
[    0.225272] pci 0000:0c:00.1: supports D1 D2
[    0.225274] pci 0000:0c:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.225399] pci 0000:0c:00.2: [12d8:400f] type 00 class 0x0c0320
[    0.225446] pci 0000:0c:00.2: reg 0x10: [mem 0xb1102000-0xb11020ff]
[    0.225733] pci 0000:0c:00.2: supports D1 D2
[    0.225735] pci 0000:0c:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.225975] pci 0000:0b:03.0: PCI bridge to [bus 0c]
[    0.225998] pci 0000:0b:03.0:   bridge window [mem 0xb1100000-0xb11fffff]
[    0.226161] pci 0000:0d:00.0: [14e4:16b0] type 00 class 0x020000
[    0.226225] pci 0000:0d:00.0: reg 0x10: [mem 0xbd300000-0xbd30ffff 64bit pref]
[    0.226267] pci 0000:0d:00.0: reg 0x18: [mem 0xbd310000-0xbd31ffff 64bit pref]
[    0.226580] pci 0000:0d:00.0: PME# supported from D0 D3hot D3cold
[    0.253589] pci 0000:09:01.0: PCI bridge to [bus 0d]
[    0.253617] pci 0000:09:01.0:   bridge window [mem 0xbd300000-0xbd3fffff 64bit pref]
[    0.253729] pci 0000:0e:00.0: [11c1:5901] type 00 class 0x0c0010
[    0.253793] pci 0000:0e:00.0: reg 0x10: [mem 0xb1000000-0xb1000fff 64bit]
[    0.254117] pci 0000:0e:00.0: supports D1 D2
[    0.254120] pci 0000:0e:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.283589] pci 0000:09:02.0: PCI bridge to [bus 0e]
[    0.283607] pci 0000:09:02.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.283781] pci 0000:0f:00.0: [8086:1513] type 01 class 0x060400
[    0.283939] pci 0000:0f:00.0: enabling Extended Tags
[    0.284175] pci 0000:0f:00.0: supports D1 D2
[    0.284177] pci 0000:0f:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.313579] pci 0000:09:04.0: PCI bridge to [bus 0f-17]
[    0.313597] pci 0000:09:04.0:   bridge window [mem 0xb0e00000-0xb0ffffff]
[    0.313610] pci 0000:09:04.0:   bridge window [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.313732] acpiphp: Slot [1-2] registered
[    0.313758] acpiphp: Slot [2-1] registered
[    0.313784] acpiphp: Slot [3-1] registered
[    0.313809] acpiphp: Slot [4-1] registered
[    0.313891] pci 0000:10:00.0: [8086:1513] type 01 class 0x060400
[    0.314055] pci 0000:10:00.0: enabling Extended Tags
[    0.314296] pci 0000:10:00.0: supports D1 D2
[    0.314298] pci 0000:10:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.314540] pci 0000:10:01.0: [8086:1513] type 01 class 0x060400
[    0.314705] pci 0000:10:01.0: enabling Extended Tags
[    0.314945] pci 0000:10:01.0: supports D1 D2
[    0.314947] pci 0000:10:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.315170] pci 0000:10:02.0: [8086:1513] type 01 class 0x060400
[    0.315334] pci 0000:10:02.0: enabling Extended Tags
[    0.315574] pci 0000:10:02.0: supports D1 D2
[    0.315576] pci 0000:10:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.315805] pci 0000:10:04.0: [8086:1513] type 01 class 0x060400
[    0.315947] pci 0000:10:04.0: enabling Extended Tags
[    0.316190] pci 0000:10:04.0: supports D1 D2
[    0.316192] pci 0000:10:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.316437] pci 0000:10:05.0: [8086:1513] type 01 class 0x060400
[    0.316578] pci 0000:10:05.0: enabling Extended Tags
[    0.316822] pci 0000:10:05.0: supports D1 D2
[    0.316824] pci 0000:10:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.317094] pci 0000:0f:00.0: PCI bridge to [bus 10-17]
[    0.317120] pci 0000:0f:00.0:   bridge window [mem 0xb0e00000-0xb0ffffff]
[    0.317137] pci 0000:0f:00.0:   bridge window [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.317255] acpiphp: Slot [1-3] registered
[    0.317333] pci 0000:11:00.0: [12d8:400c] type 01 class 0x060400
[    0.317821] pci 0000:11:00.0: supports D1 D2
[    0.317823] pci 0000:11:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.318105] pci 0000:10:00.0: PCI bridge to [bus 11-13]
[    0.318130] pci 0000:10:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.318364] pci 0000:12:03.0: [12d8:400c] type 01 class 0x060400
[    0.318786] pci 0000:12:03.0: supports D1 D2
[    0.318789] pci 0000:12:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.319045] pci 0000:11:00.0: PCI bridge to [bus 12-13]
[    0.319075] pci 0000:11:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.319287] pci 0000:13:00.0: [12d8:400e] type 00 class 0x0c0310
[    0.319351] pci 0000:13:00.0: reg 0x10: [mem 0xb0f01000-0xb0f01fff]
[    0.319745] pci 0000:13:00.0: supports D1 D2
[    0.319747] pci 0000:13:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.319949] pci 0000:13:00.1: [12d8:400e] type 00 class 0x0c0310
[    0.320013] pci 0000:13:00.1: reg 0x10: [mem 0xb0f00000-0xb0f00fff]
[    0.320406] pci 0000:13:00.1: supports D1 D2
[    0.320408] pci 0000:13:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.320569] pci 0000:13:00.2: [12d8:400f] type 00 class 0x0c0320
[    0.320632] pci 0000:13:00.2: reg 0x10: [mem 0xb0f02000-0xb0f020ff]
[    0.321025] pci 0000:13:00.2: supports D1 D2
[    0.321027] pci 0000:13:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.321362] pci 0000:12:03.0: PCI bridge to [bus 13]
[    0.321393] pci 0000:12:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.321617] pci 0000:14:00.0: [14e4:16b0] type 00 class 0x020000
[    0.321702] pci 0000:14:00.0: reg 0x10: [mem 0xbd200000-0xbd20ffff 64bit pref]
[    0.321759] pci 0000:14:00.0: reg 0x18: [mem 0xbd210000-0xbd21ffff 64bit pref]
[    0.322184] pci 0000:14:00.0: PME# supported from D0 D3hot D3cold
[    0.322500] pci 0000:10:01.0: PCI bridge to [bus 14]
[    0.322540] pci 0000:10:01.0:   bridge window [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.322696] pci 0000:15:00.0: [11c1:5901] type 00 class 0x0c0010
[    0.322781] pci 0000:15:00.0: reg 0x10: [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.323220] pci 0000:15:00.0: supports D1 D2
[    0.323222] pci 0000:15:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.323515] pci 0000:10:02.0: PCI bridge to [bus 15]
[    0.323541] pci 0000:10:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.323680] pci 0000:10:04.0: PCI bridge to [bus 16]
[    0.323813] pci 0000:10:05.0: PCI bridge to [bus 17]
[    0.324014] pci 0000:09:05.0: PCI bridge to [bus 18]
[    0.324164] pci 0000:06:04.0: PCI bridge to [bus 39]
[    0.324235] pci 0000:06:05.0: PCI bridge to [bus 3a-6a]
[    0.324242] pci 0000:06:05.0:   bridge window [io  0x4000-0x4fff]
[    0.324247] pci 0000:06:05.0:   bridge window [mem 0xb5200000-0xb91fffff]
[    0.324255] pci 0000:06:05.0:   bridge window [mem 0xc1400000-0xc53fffff 64bit pref]
[    0.324298] pci 0000:06:06.0: PCI bridge to [bus 6b]
[    0.324396] pci 0000:04:00.0: [1c5c:174a] type 00 class 0x010802
[    0.324421] pci 0000:04:00.0: reg 0x10: [mem 0xb0900000-0xb0903fff 64bit]
[    0.324433] pci 0000:04:00.0: reg 0x18: [mem 0xb0905000-0xb0905fff]
[    0.324444] pci 0000:04:00.0: reg 0x1c: [mem 0xb0904000-0xb0904fff]
[    0.324594] pci 0000:04:00.0: 16.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x4 link at 0000:00:1c.5 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
[    0.324800] pci 0000:00:1c.5: PCI bridge to [bus 04]
[    0.324806] pci 0000:00:1c.5:   bridge window [mem 0xb0900000-0xb09fffff]
[    0.324830] pci_bus 0000:00: on NUMA node 0
[    0.325570] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    0.325574] ACPI: PCI: Interrupt link LNKA disabled
[    0.325607] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    0.325610] ACPI: PCI: Interrupt link LNKB disabled
[    0.325641] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    0.325643] ACPI: PCI: Interrupt link LNKC disabled
[    0.325674] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    0.325676] ACPI: PCI: Interrupt link LNKD disabled
[    0.325707] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    0.325710] ACPI: PCI: Interrupt link LNKE disabled
[    0.325740] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    0.325743] ACPI: PCI: Interrupt link LNKF disabled
[    0.325775] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    0.325777] ACPI: PCI: Interrupt link LNKG disabled
[    0.325808] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    0.325810] ACPI: PCI: Interrupt link LNKH disabled
[    0.325958] ACPI: EC: interrupt unblocked
[    0.325961] ACPI: EC: event unblocked
[    0.325969] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.325973] ACPI: EC: GPE=0x4e
[    0.325976] ACPI: \_SB_.PCI0.LPCB.EC__: Boot ECDT EC initialization complete
[    0.325981] ACPI: \_SB_.PCI0.LPCB.EC__: EC: Used to handle transactions and events
[    0.326037] iommu: Default domain type: Translated 
[    0.326040] iommu: DMA domain TLB invalidation policy: lazy mode 
[    0.326083] SCSI subsystem initialized
[    0.326090] libata version 3.00 loaded.
[    0.326148] Registered efivars operations
[    0.326251] PCI: Using ACPI for IRQ routing
[    0.331442] PCI: pci_cache_line_size set to 64 bytes
[    0.331689] e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
[    0.331691] e820: reserve RAM buffer [mem 0x0008f000-0x0008ffff]
[    0.331692] e820: reserve RAM buffer [mem 0x73d4b190-0x73ffffff]
[    0.331694] e820: reserve RAM buffer [mem 0x73d6e190-0x73ffffff]
[    0.331695] e820: reserve RAM buffer [mem 0x8ad10000-0x8bffffff]
[    0.331697] e820: reserve RAM buffer [mem 0x8ad62000-0x8bffffff]
[    0.331698] e820: reserve RAM buffer [mem 0x8ae39000-0x8bffffff]
[    0.331700] e820: reserve RAM buffer [mem 0x8aed2000-0x8bffffff]
[    0.331701] e820: reserve RAM buffer [mem 0x8af84000-0x8bffffff]
[    0.331702] e820: reserve RAM buffer [mem 0x8b000000-0x8bffffff]
[    0.331703] e820: reserve RAM buffer [mem 0x46f600000-0x46fffffff]
[    0.331717] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.331717] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.331717] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.331717] vgaarb: loaded
[    0.331717] clocksource: Switched to clocksource tsc-early
[    0.331717] pnp: PnP ACPI init
[    0.331717] system 00:00: [mem 0xfed00000-0xfed03fff] has been reserved
[    0.331717] system 00:01: [io  0xffff] has been reserved
[    0.331717] system 00:01: [io  0x1800-0x187f] has been reserved
[    0.331717] system 00:01: [io  0x0800-0x087f] has been reserved
[    0.331717] system 00:03: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.331717] system 00:03: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.331717] system 00:03: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.331717] system 00:03: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.331717] system 00:03: [mem 0xe0000000-0xefffffff] could not be reserved
[    0.331717] system 00:03: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.331717] system 00:03: [mem 0xfed90000-0xfed93fff] could not be reserved
[    0.331717] system 00:03: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.331717] system 00:03: [mem 0xff000000-0xffffffff] could not be reserved
[    0.331717] system 00:03: [mem 0xfee00000-0xfeefffff] has been reserved
[    0.331717] system 00:04: [mem 0x20000000-0x201fffff] could not be reserved
[    0.331717] system 00:04: [mem 0x40000000-0x401fffff] could not be reserved
[    0.331717] pnp: PnP ACPI: found 5 devices
[    0.331717] pci 0000:00:02.0: assigning 3 device properties
[    0.331717] pci 0000:07:00.0: assigning 9 device properties
[    0.331717] pci 0000:08:00.0: assigning 3 device properties
[    0.331717] pci 0000:0f:00.0: assigning 3 device properties
[    0.331717] pci 0000:0e:00.0: assigning 2 device properties
[    0.331717] pci 0000:15:00.0: assigning 2 device properties
[    0.331717] pci 0000:00:1b.0: assigning 4 device properties
[    0.335597] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.335639] NET: Registered PF_INET protocol family
[    0.335802] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.338478] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[    0.338515] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.338738] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.338881] TCP: Hash tables configured (established 131072 bind 65536)
[    0.338910] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
[    0.338952] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
[    0.339022] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.339098] RPC: Registered named UNIX socket transport module.
[    0.339102] RPC: Registered udp transport module.
[    0.339106] RPC: Registered tcp transport module.
[    0.339109] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.339122] pci 0000:06:00.0: bridge window [io  0x1000-0x0fff] to [bus 07] add_size 1000
[    0.339130] pci 0000:06:00.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 07] add_size 200000 add_align 100000
[    0.339144] pci 0000:10:04.0: bridge window [io  0x1000-0x0fff] to [bus 16] add_size 1000
[    0.339151] pci 0000:10:04.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 16] add_size 200000 add_align 100000
[    0.339159] pci 0000:10:04.0: bridge window [mem 0x00100000-0x000fffff] to [bus 16] add_size 200000 add_align 100000
[    0.339166] pci 0000:10:05.0: bridge window [io  0x1000-0x0fff] to [bus 17] add_size 1000
[    0.339173] pci 0000:10:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 17] add_size 200000 add_align 100000
[    0.339180] pci 0000:10:05.0: bridge window [mem 0x00100000-0x000fffff] to [bus 17] add_size 200000 add_align 100000
[    0.339188] pci 0000:0f:00.0: bridge window [io  0x1000-0x0fff] to [bus 10-17] add_size 2000
[    0.339195] pci 0000:09:04.0: bridge window [io  0x1000-0x0fff] to [bus 0f-17] add_size 3000
[    0.339202] pci 0000:09:05.0: bridge window [io  0x1000-0x0fff] to [bus 18] add_size 1000
[    0.339208] pci 0000:09:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 18] add_size 200000 add_align 100000
[    0.339215] pci 0000:09:05.0: bridge window [mem 0x00100000-0x000fffff] to [bus 18] add_size 200000 add_align 100000
[    0.339225] pci 0000:08:00.0: bridge window [io  0x1000-0x0fff] to [bus 09-18] add_size 4000
[    0.339232] pci 0000:06:04.0: bridge window [io  0x1000-0x0fff] to [bus 39] add_size 1000
[    0.339238] pci 0000:06:04.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 39] add_size 200000 add_align 100000
[    0.339246] pci 0000:06:04.0: bridge window [mem 0x00100000-0x000fffff] to [bus 39] add_size 200000 add_align 100000
[    0.339253] pci 0000:06:06.0: bridge window [io  0x1000-0x0fff] to [bus 6b] add_size 1000
[    0.339259] pci 0000:06:06.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 6b] add_size 200000 add_align 100000
[    0.339267] pci 0000:06:06.0: bridge window [mem 0x00100000-0x000fffff] to [bus 6b] add_size 200000 add_align 100000
[    0.339280] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.339293] pci 0000:00:1c.1: PCI bridge to [bus 02]
[    0.339300] pci 0000:00:1c.1:   bridge window [mem 0xb0a00000-0xb0bfffff]
[    0.339306] pci 0000:00:1c.1:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.339315] pci 0000:00:1c.2: PCI bridge to [bus 03]
[    0.339322] pci 0000:00:1c.2:   bridge window [mem 0xb0400000-0xb08fffff]
[    0.339338] pci 0000:06:00.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339344] pci 0000:06:00.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339350] pci 0000:06:04.0: BAR 8: no space for [mem size 0x00200000]
[    0.339355] pci 0000:06:04.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339362] pci 0000:06:04.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339367] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339373] pci 0000:06:06.0: BAR 8: no space for [mem size 0x00200000]
[    0.339378] pci 0000:06:06.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339384] pci 0000:06:06.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339390] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339396] pci 0000:06:00.0: BAR 7: no space for [io  size 0x1000]
[    0.339401] pci 0000:06:00.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339406] pci 0000:06:04.0: BAR 7: no space for [io  size 0x1000]
[    0.339410] pci 0000:06:04.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339415] pci 0000:06:06.0: BAR 7: no space for [io  size 0x1000]
[    0.339420] pci 0000:06:06.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339426] pci 0000:06:06.0: BAR 8: no space for [mem size 0x00200000]
[    0.339431] pci 0000:06:06.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339437] pci 0000:06:06.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339443] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339448] pci 0000:06:06.0: BAR 7: no space for [io  size 0x1000]
[    0.339453] pci 0000:06:06.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339458] pci 0000:06:04.0: BAR 8: no space for [mem size 0x00200000]
[    0.339463] pci 0000:06:04.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339469] pci 0000:06:04.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339474] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339480] pci 0000:06:04.0: BAR 7: no space for [io  size 0x1000]
[    0.339485] pci 0000:06:04.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339491] pci 0000:06:00.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339497] pci 0000:06:00.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339503] pci 0000:06:00.0: BAR 7: no space for [io  size 0x1000]
[    0.339508] pci 0000:06:00.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339513] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.339521] pci 0000:06:00.0:   bridge window [mem 0xb0d00000-0xb0dfffff]
[    0.339535] pci 0000:08:00.0: BAR 7: no space for [io  size 0x4000]
[    0.339540] pci 0000:08:00.0: BAR 7: failed to assign [io  size 0x4000]
[    0.339545] pci 0000:08:00.0: BAR 7: no space for [io  size 0x4000]
[    0.339549] pci 0000:08:00.0: BAR 7: failed to assign [io  size 0x4000]
[    0.339556] pci 0000:09:05.0: BAR 8: no space for [mem size 0x00200000]
[    0.339561] pci 0000:09:05.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339567] pci 0000:09:05.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339573] pci 0000:09:05.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339579] pci 0000:09:04.0: BAR 7: no space for [io  size 0x3000]
[    0.339583] pci 0000:09:04.0: BAR 7: failed to assign [io  size 0x3000]
[    0.339588] pci 0000:09:05.0: BAR 7: no space for [io  size 0x1000]
[    0.339593] pci 0000:09:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339598] pci 0000:09:05.0: BAR 8: no space for [mem size 0x00200000]
[    0.339603] pci 0000:09:05.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339609] pci 0000:09:05.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339614] pci 0000:09:05.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339620] pci 0000:09:05.0: BAR 7: no space for [io  size 0x1000]
[    0.339625] pci 0000:09:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339630] pci 0000:09:04.0: BAR 7: no space for [io  size 0x3000]
[    0.339634] pci 0000:09:04.0: BAR 7: failed to assign [io  size 0x3000]
[    0.339641] pci 0000:0b:03.0: PCI bridge to [bus 0c]
[    0.339655] pci 0000:0b:03.0:   bridge window [mem 0xb1100000-0xb11fffff]
[    0.339681] pci 0000:0a:00.0: PCI bridge to [bus 0b-0c]
[    0.339696] pci 0000:0a:00.0:   bridge window [mem 0xb1100000-0xb11fffff]
[    0.339722] pci 0000:09:00.0: PCI bridge to [bus 0a-0c]
[    0.339734] pci 0000:09:00.0:   bridge window [mem 0xb1100000-0xb11fffff]
[    0.339755] pci 0000:09:01.0: PCI bridge to [bus 0d]
[    0.339772] pci 0000:09:01.0:   bridge window [mem 0xbd300000-0xbd3fffff 64bit pref]
[    0.339788] pci 0000:09:02.0: PCI bridge to [bus 0e]
[    0.339800] pci 0000:09:02.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.339820] pci 0000:0f:00.0: BAR 7: no space for [io  size 0x2000]
[    0.339825] pci 0000:0f:00.0: BAR 7: failed to assign [io  size 0x2000]
[    0.339830] pci 0000:0f:00.0: BAR 7: no space for [io  size 0x2000]
[    0.339834] pci 0000:0f:00.0: BAR 7: failed to assign [io  size 0x2000]
[    0.339841] pci 0000:10:04.0: BAR 8: no space for [mem size 0x00200000]
[    0.339846] pci 0000:10:04.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339852] pci 0000:10:04.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339858] pci 0000:10:04.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339864] pci 0000:10:05.0: BAR 8: no space for [mem size 0x00200000]
[    0.339869] pci 0000:10:05.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339875] pci 0000:10:05.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339880] pci 0000:10:05.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339886] pci 0000:10:04.0: BAR 7: no space for [io  size 0x1000]
[    0.339890] pci 0000:10:04.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339895] pci 0000:10:05.0: BAR 7: no space for [io  size 0x1000]
[    0.339899] pci 0000:10:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339905] pci 0000:10:05.0: BAR 8: no space for [mem size 0x00200000]
[    0.339910] pci 0000:10:05.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339916] pci 0000:10:05.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339922] pci 0000:10:05.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339927] pci 0000:10:05.0: BAR 7: no space for [io  size 0x1000]
[    0.339932] pci 0000:10:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339937] pci 0000:10:04.0: BAR 8: no space for [mem size 0x00200000]
[    0.339942] pci 0000:10:04.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339948] pci 0000:10:04.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339953] pci 0000:10:04.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339959] pci 0000:10:04.0: BAR 7: no space for [io  size 0x1000]
[    0.339963] pci 0000:10:04.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339969] pci 0000:12:03.0: PCI bridge to [bus 13]
[    0.339988] pci 0000:12:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.340021] pci 0000:11:00.0: PCI bridge to [bus 12-13]
[    0.340040] pci 0000:11:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.340074] pci 0000:10:00.0: PCI bridge to [bus 11-13]
[    0.340090] pci 0000:10:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.340118] pci 0000:10:01.0: PCI bridge to [bus 14]
[    0.340142] pci 0000:10:01.0:   bridge window [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.340163] pci 0000:10:02.0: PCI bridge to [bus 15]
[    0.340179] pci 0000:10:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.340207] pci 0000:10:04.0: PCI bridge to [bus 16]
[    0.340246] pci 0000:10:05.0: PCI bridge to [bus 17]
[    0.340285] pci 0000:0f:00.0: PCI bridge to [bus 10-17]
[    0.340300] pci 0000:0f:00.0:   bridge window [mem 0xb0e00000-0xb0ffffff]
[    0.340313] pci 0000:0f:00.0:   bridge window [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.340334] pci 0000:09:04.0: PCI bridge to [bus 0f-17]
[    0.340346] pci 0000:09:04.0:   bridge window [mem 0xb0e00000-0xb0ffffff]
[    0.340356] pci 0000:09:04.0:   bridge window [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.340372] pci 0000:09:05.0: PCI bridge to [bus 18]
[    0.340399] pci 0000:08:00.0: PCI bridge to [bus 09-18]
[    0.340411] pci 0000:08:00.0:   bridge window [mem 0xb0e00000-0xb11fffff]
[    0.340421] pci 0000:08:00.0:   bridge window [mem 0xbd200000-0xbd3fffff 64bit pref]
[    0.340437] pci 0000:06:03.0: PCI bridge to [bus 08-38]
[    0.340443] pci 0000:06:03.0:   bridge window [io  0x3000-0x3fff]
[    0.340451] pci 0000:06:03.0:   bridge window [mem 0xb0e00000-0xb51fffff]
[    0.340459] pci 0000:06:03.0:   bridge window [mem 0xbd200000-0xc13fffff 64bit pref]
[    0.340470] pci 0000:06:04.0: PCI bridge to [bus 39]
[    0.340486] pci 0000:06:05.0: PCI bridge to [bus 3a-6a]
[    0.340491] pci 0000:06:05.0:   bridge window [io  0x4000-0x4fff]
[    0.340500] pci 0000:06:05.0:   bridge window [mem 0xb5200000-0xb91fffff]
[    0.340507] pci 0000:06:05.0:   bridge window [mem 0xc1400000-0xc53fffff 64bit pref]
[    0.340518] pci 0000:06:06.0: PCI bridge to [bus 6b]
[    0.340534] pci 0000:05:00.0: PCI bridge to [bus 06-6b]
[    0.340540] pci 0000:05:00.0:   bridge window [io  0x3000-0x4fff]
[    0.340548] pci 0000:05:00.0:   bridge window [mem 0xb0d00000-0xb91fffff]
[    0.340556] pci 0000:05:00.0:   bridge window [mem 0xbd200000-0xc53fffff 64bit pref]
[    0.340567] pci 0000:00:1c.4: PCI bridge to [bus 05-6b]
[    0.340572] pci 0000:00:1c.4:   bridge window [io  0x3000-0x5fff]
[    0.340579] pci 0000:00:1c.4:   bridge window [mem 0xb0d00000-0xbd1fffff]
[    0.340585] pci 0000:00:1c.4:   bridge window [mem 0xbd200000-0xc93fffff 64bit pref]
[    0.340594] pci 0000:00:1c.5: PCI bridge to [bus 04]
[    0.340601] pci 0000:00:1c.5:   bridge window [mem 0xb0900000-0xb09fffff]
[    0.340611] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.340616] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.340621] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000fffff window]
[    0.340627] pci_bus 0000:00: resource 7 [mem 0x8fa00000-0xfeafffff window]
[    0.340632] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff window]
[    0.340637] pci_bus 0000:02: resource 1 [mem 0xb0a00000-0xb0bfffff]
[    0.340642] pci_bus 0000:02: resource 2 [mem 0x90000000-0x9fffffff 64bit pref]
[    0.340648] pci_bus 0000:03: resource 1 [mem 0xb0400000-0xb08fffff]
[    0.340653] pci_bus 0000:05: resource 0 [io  0x3000-0x5fff]
[    0.340657] pci_bus 0000:05: resource 1 [mem 0xb0d00000-0xbd1fffff]
[    0.340662] pci_bus 0000:05: resource 2 [mem 0xbd200000-0xc93fffff 64bit pref]
[    0.340668] pci_bus 0000:06: resource 0 [io  0x3000-0x4fff]
[    0.340672] pci_bus 0000:06: resource 1 [mem 0xb0d00000-0xb91fffff]
[    0.340677] pci_bus 0000:06: resource 2 [mem 0xbd200000-0xc53fffff 64bit pref]
[    0.340683] pci_bus 0000:07: resource 1 [mem 0xb0d00000-0xb0dfffff]
[    0.340688] pci_bus 0000:08: resource 0 [io  0x3000-0x3fff]
[    0.340692] pci_bus 0000:08: resource 1 [mem 0xb0e00000-0xb51fffff]
[    0.340697] pci_bus 0000:08: resource 2 [mem 0xbd200000-0xc13fffff 64bit pref]
[    0.340703] pci_bus 0000:09: resource 1 [mem 0xb0e00000-0xb11fffff]
[    0.340707] pci_bus 0000:09: resource 2 [mem 0xbd200000-0xbd3fffff 64bit pref]
[    0.340713] pci_bus 0000:0a: resource 1 [mem 0xb1100000-0xb11fffff]
[    0.340718] pci_bus 0000:0b: resource 1 [mem 0xb1100000-0xb11fffff]
[    0.340723] pci_bus 0000:0c: resource 1 [mem 0xb1100000-0xb11fffff]
[    0.340728] pci_bus 0000:0d: resource 2 [mem 0xbd300000-0xbd3fffff 64bit pref]
[    0.340734] pci_bus 0000:0e: resource 1 [mem 0xb1000000-0xb10fffff]
[    0.340739] pci_bus 0000:0f: resource 1 [mem 0xb0e00000-0xb0ffffff]
[    0.340743] pci_bus 0000:0f: resource 2 [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.340749] pci_bus 0000:10: resource 1 [mem 0xb0e00000-0xb0ffffff]
[    0.340754] pci_bus 0000:10: resource 2 [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.340759] pci_bus 0000:11: resource 1 [mem 0xb0f00000-0xb0ffffff]
[    0.340764] pci_bus 0000:12: resource 1 [mem 0xb0f00000-0xb0ffffff]
[    0.340769] pci_bus 0000:13: resource 1 [mem 0xb0f00000-0xb0ffffff]
[    0.340774] pci_bus 0000:14: resource 2 [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.340780] pci_bus 0000:15: resource 1 [mem 0xb0e00000-0xb0efffff]
[    0.340785] pci_bus 0000:3a: resource 0 [io  0x4000-0x4fff]
[    0.340790] pci_bus 0000:3a: resource 1 [mem 0xb5200000-0xb91fffff]
[    0.340795] pci_bus 0000:3a: resource 2 [mem 0xc1400000-0xc53fffff 64bit pref]
[    0.340801] pci_bus 0000:04: resource 1 [mem 0xb0900000-0xb09fffff]
[    0.341191] pci 0000:05:00.0: CLS mismatch (256 != 128), using 64 bytes
[    0.341219] pci 0000:0c:00.0: MSI is not implemented on this device, disabling it
[    0.341224] pci 0000:0c:00.0: PME# is unreliable, disabling it
[    0.341610] pci 0000:0c:00.1: MSI is not implemented on this device, disabling it
[    0.341616] pci 0000:0c:00.1: PME# is unreliable, disabling it
[    0.341723] pci 0000:0c:00.2: MSI is not implemented on this device, disabling it
[    0.341728] pci 0000:0c:00.2: PME# is unreliable, disabling it
[    0.341793] pci 0000:0c:00.2: EHCI: unrecognized capability 00
[    0.341851] pci 0000:13:00.0: MSI is not implemented on this device, disabling it
[    0.341857] pci 0000:13:00.0: PME# is unreliable, disabling it
[    0.342178] pci 0000:13:00.1: MSI is not implemented on this device, disabling it
[    0.342183] pci 0000:13:00.1: PME# is unreliable, disabling it
[    0.342306] pci 0000:13:00.2: MSI is not implemented on this device, disabling it
[    0.342312] pci 0000:13:00.2: PME# is unreliable, disabling it
[    0.342389] pci 0000:13:00.2: EHCI: unrecognized capability 00
[    0.342471] DMAR: No ATSR found
[    0.342474] DMAR: No SATC found
[    0.342478] DMAR: IOMMU feature pgsel_inv inconsistent
[    0.342480] DMAR: IOMMU feature sc_support inconsistent
[    0.342484] DMAR: IOMMU feature pass_through inconsistent
[    0.342485] Unpacking initramfs...
[    0.342487] DMAR: dmar0: Using Queued invalidation
[    0.342501] DMAR: dmar1: Using Queued invalidation
[    0.438669] pci 0000:00:00.0: Adding to iommu group 0
[    0.438701] pci 0000:00:02.0: Adding to iommu group 1
[    0.438722] pci 0000:00:03.0: Adding to iommu group 2
[    0.438743] pci 0000:00:14.0: Adding to iommu group 3
[    0.438774] pci 0000:00:16.0: Adding to iommu group 4
[    0.438793] pci 0000:00:1b.0: Adding to iommu group 5
[    0.438814] pci 0000:00:1c.0: Adding to iommu group 6
[    0.438834] pci 0000:00:1c.1: Adding to iommu group 7
[    0.438855] pci 0000:00:1c.2: Adding to iommu group 8
[    0.438875] pci 0000:00:1c.4: Adding to iommu group 9
[    0.438895] pci 0000:00:1c.5: Adding to iommu group 10
[    0.438931] pci 0000:00:1f.0: Adding to iommu group 11
[    0.438951] pci 0000:00:1f.3: Adding to iommu group 11
[    0.438970] pci 0000:02:00.0: Adding to iommu group 12
[    0.438989] pci 0000:03:00.0: Adding to iommu group 13
[    0.439008] pci 0000:05:00.0: Adding to iommu group 14
[    0.439029] pci 0000:06:00.0: Adding to iommu group 15
[    0.439049] pci 0000:06:03.0: Adding to iommu group 16
[    0.439069] pci 0000:06:04.0: Adding to iommu group 17
[    0.439089] pci 0000:06:05.0: Adding to iommu group 18
[    0.439109] pci 0000:06:06.0: Adding to iommu group 19
[    0.439118] pci 0000:07:00.0: Adding to iommu group 15
[    0.439126] pci 0000:08:00.0: Adding to iommu group 16
[    0.439135] pci 0000:09:00.0: Adding to iommu group 16
[    0.439144] pci 0000:09:01.0: Adding to iommu group 16
[    0.439154] pci 0000:09:02.0: Adding to iommu group 16
[    0.439162] pci 0000:09:04.0: Adding to iommu group 16
[    0.439171] pci 0000:09:05.0: Adding to iommu group 16
[    0.439180] pci 0000:0a:00.0: Adding to iommu group 16
[    0.439189] pci 0000:0b:03.0: Adding to iommu group 16
[    0.439197] pci 0000:0c:00.0: Adding to iommu group 16
[    0.439205] pci 0000:0c:00.1: Adding to iommu group 16
[    0.439212] pci 0000:0c:00.2: Adding to iommu group 16
[    0.439221] pci 0000:0d:00.0: Adding to iommu group 16
[    0.439230] pci 0000:0e:00.0: Adding to iommu group 16
[    0.439238] pci 0000:0f:00.0: Adding to iommu group 16
[    0.439248] pci 0000:10:00.0: Adding to iommu group 16
[    0.439256] pci 0000:10:01.0: Adding to iommu group 16
[    0.439264] pci 0000:10:02.0: Adding to iommu group 16
[    0.439273] pci 0000:10:04.0: Adding to iommu group 16
[    0.439281] pci 0000:10:05.0: Adding to iommu group 16
[    0.439289] pci 0000:11:00.0: Adding to iommu group 16
[    0.439298] pci 0000:12:03.0: Adding to iommu group 16
[    0.439307] pci 0000:13:00.0: Adding to iommu group 16
[    0.439316] pci 0000:13:00.1: Adding to iommu group 16
[    0.439324] pci 0000:13:00.2: Adding to iommu group 16
[    0.439334] pci 0000:14:00.0: Adding to iommu group 16
[    0.439343] pci 0000:15:00.0: Adding to iommu group 16
[    0.439362] pci 0000:04:00.0: Adding to iommu group 20
[    0.441466] DMAR: Intel(R) Virtualization Technology for Directed I/O
[    0.441472] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.441476] software IO TLB: mapped [mem 0x000000006c76d000-0x000000007076d000] (64MB)
[    0.441487] ACPI: bus type thunderbolt registered
[    0.441661] thunderbolt 0000:07:00.0: total paths: 12
[    0.441924] thunderbolt 0000:07:00.0: allocating TX ring 0 of size 10
[    0.441961] thunderbolt 0000:07:00.0: allocating RX ring 0 of size 10
[    0.441984] thunderbolt 0000:07:00.0: control channel created
[    0.441988] thunderbolt 0000:07:00.0: ICM not supported on this controller
[    0.442000] thunderbolt 0000:07:00.0: freeing RX ring 0
[    0.442010] thunderbolt 0000:07:00.0: freeing TX ring 0
[    0.442024] thunderbolt 0000:07:00.0: allocating TX ring 0 of size 10
[    0.442034] thunderbolt 0000:07:00.0: allocating RX ring 0 of size 10
[    0.442046] thunderbolt 0000:07:00.0: control channel created
[    0.442048] thunderbolt 0000:07:00.0: using software connection manager
[    0.442051] thunderbolt 0000:07:00.0: device link creation from 0000:06:00.0 failed
[    0.442100] thunderbolt 0000:07:00.0: created link from 0000:06:03.0
[    0.442116] thunderbolt 0000:07:00.0: created link from 0000:06:04.0
[    0.442133] thunderbolt 0000:07:00.0: created link from 0000:06:05.0
[    0.442149] thunderbolt 0000:07:00.0: created link from 0000:06:06.0
[    0.442287] thunderbolt 0000:07:00.0: NHI initialized, starting thunderbolt
[    0.442289] thunderbolt 0000:07:00.0: control channel starting...
[    0.442291] thunderbolt 0000:07:00.0: starting TX ring 0
[    0.442300] thunderbolt 0000:07:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[    0.442303] thunderbolt 0000:07:00.0: starting RX ring 0
[    0.442311] thunderbolt 0000:07:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[    0.442316] thunderbolt 0000:07:00.0: security level set to user
[    0.442829] thunderbolt 0000:07:00.0: current switch config:
[    0.442832] thunderbolt 0000:07:00.0:  Thunderbolt 2 Switch: 8086:156d (Revision: 0, TB Version: 2)
[    0.442835] thunderbolt 0000:07:00.0:   Max Port Number: 12
[    0.442838] thunderbolt 0000:07:00.0:   Config:
[    0.442839] thunderbolt 0000:07:00.0:    Upstream Port Number: 5 Depth: 0 Route String: 0x0 Enabled: 1, PlugEventsDelay: 255ms
[    0.442843] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[    0.444280] Freeing initrd memory: 7308K
[    0.555264] thunderbolt 0000:07:00.0: initializing Switch at 0x0 (depth: 0, up port: 5)
[    0.555902] thunderbolt 0000:07:00.0: 0: DROM version: 1
[    0.557306] thunderbolt 0000:07:00.0: 0: uid: 0x1000f0811ee60
[    0.559226] thunderbolt 0000:07:00.0:  Port 1: 8086:156d (Revision: 0, TB Version: 1, Type: Port (0x1))
[    0.559229] thunderbolt 0000:07:00.0:   Max hop id (in/out): 15/15
[    0.559231] thunderbolt 0000:07:00.0:   Max counters: 16
[    0.559232] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.559233] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.561145] thunderbolt 0000:07:00.0:  Port 2: 8086:156d (Revision: 0, TB Version: 1, Type: Port (0x1))
[    0.561147] thunderbolt 0000:07:00.0:   Max hop id (in/out): 15/15
[    0.561149] thunderbolt 0000:07:00.0:   Max counters: 16
[    0.561150] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.561151] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.563065] thunderbolt 0000:07:00.0:  Port 3: 8086:156d (Revision: 0, TB Version: 1, Type: Port (0x1))
[    0.563067] thunderbolt 0000:07:00.0:   Max hop id (in/out): 15/15
[    0.563068] thunderbolt 0000:07:00.0:   Max counters: 16
[    0.563069] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.563070] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.564985] thunderbolt 0000:07:00.0:  Port 4: 8086:156d (Revision: 0, TB Version: 1, Type: Port (0x1))
[    0.564987] thunderbolt 0000:07:00.0:   Max hop id (in/out): 15/15
[    0.564988] thunderbolt 0000:07:00.0:   Max counters: 16
[    0.564989] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.564990] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.565753] thunderbolt 0000:07:00.0:  Port 5: 8086:156d (Revision: 0, TB Version: 1, Type: NHI (0x2))
[    0.565755] thunderbolt 0000:07:00.0:   Max hop id (in/out): 11/11
[    0.565756] thunderbolt 0000:07:00.0:   Max counters: 16
[    0.565757] thunderbolt 0000:07:00.0:   NFC Credits: 0xf00000
[    0.565758] thunderbolt 0000:07:00.0:   Credits (total/control): 15/0
[    0.566009] thunderbolt 0000:07:00.0:  Port 6: 8086:156d (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[    0.566011] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.566012] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.566013] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.566014] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.566266] random: fast init done
[    0.566268] thunderbolt 0000:07:00.0:  Port 7: 8086:156d (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[    0.566274] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.566276] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.566277] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.566278] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.566521] thunderbolt 0000:07:00.0:  Port 8: 8086:156d (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[    0.566524] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.566525] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.566526] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.566527] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.566777] thunderbolt 0000:07:00.0:  Port 9: 8086:156d (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[    0.566779] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.566780] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.566781] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.566782] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.566783] thunderbolt 0000:07:00.0: 0:a: disabled by eeprom
[    0.567033] thunderbolt 0000:07:00.0:  Port 11: 8086:156d (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0101))
[    0.567035] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    0.567036] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.567037] thunderbolt 0000:07:00.0:   NFC Credits: 0xf0000b
[    0.567038] thunderbolt 0000:07:00.0:   Credits (total/control): 15/0
[    0.567289] thunderbolt 0000:07:00.0:  Port 12: 8086:156d (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0101))
[    0.567291] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    0.567292] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.567293] thunderbolt 0000:07:00.0:   NFC Credits: 0xf00000
[    0.567294] thunderbolt 0000:07:00.0:   Credits (total/control): 15/0
[    0.572281] thunderbolt 0000:07:00.0: 0: TMU: current mode: HiFi
[    0.572411] thunderbolt 0000:07:00.0: 0:1: is connected, link is up (state: 2)
[    0.572664] thunderbolt 0000:07:00.0: current switch config:
[    0.572665] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[    0.572667] thunderbolt 0000:07:00.0:   Max Port Number: 13
[    0.572668] thunderbolt 0000:07:00.0:   Config:
[    0.572669] thunderbolt 0000:07:00.0:    Upstream Port Number: 1 Depth: 1 Route String: 0x1 Enabled: 1, PlugEventsDelay: 255ms
[    0.572671] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[    0.577272] thunderbolt 0000:07:00.0: initializing Switch at 0x1 (depth: 1, up port: 1)
[    0.594678] thunderbolt 0000:07:00.0: 1: reading drom (length: 0x97)
[    1.088326] thunderbolt 0000:07:00.0: 1: DROM version: 1
[    1.089350] thunderbolt 0000:07:00.0: 1: uid: 0x1000100189170
[    1.092293] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.092295] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.092297] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.092298] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.092299] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.095236] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.095238] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.095239] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.095240] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c0000e
[    1.095241] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.098180] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.098181] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.098182] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.098183] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.098184] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.101123] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.101125] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.101126] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.101127] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.101128] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.101129] thunderbolt 0000:07:00.0: 1:5: disabled by eeprom
[    1.101130] thunderbolt 0000:07:00.0: 1:6: disabled by eeprom
[    1.102019] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.102021] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.102022] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.102023] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.102024] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.102915] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.102917] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.102918] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.102919] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.102920] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.102921] thunderbolt 0000:07:00.0: 1:9: disabled by eeprom
[    1.103812] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[    1.103814] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.103815] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.103816] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.103817] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.104964] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[    1.104966] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    1.104967] thunderbolt 0000:07:00.0:   Max counters: 2
[    1.104968] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.104969] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.104970] thunderbolt 0000:07:00.0: 1:c: disabled by eeprom
[    1.104971] thunderbolt 0000:07:00.0: 1:d: disabled by eeprom
[    1.123324] thunderbolt 0000:07:00.0: 1: TMU: current mode: bi-directional, HiFi
[    1.123340] thunderbolt 0-1: new device found, vendor=0x1 device=0x8002
[    1.123344] thunderbolt 0-1: Apple, Inc. Thunderbolt Display
[    1.123836] thunderbolt 0000:07:00.0: 1:3: is connected, link is up (state: 2)
[    1.124092] thunderbolt 0000:07:00.0: current switch config:
[    1.124093] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[    1.124094] thunderbolt 0000:07:00.0:   Max Port Number: 13
[    1.124096] thunderbolt 0000:07:00.0:   Config:
[    1.124096] thunderbolt 0000:07:00.0:    Upstream Port Number: 3 Depth: 2 Route String: 0x301 Enabled: 1, PlugEventsDelay: 255ms
[    1.124098] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[    1.128700] thunderbolt 0000:07:00.0: initializing Switch at 0x301 (depth: 2, up port: 3)
[    1.146106] thunderbolt 0000:07:00.0: 301: reading drom (length: 0x97)
[    1.621709] random: crng init done
[    1.639753] thunderbolt 0000:07:00.0: 301: DROM version: 1
[    1.640777] thunderbolt 0000:07:00.0: 301: uid: 0x100010102a740
[    1.643720] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.643722] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.643724] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.643725] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.643726] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.646664] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.646666] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.646667] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.646668] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.646669] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.649608] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.649609] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.649611] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.649612] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.649613] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.652551] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.652553] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.652554] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.652555] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.652556] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.652557] thunderbolt 0000:07:00.0: 301:5: disabled by eeprom
[    1.652559] thunderbolt 0000:07:00.0: 301:6: disabled by eeprom
[    1.653447] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.653449] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.653450] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.653451] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.653452] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.654343] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.654345] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.654346] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.654347] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.654348] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.654349] thunderbolt 0000:07:00.0: 301:9: disabled by eeprom
[    1.655239] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[    1.655241] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.655242] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.655243] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.655244] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.656391] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[    1.656393] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    1.656394] thunderbolt 0000:07:00.0:   Max counters: 2
[    1.656395] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.656396] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.656397] thunderbolt 0000:07:00.0: 301:c: disabled by eeprom
[    1.656398] thunderbolt 0000:07:00.0: 301:d: disabled by eeprom
[    1.675048] thunderbolt 0000:07:00.0: 301: TMU: current mode: bi-directional, HiFi
[    1.675065] thunderbolt 0-301: new device found, vendor=0x1 device=0x8002
[    1.675069] thunderbolt 0-301: Apple, Inc. Thunderbolt Display
[    1.675178] thunderbolt 0000:07:00.0: 301:1: is unplugged (state: 7)
[    1.675433] thunderbolt 0000:07:00.0: 301:b: DP adapter HPD set, queuing hotplug
[    1.675816] thunderbolt 0000:07:00.0: 0:3: is unplugged (state: 7)
[    1.677352] thunderbolt 0000:07:00.0: 0:6 <-> 1:a (PCI): discovered
[    1.679912] thunderbolt 0000:07:00.0: 0:b <-> 1:b (DP): discovered
[    1.681576] thunderbolt 0000:07:00.0: 1:7 <-> 301:a (PCI): discovered
[    1.681961] thunderbolt 0000:07:00.0: 0:b: DP IN resource available
[    1.681963] thunderbolt 0000:07:00.0: 0:c: DP IN resource available
[    1.682103] thunderbolt 0000:07:00.0: 301:b: DP OUT resource available
[    1.682107] thunderbolt 0000:07:00.0: looking for DP IN <-> DP OUT pairs:
[    1.682119] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
[    1.682125] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[    1.682127] RAPL PMU: hw unit of domain package 2^-14 Joules
[    1.682129] RAPL PMU: hw unit of domain dram 2^-14 Joules
[    1.682131] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[    1.682220] thunderbolt 0000:07:00.0: 0:b: in use
[    1.682347] thunderbolt 0000:07:00.0: 0:c: DP IN available
[    1.682473] thunderbolt 0000:07:00.0: 301:b: DP OUT available
[    1.682477] thunderbolt 0000:07:00.0: 0: allocated DP resource for port 12
[    1.682479] thunderbolt 0000:07:00.0: 301:b: calculating available bandwidth
[    1.682603] thunderbolt 0000:07:00.0: 0:1: link total bandwidth 9000 Mb/s
[    1.682607] thunderbolt 0000:07:00.0: 1:1: link total bandwidth 9000 Mb/s
[    1.682730] thunderbolt 0000:07:00.0: 1:3: link total bandwidth 9000 Mb/s
[    1.682734] thunderbolt 0000:07:00.0: 301:3: link total bandwidth 9000 Mb/s
[    1.682737] thunderbolt 0000:07:00.0: available bandwidth for new DP tunnel 9000/9000 Mb/s
[    1.682742] thunderbolt 0000:07:00.0: Tunnel link 0
[    1.682747] thunderbolt 0000:07:00.0: 0:c <-> 301:b (DP): activating
[    1.682750] thunderbolt 0000:07:00.0: activating Video path from 0:12 to 301:11
[    1.682753] thunderbolt 0000:07:00.0: 301:3: adding 12 NFC credits to 0
[    1.682858] thunderbolt 0000:07:00.0: 1:1: adding 12 NFC credits to 0
[    1.682955] Initialise system trusted keyrings
[    1.682985] thunderbolt 0000:07:00.0: 0:c: adding 12 NFC credits to 0
[    1.682986] workingset: timestamp_bits=62 max_order=22 bucket_order=0
[    1.683239] thunderbolt 0000:07:00.0: 301:3: Writing hop 2
[    1.683240] thunderbolt 0000:07:00.0: 301:3:  In HopID: 9 => Out port: 11 Out HopID: 9
[    1.683242] thunderbolt 0000:07:00.0: 301:3:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.683244] thunderbolt 0000:07:00.0: 301:3:    Counter enabled: 0 Counter index: 2047
[    1.683246] thunderbolt 0000:07:00.0: 301:3:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.683247] thunderbolt 0000:07:00.0: 301:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.683495] thunderbolt 0000:07:00.0: 1:1: Writing hop 1
[    1.683496] thunderbolt 0000:07:00.0: 1:1:  In HopID: 9 => Out port: 3 Out HopID: 9
[    1.683498] thunderbolt 0000:07:00.0: 1:1:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.683499] thunderbolt 0000:07:00.0: 1:1:    Counter enabled: 0 Counter index: 2047
[    1.683501] thunderbolt 0000:07:00.0: 1:1:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.683502] thunderbolt 0000:07:00.0: 1:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.683751] thunderbolt 0000:07:00.0: 0:c: Writing hop 0
[    1.683753] thunderbolt 0000:07:00.0: 0:c:  In HopID: 9 => Out port: 1 Out HopID: 9
[    1.683754] thunderbolt 0000:07:00.0: 0:c:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.683755] thunderbolt 0000:07:00.0: 0:c:    Counter enabled: 0 Counter index: 2047
[    1.683757] thunderbolt 0000:07:00.0: 0:c:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.683758] thunderbolt 0000:07:00.0: 0:c:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.683879] thunderbolt 0000:07:00.0: path activation complete
[    1.683881] thunderbolt 0000:07:00.0: activating AUX TX path from 0:12 to 301:11
[    1.684007] thunderbolt 0000:07:00.0: 301:3: Writing hop 2
[    1.684009] thunderbolt 0000:07:00.0: 301:3:  In HopID: 10 => Out port: 11 Out HopID: 8
[    1.684010] thunderbolt 0000:07:00.0: 301:3:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.684012] thunderbolt 0000:07:00.0: 301:3:    Counter enabled: 0 Counter index: 2047
[    1.684013] thunderbolt 0000:07:00.0: 301:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.684015] thunderbolt 0000:07:00.0: 301:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.684153] NFS: Registering the id_resolver key type
[    1.684159] Key type id_resolver registered
[    1.684161] Key type id_legacy registered
[    1.684176] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    1.684215] Key type asymmetric registered
[    1.684217] Asymmetric key parser 'x509' registered
[    1.684655] thunderbolt 0000:07:00.0: 1:1: Writing hop 1
[    1.684658] thunderbolt 0000:07:00.0: 1:1:  In HopID: 10 => Out port: 3 Out HopID: 10
[    1.684661] thunderbolt 0000:07:00.0: 1:1:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.684664] thunderbolt 0000:07:00.0: 1:1:    Counter enabled: 0 Counter index: 2047
[    1.684667] thunderbolt 0000:07:00.0: 1:1:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.684670] thunderbolt 0000:07:00.0: 1:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.685457] pcieport 0000:06:00.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.685509] thunderbolt 0000:07:00.0: 0:c: Writing hop 0
[    1.685512] thunderbolt 0000:07:00.0: 0:c:  In HopID: 8 => Out port: 1 Out HopID: 10
[    1.685515] thunderbolt 0000:07:00.0: 0:c:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.685518] thunderbolt 0000:07:00.0: 0:c:    Counter enabled: 0 Counter index: 2047
[    1.685521] thunderbolt 0000:07:00.0: 0:c:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.685524] thunderbolt 0000:07:00.0: 0:c:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.685636] thunderbolt 0000:07:00.0: path activation complete
[    1.685638] thunderbolt 0000:07:00.0: activating AUX RX path from 301:11 to 0:12
[    1.685701] pcieport 0000:06:03.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.685765] thunderbolt 0000:07:00.0: 0:1: Writing hop 2
[    1.685768] thunderbolt 0000:07:00.0: 0:1:  In HopID: 9 => Out port: 12 Out HopID: 8
[    1.685770] thunderbolt 0000:07:00.0: 0:1:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.685772] thunderbolt 0000:07:00.0: 0:1:    Counter enabled: 0 Counter index: 2047
[    1.685774] thunderbolt 0000:07:00.0: 0:1:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.685776] thunderbolt 0000:07:00.0: 0:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.685948] pcieport 0000:06:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.686022] thunderbolt 0000:07:00.0: 1:3: Writing hop 1
[    1.686025] thunderbolt 0000:07:00.0: 1:3:  In HopID: 9 => Out port: 1 Out HopID: 9
[    1.686027] thunderbolt 0000:07:00.0: 1:3:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.686029] thunderbolt 0000:07:00.0: 1:3:    Counter enabled: 0 Counter index: 2047
[    1.686031] thunderbolt 0000:07:00.0: 1:3:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.686033] thunderbolt 0000:07:00.0: 1:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.686106] pcieport 0000:06:05.0: enabling device (0000 -> 0003)
[    1.686216] pcieport 0000:06:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.686276] thunderbolt 0000:07:00.0: 301:b: Writing hop 0
[    1.686278] thunderbolt 0000:07:00.0: 301:b:  In HopID: 8 => Out port: 3 Out HopID: 9
[    1.686281] thunderbolt 0000:07:00.0: 301:b:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.686284] thunderbolt 0000:07:00.0: 301:b:    Counter enabled: 0 Counter index: 2047
[    1.686286] thunderbolt 0000:07:00.0: 301:b:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.686289] thunderbolt 0000:07:00.0: 301:b:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.686404] thunderbolt 0000:07:00.0: path activation complete
[    1.686516] pcieport 0000:06:06.0: pciehp: Slot #6 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.689074] pcieport 0000:09:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.689402] pcieport 0000:09:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.692762] pcieport 0000:10:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.693185] pcieport 0000:10:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.694148] ACPI: AC: AC Adapter [ADP1] (off-line)
[    1.694216] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    1.694253] ACPI: button: Lid Switch [LID0]
[    1.694293] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    1.694315] ACPI: button: Power Button [PWRB]
[    1.694350] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
[    1.694369] ACPI: button: Sleep Button [SLPB]
[    1.694404] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    1.694432] ACPI: button: Power Button [PWRF]
[    1.694725] smbus_hc ACPI0001:00: SBS HC: offset = 0x20, query_bit = 0x10
[    2.114414] ACPI: Smart Battery System [SBS0]: Battery Slot [BAT0] (battery present)
[    2.123919] hpet_acpi_add: no address or irqs in _CRS
[    2.125029] loop: module loaded
[    2.125246] nvme nvme0: pci function 0000:04:00.0
[    2.125509] tun: Universal TUN/TAP device driver, 1.6
[    2.125583] mousedev: PS/2 mouse device common for all mice
[    2.125601] rtc_cmos 00:02: RTC can wake from S4
[    2.125861] rtc_cmos 00:02: registered as rtc0
[    2.125898] rtc_cmos 00:02: setting system clock to 2022-03-30T13:10:08 UTC (1648645808)
[    2.125904] rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram
[    2.126081] device-mapper: ioctl: 4.46.0-ioctl (2022-02-22) initialised: dm-devel@redhat.com
[    2.126095] intel_pstate: Intel P-state driver initializing
[    2.126200] efifb: probing for efifb
[    2.126211] efifb: framebuffer at 0xa0000000, using 16000k, total 16000k
[    2.126213] efifb: mode is 2560x1600x32, linelength=10240, pages=1
[    2.126216] efifb: scrolling: redraw
[    2.126217] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    2.129403] Console: switching to colour frame buffer device 320x100
[    2.132418] fb0: EFI VGA frame buffer device
[    2.132485] NET: Registered PF_PACKET protocol family
[    2.132504] Key type dns_resolver registered
[    2.132662] microcode: sig=0x40651, pf=0x40, revision=0x26
[    2.132700] microcode: Microcode Update Driver: v2.2.
[    2.132704] IPI shorthand broadcast: enabled
[    2.132723] AVX2 version of gcm_enc/dec engaged.
[    2.132762] AES CTR mode by8 optimization enabled
[    2.132890] sched_clock: Marking stable (2131290411, 1593985)->(2158526439, -25642043)
[    2.132958] registered taskstats version 1
[    2.132965] Loading compiled-in X.509 certificates
[    2.181076] nvme0: Identify(0x6), Invalid Field in Command (sct 0x0 / sc 0x2) 
[    2.199235] nvme nvme0: 4/0/0 default/read/poll queues
[    2.204201]  nvme0n1: p1 p2 p3 p4 p5 p6 p7
[    2.370962] Freeing unused kernel image (initmem) memory: 996K
[    2.403594] Write protecting the kernel read-only data: 16384k
[    2.403952] Freeing unused kernel image (text/rodata gap) memory: 2036K
[    2.404147] Freeing unused kernel image (rodata/data gap) memory: 1356K
[    2.404164] Run /init as init process
[    2.404172]   with arguments:
[    2.404173]     /init
[    2.404174]   with environment:
[    2.404175]     HOME=/
[    2.404175]     TERM=linux
[    2.456184] udevd[938]: starting version 3.2.9
[    2.456917] udevd[939]: starting eudev-3.2.9
[    2.477515] ACPI: bus type USB registered
[    2.477619] usbcore: registered new interface driver usbfs
[    2.477645] usbcore: registered new interface driver hub
[    2.477725] usbcore: registered new device driver usb
[    2.480867] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    2.480896] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    2.481997] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x000000000004b810
[    2.482178] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
[    2.482206] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.482225] usb usb1: Product: xHCI Host Controller
[    2.482239] usb usb1: Manufacturer: Linux 5.17.0+ xhci-hcd
[    2.482253] usb usb1: SerialNumber: 0000:00:14.0
[    2.483147] hub 1-0:1.0: USB hub found
[    2.483378] hub 1-0:1.0: 9 ports detected
[    2.485349] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    2.485395] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    2.485499] xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
[    2.485549] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.17
[    2.485574] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.485593] usb usb2: Product: xHCI Host Controller
[    2.485608] usb usb2: Manufacturer: Linux 5.17.0+ xhci-hcd
[    2.485622] usb usb2: SerialNumber: 0000:00:14.0
[    2.485901] hub 2-0:1.0: USB hub found
[    2.485921] hub 2-0:1.0: 4 ports detected
[    2.486168] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[    2.486383] i2c i2c-0: 2/2 memory slots populated (from DMI)
[    2.543395] applesmc: key=571 fan=1 temp=32 index=31 acc=0 lux=2 kbd=1
[    2.543563] applesmc applesmc.768: hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[    2.553204] tg3 0000:0d:00.0 eth0: Tigon3 [partno(BCM957761) rev 57785100] (PCI Express) MAC address c8:2a:14:4f:80:3e
[    2.553226] tg3 0000:0d:00.0 eth0: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    2.553243] tg3 0000:0d:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    2.553257] tg3 0000:0d:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[    2.634108] tg3 0000:14:00.0 eth1: Tigon3 [partno(BCM957761) rev 57785100] (PCI Express) MAC address 38:c9:86:48:0c:c8
[    2.634130] tg3 0000:14:00.0 eth1: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    2.634147] tg3 0000:14:00.0 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    2.634161] tg3 0000:14:00.0 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[    2.723591] tsc: Refined TSC clocksource calibration: 2599.999 MHz
[    2.723603] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x257a3b2ad7e, max_idle_ns: 440795282337 ns
[    2.723627] clocksource: Switched to clocksource tsc
[    2.773593] usb 1-3: new full-speed USB device number 2 using xhci_hcd
[    2.955891] usb 1-3: New USB device found, idVendor=05ac, idProduct=8290, bcdDevice= 1.69
[    2.955896] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.955898] usb 1-3: Product: Bluetooth USB Host Controller
[    2.955899] usb 1-3: Manufacturer: Broadcom Corp.
[    2.963051] hid: raw HID events driver (C) Jiri Kosina
[    2.967395] usbcore: registered new interface driver usbhid
[    2.967397] usbhid: USB HID core driver
[    2.968041] input: Broadcom Corp. Bluetooth USB Host Controller as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:05AC:8290.0001/input/input4
[    3.033757] hid-generic 0003:05AC:8290.0001: input,hidraw0: USB HID v1.11 Keyboard [Broadcom Corp. Bluetooth USB Host Controller] on usb-0000:00:14.0-3/input0
[    3.033899] input: Broadcom Corp. Bluetooth USB Host Controller as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:05AC:8290.0002/input/input5
[    3.034406] hid-generic 0003:05AC:8290.0002: input,hidraw1: USB HID v1.11 Mouse [Broadcom Corp. Bluetooth USB Host Controller] on usb-0000:00:14.0-3/input1
[    3.103756] usb 2-3: new SuperSpeed USB device number 2 using xhci_hcd
[    3.136024] usb 2-3: New USB device found, idVendor=05ac, idProduct=8406, bcdDevice= 8.20
[    3.136029] usb 2-3: New USB device strings: Mfr=3, Product=4, SerialNumber=5
[    3.136031] usb 2-3: Product: Card Reader
[    3.136032] usb 2-3: Manufacturer: Apple
[    3.136033] usb 2-3: SerialNumber: 000000000820
[    3.139040] usb-storage 2-3:1.0: USB Mass Storage device detected
[    3.139159] scsi host0: usb-storage 2-3:1.0
[    3.139263] usbcore: registered new interface driver usb-storage
[    3.139485] usbcore: registered new interface driver uas
[    3.283594] usb 1-5: new full-speed USB device number 3 using xhci_hcd
[    3.469240] usb 1-5: New USB device found, idVendor=05ac, idProduct=0259, bcdDevice= 2.24
[    3.469246] usb 1-5: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.469248] usb 1-5: Product: Apple Internal Keyboard / Trackpad
[    3.469249] usb 1-5: Manufacturer: Apple Inc.
[    3.478427] input: Apple Inc. Apple Internal Keyboard / Trackpad as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/0003:05AC:0259.0003/input/input6
[    3.543739] apple 0003:05AC:0259.0003: input,hidraw2: USB HID v1.11 Keyboard [Apple Inc. Apple Internal Keyboard / Trackpad] on usb-0000:00:14.0-5/input0
[    3.543934] apple 0003:05AC:0259.0004: hidraw3: USB HID v1.11 Device [Apple Inc. Apple Internal Keyboard / Trackpad] on usb-0000:00:14.0-5/input1
[    4.165567] scsi 0:0:0:0: Direct-Access     APPLE    SD Card Reader   3.00 PQ: 0 ANSI: 6
[    4.166161] sd 0:0:0:0: [sda] Media removed, stopped polling
[    4.166251] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    4.166825] sd 0:0:0:0: [sda] Attached SCSI removable disk
[    9.719127] process '/usr/bin/fstype' started with executable stack
[    9.778350] PM: Image not found (code -22)
[    9.780426] PM: hibernation: Marking nosave pages: [mem 0x00000000-0x00000fff]
[    9.780430] PM: hibernation: Marking nosave pages: [mem 0x00058000-0x00058fff]
[    9.780432] PM: hibernation: Marking nosave pages: [mem 0x0008f000-0x0008ffff]
[    9.780433] PM: hibernation: Marking nosave pages: [mem 0x000a0000-0x000fffff]
[    9.780435] PM: hibernation: Marking nosave pages: [mem 0x73d4b000-0x73d4bfff]
[    9.780436] PM: hibernation: Marking nosave pages: [mem 0x73d5b000-0x73d5bfff]
[    9.780437] PM: hibernation: Marking nosave pages: [mem 0x73d6e000-0x73d6efff]
[    9.780438] PM: hibernation: Marking nosave pages: [mem 0x73d6e000-0x73d6efff]
[    9.780440] PM: hibernation: Marking nosave pages: [mem 0x8ad10000-0x8ad52fff]
[    9.780441] PM: hibernation: Marking nosave pages: [mem 0x8ad62000-0x8ad8efff]
[    9.780443] PM: hibernation: Marking nosave pages: [mem 0x8ae39000-0x8ae8efff]
[    9.780445] PM: hibernation: Marking nosave pages: [mem 0x8aed2000-0x8aefefff]
[    9.780447] PM: hibernation: Marking nosave pages: [mem 0x8af84000-0x8afeffff]
[    9.780449] PM: hibernation: Marking nosave pages: [mem 0x8b000000-0xffffffff]
[    9.781538] PM: hibernation: Basic memory bitmaps created
[    9.782276] PM: hibernation: Basic memory bitmaps freed
[    9.982276] EXT4-fs (nvme0n1p4): mounted filesystem with ordered data mode. Quota mode: disabled.
[   10.117276] udevd[1214]: starting version 3.2.9
[   10.141858] udevd[1215]: starting eudev-3.2.9
[   10.206408] Linux agpgart interface v0.103
[   10.210834] ACPI: bus type drm_connector registered
[   10.222993] tg3 0000:0d:00.0 eth2: renamed from eth0
[   10.225927] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[   10.237877] input: bcm5974 as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.2/input/input7
[   10.239124] usbcore: registered new interface driver bcm5974
[   10.250345] i915 0000:00:02.0: [drm] VT-d active for gfx access
[   10.252010] checking generic (a0000000 fa0000) vs hw (b0000000 400000)
[   10.252013] checking generic (a0000000 fa0000) vs hw (a0000000 10000000)
[   10.252015] fb0: switching to i915 from EFI VGA
[   10.254460] Console: switching to colour dummy device 80x25
[   10.255166] i915 0000:00:02.0: vgaarb: deactivate vga console
[   10.255222] i915 0000:00:02.0: [drm] Transparent Hugepage support is recommended for optimal performance when IOMMU is enabled!
[   10.256064] i915 0000:00:02.0: [drm] DMAR active, disabling use of stolen memory
[   10.258950] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[   10.295601] snd_hda_codec_cirrus hdaudioC1D0: autoconfig for CS4208: line_outs=2 (0x12/0x13/0x0/0x0/0x0) type:speaker
[   10.295614] snd_hda_codec_cirrus hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   10.295620] snd_hda_codec_cirrus hdaudioC1D0:    hp_outs=1 (0x10/0x0/0x0/0x0/0x0)
[   10.295625] snd_hda_codec_cirrus hdaudioC1D0:    mono: mono_out=0x0
[   10.295628] snd_hda_codec_cirrus hdaudioC1D0:    dig-out=0x21/0x0
[   10.295632] snd_hda_codec_cirrus hdaudioC1D0:    inputs:
[   10.295636] snd_hda_codec_cirrus hdaudioC1D0:      Internal Mic=0x1c
[   10.295640] snd_hda_codec_cirrus hdaudioC1D0:      Mic=0x18
[   10.304472] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[   10.304652] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[   10.304664] cfg80211: failed to load regulatory.db
[   10.304785] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input8
[   10.304859] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input9
[   10.304923] input: HDA Intel PCH SPDIF as /devices/pci0000:00/0000:00:1b.0/sound/card1/input10
[   10.306966] brcmfmac 0000:03:00.0: enabling device (0000 -> 0002)
[   10.340886] [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0
[   10.341690] ACPI: video: Video Device [IGPU] (multi-head: yes  rom: no  post: no)
[   10.342220] acpi device:02: registered as cooling_device4
[   10.342438] Bluetooth: Core ver 2.22
[   10.342461] NET: Registered PF_BLUETOOTH protocol family
[   10.342466] Bluetooth: HCI device and connection manager initialized
[   10.342474] Bluetooth: HCI socket layer initialized
[   10.342478] Bluetooth: L2CAP socket layer initialized
[   10.342486] Bluetooth: SCO socket layer initialized
[   10.343386] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input11
[   10.343880] snd_hda_intel 0000:00:03.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[   10.345018] usbcore: registered new interface driver btusb
[   10.377827] udevd[1245]: Unable to EVIOCGABS device "/dev/input/event6"
[   10.377839] udevd[1245]: Unable to EVIOCGABS device "/dev/input/event6"
[   10.377845] udevd[1245]: Unable to EVIOCGABS device "/dev/input/event6"
[   10.377850] udevd[1245]: Unable to EVIOCGABS device "/dev/input/event6"
[   10.423798] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43602-pcie for chip BCM43602/1
[   10.424112] brcmfmac 0000:03:00.0: Direct firmware load for brcm/brcmfmac43602-pcie.Apple Inc.-MacBookPro11,1.bin failed with error -2
[   10.424854] brcmfmac 0000:03:00.0: Direct firmware load for brcm/brcmfmac43602-pcie.Apple Inc.-MacBookPro11,1.txt failed with error -2
[   10.424868] brcmfmac 0000:03:00.0: Direct firmware load for brcm/brcmfmac43602-pcie.txt failed with error -2
[   10.500623] fbcon: i915drmfb (fb0) is primary device
[   10.525742] Bluetooth: hci0: BCM: chip id 102 build 0729
[   10.526741] Bluetooth: hci0: BCM: product 05ac:8290
[   10.527744] Bluetooth: hci0: BCM: features 0x2f
[   10.545743] Bluetooth: hci0: BlueZ 5.50
[   10.936035] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43602-pcie for chip BCM43602/1
[   10.936058] brcmfmac: brcmf_c_process_clm_blob: no clm_blob available (err=-2), device may have limited channels available
[   10.936619] brcmfmac: brcmf_c_preinit_dcmds: Firmware: BCM43602/1 wl0: Nov 10 2015 06:38:10 version 7.35.177.61 (r598657) FWID 01-ea662a8c
[   12.004655] Console: switching to colour frame buffer device 320x90
[   12.023978] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[   12.072184] input: HDA Intel HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card0/input12
[   12.072297] input: HDA Intel HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/sound/card0/input13
[   12.073782] input: HDA Intel HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.0/sound/card0/input14
[   12.074547] input: HDA Intel HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:03.0/sound/card0/input15
[   12.074796] input: HDA Intel HDMI HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:03.0/sound/card0/input16
[   12.253395] Adding 19528700k swap on /dev/mapper/swap.  Priority:-2 extents:1 across:19528700k SS
[   12.266376] EXT4-fs (nvme0n1p4): re-mounted. Quota mode: disabled.
[   18.107340] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Quota mode: disabled.
[   18.316724] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[   21.379285] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   21.379288] Bluetooth: BNEP filters: protocol multicast
[   21.379293] Bluetooth: BNEP socket layer initialized
[   21.734334] broken atomic modeset userspace detected, disabling atomic
[   28.394732] irq 9: nobody cared (try booting with the "irqpoll" option)
[   28.394754] CPU: 1 PID: 0 Comm: swapper/1 Not tainted 5.17.0+ #39
[   28.394770] Hardware name: Apple Inc. MacBookPro11,1/Mac-189A3D4F975D5FFC, BIOS 432.60.3.0.0 10/27/2021
[   28.394788] Call Trace:
[   28.394798]  <IRQ>
[   28.394807]  dump_stack_lvl+0x38/0x49
[   28.394823]  dump_stack+0x10/0x12
[   28.394834]  __report_bad_irq+0x37/0xb1
[   28.394847]  note_interrupt.cold.11+0xb/0x5c
[   28.394859]  handle_irq_event_percpu+0x33/0x40
[   28.394873]  handle_irq_event+0x34/0x60
[   28.394885]  handle_fasteoi_irq+0x8b/0x130
[   28.394897]  __common_interrupt+0x39/0x90
[   28.394912]  common_interrupt+0x85/0xa0
[   28.394925]  </IRQ>
[   28.394933]  <TASK>
[   28.394941]  asm_common_interrupt+0x1e/0x40
[   28.394954] RIP: 0010:cpuidle_enter_state+0xc9/0x360
[   28.394969] Code: 89 c4 0f 1f 44 00 00 31 ff e8 23 dc b5 ff 80 7d d7 00 74 12 9c 58 f6 c4 02 0f 85 54 02 00 00 31 ff e8 1b 55 ba ff fb 45 85 ff <0f> 88 0e 01 00 00 49 63 cf 4c 2b 65 c8 48 89 c8 48 6b d1 68 48 c1
[   28.394999] RSP: 0018:ffff9f8ac01cfe60 EFLAGS: 00000202
[   28.395013] RAX: ffff9f8e1f2a9140 RBX: 0000000000000008 RCX: 000000000000001f
[   28.395028] RDX: 000000069c74c193 RSI: 00000000313b14ef RDI: 0000000000000000
[   28.395043] RBP: ffff9f8ac01cfe98 R08: 0000000000000002 R09: 0000000000028a00
[   28.395058] R10: 00000017dc2e76b6 R11: ffff9f8e1f2a82a4 R12: 000000069c74c193
[   28.395073] R13: ffffd4b57fcb2d10 R14: ffffffffb91aa760 R15: 0000000000000008
[   28.395089]  cpuidle_enter+0x29/0x40
[   28.395101]  call_cpuidle+0x1e/0x30
[   28.395114]  do_idle+0x1ed/0x210
[   28.395126]  cpu_startup_entry+0x18/0x20
[   28.395139]  start_secondary+0xed/0x110
[   28.395153]  secondary_startup_64_no_verify+0xc3/0xcb
[   28.395167]  </TASK>
[   28.395176] handlers:
[   28.395184] [<00000000a6729c5b>] acpi_irq
[   28.395199] Disabling IRQ #9
[   35.564614] ieee80211 phy0: brcmf_cfg80211_scan: Connecting: status (3)
[   36.564875] ieee80211 phy0: brcmf_cfg80211_scan: Connecting: status (3)
[   37.362654] pcieport 0000:06:03.0: pciehp: Slot(3-2): Link Down
[   37.362654] thunderbolt 0000:07:00.0: acking hot unplug event on 0:1
[   37.362673] thunderbolt 0000:07:00.0: 0:1: switch unplugged
[   37.362727] thunderbolt 0000:07:00.0: acking hot unplug event on 0:2
[   37.363760] thunderbolt 0000:07:00.0: 0:6 <-> 1:a (PCI): deactivating
[   37.363761] pcieport 0000:06:03.0: pciehp: Slot(3-2): Card not present
[   37.363774] pcieport 0000:09:05.0: can't change power state from D3cold to D0 (config space inaccessible)
[   37.363783] thunderbolt 0000:07:00.0: deactivating PCIe Down path from 1:10 to 0:6
[   37.366313] pcieport 0000:10:05.0: can't change power state from D3cold to D0 (config space inaccessible)
[   37.366531] pcieport 0000:10:04.0: can't change power state from D3cold to D0 (config space inaccessible)
[   37.366672] pcieport 0000:10:02.0: can't change power state from D3cold to D0 (config space inaccessible)
[   37.370158] thunderbolt 0000:07:00.0: deactivating PCIe Up path from 0:6 to 1:10
[   37.372598] thunderbolt 0000:07:00.0: 0:b <-> 1:b (DP): deactivating
[   37.373363] thunderbolt 0000:07:00.0: deactivating Video path from 0:11 to 1:11
[   37.373749] thunderbolt 0000:07:00.0: 0:b: adding -11 NFC credits to 11
[   37.373875] thunderbolt 0000:07:00.0: deactivating AUX TX path from 0:11 to 1:11
[   37.374258] thunderbolt 0000:07:00.0: deactivating AUX RX path from 1:11 to 0:11
[   37.374640] thunderbolt 0000:07:00.0: 0: released DP resource for port 11
[   37.374649] thunderbolt 0000:07:00.0: 1:7 <-> 301:a (PCI): deactivating
[   37.374652] thunderbolt 0000:07:00.0: deactivating PCIe Down path from 301:10 to 1:7
[   37.374656] thunderbolt 0000:07:00.0: deactivating PCIe Up path from 1:7 to 301:10
[   37.374660] thunderbolt 0000:07:00.0: 0:c <-> 301:b (DP): deactivating
[   37.375409] thunderbolt 0000:07:00.0: deactivating Video path from 0:12 to 301:11
[   37.375792] thunderbolt 0000:07:00.0: 0:c: adding -12 NFC credits to 12
[   37.375918] thunderbolt 0000:07:00.0: deactivating AUX TX path from 0:12 to 301:11
[   37.376303] thunderbolt 0000:07:00.0: deactivating AUX RX path from 301:11 to 0:12
[   37.376692] thunderbolt 0000:07:00.0: 0: released DP resource for port 12
[   37.376698] thunderbolt 0000:07:00.0: 301:b: DP OUT resource unavailable
[   37.376796] thunderbolt 0-301: device disconnected
[   37.376876] thunderbolt 0-1: device disconnected
[   37.377010] thunderbolt 0000:07:00.0: looking for DP IN <-> DP OUT pairs:
[   37.377075] thunderbolt 0000:07:00.0: 0:b: DP IN available
[   37.377155] thunderbolt 0000:07:00.0: 0:c: DP IN available
[   37.377158] thunderbolt 0000:07:00.0: no suitable DP IN adapter available, not tunneling
[   37.377164] thunderbolt 0000:07:00.0: 0:2: got unplug event for disconnected port, ignoring
[   37.383564] pcieport 0000:0b:03.0: can't change power state from D0 to D3hot (config space inaccessible)
[   37.383583] pcieport 0000:12:03.0: can't change power state from D0 to D3hot (config space inaccessible)
[   37.383608] pcieport 0000:09:00.0: can't change power state from D0 to D3hot (config space inaccessible)
[   37.383620] pcieport 0000:10:00.0: can't change power state from D0 to D3hot (config space inaccessible)
[   37.433658] pcieport 0000:10:01.0: can't change power state from D0 to D3hot (config space inaccessible)
[   37.433665] pcieport 0000:10:01.0: can't change power state from D3cold to D0 (config space inaccessible)
[   37.433875] pcieport 0000:10:00.0: can't change power state from D3cold to D0 (config space inaccessible)
[   37.433881] pci 0000:11:00.0: can't change power state from D3cold to D0 (config space inaccessible)
[   37.433883] pcieport 0000:12:03.0: can't change power state from D3cold to D0 (config space inaccessible)
[   37.436900] pcieport 0000:09:02.0: can't change power state from D3cold to D0 (config space inaccessible)
[   37.543673] pcieport 0000:09:01.0: can't change power state from D0 to D3hot (config space inaccessible)
[   37.544863] pcieport 0000:09:01.0: can't change power state from D3cold to D0 (config space inaccessible)
[   37.546143] pcieport 0000:09:00.0: can't change power state from D3cold to D0 (config space inaccessible)
[   37.547332] pci 0000:0a:00.0: can't change power state from D3cold to D0 (config space inaccessible)
[   37.548537] pcieport 0000:0b:03.0: can't change power state from D3cold to D0 (config space inaccessible)
[   37.550063] pci 0000:0c:00.0: Removing from iommu group 16
[   37.551386] pci 0000:0c:00.1: Removing from iommu group 16
[   37.552649] pci 0000:0c:00.2: Removing from iommu group 16
[   37.553865] pci_bus 0000:0c: busn_res: [bus 0c] is released
[   37.553920] pci 0000:0b:03.0: Removing from iommu group 16
[   37.553930] pci_bus 0000:0b: busn_res: [bus 0b-0c] is released
[   37.554354] pci 0000:0a:00.0: Removing from iommu group 16
[   37.557803] pci_bus 0000:0a: busn_res: [bus 0a-0c] is released
[   37.557805] acpiphp: Slot [1-1] unregistered
[   37.557866] pci 0000:09:00.0: Removing from iommu group 16
[   37.558402] pci 0000:0d:00.0: Removing from iommu group 16
[   37.558475] pci_bus 0000:0d: busn_res: [bus 0d] is released
[   37.559483] pci 0000:09:01.0: Removing from iommu group 16
[   37.559826] pci 0000:0e:00.0: Removing from iommu group 16
[   37.566150] pci_bus 0000:0e: busn_res: [bus 0e] is released
[   37.566153] ieee80211 phy0: brcmf_cfg80211_scan: Connecting: status (3)
[   37.567107] pci 0000:09:02.0: Removing from iommu group 16
[   37.569266] pci 0000:13:00.0: Removing from iommu group 16
[   37.570220] pci 0000:13:00.1: Removing from iommu group 16
[   37.570325] pci 0000:13:00.2: Removing from iommu group 16
[   37.570344] pci_bus 0000:13: busn_res: [bus 13] is released
[   37.570381] pci 0000:12:03.0: Removing from iommu group 16
[   37.570387] pci_bus 0000:12: busn_res: [bus 12-13] is released
[   37.572514] pci 0000:11:00.0: Removing from iommu group 16
[   37.577940] pci_bus 0000:11: busn_res: [bus 11-13] is released
[   37.578838] acpiphp: Slot [1-3] unregistered
[   37.578984] pci 0000:10:00.0: Removing from iommu group 16
[   37.580889] pci 0000:14:00.0: Removing from iommu group 16
[   37.580906] pci_bus 0000:14: busn_res: [bus 14] is released
[   37.580939] pci 0000:10:01.0: Removing from iommu group 16
[   37.581667] pci 0000:15:00.0: Removing from iommu group 16
[   37.581761] pci_bus 0000:15: busn_res: [bus 15] is released
[   37.583135] pci 0000:10:02.0: Removing from iommu group 16
[   37.588567] pci_bus 0000:16: busn_res: [bus 16] is released
[   37.589531] pci 0000:10:04.0: Removing from iommu group 16
[   37.589537] pci_bus 0000:17: busn_res: [bus 17] is released
[   37.590970] pci 0000:10:05.0: Removing from iommu group 16
[   37.591021] pci_bus 0000:10: busn_res: [bus 10-17] is released
[   37.591022] acpiphp: Slot [1-2] unregistered
[   37.591215] acpiphp: Slot [2-1] unregistered
[   37.591406] acpiphp: Slot [3-1] unregistered
[   37.591585] acpiphp: Slot [4-1] unregistered
[   37.594026] pci 0000:0f:00.0: Removing from iommu group 16
[   37.600584] pci_bus 0000:0f: busn_res: [bus 0f-17] is released
[   37.600640] pci 0000:09:04.0: Removing from iommu group 16
[   37.600670] pci_bus 0000:18: busn_res: [bus 18] is released
[   37.600726] pci 0000:09:05.0: Removing from iommu group 16
[   37.600732] pci_bus 0000:09: busn_res: [bus 09-18] is released
[   37.600734] acpiphp: Slot [1] unregistered
[   37.600741] acpiphp: Slot [2] unregistered
[   37.600745] acpiphp: Slot [3] unregistered
[   37.600749] acpiphp: Slot [4] unregistered
[   37.600753] acpiphp: Slot [5] unregistered
[   37.600806] pci 0000:08:00.0: Removing from iommu group 16
[   42.665314] thunderbolt 0000:07:00.0: acking hot plug event on 0:2
[   42.665369] thunderbolt 0000:07:00.0: 0:2: hotplug: scanning
[   42.665374] thunderbolt 0000:07:00.0: 0:2: hotplug: no switch found
[   42.696717] thunderbolt 0000:07:00.0: acking hot plug event on 0:1
[   42.696774] thunderbolt 0000:07:00.0: 0:1: hotplug: scanning
[   42.696869] thunderbolt 0000:07:00.0: 0:1: is connected, link is up (state: 2)
[   42.697116] thunderbolt 0000:07:00.0: current switch config:
[   42.697120] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[   42.697135] thunderbolt 0000:07:00.0:   Max Port Number: 13
[   42.697137] thunderbolt 0000:07:00.0:   Config:
[   42.697139] thunderbolt 0000:07:00.0:    Upstream Port Number: 0 Depth: 0 Route String: 0x0 Enabled: 0, PlugEventsDelay: 10ms
[   42.697141] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[   42.701658] thunderbolt 0000:07:00.0: initializing Switch at 0x1 (depth: 1, up port: 1)
[   42.719064] thunderbolt 0000:07:00.0: 1: reading drom (length: 0x97)
[   43.212720] thunderbolt 0000:07:00.0: 1: DROM version: 1
[   43.214640] thunderbolt 0000:07:00.0: 1: uid: 0x1000100189170
[   43.217590] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   43.217596] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   43.217598] thunderbolt 0000:07:00.0:   Max counters: 32
[   43.217599] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   43.217600] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   43.220495] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   43.220498] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   43.220499] thunderbolt 0000:07:00.0:   Max counters: 32
[   43.220500] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   43.220501] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   43.223429] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   43.223431] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   43.223432] thunderbolt 0000:07:00.0:   Max counters: 32
[   43.223433] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   43.223434] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   43.239948] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   43.239956] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   43.239957] thunderbolt 0000:07:00.0:   Max counters: 32
[   43.239959] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   43.239960] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   43.239962] thunderbolt 0000:07:00.0: 1:5: disabled by eeprom
[   43.239963] thunderbolt 0000:07:00.0: 1:6: disabled by eeprom
[   43.240811] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[   43.240814] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[   43.240815] thunderbolt 0000:07:00.0:   Max counters: 1
[   43.240816] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   43.240817] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   43.241717] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[   43.241718] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[   43.241720] thunderbolt 0000:07:00.0:   Max counters: 1
[   43.241720] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   43.241721] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   43.241722] thunderbolt 0000:07:00.0: 1:9: disabled by eeprom
[   43.242612] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[   43.242614] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[   43.242615] thunderbolt 0000:07:00.0:   Max counters: 1
[   43.242616] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   43.242617] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   43.243756] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[   43.243759] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[   43.243760] thunderbolt 0000:07:00.0:   Max counters: 2
[   43.243761] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   43.243762] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   43.243763] thunderbolt 0000:07:00.0: 1:c: disabled by eeprom
[   43.243764] thunderbolt 0000:07:00.0: 1:d: disabled by eeprom
[   43.262060] thunderbolt 0000:07:00.0: 1: TMU: current mode: bi-directional, HiFi
[   43.262091] thunderbolt 0-1: new device found, vendor=0x1 device=0x8002
[   43.262093] thunderbolt 0-1: Apple, Inc. Thunderbolt Display
[   43.263988] thunderbolt 0000:07:00.0: 1:3: is connected, link is up (state: 2)
[   43.264245] thunderbolt 0000:07:00.0: current switch config:
[   43.264251] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[   43.264254] thunderbolt 0000:07:00.0:   Max Port Number: 13
[   43.264255] thunderbolt 0000:07:00.0:   Config:
[   43.264257] thunderbolt 0000:07:00.0:    Upstream Port Number: 0 Depth: 0 Route String: 0x0 Enabled: 0, PlugEventsDelay: 10ms
[   43.264261] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[   43.268853] thunderbolt 0000:07:00.0: initializing Switch at 0x301 (depth: 2, up port: 3)
[   43.286258] thunderbolt 0000:07:00.0: 301: reading drom (length: 0x97)
[   43.299438] thunderbolt 0000:07:00.0: acking hot plug event on 1:b
[   43.299442] thunderbolt 0000:07:00.0: acking hot plug event on 1:b
[   43.500935] thunderbolt 0000:07:00.0: acking hot plug event on 301:b
[   43.500939] thunderbolt 0000:07:00.0: acking hot plug event on 301:b
[   43.708879] ieee80211 phy0: brcmf_inetaddr_changed: fail to get arp ip table err:-52
[   43.796859] thunderbolt 0000:07:00.0: 301: DROM version: 1
[   43.797871] thunderbolt 0000:07:00.0: 301: uid: 0x100010102a740
[   43.800816] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   43.800819] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   43.800820] thunderbolt 0000:07:00.0:   Max counters: 32
[   43.800821] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   43.800822] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   43.803761] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   43.803766] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   43.803768] thunderbolt 0000:07:00.0:   Max counters: 32
[   43.803769] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   43.803770] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   43.806703] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   43.806709] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   43.806710] thunderbolt 0000:07:00.0:   Max counters: 32
[   43.806712] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   43.806714] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   43.809649] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   43.809652] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   43.809653] thunderbolt 0000:07:00.0:   Max counters: 32
[   43.809655] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   43.809656] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   43.809657] thunderbolt 0000:07:00.0: 301:5: disabled by eeprom
[   43.809659] thunderbolt 0000:07:00.0: 301:6: disabled by eeprom
[   43.810546] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[   43.810550] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[   43.810554] thunderbolt 0000:07:00.0:   Max counters: 1
[   43.810556] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   43.810557] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   43.811440] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[   43.811442] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[   43.811444] thunderbolt 0000:07:00.0:   Max counters: 1
[   43.811446] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   43.811449] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   43.811450] thunderbolt 0000:07:00.0: 301:9: disabled by eeprom
[   43.812335] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[   43.812338] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[   43.812339] thunderbolt 0000:07:00.0:   Max counters: 1
[   43.812341] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   43.812342] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   43.813487] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[   43.813490] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[   43.813491] thunderbolt 0000:07:00.0:   Max counters: 2
[   43.813492] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   43.813497] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   43.813498] thunderbolt 0000:07:00.0: 301:c: disabled by eeprom
[   43.813500] thunderbolt 0000:07:00.0: 301:d: disabled by eeprom
[   43.831667] thunderbolt 0000:07:00.0: 301: TMU: current mode: bi-directional, HiFi
[   43.831714] thunderbolt 0-301: new device found, vendor=0x1 device=0x8002
[   43.831716] thunderbolt 0-301: Apple, Inc. Thunderbolt Display
[   43.831813] thunderbolt 0000:07:00.0: 301:1: is unplugged (state: 7)
[   43.832065] thunderbolt 0000:07:00.0: 301:b: DP adapter HPD set, queuing hotplug
[   43.832321] thunderbolt 0000:07:00.0: 1:b: DP adapter HPD set, queuing hotplug
[   43.832452] thunderbolt 0000:07:00.0: 0:6 <-> 1:a (PCI): activating
[   43.832455] thunderbolt 0000:07:00.0: activating PCIe Down path from 0:6 to 1:10
[   43.832577] thunderbolt 0000:07:00.0: 1:1: Writing hop 1
[   43.832578] thunderbolt 0000:07:00.0: 1:1:  In HopID: 8 => Out port: 10 Out HopID: 8
[   43.832579] thunderbolt 0000:07:00.0: 1:1:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   43.832581] thunderbolt 0000:07:00.0: 1:1:    Counter enabled: 0 Counter index: 2047
[   43.832582] thunderbolt 0000:07:00.0: 1:1:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   43.832583] thunderbolt 0000:07:00.0: 1:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   43.833649] thunderbolt 0000:07:00.0: 0:6: Writing hop 0
[   43.834490] thunderbolt 0000:07:00.0: 0:6:  In HopID: 8 => Out port: 1 Out HopID: 8
[   43.834491] thunderbolt 0000:07:00.0: 0:6:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   43.834492] thunderbolt 0000:07:00.0: 0:6:    Counter enabled: 0 Counter index: 2047
[   43.834493] thunderbolt 0000:07:00.0: 0:6:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   43.834495] thunderbolt 0000:07:00.0: 0:6:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   43.834508] thunderbolt 0000:07:00.0: path activation complete
[   43.834509] thunderbolt 0000:07:00.0: activating PCIe Up path from 1:10 to 0:6
[   43.834647] thunderbolt 0000:07:00.0: 0:1: Writing hop 1
[   43.834650] thunderbolt 0000:07:00.0: 0:1:  In HopID: 8 => Out port: 6 Out HopID: 8
[   43.834652] thunderbolt 0000:07:00.0: 0:1:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   43.834654] thunderbolt 0000:07:00.0: 0:1:    Counter enabled: 0 Counter index: 2047
[   43.834655] thunderbolt 0000:07:00.0: 0:1:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   43.834657] thunderbolt 0000:07:00.0: 0:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   43.834897] thunderbolt 0000:07:00.0: 1:a: Writing hop 0
[   43.834899] thunderbolt 0000:07:00.0: 1:a:  In HopID: 8 => Out port: 1 Out HopID: 8
[   43.834900] thunderbolt 0000:07:00.0: 1:a:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   43.834901] thunderbolt 0000:07:00.0: 1:a:    Counter enabled: 0 Counter index: 2047
[   43.834903] thunderbolt 0000:07:00.0: 1:a:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   43.834904] thunderbolt 0000:07:00.0: 1:a:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   43.835024] thunderbolt 0000:07:00.0: path activation complete
[   43.835050] pcieport 0000:06:03.0: pciehp: Slot(3-2): Card present
[   43.835407] thunderbolt 0000:07:00.0: 1:b: DP OUT resource available
[   43.835410] thunderbolt 0000:07:00.0: looking for DP IN <-> DP OUT pairs:
[   43.835532] thunderbolt 0000:07:00.0: 0:b: DP IN available
[   43.835661] thunderbolt 0000:07:00.0: 1:b: DP OUT available
[   43.835663] thunderbolt 0000:07:00.0: 0: allocated DP resource for port 11
[   43.835666] thunderbolt 0000:07:00.0: 1:b: calculating available bandwidth
[   43.835791] thunderbolt 0000:07:00.0: 0:1: link total bandwidth 9000 Mb/s
[   43.835793] thunderbolt 0000:07:00.0: 1:1: link total bandwidth 9000 Mb/s
[   43.835795] thunderbolt 0000:07:00.0: available bandwidth for new DP tunnel 9000/9000 Mb/s
[   43.835799] thunderbolt 0000:07:00.0: Tunnel link 0
[   43.835803] thunderbolt 0000:07:00.0: 0:b <-> 1:b (DP): activating
[   43.835806] thunderbolt 0000:07:00.0: activating Video path from 0:11 to 1:11
[   43.835808] thunderbolt 0000:07:00.0: 1:1: adding 12 NFC credits to 0
[   43.837224] thunderbolt 0000:07:00.0: 0:b: adding 12 NFC credits to 0
[   43.837368] thunderbolt 0000:07:00.0: 1:1: Writing hop 1
[   43.837371] thunderbolt 0000:07:00.0: 1:1:  In HopID: 9 => Out port: 11 Out HopID: 9
[   43.837374] thunderbolt 0000:07:00.0: 1:1:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[   43.837377] thunderbolt 0000:07:00.0: 1:1:    Counter enabled: 0 Counter index: 2047
[   43.837379] thunderbolt 0000:07:00.0: 1:1:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[   43.837382] thunderbolt 0000:07:00.0: 1:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   43.837622] thunderbolt 0000:07:00.0: 0:b: Writing hop 0
[   43.837624] thunderbolt 0000:07:00.0: 0:b:  In HopID: 9 => Out port: 1 Out HopID: 9
[   43.837627] thunderbolt 0000:07:00.0: 0:b:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[   43.837629] thunderbolt 0000:07:00.0: 0:b:    Counter enabled: 0 Counter index: 2047
[   43.837632] thunderbolt 0000:07:00.0: 0:b:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[   43.837634] thunderbolt 0000:07:00.0: 0:b:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   43.837751] thunderbolt 0000:07:00.0: path activation complete
[   43.837753] thunderbolt 0000:07:00.0: activating AUX TX path from 0:11 to 1:11
[   43.837879] thunderbolt 0000:07:00.0: 1:1: Writing hop 1
[   43.837881] thunderbolt 0000:07:00.0: 1:1:  In HopID: 10 => Out port: 11 Out HopID: 8
[   43.837883] thunderbolt 0000:07:00.0: 1:1:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   43.837886] thunderbolt 0000:07:00.0: 1:1:    Counter enabled: 0 Counter index: 2047
[   43.837888] thunderbolt 0000:07:00.0: 1:1:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   43.837890] thunderbolt 0000:07:00.0: 1:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   43.838137] thunderbolt 0000:07:00.0: 0:b: Writing hop 0
[   43.838139] thunderbolt 0000:07:00.0: 0:b:  In HopID: 8 => Out port: 1 Out HopID: 10
[   43.838141] thunderbolt 0000:07:00.0: 0:b:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   43.838144] thunderbolt 0000:07:00.0: 0:b:    Counter enabled: 0 Counter index: 2047
[   43.838146] thunderbolt 0000:07:00.0: 0:b:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   43.838148] thunderbolt 0000:07:00.0: 0:b:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   43.838265] thunderbolt 0000:07:00.0: path activation complete
[   43.838266] thunderbolt 0000:07:00.0: activating AUX RX path from 1:11 to 0:11
[   43.838394] thunderbolt 0000:07:00.0: 0:1: Writing hop 1
[   43.838396] thunderbolt 0000:07:00.0: 0:1:  In HopID: 9 => Out port: 11 Out HopID: 8
[   43.838398] thunderbolt 0000:07:00.0: 0:1:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   43.838401] thunderbolt 0000:07:00.0: 0:1:    Counter enabled: 0 Counter index: 2047
[   43.838403] thunderbolt 0000:07:00.0: 0:1:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   43.838406] thunderbolt 0000:07:00.0: 0:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   43.840963] thunderbolt 0000:07:00.0: 1:b: Writing hop 0
[   43.840965] thunderbolt 0000:07:00.0: 1:b:  In HopID: 8 => Out port: 1 Out HopID: 9
[   43.840967] thunderbolt 0000:07:00.0: 1:b:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   43.840970] thunderbolt 0000:07:00.0: 1:b:    Counter enabled: 0 Counter index: 2047
[   43.840972] thunderbolt 0000:07:00.0: 1:b:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   43.840974] thunderbolt 0000:07:00.0: 1:b:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   43.841091] thunderbolt 0000:07:00.0: path activation complete
[   43.842252] thunderbolt 0000:07:00.0: 1:7 <-> 301:a (PCI): activating
[   43.842255] thunderbolt 0000:07:00.0: activating PCIe Down path from 1:7 to 301:10
[   43.842370] thunderbolt 0000:07:00.0: 301:3: Writing hop 1
[   43.842372] thunderbolt 0000:07:00.0: 301:3:  In HopID: 8 => Out port: 10 Out HopID: 8
[   43.842374] thunderbolt 0000:07:00.0: 301:3:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   43.842376] thunderbolt 0000:07:00.0: 301:3:    Counter enabled: 0 Counter index: 2047
[   43.842378] thunderbolt 0000:07:00.0: 301:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   43.842380] thunderbolt 0000:07:00.0: 301:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   43.842629] thunderbolt 0000:07:00.0: 1:7: Writing hop 0
[   43.842631] thunderbolt 0000:07:00.0: 1:7:  In HopID: 8 => Out port: 3 Out HopID: 8
[   43.842632] thunderbolt 0000:07:00.0: 1:7:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   43.842634] thunderbolt 0000:07:00.0: 1:7:    Counter enabled: 0 Counter index: 2047
[   43.842636] thunderbolt 0000:07:00.0: 1:7:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   43.842638] thunderbolt 0000:07:00.0: 1:7:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   43.842756] thunderbolt 0000:07:00.0: path activation complete
[   43.842757] thunderbolt 0000:07:00.0: activating PCIe Up path from 301:10 to 1:7
[   43.842885] thunderbolt 0000:07:00.0: 1:3: Writing hop 1
[   43.842887] thunderbolt 0000:07:00.0: 1:3:  In HopID: 8 => Out port: 7 Out HopID: 8
[   43.842889] thunderbolt 0000:07:00.0: 1:3:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   43.842891] thunderbolt 0000:07:00.0: 1:3:    Counter enabled: 0 Counter index: 2047
[   43.842893] thunderbolt 0000:07:00.0: 1:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   43.842895] thunderbolt 0000:07:00.0: 1:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   43.843140] thunderbolt 0000:07:00.0: 301:a: Writing hop 0
[   43.843142] thunderbolt 0000:07:00.0: 301:a:  In HopID: 8 => Out port: 3 Out HopID: 8
[   43.843144] thunderbolt 0000:07:00.0: 301:a:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   43.843146] thunderbolt 0000:07:00.0: 301:a:    Counter enabled: 0 Counter index: 2047
[   43.843148] thunderbolt 0000:07:00.0: 301:a:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   43.843150] thunderbolt 0000:07:00.0: 301:a:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   43.843267] thunderbolt 0000:07:00.0: path activation complete
[   43.843783] thunderbolt 0000:07:00.0: 301:b: DP OUT resource available
[   43.843787] thunderbolt 0000:07:00.0: looking for DP IN <-> DP OUT pairs:
[   43.843906] thunderbolt 0000:07:00.0: 0:b: in use
[   43.844038] thunderbolt 0000:07:00.0: 0:c: DP IN available
[   43.844163] thunderbolt 0000:07:00.0: 1:b: in use
[   43.844291] thunderbolt 0000:07:00.0: 301:b: DP OUT available
[   43.844293] thunderbolt 0000:07:00.0: 0: allocated DP resource for port 12
[   43.844296] thunderbolt 0000:07:00.0: 301:b: calculating available bandwidth
[   43.844423] thunderbolt 0000:07:00.0: 0:1: link total bandwidth 9000 Mb/s
[   43.844548] thunderbolt 0000:07:00.0: 0:b <-> 1:b (DP): consumed bandwidth 0/1296 Mb/s
[   43.844552] thunderbolt 0000:07:00.0: 1:1: link total bandwidth 9000 Mb/s
[   43.844676] thunderbolt 0000:07:00.0: 0:b <-> 1:b (DP): consumed bandwidth 0/1296 Mb/s
[   43.844803] thunderbolt 0000:07:00.0: 1:3: link total bandwidth 9000 Mb/s
[   43.844806] thunderbolt 0000:07:00.0: 301:3: link total bandwidth 9000 Mb/s
[   43.844808] thunderbolt 0000:07:00.0: available bandwidth for new DP tunnel 9000/7704 Mb/s
[   43.844812] thunderbolt 0000:07:00.0: Tunnel link 0
[   43.844817] thunderbolt 0000:07:00.0: 0:c <-> 301:b (DP): activating
[   43.844819] thunderbolt 0000:07:00.0: activating Video path from 0:12 to 301:11
[   43.844822] thunderbolt 0000:07:00.0: 301:3: adding 12 NFC credits to 0
[   43.844930] thunderbolt 0000:07:00.0: 1:1: adding 12 NFC credits to 12
[   43.845057] thunderbolt 0000:07:00.0: 0:c: adding 12 NFC credits to 0
[   43.845314] thunderbolt 0000:07:00.0: 301:3: Writing hop 2
[   43.845316] thunderbolt 0000:07:00.0: 301:3:  In HopID: 9 => Out port: 11 Out HopID: 9
[   43.845318] thunderbolt 0000:07:00.0: 301:3:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[   43.845321] thunderbolt 0000:07:00.0: 301:3:    Counter enabled: 0 Counter index: 2047
[   43.845325] thunderbolt 0000:07:00.0: 301:3:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[   43.845327] thunderbolt 0000:07:00.0: 301:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   43.845571] thunderbolt 0000:07:00.0: 1:1: Writing hop 1
[   43.845573] thunderbolt 0000:07:00.0: 1:1:  In HopID: 11 => Out port: 3 Out HopID: 9
[   43.845575] thunderbolt 0000:07:00.0: 1:1:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[   43.845577] thunderbolt 0000:07:00.0: 1:1:    Counter enabled: 0 Counter index: 2047
[   43.845581] thunderbolt 0000:07:00.0: 1:1:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[   43.845583] thunderbolt 0000:07:00.0: 1:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   43.845824] thunderbolt 0000:07:00.0: 0:c: Writing hop 0
[   43.845826] thunderbolt 0000:07:00.0: 0:c:  In HopID: 9 => Out port: 1 Out HopID: 11
[   43.845831] thunderbolt 0000:07:00.0: 0:c:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[   43.845832] thunderbolt 0000:07:00.0: 0:c:    Counter enabled: 0 Counter index: 2047
[   43.845834] thunderbolt 0000:07:00.0: 0:c:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[   43.845836] thunderbolt 0000:07:00.0: 0:c:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   43.845952] thunderbolt 0000:07:00.0: path activation complete
[   43.845953] thunderbolt 0000:07:00.0: activating AUX TX path from 0:12 to 301:11
[   43.848900] thunderbolt 0000:07:00.0: 301:3: Writing hop 2
[   43.848902] thunderbolt 0000:07:00.0: 301:3:  In HopID: 10 => Out port: 11 Out HopID: 8
[   43.848905] thunderbolt 0000:07:00.0: 301:3:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   43.848907] thunderbolt 0000:07:00.0: 301:3:    Counter enabled: 0 Counter index: 2047
[   43.848908] thunderbolt 0000:07:00.0: 301:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   43.848910] thunderbolt 0000:07:00.0: 301:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   43.849157] thunderbolt 0000:07:00.0: 1:1: Writing hop 1
[   43.849159] thunderbolt 0000:07:00.0: 1:1:  In HopID: 12 => Out port: 3 Out HopID: 10
[   43.849161] thunderbolt 0000:07:00.0: 1:1:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   43.849164] thunderbolt 0000:07:00.0: 1:1:    Counter enabled: 0 Counter index: 2047
[   43.849166] thunderbolt 0000:07:00.0: 1:1:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   43.849168] thunderbolt 0000:07:00.0: 1:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   43.849413] thunderbolt 0000:07:00.0: 0:c: Writing hop 0
[   43.849414] thunderbolt 0000:07:00.0: 0:c:  In HopID: 8 => Out port: 1 Out HopID: 12
[   43.849416] thunderbolt 0000:07:00.0: 0:c:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   43.849418] thunderbolt 0000:07:00.0: 0:c:    Counter enabled: 0 Counter index: 2047
[   43.849419] thunderbolt 0000:07:00.0: 0:c:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   43.849421] thunderbolt 0000:07:00.0: 0:c:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   43.849542] thunderbolt 0000:07:00.0: path activation complete
[   43.849544] thunderbolt 0000:07:00.0: activating AUX RX path from 301:11 to 0:12
[   43.849671] thunderbolt 0000:07:00.0: 0:1: Writing hop 2
[   43.849673] thunderbolt 0000:07:00.0: 0:1:  In HopID: 10 => Out port: 12 Out HopID: 8
[   43.849675] thunderbolt 0000:07:00.0: 0:1:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   43.849677] thunderbolt 0000:07:00.0: 0:1:    Counter enabled: 0 Counter index: 2047
[   43.849679] thunderbolt 0000:07:00.0: 0:1:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   43.849681] thunderbolt 0000:07:00.0: 0:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   43.849924] thunderbolt 0000:07:00.0: 1:3: Writing hop 1
[   43.849926] thunderbolt 0000:07:00.0: 1:3:  In HopID: 9 => Out port: 1 Out HopID: 10
[   43.849928] thunderbolt 0000:07:00.0: 1:3:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   43.849930] thunderbolt 0000:07:00.0: 1:3:    Counter enabled: 0 Counter index: 2047
[   43.849931] thunderbolt 0000:07:00.0: 1:3:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   43.849936] thunderbolt 0000:07:00.0: 1:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   43.850183] thunderbolt 0000:07:00.0: 301:b: Writing hop 0
[   43.850186] thunderbolt 0000:07:00.0: 301:b:  In HopID: 8 => Out port: 3 Out HopID: 9
[   43.850188] thunderbolt 0000:07:00.0: 301:b:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   43.850190] thunderbolt 0000:07:00.0: 301:b:    Counter enabled: 0 Counter index: 2047
[   43.850195] thunderbolt 0000:07:00.0: 301:b:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   43.850197] thunderbolt 0000:07:00.0: 301:b:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   43.850309] thunderbolt 0000:07:00.0: path activation complete
[   44.023607] pci 0000:08:00.0: [8086:1513] type 01 class 0x060400
[   44.023699] pci 0000:08:00.0: enabling Extended Tags
[   44.023870] pci 0000:08:00.0: supports D1 D2
[   44.023871] pci 0000:08:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   44.024059] pci 0000:08:00.0: Adding to iommu group 16
[   44.029144] pcieport 0000:06:03.0: ASPM: current common clock configuration is inconsistent, reconfiguring
[   44.053577] pci 0000:08:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   44.053755] acpiphp: Slot [1] registered
[   44.053785] acpiphp: Slot [2] registered
[   44.053813] acpiphp: Slot [3] registered
[   44.053846] acpiphp: Slot [4] registered
[   44.053880] acpiphp: Slot [5] registered
[   44.053946] pci 0000:09:00.0: [8086:1513] type 01 class 0x060400
[   44.054045] pci 0000:09:00.0: enabling Extended Tags
[   44.054223] pci 0000:09:00.0: supports D1 D2
[   44.054225] pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   44.054928] pci 0000:09:00.0: Adding to iommu group 16
[   44.068759] pci 0000:09:01.0: [8086:1513] type 01 class 0x060400
[   44.068864] pci 0000:09:01.0: enabling Extended Tags
[   44.069047] pci 0000:09:01.0: supports D1 D2
[   44.069049] pci 0000:09:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[   44.069325] pci 0000:09:01.0: Adding to iommu group 16
[   44.069412] pci 0000:09:02.0: [8086:1513] type 01 class 0x060400
[   44.069508] pci 0000:09:02.0: enabling Extended Tags
[   44.069671] pci 0000:09:02.0: supports D1 D2
[   44.069672] pci 0000:09:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[   44.069814] pci 0000:09:02.0: Adding to iommu group 16
[   44.069890] pci 0000:09:04.0: [8086:1513] type 01 class 0x060400
[   44.069988] pci 0000:09:04.0: enabling Extended Tags
[   44.070166] pci 0000:09:04.0: supports D1 D2
[   44.070168] pci 0000:09:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[   44.070424] pci 0000:09:04.0: Adding to iommu group 16
[   44.087582] pci 0000:09:05.0: [8086:1513] type 01 class 0x060400
[   44.087682] pci 0000:09:05.0: enabling Extended Tags
[   44.087869] pci 0000:09:05.0: supports D1 D2
[   44.087870] pci 0000:09:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[   44.088201] pci 0000:09:05.0: Adding to iommu group 16
[   44.088295] pci 0000:08:00.0: PCI bridge to [bus 09-38]
[   44.088307] pci 0000:08:00.0:   bridge window [io  0x0000-0x0fff]
[   44.088313] pci 0000:08:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   44.088324] pci 0000:08:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   44.088328] pci 0000:09:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   44.088342] pci 0000:09:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   44.088355] pci 0000:09:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   44.088368] pci 0000:09:04.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   44.088382] pci 0000:09:05.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   44.088838] acpiphp: Slot [1-1] registered
[   44.088902] pci 0000:0a:00.0: [12d8:400c] type 01 class 0x060400
[   44.089264] pci 0000:0a:00.0: supports D1 D2
[   44.089267] pci 0000:0a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   44.089496] pci 0000:0a:00.0: Adding to iommu group 16
[   44.113568] pci 0000:09:00.0: PCI bridge to [bus 0a-38]
[   44.113582] pci 0000:09:00.0:   bridge window [io  0x0000-0x0fff]
[   44.113588] pci 0000:09:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   44.113599] pci 0000:09:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   44.113604] pci 0000:0a:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   44.113832] pci 0000:0b:03.0: [12d8:400c] type 01 class 0x060400
[   44.114152] pci 0000:0b:03.0: supports D1 D2
[   44.120418] pci 0000:0b:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[   44.121531] pci 0000:0b:03.0: Adding to iommu group 16
[   44.121658] pci 0000:0a:00.0: PCI bridge to [bus 0b-38]
[   44.121674] pci 0000:0a:00.0:   bridge window [io  0x0000-0x0fff]
[   44.121683] pci 0000:0a:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   44.121699] pci 0000:0a:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   44.121705] pci 0000:0b:03.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   44.122022] pci 0000:0c:00.0: [12d8:400e] type 00 class 0x0c0310
[   44.122065] pci 0000:0c:00.0: reg 0x10: [mem 0x00000000-0x00000fff]
[   44.122335] pci 0000:0c:00.0: supports D1 D2
[   44.122341] pci 0000:0c:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   44.122647] pci 0000:0c:00.0: Adding to iommu group 16
[   44.122728] pci 0000:0c:00.1: [12d8:400e] type 00 class 0x0c0310
[   44.122771] pci 0000:0c:00.1: reg 0x10: [mem 0x00000000-0x00000fff]
[   44.135261] pci 0000:0c:00.1: supports D1 D2
[   44.135263] pci 0000:0c:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[   44.135351] pci 0000:0c:00.1: Adding to iommu group 16
[   44.135415] pci 0000:0c:00.2: [12d8:400f] type 00 class 0x0c0320
[   44.135458] pci 0000:0c:00.2: reg 0x10: [mem 0x00000000-0x000000ff]
[   44.135729] pci 0000:0c:00.2: supports D1 D2
[   44.135731] pci 0000:0c:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[   44.136060] pci 0000:0c:00.2: Adding to iommu group 16
[   44.136255] pci 0000:0b:03.0: PCI bridge to [bus 0c-38]
[   44.145389] pci 0000:0b:03.0:   bridge window [io  0x0000-0x0fff]
[   44.146562] pci 0000:0b:03.0:   bridge window [mem 0x00000000-0x000fffff]
[   44.146578] pci 0000:0b:03.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   44.148624] pci_bus 0000:0c: busn_res: [bus 0c-38] end is updated to 0c
[   44.148637] pci_bus 0000:0b: busn_res: [bus 0b-38] end is updated to 0c
[   44.148647] pci_bus 0000:0a: busn_res: [bus 0a-38] end is updated to 0c
[   44.148819] pci 0000:0d:00.0: [14e4:16b0] type 00 class 0x020000
[   44.148879] pci 0000:0d:00.0: reg 0x10: [mem 0x00000000-0x0000ffff 64bit pref]
[   44.148915] pci 0000:0d:00.0: reg 0x18: [mem 0x00000000-0x0000ffff 64bit pref]
[   44.149236] pci 0000:0d:00.0: PME# supported from D0 D3hot D3cold
[   44.149427] pci 0000:0d:00.0: Adding to iommu group 16
[   44.173589] pci 0000:09:01.0: PCI bridge to [bus 0d-38]
[   44.173605] pci 0000:09:01.0:   bridge window [io  0x0000-0x0fff]
[   44.173612] pci 0000:09:01.0:   bridge window [mem 0x00000000-0x000fffff]
[   44.173624] pci 0000:09:01.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   44.173627] pci_bus 0000:0d: busn_res: [bus 0d-38] end is updated to 0d
[   44.173796] pci 0000:0e:00.0: [11c1:5901] type 00 class 0x0c0010
[   44.173856] pci 0000:0e:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[   44.174176] pci 0000:0e:00.0: supports D1 D2
[   44.181267] pci 0000:0e:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   44.181428] pci 0000:0e:00.0: Adding to iommu group 16
[   44.213584] pci 0000:09:02.0: PCI bridge to [bus 0e-38]
[   44.213598] pci 0000:09:02.0:   bridge window [io  0x0000-0x0fff]
[   44.213604] pci 0000:09:02.0:   bridge window [mem 0x00000000-0x000fffff]
[   44.213616] pci 0000:09:02.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   44.213617] pci_bus 0000:0e: busn_res: [bus 0e-38] end is updated to 0e
[   44.213848] pci 0000:0f:00.0: [8086:1513] type 01 class 0x060400
[   44.213997] pci 0000:0f:00.0: enabling Extended Tags
[   44.214257] pci 0000:0f:00.0: supports D1 D2
[   44.221278] pci 0000:0f:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   44.223528] pci 0000:0f:00.0: Adding to iommu group 16
[   44.253577] pci 0000:09:04.0: PCI bridge to [bus 0f-38]
[   44.253591] pci 0000:09:04.0:   bridge window [io  0x0000-0x0fff]
[   44.253597] pci 0000:09:04.0:   bridge window [mem 0x00000000-0x000fffff]
[   44.253609] pci 0000:09:04.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   44.253614] pci 0000:0f:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   44.256808] acpiphp: Slot [1-2] registered
[   44.256842] acpiphp: Slot [2-1] registered
[   44.256872] acpiphp: Slot [3-1] registered
[   44.256903] acpiphp: Slot [4-1] registered
[   44.256993] pci 0000:10:00.0: [8086:1513] type 01 class 0x060400
[   44.269966] pci 0000:10:00.0: enabling Extended Tags
[   44.270245] pci 0000:10:00.0: supports D1 D2
[   44.270246] pci 0000:10:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   44.287039] pci 0000:10:00.0: Adding to iommu group 16
[   44.303322] pci 0000:10:01.0: [8086:1513] type 01 class 0x060400
[   44.303485] pci 0000:10:01.0: enabling Extended Tags
[   44.306916] pci 0000:10:01.0: supports D1 D2
[   44.306918] pci 0000:10:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[   44.307097] pci 0000:10:01.0: Adding to iommu group 16
[   44.319997] pci 0000:10:02.0: [8086:1513] type 01 class 0x060400
[   44.320159] pci 0000:10:02.0: enabling Extended Tags
[   44.323428] pci 0000:10:02.0: supports D1 D2
[   44.326632] pci 0000:10:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[   44.336766] pci 0000:10:02.0: Adding to iommu group 16
[   44.340107] pci 0000:10:04.0: [8086:1513] type 01 class 0x060400
[   44.340261] pci 0000:10:04.0: enabling Extended Tags
[   44.353368] pci 0000:10:04.0: supports D1 D2
[   44.353370] pci 0000:10:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[   44.353708] pci 0000:10:04.0: Adding to iommu group 16
[   44.356786] pci 0000:10:05.0: [8086:1513] type 01 class 0x060400
[   44.370098] pci 0000:10:05.0: enabling Extended Tags
[   44.370373] pci 0000:10:05.0: supports D1 D2
[   44.370374] pci 0000:10:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[   44.373645] pci 0000:10:05.0: Adding to iommu group 16
[   44.386756] pci 0000:0f:00.0: PCI bridge to [bus 10-38]
[   44.386777] pci 0000:0f:00.0:   bridge window [io  0x0000-0x0fff]
[   44.386788] pci 0000:0f:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   44.386806] pci 0000:0f:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   44.386814] pci 0000:10:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   44.386839] pci 0000:10:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   44.386862] pci 0000:10:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   44.386885] pci 0000:10:04.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   44.386909] pci 0000:10:05.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   44.390075] acpiphp: Slot [1-3] registered
[   44.390165] pci 0000:11:00.0: [12d8:400c] type 01 class 0x060400
[   44.420049] pci 0000:11:00.0: supports D1 D2
[   44.420051] pci 0000:11:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   44.420903] pci 0000:11:00.0: Adding to iommu group 16
[   44.423837] pci 0000:10:00.0: PCI bridge to [bus 11-38]
[   44.440093] pci 0000:10:00.0:   bridge window [io  0x0000-0x0fff]
[   44.440104] pci 0000:10:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   44.440122] pci 0000:10:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   44.440129] pci 0000:11:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   44.440448] pci 0000:12:03.0: [12d8:400c] type 01 class 0x060400
[   44.453723] pci 0000:12:03.0: supports D1 D2
[   44.453725] pci 0000:12:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[   44.456867] pci 0000:12:03.0: Adding to iommu group 16
[   44.457032] pci 0000:11:00.0: PCI bridge to [bus 12-38]
[   44.457055] pci 0000:11:00.0:   bridge window [io  0x0000-0x0fff]
[   44.457067] pci 0000:11:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   44.457089] pci 0000:11:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   44.457096] pci 0000:12:03.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   44.470204] pci 0000:13:00.0: [12d8:400e] type 00 class 0x0c0310
[   44.470262] pci 0000:13:00.0: reg 0x10: [mem 0x00000000-0x00000fff]
[   44.473615] pci 0000:13:00.0: supports D1 D2
[   44.477141] pci 0000:13:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   44.486898] pci 0000:13:00.0: Adding to iommu group 16
[   44.486993] pci 0000:13:00.1: [12d8:400e] type 00 class 0x0c0310
[   44.487052] pci 0000:13:00.1: reg 0x10: [mem 0x00000000-0x00000fff]
[   44.490418] pci 0000:13:00.1: supports D1 D2
[   44.492629] pci 0000:13:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[   44.503507] pci 0000:13:00.1: Adding to iommu group 16
[   44.506880] pci 0000:13:00.2: [12d8:400f] type 00 class 0x0c0320
[   44.506937] pci 0000:13:00.2: reg 0x10: [mem 0x00000000-0x000000ff]
[   44.523539] pci 0000:13:00.2: supports D1 D2
[   44.523541] pci 0000:13:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[   44.523663] pci 0000:13:00.2: Adding to iommu group 16
[   44.523931] pci 0000:12:03.0: PCI bridge to [bus 13-38]
[   44.536763] pci 0000:12:03.0:   bridge window [io  0x0000-0x0fff]
[   44.553436] pci 0000:12:03.0:   bridge window [mem 0x00000000-0x000fffff]
[   44.553461] pci 0000:12:03.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   44.553463] pci_bus 0000:13: busn_res: [bus 13-38] end is updated to 13
[   44.553478] pci_bus 0000:12: busn_res: [bus 12-38] end is updated to 13
[   44.553491] pci_bus 0000:11: busn_res: [bus 11-38] end is updated to 13
[   44.553719] pci 0000:14:00.0: [14e4:16b0] type 00 class 0x020000
[   44.553802] pci 0000:14:00.0: reg 0x10: [mem 0x00000000-0x0000ffff 64bit pref]
[   44.553854] pci 0000:14:00.0: reg 0x18: [mem 0x00000000-0x0000ffff 64bit pref]
[   44.557259] pci 0000:14:00.0: PME# supported from D0 D3hot D3cold
[   44.570342] pci 0000:14:00.0: Adding to iommu group 16
[   44.570489] pci 0000:10:01.0: PCI bridge to [bus 14-38]
[   44.570508] pci 0000:10:01.0:   bridge window [io  0x0000-0x0fff]
[   44.570518] pci 0000:10:01.0:   bridge window [mem 0x00000000-0x000fffff]
[   44.570536] pci 0000:10:01.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   44.570538] pci_bus 0000:14: busn_res: [bus 14-38] end is updated to 14
[   44.586987] pci 0000:15:00.0: [11c1:5901] type 00 class 0x0c0010
[   44.603553] pci 0000:15:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[   44.606991] pci 0000:15:00.0: supports D1 D2
[   44.606993] pci 0000:15:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   44.607219] pci 0000:15:00.0: Adding to iommu group 16
[   44.620189] pci 0000:10:02.0: PCI bridge to [bus 15-38]
[   44.620209] pci 0000:10:02.0:   bridge window [io  0x0000-0x0fff]
[   44.620220] pci 0000:10:02.0:   bridge window [mem 0x00000000-0x000fffff]
[   44.620238] pci 0000:10:02.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   44.620242] pci_bus 0000:15: busn_res: [bus 15-38] end is updated to 15
[   44.620462] pci 0000:10:04.0: PCI bridge to [bus 16-38]
[   44.620481] pci 0000:10:04.0:   bridge window [io  0x0000-0x0fff]
[   44.620490] pci 0000:10:04.0:   bridge window [mem 0x00000000-0x000fffff]
[   44.636845] pci 0000:10:04.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   44.636848] pci_bus 0000:16: busn_res: [bus 16-38] end is updated to 1f
[   44.637004] pci 0000:10:05.0: PCI bridge to [bus 20-38]
[   44.637023] pci 0000:10:05.0:   bridge window [io  0x0000-0x0fff]
[   44.637032] pci 0000:10:05.0:   bridge window [mem 0x00000000-0x000fffff]
[   44.637050] pci 0000:10:05.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   44.637051] pci_bus 0000:20: busn_res: [bus 20-38] end is updated to 25
[   44.637062] pci_bus 0000:10: busn_res: [bus 10-38] end is updated to 25
[   44.637072] pci_bus 0000:0f: busn_res: [bus 0f-38] end is updated to 25
[   44.640262] pci 0000:09:05.0: PCI bridge to [bus 26-38]
[   44.640276] pci 0000:09:05.0:   bridge window [io  0x0000-0x0fff]
[   44.640283] pci 0000:09:05.0:   bridge window [mem 0x00000000-0x000fffff]
[   44.640296] pci 0000:09:05.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   44.640298] pci_bus 0000:26: busn_res: [bus 26-38] end is updated to 38
[   44.640307] pci_bus 0000:09: busn_res: [bus 09-38] end is updated to 38
[   44.640325] pci 0000:10:04.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 16-1f] add_size 100000 add_align 100000
[   44.655959] pci 0000:10:04.0: bridge window [mem 0x00100000-0x001fffff] to [bus 16-1f] add_size 100000 add_align 100000
[   44.656951] pci 0000:10:05.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 20-25] add_size 100000 add_align 100000
[   44.658014] pci 0000:10:05.0: bridge window [mem 0x00100000-0x001fffff] to [bus 20-25] add_size 100000 add_align 100000
[   44.658017] pci 0000:0f:00.0: bridge window [mem 0x00100000-0x005fffff 64bit pref] to [bus 10-25] add_size 200000 add_align 100000
[   44.658019] pci 0000:0f:00.0: bridge window [mem 0x00100000-0x005fffff] to [bus 10-25] add_size 200000 add_align 100000
[   44.658020] pci 0000:09:04.0: bridge window [mem 0x00100000-0x005fffff 64bit pref] to [bus 0f-25] add_size 200000 add_align 100000
[   44.658022] pci 0000:09:04.0: bridge window [mem 0x00100000-0x005fffff] to [bus 0f-25] add_size 200000 add_align 100000
[   44.658023] pci 0000:09:05.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 26-38] add_size 100000 add_align 100000
[   44.658024] pci 0000:09:05.0: bridge window [mem 0x00100000-0x001fffff] to [bus 26-38] add_size 100000 add_align 100000
[   44.658027] pci 0000:08:00.0: bridge window [mem 0x00100000-0x009fffff 64bit pref] to [bus 09-38] add_size 300000 add_align 100000
[   44.666146] pci 0000:08:00.0: bridge window [mem 0x00100000-0x009fffff] to [bus 09-38] add_size 300000 add_align 100000
[   44.666155] pci 0000:08:00.0: BAR 8: assigned [mem 0xb0e00000-0xb51fffff]
[   44.666158] pci 0000:08:00.0: BAR 9: assigned [mem 0xbd200000-0xc13fffff 64bit pref]
[   44.666160] pci 0000:08:00.0: BAR 7: assigned [io  0x3000-0x3fff]
[   44.666163] pci 0000:09:00.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[   44.666166] pci 0000:09:00.0: BAR 9: assigned [mem 0xbd200000-0xbd2fffff 64bit pref]
[   44.666168] pci 0000:09:01.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[   44.666170] pci 0000:09:01.0: BAR 9: assigned [mem 0xbd300000-0xbd3fffff 64bit pref]
[   44.666172] pci 0000:09:02.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[   44.666173] pci 0000:09:02.0: BAR 9: assigned [mem 0xbd400000-0xbd4fffff 64bit pref]
[   44.666175] pci 0000:09:04.0: BAR 8: assigned [mem 0xb1100000-0xb317ffff]
[   44.666177] pci 0000:09:04.0: BAR 9: assigned [mem 0xbd500000-0xbf47ffff 64bit pref]
[   44.666178] pci 0000:09:05.0: BAR 8: assigned [mem 0xb3200000-0xb51fffff]
[   44.666181] pci 0000:09:05.0: BAR 9: assigned [mem 0xbf500000-0xc13fffff 64bit pref]
[   44.666183] pci 0000:09:00.0: BAR 7: assigned [io  0x3000-0x3fff]
[   44.666185] pci 0000:09:01.0: BAR 7: no space for [io  size 0x1000]
[   44.666186] pci 0000:09:01.0: BAR 7: failed to assign [io  size 0x1000]
[   44.666188] pci 0000:09:02.0: BAR 7: no space for [io  size 0x1000]
[   44.666189] pci 0000:09:02.0: BAR 7: failed to assign [io  size 0x1000]
[   44.666191] pci 0000:09:04.0: BAR 7: no space for [io  size 0x5000]
[   44.666192] pci 0000:09:04.0: BAR 7: failed to assign [io  size 0x5000]
[   44.666194] pci 0000:09:05.0: BAR 7: no space for [io  size 0x1000]
[   44.666195] pci 0000:09:05.0: BAR 7: failed to assign [io  size 0x1000]
[   44.666198] pci 0000:0a:00.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[   44.666200] pci 0000:0a:00.0: BAR 9: assigned [mem 0xbd200000-0xbd2fffff 64bit pref]
[   44.666202] pci 0000:0a:00.0: BAR 7: assigned [io  0x3000-0x3fff]
[   44.666204] pci 0000:0b:03.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[   44.666206] pci 0000:0b:03.0: BAR 9: assigned [mem 0xbd200000-0xbd2fffff 64bit pref]
[   44.666208] pci 0000:0b:03.0: BAR 7: assigned [io  0x3000-0x3fff]
[   44.666211] pci 0000:0c:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff]
[   44.670192] pci 0000:0c:00.1: BAR 0: assigned [mem 0xb0e01000-0xb0e01fff]
[   44.703558] pci 0000:0c:00.2: BAR 0: assigned [mem 0xb0e02000-0xb0e020ff]
[   44.703568] pci 0000:0b:03.0: PCI bridge to [bus 0c]
[   44.703574] pci 0000:0b:03.0:   bridge window [io  0x3000-0x3fff]
[   44.703586] pci 0000:0b:03.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[   44.703594] pci 0000:0b:03.0:   bridge window [mem 0xbd200000-0xbd2fffff 64bit pref]
[   44.703610] pci 0000:0a:00.0: PCI bridge to [bus 0b-0c]
[   44.720232] pci 0000:0a:00.0:   bridge window [io  0x3000-0x3fff]
[   44.720246] pci 0000:0a:00.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[   44.720255] pci 0000:0a:00.0:   bridge window [mem 0xbd200000-0xbd2fffff 64bit pref]
[   44.720271] pci 0000:09:00.0: PCI bridge to [bus 0a-0c]
[   44.720275] pci 0000:09:00.0:   bridge window [io  0x3000-0x3fff]
[   44.720285] pci 0000:09:00.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[   44.720291] pci 0000:09:00.0:   bridge window [mem 0xbd200000-0xbd2fffff 64bit pref]
[   44.720305] pci 0000:0d:00.0: BAR 0: assigned [mem 0xbd300000-0xbd30ffff 64bit pref]
[   44.720333] pci 0000:0d:00.0: BAR 2: assigned [mem 0xbd310000-0xbd31ffff 64bit pref]
[   44.720360] pci 0000:09:01.0: PCI bridge to [bus 0d]
[   44.720369] pci 0000:09:01.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[   44.720375] pci 0000:09:01.0:   bridge window [mem 0xbd300000-0xbd3fffff 64bit pref]
[   44.720387] pci 0000:0e:00.0: BAR 0: assigned [mem 0xb1000000-0xb1000fff 64bit]
[   44.720414] pci 0000:09:02.0: PCI bridge to [bus 0e]
[   44.720423] pci 0000:09:02.0:   bridge window [mem 0xb1000000-0xb10fffff]
[   44.720429] pci 0000:09:02.0:   bridge window [mem 0xbd400000-0xbd4fffff 64bit pref]
[   44.720441] pci 0000:0f:00.0: BAR 8: assigned [mem 0xb1100000-0xb317ffff]
[   44.720442] pci 0000:0f:00.0: BAR 9: assigned [mem 0xbd500000-0xbf47ffff 64bit pref]
[   44.720444] pci 0000:0f:00.0: BAR 7: no space for [io  size 0x5000]
[   44.720445] pci 0000:0f:00.0: BAR 7: failed to assign [io  size 0x5000]
[   44.720447] pci 0000:10:00.0: BAR 8: assigned [mem 0xb1100000-0xb11fffff]
[   44.720449] pci 0000:10:00.0: BAR 9: assigned [mem 0xbd500000-0xbd5fffff 64bit pref]
[   44.720450] pci 0000:10:01.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[   44.720451] pci 0000:10:01.0: BAR 9: assigned [mem 0xbd600000-0xbd6fffff 64bit pref]
[   44.720452] pci 0000:10:02.0: BAR 8: assigned [mem 0xb1300000-0xb13fffff]
[   44.720453] pci 0000:10:02.0: BAR 9: assigned [mem 0xbd700000-0xbd7fffff 64bit pref]
[   44.720455] pci 0000:10:04.0: BAR 8: assigned [mem 0xb1400000-0xb22bffff]
[   44.720456] pci 0000:10:04.0: BAR 9: assigned [mem 0xbd800000-0xbe63ffff 64bit pref]
[   44.720457] pci 0000:10:05.0: BAR 8: assigned [mem 0xb2300000-0xb317ffff]
[   44.720458] pci 0000:10:05.0: BAR 9: assigned [mem 0xbe700000-0xbf47ffff 64bit pref]
[   44.720459] pci 0000:10:00.0: BAR 7: no space for [io  size 0x1000]
[   44.720460] pci 0000:10:00.0: BAR 7: failed to assign [io  size 0x1000]
[   44.720461] pci 0000:10:01.0: BAR 7: no space for [io  size 0x1000]
[   44.720462] pci 0000:10:01.0: BAR 7: failed to assign [io  size 0x1000]
[   44.720463] pci 0000:10:02.0: BAR 7: no space for [io  size 0x1000]
[   44.720464] pci 0000:10:02.0: BAR 7: failed to assign [io  size 0x1000]
[   44.720464] pci 0000:10:04.0: BAR 7: no space for [io  size 0x1000]
[   44.720465] pci 0000:10:04.0: BAR 7: failed to assign [io  size 0x1000]
[   44.720466] pci 0000:10:05.0: BAR 7: no space for [io  size 0x1000]
[   44.720467] pci 0000:10:05.0: BAR 7: failed to assign [io  size 0x1000]
[   44.720468] pci 0000:11:00.0: BAR 8: assigned [mem 0xb1100000-0xb11fffff]
[   44.720470] pci 0000:11:00.0: BAR 9: assigned [mem 0xbd500000-0xbd5fffff 64bit pref]
[   44.720471] pci 0000:11:00.0: BAR 7: no space for [io  size 0x1000]
[   44.720471] pci 0000:11:00.0: BAR 7: failed to assign [io  size 0x1000]
[   44.720473] pci 0000:12:03.0: BAR 8: assigned [mem 0xb1100000-0xb11fffff]
[   44.720474] pci 0000:12:03.0: BAR 9: assigned [mem 0xbd500000-0xbd5fffff 64bit pref]
[   44.720475] pci 0000:12:03.0: BAR 7: no space for [io  size 0x1000]
[   44.720476] pci 0000:12:03.0: BAR 7: failed to assign [io  size 0x1000]
[   44.720477] pci 0000:13:00.0: BAR 0: assigned [mem 0xb1100000-0xb1100fff]
[   44.720489] pci 0000:13:00.1: BAR 0: assigned [mem 0xb1101000-0xb1101fff]
[   44.720500] pci 0000:13:00.2: BAR 0: assigned [mem 0xb1102000-0xb11020ff]
[   44.720511] pci 0000:12:03.0: PCI bridge to [bus 13]
[   44.720527] pci 0000:12:03.0:   bridge window [mem 0xb1100000-0xb11fffff]
[   44.720538] pci 0000:12:03.0:   bridge window [mem 0xbd500000-0xbd5fffff 64bit pref]
[   44.720559] pci 0000:11:00.0: PCI bridge to [bus 12-13]
[   44.720575] pci 0000:11:00.0:   bridge window [mem 0xb1100000-0xb11fffff]
[   44.720586] pci 0000:11:00.0:   bridge window [mem 0xbd500000-0xbd5fffff 64bit pref]
[   44.720608] pci 0000:10:00.0: PCI bridge to [bus 11-13]
[   44.720621] pci 0000:10:00.0:   bridge window [mem 0xb1100000-0xb11fffff]
[   44.720630] pci 0000:10:00.0:   bridge window [mem 0xbd500000-0xbd5fffff 64bit pref]
[   44.720648] pci 0000:14:00.0: BAR 0: assigned [mem 0xbd600000-0xbd60ffff 64bit pref]
[   44.736926] pci 0000:14:00.0: BAR 2: assigned [mem 0xbd610000-0xbd61ffff 64bit pref]
[   44.803668] pci 0000:10:01.0: PCI bridge to [bus 14]
[   44.803682] pci 0000:10:01.0:   bridge window [mem 0xb1200000-0xb12fffff]
[   44.803692] pci 0000:10:01.0:   bridge window [mem 0xbd600000-0xbd6fffff 64bit pref]
[   44.803710] pci 0000:15:00.0: BAR 0: assigned [mem 0xb1300000-0xb1300fff 64bit]
[   44.803748] pci 0000:10:02.0: PCI bridge to [bus 15]
[   44.803761] pci 0000:10:02.0:   bridge window [mem 0xb1300000-0xb13fffff]
[   44.803770] pci 0000:10:02.0:   bridge window [mem 0xbd700000-0xbd7fffff 64bit pref]
[   44.803788] pci 0000:10:04.0: PCI bridge to [bus 16-1f]
[   44.803801] pci 0000:10:04.0:   bridge window [mem 0xb1400000-0xb22bffff]
[   44.803810] pci 0000:10:04.0:   bridge window [mem 0xbd800000-0xbe63ffff 64bit pref]
[   44.803827] pci 0000:10:05.0: PCI bridge to [bus 20-25]
[   44.803840] pci 0000:10:05.0:   bridge window [mem 0xb2300000-0xb317ffff]
[   44.803849] pci 0000:10:05.0:   bridge window [mem 0xbe700000-0xbf47ffff 64bit pref]
[   44.803867] pci 0000:0f:00.0: PCI bridge to [bus 10-25]
[   44.803880] pci 0000:0f:00.0:   bridge window [mem 0xb1100000-0xb317ffff]
[   44.803889] pci 0000:0f:00.0:   bridge window [mem 0xbd500000-0xbf47ffff 64bit pref]
[   44.803907] pci 0000:09:04.0: PCI bridge to [bus 0f-25]
[   44.803916] pci 0000:09:04.0:   bridge window [mem 0xb1100000-0xb317ffff]
[   44.820314] pci 0000:09:04.0:   bridge window [mem 0xbd500000-0xbf47ffff 64bit pref]
[   44.820325] pci 0000:09:05.0: PCI bridge to [bus 26-38]
[   44.820334] pci 0000:09:05.0:   bridge window [mem 0xb3200000-0xb51fffff]
[   44.820340] pci 0000:09:05.0:   bridge window [mem 0xbf500000-0xc13fffff 64bit pref]
[   44.820352] pci 0000:08:00.0: PCI bridge to [bus 09-38]
[   44.820356] pci 0000:08:00.0:   bridge window [io  0x3000-0x3fff]
[   44.820365] pci 0000:08:00.0:   bridge window [mem 0xb0e00000-0xb51fffff]
[   44.820371] pci 0000:08:00.0:   bridge window [mem 0xbd200000-0xc13fffff 64bit pref]
[   44.820382] pcieport 0000:06:03.0: PCI bridge to [bus 08-38]
[   44.820385] pcieport 0000:06:03.0:   bridge window [io  0x3000-0x3fff]
[   44.820389] pcieport 0000:06:03.0:   bridge window [mem 0xb0e00000-0xb51fffff]
[   44.820392] pcieport 0000:06:03.0:   bridge window [mem 0xbd200000-0xc13fffff 64bit pref]
[   44.820398] PCI: No. 2 try to assign unassigned res
[   44.820401] pci 0000:0b:03.0: resource 7 [io  0x3000-0x3fff] released
[   44.820402] pci 0000:0b:03.0: PCI bridge to [bus 0c]
[   44.820417] pci 0000:0a:00.0: resource 7 [io  0x3000-0x3fff] released
[   44.820418] pci 0000:0a:00.0: PCI bridge to [bus 0b-0c]
[   44.820433] pci 0000:09:00.0: resource 7 [io  0x3000-0x3fff] released
[   44.820434] pci 0000:09:00.0: PCI bridge to [bus 0a-0c]
[   44.820447] pci 0000:08:00.0: resource 7 [io  0x3000-0x3fff] released
[   44.820448] pci 0000:08:00.0: PCI bridge to [bus 09-38]
[   44.820465] pci 0000:08:00.0: BAR 7: assigned [io  0x3000-0x3fff]
[   44.820467] pci 0000:09:00.0: BAR 7: assigned [io  0x3000-0x3fff]
[   44.820468] pci 0000:09:01.0: BAR 7: no space for [io  size 0x1000]
[   44.820469] pci 0000:09:01.0: BAR 7: failed to assign [io  size 0x1000]
[   44.820470] pci 0000:09:02.0: BAR 7: no space for [io  size 0x1000]
[   44.820471] pci 0000:09:02.0: BAR 7: failed to assign [io  size 0x1000]
[   44.820472] pci 0000:09:04.0: BAR 7: no space for [io  size 0x5000]
[   44.820473] pci 0000:09:04.0: BAR 7: failed to assign [io  size 0x5000]
[   44.820474] pci 0000:09:05.0: BAR 7: no space for [io  size 0x1000]
[   44.820475] pci 0000:09:05.0: BAR 7: failed to assign [io  size 0x1000]
[   44.820476] pci 0000:0a:00.0: BAR 7: assigned [io  0x3000-0x3fff]
[   44.820477] pci 0000:0b:03.0: BAR 7: assigned [io  0x3000-0x3fff]
[   44.820478] pci 0000:0b:03.0: PCI bridge to [bus 0c]
[   44.820482] pci 0000:0b:03.0:   bridge window [io  0x3000-0x3fff]
[   44.820495] pci 0000:0b:03.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[   44.820503] pci 0000:0b:03.0:   bridge window [mem 0xbd200000-0xbd2fffff 64bit pref]
[   44.820518] pci 0000:0a:00.0: PCI bridge to [bus 0b-0c]
[   44.820522] pci 0000:0a:00.0:   bridge window [io  0x3000-0x3fff]
[   44.820534] pci 0000:0a:00.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[   44.820542] pci 0000:0a:00.0:   bridge window [mem 0xbd200000-0xbd2fffff 64bit pref]
[   44.820558] pci 0000:09:00.0: PCI bridge to [bus 0a-0c]
[   44.820561] pci 0000:09:00.0:   bridge window [io  0x3000-0x3fff]
[   44.820569] pci 0000:09:00.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[   44.820576] pci 0000:09:00.0:   bridge window [mem 0xbd200000-0xbd2fffff 64bit pref]
[   44.820587] pci 0000:09:01.0: PCI bridge to [bus 0d]
[   44.820596] pci 0000:09:01.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[   44.820602] pci 0000:09:01.0:   bridge window [mem 0xbd300000-0xbd3fffff 64bit pref]
[   44.820614] pci 0000:09:02.0: PCI bridge to [bus 0e]
[   44.820622] pci 0000:09:02.0:   bridge window [mem 0xb1000000-0xb10fffff]
[   44.820629] pci 0000:09:02.0:   bridge window [mem 0xbd400000-0xbd4fffff 64bit pref]
[   44.820640] pci 0000:0f:00.0: BAR 7: no space for [io  size 0x5000]
[   44.820641] pci 0000:0f:00.0: BAR 7: failed to assign [io  size 0x5000]
[   44.820643] pci 0000:10:00.0: BAR 7: no space for [io  size 0x1000]
[   44.820644] pci 0000:10:00.0: BAR 7: failed to assign [io  size 0x1000]
[   44.820644] pci 0000:10:01.0: BAR 7: no space for [io  size 0x1000]
[   44.820645] pci 0000:10:01.0: BAR 7: failed to assign [io  size 0x1000]
[   44.820646] pci 0000:10:02.0: BAR 7: no space for [io  size 0x1000]
[   44.820647] pci 0000:10:02.0: BAR 7: failed to assign [io  size 0x1000]
[   44.820648] pci 0000:10:04.0: BAR 7: no space for [io  size 0x1000]
[   44.820649] pci 0000:10:04.0: BAR 7: failed to assign [io  size 0x1000]
[   44.820649] pci 0000:10:05.0: BAR 7: no space for [io  size 0x1000]
[   44.820650] pci 0000:10:05.0: BAR 7: failed to assign [io  size 0x1000]
[   44.820651] pci 0000:11:00.0: BAR 7: no space for [io  size 0x1000]
[   44.820652] pci 0000:11:00.0: BAR 7: failed to assign [io  size 0x1000]
[   44.820653] pci 0000:12:03.0: BAR 7: no space for [io  size 0x1000]
[   44.820654] pci 0000:12:03.0: BAR 7: failed to assign [io  size 0x1000]
[   44.820655] pci 0000:12:03.0: PCI bridge to [bus 13]
[   44.820671] pci 0000:12:03.0:   bridge window [mem 0xb1100000-0xb11fffff]
[   44.820682] pci 0000:12:03.0:   bridge window [mem 0xbd500000-0xbd5fffff 64bit pref]
[   44.820704] pci 0000:11:00.0: PCI bridge to [bus 12-13]
[   44.820720] pci 0000:11:00.0:   bridge window [mem 0xb1100000-0xb11fffff]
[   44.883520] pci 0000:11:00.0:   bridge window [mem 0xbd500000-0xbd5fffff 64bit pref]
[   44.884524] pci 0000:10:00.0: PCI bridge to [bus 11-13]
[   44.884537] pci 0000:10:00.0:   bridge window [mem 0xb1100000-0xb11fffff]
[   44.886459] pci 0000:10:00.0:   bridge window [mem 0xbd500000-0xbd5fffff 64bit pref]
[   44.886478] pci 0000:10:01.0: PCI bridge to [bus 14]
[   44.886492] pci 0000:10:01.0:   bridge window [mem 0xb1200000-0xb12fffff]
[   44.886501] pci 0000:10:01.0:   bridge window [mem 0xbd600000-0xbd6fffff 64bit pref]
[   44.886520] pci 0000:10:02.0: PCI bridge to [bus 15]
[   44.886534] pci 0000:10:02.0:   bridge window [mem 0xb1300000-0xb13fffff]
[   44.886543] pci 0000:10:02.0:   bridge window [mem 0xbd700000-0xbd7fffff 64bit pref]
[   44.886562] pci 0000:10:04.0: PCI bridge to [bus 16-1f]
[   44.886575] pci 0000:10:04.0:   bridge window [mem 0xb1400000-0xb22bffff]
[   44.886585] pci 0000:10:04.0:   bridge window [mem 0xbd800000-0xbe63ffff 64bit pref]
[   44.886603] pci 0000:10:05.0: PCI bridge to [bus 20-25]
[   44.886617] pci 0000:10:05.0:   bridge window [mem 0xb2300000-0xb317ffff]
[   44.886626] pci 0000:10:05.0:   bridge window [mem 0xbe700000-0xbf47ffff 64bit pref]
[   44.886644] pci 0000:0f:00.0: PCI bridge to [bus 10-25]
[   44.886658] pci 0000:0f:00.0:   bridge window [mem 0xb1100000-0xb317ffff]
[   44.886668] pci 0000:0f:00.0:   bridge window [mem 0xbd500000-0xbf47ffff 64bit pref]
[   44.886685] pci 0000:09:04.0: PCI bridge to [bus 0f-25]
[   44.886694] pci 0000:09:04.0:   bridge window [mem 0xb1100000-0xb317ffff]
[   44.886701] pci 0000:09:04.0:   bridge window [mem 0xbd500000-0xbf47ffff 64bit pref]
[   44.886713] pci 0000:09:05.0: PCI bridge to [bus 26-38]
[   44.886722] pci 0000:09:05.0:   bridge window [mem 0xb3200000-0xb51fffff]
[   44.886730] pci 0000:09:05.0:   bridge window [mem 0xbf500000-0xc13fffff 64bit pref]
[   44.886743] pci 0000:08:00.0: PCI bridge to [bus 09-38]
[   44.886748] pci 0000:08:00.0:   bridge window [io  0x3000-0x3fff]
[   44.886756] pci 0000:08:00.0:   bridge window [mem 0xb0e00000-0xb51fffff]
[   44.886762] pci 0000:08:00.0:   bridge window [mem 0xbd200000-0xc13fffff 64bit pref]
[   44.886774] pcieport 0000:06:03.0: PCI bridge to [bus 08-38]
[   44.886776] pcieport 0000:06:03.0:   bridge window [io  0x3000-0x3fff]
[   44.886780] pcieport 0000:06:03.0:   bridge window [mem 0xb0e00000-0xb51fffff]
[   44.886784] pcieport 0000:06:03.0:   bridge window [mem 0xbd200000-0xc13fffff 64bit pref]
[   44.886818] pcieport 0000:08:00.0: enabling device (0000 -> 0003)
[   44.887686] pcieport 0000:09:00.0: enabling device (0000 -> 0003)
[   44.917813] pcieport 0000:09:01.0: enabling device (0000 -> 0002)
[   44.919006] pcieport 0000:09:02.0: enabling device (0000 -> 0002)
[   44.921263] pcieport 0000:09:04.0: enabling device (0000 -> 0002)
[   44.921770] pcieport 0000:09:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[   44.922369] pcieport 0000:09:05.0: enabling device (0000 -> 0002)
[   44.925049] pcieport 0000:09:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[   44.925856] pcieport 0000:0a:00.0: enabling device (0000 -> 0003)
[   44.925998] pcieport 0000:0b:03.0: enabling device (0000 -> 0003)
[   44.926151] pci 0000:0c:00.0: MSI is not implemented on this device, disabling it
[   44.926153] pci 0000:0c:00.0: PME# is unreliable, disabling it
[   44.926174] pci 0000:0c:00.0: enabling device (0000 -> 0002)
[   44.926357] pci 0000:0c:00.1: MSI is not implemented on this device, disabling it
[   44.926359] pci 0000:0c:00.1: PME# is unreliable, disabling it
[   44.926373] pci 0000:0c:00.1: enabling device (0000 -> 0002)
[   44.926492] pci 0000:0c:00.2: MSI is not implemented on this device, disabling it
[   44.926494] pci 0000:0c:00.2: PME# is unreliable, disabling it
[   44.926960] pci 0000:0c:00.2: enabling device (0000 -> 0002)
[   44.938062] pci 0000:0c:00.2: EHCI: unrecognized capability 00
[   44.938088] pci 0000:0c:00.2: quirk_usb_early_handoff+0x0/0x600 took 11321 usecs
[   44.938127] tg3 0000:0d:00.0: enabling device (0000 -> 0002)
[   44.985376] tg3 0000:0d:00.0 eth0: Tigon3 [partno(BCM957761) rev 57785100] (PCI Express) MAC address c8:2a:14:4f:80:3e
[   44.985383] tg3 0000:0d:00.0 eth0: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   44.985386] tg3 0000:0d:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[   44.985389] tg3 0000:0d:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[   44.985659] pcieport 0000:0f:00.0: enabling device (0000 -> 0002)
[   44.990838] tg3 0000:0d:00.0 eth2: renamed from eth0
[   44.991165] pcieport 0000:10:00.0: enabling device (0000 -> 0002)
[   44.996309] pcieport 0000:10:01.0: enabling device (0000 -> 0002)
[   44.997805] pcieport 0000:10:02.0: enabling device (0000 -> 0002)
[   45.000742] pcieport 0000:10:04.0: enabling device (0000 -> 0002)
[   45.000961] pcieport 0000:10:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[   45.001890] pcieport 0000:10:05.0: enabling device (0000 -> 0002)
[   45.002557] pcieport 0000:10:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[   45.003949] pcieport 0000:11:00.0: enabling device (0000 -> 0002)
[   45.004184] pcieport 0000:12:03.0: enabling device (0000 -> 0002)
[   45.004434] pci 0000:13:00.0: MSI is not implemented on this device, disabling it
[   45.004436] pci 0000:13:00.0: PME# is unreliable, disabling it
[   45.004464] pci 0000:13:00.0: enabling device (0000 -> 0002)
[   45.004672] pci 0000:13:00.1: MSI is not implemented on this device, disabling it
[   45.004674] pci 0000:13:00.1: PME# is unreliable, disabling it
[   45.004691] pci 0000:13:00.1: enabling device (0000 -> 0002)
[   45.004842] pci 0000:13:00.2: MSI is not implemented on this device, disabling it
[   45.004844] pci 0000:13:00.2: PME# is unreliable, disabling it
[   45.004861] pci 0000:13:00.2: enabling device (0000 -> 0002)
[   45.004937] pci 0000:13:00.2: EHCI: unrecognized capability 00
[   45.005091] tg3 0000:14:00.0: enabling device (0000 -> 0002)
[   45.084519] tg3 0000:14:00.0 eth0: Tigon3 [partno(BCM957761) rev 57785100] (PCI Express) MAC address 38:c9:86:48:0c:c8
[   45.084525] tg3 0000:14:00.0 eth0: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   45.084529] tg3 0000:14:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[   45.084531] tg3 0000:14:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[   45.085489] tg3 0000:14:00.0 eth1: renamed from eth0
[   48.751118] pcieport 0000:06:03.0: pciehp: Slot(3-2): Link Down
[   48.751118] thunderbolt 0000:07:00.0: acking hot unplug event on 0:1
[   48.751128] thunderbolt 0000:07:00.0: 0:1: switch unplugged
[   48.752212] pcieport 0000:06:03.0: pciehp: Slot(3-2): Card not present
[   48.752223] pcieport 0000:09:05.0: can't change power state from D3cold to D0 (config space inaccessible)
[   48.753180] thunderbolt 0000:07:00.0: 0:6 <-> 1:a (PCI): deactivating
[   48.754148] thunderbolt 0000:07:00.0: acking hot unplug event on 0:2
[   48.754167] thunderbolt 0000:07:00.0: deactivating PCIe Down path from 0:6 to 1:10
[   48.754387] pcieport 0000:10:05.0: can't change power state from D3cold to D0 (config space inaccessible)
[   48.754551] thunderbolt 0000:07:00.0: deactivating PCIe Up path from 1:10 to 0:6
[   48.754929] pcieport 0000:10:04.0: can't change power state from D3cold to D0 (config space inaccessible)
[   48.754939] thunderbolt 0000:07:00.0: 0:b <-> 1:b (DP): deactivating
[   48.755701] thunderbolt 0000:07:00.0: deactivating Video path from 0:11 to 1:11
[   48.758398] thunderbolt 0000:07:00.0: 0:b: adding -12 NFC credits to 12
[   48.758524] thunderbolt 0000:07:00.0: deactivating AUX TX path from 0:11 to 1:11
[   48.758910] thunderbolt 0000:07:00.0: deactivating AUX RX path from 1:11 to 0:11
[   48.759351] thunderbolt 0000:07:00.0: 0: released DP resource for port 11
[   48.759363] thunderbolt 0000:07:00.0: 1:7 <-> 301:a (PCI): deactivating
[   48.759365] thunderbolt 0000:07:00.0: deactivating PCIe Down path from 1:7 to 301:10
[   48.759368] thunderbolt 0000:07:00.0: deactivating PCIe Up path from 301:10 to 1:7
[   48.759375] thunderbolt 0000:07:00.0: 0:c <-> 301:b (DP): deactivating
[   48.760080] thunderbolt 0000:07:00.0: deactivating Video path from 0:12 to 301:11
[   48.760447] thunderbolt 0000:07:00.0: 0:c: adding -12 NFC credits to 12
[   48.760579] thunderbolt 0000:07:00.0: deactivating AUX TX path from 0:12 to 301:11
[   48.760959] thunderbolt 0000:07:00.0: deactivating AUX RX path from 301:11 to 0:12
[   48.762085] thunderbolt 0000:07:00.0: 0: released DP resource for port 12
[   48.762093] thunderbolt 0000:07:00.0: 301:b: DP OUT resource unavailable
[   48.762095] thunderbolt 0000:07:00.0: 1:b: DP OUT resource unavailable
[   48.762217] thunderbolt 0-301: device disconnected
[   48.764544] thunderbolt 0-1: device disconnected
[   48.764664] thunderbolt 0000:07:00.0: looking for DP IN <-> DP OUT pairs:
[   48.764686] thunderbolt 0000:07:00.0: 0:b: DP IN available
[   48.764810] thunderbolt 0000:07:00.0: 0:c: DP IN available
[   48.764812] thunderbolt 0000:07:00.0: no suitable DP IN adapter available, not tunneling
[   48.764816] thunderbolt 0000:07:00.0: 0:2: got unplug event for disconnected port, ignoring
[   48.833191] i915 0000:00:02.0: [drm] *ERROR* [ENCODER:83:DDI B/PHY B][DPRX] Failed to get link status
[   48.893920] pci 0000:0c:00.0: Removing from iommu group 16
[   48.895366] pci 0000:0c:00.1: Removing from iommu group 16
[   48.896721] pci 0000:0c:00.2: Removing from iommu group 16
[   48.898074] pci_bus 0000:0c: busn_res: [bus 0c] is released
[   48.899414] pci 0000:0b:03.0: Removing from iommu group 16
[   48.900714] pci_bus 0000:0b: busn_res: [bus 0b-0c] is released
[   48.902406] pci 0000:0a:00.0: Removing from iommu group 16
[   48.903829] pci_bus 0000:0a: busn_res: [bus 0a-0c] is released
[   48.903833] acpiphp: Slot [1-1] unregistered
[   48.904294] pci 0000:09:00.0: Removing from iommu group 16
[   48.905179] pci 0000:0d:00.0: Removing from iommu group 16
[   48.905274] pci_bus 0000:0d: busn_res: [bus 0d] is released
[   48.906446] pci 0000:09:01.0: Removing from iommu group 16
[   48.913934] pci 0000:0e:00.0: Removing from iommu group 16
[   48.913972] pci_bus 0000:0e: busn_res: [bus 0e] is released
[   48.914887] pci 0000:09:02.0: Removing from iommu group 16
[   48.915572] pci 0000:13:00.0: Removing from iommu group 16
[   48.915821] pci 0000:13:00.1: Removing from iommu group 16
[   48.916662] pci 0000:13:00.2: Removing from iommu group 16
[   48.921977] pci_bus 0000:13: busn_res: [bus 13] is released
[   48.922096] pci 0000:12:03.0: Removing from iommu group 16
[   48.924268] pci_bus 0000:12: busn_res: [bus 12-13] is released
[   48.924419] pci 0000:11:00.0: Removing from iommu group 16
[   48.924444] pci_bus 0000:11: busn_res: [bus 11-13] is released
[   48.924447] acpiphp: Slot [1-3] unregistered
[   48.926306] pci 0000:10:00.0: Removing from iommu group 16
[   48.932550] pci 0000:14:00.0: Removing from iommu group 16
[   48.932570] pci_bus 0000:14: busn_res: [bus 14] is released
[   48.933113] pci 0000:10:01.0: Removing from iommu group 16
[   48.933752] pci 0000:15:00.0: Removing from iommu group 16
[   48.933799] pci_bus 0000:15: busn_res: [bus 15] is released
[   48.934896] pci 0000:10:02.0: Removing from iommu group 16
[   48.941653] pci_bus 0000:16: busn_res: [bus 16-1f] is released
[   48.943021] pci 0000:10:04.0: Removing from iommu group 16
[   48.943038] pci_bus 0000:20: busn_res: [bus 20-25] is released
[   48.943932] pci 0000:10:05.0: Removing from iommu group 16
[   48.944062] pci_bus 0000:10: busn_res: [bus 10-25] is released
[   48.944065] acpiphp: Slot [1-2] unregistered
[   48.944196] acpiphp: Slot [2-1] unregistered
[   48.944384] acpiphp: Slot [3-1] unregistered
[   48.944598] acpiphp: Slot [4-1] unregistered
[   48.946562] pci 0000:0f:00.0: Removing from iommu group 16
[   48.955555] pci_bus 0000:0f: busn_res: [bus 0f-25] is released
[   48.956876] pci 0000:09:04.0: Removing from iommu group 16
[   48.956896] pci_bus 0000:26: busn_res: [bus 26-38] is released
[   48.957724] pci 0000:09:05.0: Removing from iommu group 16
[   48.957856] pci_bus 0000:09: busn_res: [bus 09-38] is released
[   48.957859] acpiphp: Slot [1] unregistered
[   48.957997] acpiphp: Slot [2] unregistered
[   48.958153] acpiphp: Slot [3] unregistered
[   48.958327] acpiphp: Slot [4] unregistered
[   48.958496] acpiphp: Slot [5] unregistered
[   48.960393] pci 0000:08:00.0: Removing from iommu group 16
[   49.030500] i915 0000:00:02.0: [drm] *ERROR* Failed to read DPCD register 0x92

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-03-30 13:19           ` Brad Campbell
@ 2022-03-30 13:43             ` Mika Westerberg
  2022-03-30 14:24               ` Brad Campbell
  0 siblings, 1 reply; 47+ messages in thread
From: Mika Westerberg @ 2022-03-30 13:43 UTC (permalink / raw)
  To: Brad Campbell; +Cc: linux-kernel

Hi,

On Wed, Mar 30, 2022 at 09:19:52PM +0800, Brad Campbell wrote:
> Hey Mika,
> 
> On 30/3/22 18:18, Mika Westerberg wrote:
> > Hi,
> > 
> > On Tue, Mar 29, 2022 at 10:06:35PM +0800, Brad Campbell wrote:
> >>> Indeed, I did not add this to the "discovery" path yet.
> >>>
> >>> I wonder what happens if you change this:
> >>>
> >>> +       tunnel = tb_tunnel_alloc_dp(tb, in, out, available_up, available_down,
> >>> +                                   first ? 0 : 1);
> >>>
> >>> to this in your tree:
> >>>
> >>> +       tunnel = tb_tunnel_alloc_dp(tb, in, out, available_up, available_down,
> >>> +                                   first ? 1 : 0);
> >>>
> >>
> >> Here's where it gets all "Apple..y". On the iMac this does the job no matter which
> >> port the chain is plugged into. Boots and displays correctly first time, every time.
> >>
> >> It turns out on the laptop, one port works and the other doesn't. Changing the order
> >> simply changes which port works. So I assume the EFI sets up the first display using
> >> the first lane if it's in the first port, and the second if it's in the second.
> >>
> >> That means had I managed to perform the first test in the "other port" consistently,
> >> it would have worked there also.
> > 
> > Can you try the below patch too? I hard-code the lane based on the
> > DP adapter number in TBT gen1.
> > 
> > Let's first figure out proper solution to this issue and then look at
> > the other one.
> > 
> > diff --git a/drivers/thunderbolt/tunnel.c b/drivers/thunderbolt/tunnel.c
> > index a473cc7d9a8d..97d36a7bb527 100644
> > --- a/drivers/thunderbolt/tunnel.c
> > +++ b/drivers/thunderbolt/tunnel.c
> > @@ -865,6 +865,7 @@ struct tb_tunnel *tb_tunnel_alloc_dp(struct tb *tb, struct tb_port *in,
> 
> This one works from cold boot on both machines regardless of the port the chain is plugged into.
> It fails on both machines on any hotplug with the symptoms of allocating them both the same link.
> I added an extra debug into tunnel.c and verified that.

Hm, okay. What if you change this:

  link_nr = in->port == 11 ? 1 : 0;

to this

  link_nr = in->port == 11 ? 0 : 1;

Please also keep the debugging you added too so we can see if it now
uses both lanes.

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-03-30 13:43             ` Mika Westerberg
@ 2022-03-30 14:24               ` Brad Campbell
  2022-03-30 14:47                 ` Mika Westerberg
  0 siblings, 1 reply; 47+ messages in thread
From: Brad Campbell @ 2022-03-30 14:24 UTC (permalink / raw)
  To: Mika Westerberg; +Cc: linux-kernel



On 30/3/22 21:43, Mika Westerberg wrote:
> Hi,
> 
> On Wed, Mar 30, 2022 at 09:19:52PM +0800, Brad Campbell wrote:
>> Hey Mika,
>>
>> On 30/3/22 18:18, Mika Westerberg wrote:
>>> Hi,
>>>
>>> On Tue, Mar 29, 2022 at 10:06:35PM +0800, Brad Campbell wrote:
>>>>> Indeed, I did not add this to the "discovery" path yet.
>>>>>
>>>>> I wonder what happens if you change this:
>>>>>
>>>>> +       tunnel = tb_tunnel_alloc_dp(tb, in, out, available_up, available_down,
>>>>> +                                   first ? 0 : 1);
>>>>>
>>>>> to this in your tree:
>>>>>
>>>>> +       tunnel = tb_tunnel_alloc_dp(tb, in, out, available_up, available_down,
>>>>> +                                   first ? 1 : 0);
>>>>>
>>>>
>>>> Here's where it gets all "Apple..y". On the iMac this does the job no matter which
>>>> port the chain is plugged into. Boots and displays correctly first time, every time.
>>>>
>>>> It turns out on the laptop, one port works and the other doesn't. Changing the order
>>>> simply changes which port works. So I assume the EFI sets up the first display using
>>>> the first lane if it's in the first port, and the second if it's in the second.
>>>>
>>>> That means had I managed to perform the first test in the "other port" consistently,
>>>> it would have worked there also.
>>>
>>> Can you try the below patch too? I hard-code the lane based on the
>>> DP adapter number in TBT gen1.
>>>
>>> Let's first figure out proper solution to this issue and then look at
>>> the other one.
>>>
>>> diff --git a/drivers/thunderbolt/tunnel.c b/drivers/thunderbolt/tunnel.c
>>> index a473cc7d9a8d..97d36a7bb527 100644
>>> --- a/drivers/thunderbolt/tunnel.c
>>> +++ b/drivers/thunderbolt/tunnel.c
>>> @@ -865,6 +865,7 @@ struct tb_tunnel *tb_tunnel_alloc_dp(struct tb *tb, struct tb_port *in,
>>
>> This one works from cold boot on both machines regardless of the port the chain is plugged into.
>> It fails on both machines on any hotplug with the symptoms of allocating them both the same link.
>> I added an extra debug into tunnel.c and verified that.
> 
> Hm, okay. What if you change this:
> 
>   link_nr = in->port == 11 ? 1 : 0;
> 
> to this
> 
>   link_nr = in->port == 11 ? 0 : 1;
> 
> Please also keep the debugging you added too so we can see if it now
> uses both lanes.
> 

Nope, that did the same thing. I wonder though. I'm testing it on the laptop and that reports :
[    0.442832] thunderbolt 0000:07:00.0:  Thunderbolt 2 Switch: 8086:156d (Revision: 0, TB Version: 2)

Changing "if (in->sw->generation == 1)" to "if (in->sw->generation == 2)" on the laptop solves that.

I can't test hotplug properly on the iMac due to the radeon training issue.

The laptop still has the issue of a cold boot working in one socket and not the other, but hot plug is working correctly.

Regards,
Brad

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-03-30 14:24               ` Brad Campbell
@ 2022-03-30 14:47                 ` Mika Westerberg
  2022-03-31  9:02                   ` Brad Campbell
  0 siblings, 1 reply; 47+ messages in thread
From: Mika Westerberg @ 2022-03-30 14:47 UTC (permalink / raw)
  To: Brad Campbell; +Cc: linux-kernel

Hi,

On Wed, Mar 30, 2022 at 10:24:35PM +0800, Brad Campbell wrote:
> Nope, that did the same thing. I wonder though. I'm testing it on the laptop and that reports :
> [    0.442832] thunderbolt 0000:07:00.0:  Thunderbolt 2 Switch: 8086:156d (Revision: 0, TB Version: 2)
> 
> Changing "if (in->sw->generation == 1)" to "if (in->sw->generation == 2)" on the laptop solves that.

Heh, indeed I forgot that this is Falcon Ridge.

> I can't test hotplug properly on the iMac due to the radeon training issue.
> 
> The laptop still has the issue of a cold boot working in one socket
> and not the other, but hot plug is working correctly.

Let's try this one next:

diff --git a/drivers/thunderbolt/tunnel.c b/drivers/thunderbolt/tunnel.c
index a473cc7d9a8d..7150b5bc5403 100644
--- a/drivers/thunderbolt/tunnel.c
+++ b/drivers/thunderbolt/tunnel.c
@@ -865,6 +865,8 @@ struct tb_tunnel *tb_tunnel_alloc_dp(struct tb *tb, struct tb_port *in,
 	struct tb_tunnel *tunnel;
 	struct tb_path **paths;
 	struct tb_path *path;
+	struct tb_port *port;
+	int link_nr;
 
 	if (WARN_ON(!in->cap_adap || !out->cap_adap))
 		return NULL;
@@ -883,22 +885,34 @@ struct tb_tunnel *tb_tunnel_alloc_dp(struct tb *tb, struct tb_port *in,
 
 	paths = tunnel->paths;
 
+	/*
+	 * Hard code the lane for both DP IN adapters when first
+	 * generation hardware is present in the topology.
+	 */
+	link_nr = 1;
+	tb_for_each_port_on_path(in, out, port) {
+		if (tb_port_is_null(port) && port->sw->generation == 1) {
+			link_nr = in->port == 11 ? 1 : 0;
+			break;
+		}
+	}
+
 	path = tb_path_alloc(tb, in, TB_DP_VIDEO_HOPID, out, TB_DP_VIDEO_HOPID,
-			     1, "Video");
+			     link_nr, "Video");
 	if (!path)
 		goto err_free;
 	tb_dp_init_video_path(path);
 	paths[TB_DP_VIDEO_PATH_OUT] = path;
 
 	path = tb_path_alloc(tb, in, TB_DP_AUX_TX_HOPID, out,
-			     TB_DP_AUX_TX_HOPID, 1, "AUX TX");
+			     TB_DP_AUX_TX_HOPID, link_nr, "AUX TX");
 	if (!path)
 		goto err_free;
 	tb_dp_init_aux_path(path);
 	paths[TB_DP_AUX_PATH_OUT] = path;
 
 	path = tb_path_alloc(tb, out, TB_DP_AUX_RX_HOPID, in,
-			     TB_DP_AUX_RX_HOPID, 1, "AUX RX");
+			     TB_DP_AUX_RX_HOPID, link_nr, "AUX RX");
 	if (!path)
 		goto err_free;
 	tb_dp_init_aux_path(path);

^ permalink raw reply related	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-03-30 14:47                 ` Mika Westerberg
@ 2022-03-31  9:02                   ` Brad Campbell
  2022-03-31 16:36                     ` Mika Westerberg
  0 siblings, 1 reply; 47+ messages in thread
From: Brad Campbell @ 2022-03-31  9:02 UTC (permalink / raw)
  To: Mika Westerberg; +Cc: linux-kernel

On 30/3/22 22:47, Mika Westerberg wrote:
> Hi,
> 
> On Wed, Mar 30, 2022 at 10:24:35PM +0800, Brad Campbell wrote:
>> Nope, that did the same thing. I wonder though. I'm testing it on the laptop and that reports :
>> [    0.442832] thunderbolt 0000:07:00.0:  Thunderbolt 2 Switch: 8086:156d (Revision: 0, TB Version: 2)
>>
>> Changing "if (in->sw->generation == 1)" to "if (in->sw->generation == 2)" on the laptop solves that.
> 
> Heh, indeed I forgot that this is Falcon Ridge.
> 
>> I can't test hotplug properly on the iMac due to the radeon training issue.
>>
>> The laptop still has the issue of a cold boot working in one socket
>> and not the other, but hot plug is working correctly.
> 
> Let's try this one next:
> 
> diff --git a/drivers/thunderbolt/tunnel.c b/drivers/thunderbolt/tunnel.c
> index a473cc7d9a8d..7150b5bc5403 100644
> --- a/drivers/thunderbolt/tunnel.c
> +++ b/drivers/thunderbolt/tunnel.c
> @@ -865,6 +865,8 @@ struct tb_tunnel *tb_tunnel_alloc_dp(struct tb *tb, struct tb_port *in,
>   	struct tb_tunnel *tunnel;
>   	struct tb_path **paths;
>   	struct tb_path *path;
> +	struct tb_port *port;
> +	int link_nr;
>   

On the iMac, it cold boots on either port.

On the Laptop it is the same as the previous in that it cold boots on one port and not the other. Hotplug works in all cases I did try (in->sw->generation < 3) just in case, but it didn't change anything on the Laptop.

Testing from here down is on the iMac.

I've re-tested the original patch and aside from the thunderbolt controller locking up, the radeon doesn't fail clock recovery.

Further investigation on the iMac shows we don't see port 11. I added a debug for discovered port.

So my next thing is to try and figure out if there is a correlation between which link is paired with which DP source.

I've changed link_nr = in->port == 11 ? 1 : 0; to 12 ? 1 : 0; and that boots, but hotplug still fails if the EFI sets up a display first. I've also tried reversing the 1 : 0, but that fails out of the gate.

I've just done a test now by booting with the chain disconnected, then plugging it in just before the bootloader loads which prevents the EFI from getting involved. 

This works (wait until just before bootloader to plug the chain): 

brad@bkmac:~$ dmesg | egrep '(Tunnel|in->|in use|DP .* available)'
[    1.618277] thunderbolt 0000:07:00.0: 0:c: DP IN resource available
[    1.618280] thunderbolt 0000:07:00.0: 0:d: DP IN resource available
[    1.618403] thunderbolt 0000:07:00.0: 303:b: DP OUT resource available
[    1.618529] thunderbolt 0000:07:00.0: 0:c: DP IN available
[    1.618656] thunderbolt 0000:07:00.0: 303:b: DP OUT available
[    1.618916] thunderbolt 0000:07:00.0: in->port 12
[    1.618920] thunderbolt 0000:07:00.0: Tunnel 1
[    1.622751] thunderbolt 0000:07:00.0: 3:b: DP OUT resource available
[    1.622880] thunderbolt 0000:07:00.0: 0:c: in use
[    1.623007] thunderbolt 0000:07:00.0: 0:d: DP IN available
[    1.623135] thunderbolt 0000:07:00.0: 303:b: in use
[    1.623263] thunderbolt 0000:07:00.0: 3:b: DP OUT available
[    1.623399] thunderbolt 0000:07:00.0: in->port 13
[    1.623402] thunderbolt 0000:07:00.0: Tunnel 0

Both displays are working at this point.
Unplug -> Replug
[   45.799923] thunderbolt 0000:07:00.0: 0:c: DP IN available
[   45.800051] thunderbolt 0000:07:00.0: 0:d: DP IN available
[   45.800053] thunderbolt 0000:07:00.0: no suitable DP IN adapter available, not tunneling
[   54.606243] thunderbolt 0000:07:00.0: 303:b: DP OUT resource available
[   54.606371] thunderbolt 0000:07:00.0: 0:c: DP IN available
[   54.606497] thunderbolt 0000:07:00.0: 303:b: DP OUT available
[   54.606763] thunderbolt 0000:07:00.0: in->port 12
[   54.606768] thunderbolt 0000:07:00.0: Tunnel 1
[   54.615067] thunderbolt 0000:07:00.0: 3:b: DP OUT resource available
[   54.615176] thunderbolt 0000:07:00.0: 0:c: in use
[   54.615309] thunderbolt 0000:07:00.0: 0:d: DP IN available
[   54.615434] thunderbolt 0000:07:00.0: 303:b: in use
[   54.615561] thunderbolt 0000:07:00.0: 3:b: DP OUT available
[   54.615692] thunderbolt 0000:07:00.0: in->port 13
[   54.615694] thunderbolt 0000:07:00.0: Tunnel 0

Both displays are working

This doesn't (standard cold boot):

brad@bkmac:~$ dmesg | egrep '(Tunnel|in->|in use|DP .* available)'
[    1.611396] thunderbolt 0000:07:00.0: 0:c: DP IN resource available
[    1.611399] thunderbolt 0000:07:00.0: 0:d: DP IN resource available
[    1.611521] thunderbolt 0000:07:00.0: 303:b: DP OUT resource available
[    1.611648] thunderbolt 0000:07:00.0: 0:c: in use
[    1.611777] thunderbolt 0000:07:00.0: 0:d: DP IN available
[    1.611904] thunderbolt 0000:07:00.0: 303:b: DP OUT available
[    1.612162] thunderbolt 0000:07:00.0: in->port 13
[    1.612166] thunderbolt 0000:07:00.0: Tunnel 0

Both displays are working at this point.
Unplug -> Replug
[   72.181366] thunderbolt 0000:07:00.0: 0:c: DP IN available
[   72.181487] thunderbolt 0000:07:00.0: 0:d: DP IN available
[   72.181489] thunderbolt 0000:07:00.0: no suitable DP IN adapter available, not tunneling
[   81.369074] thunderbolt 0000:07:00.0: 3:b: DP OUT resource available
[   81.369207] thunderbolt 0000:07:00.0: 0:c: DP IN available
[   81.369335] thunderbolt 0000:07:00.0: 3:b: DP OUT available
[   81.369468] thunderbolt 0000:07:00.0: in->port 12
[   81.369471] thunderbolt 0000:07:00.0: Tunnel 1
[   81.376542] thunderbolt 0000:07:00.0: 303:b: DP OUT resource available
[   81.376669] thunderbolt 0000:07:00.0: 0:c: in use
[   81.376797] thunderbolt 0000:07:00.0: 0:d: DP IN available
[   81.376925] thunderbolt 0000:07:00.0: 3:b: in use
[   81.377058] thunderbolt 0000:07:00.0: 303:b: DP OUT available
[   81.377320] thunderbolt 0000:07:00.0: in->port 13
[   81.377328] thunderbolt 0000:07:00.0: Tunnel 0

First display in the chain fails clock recovery.

Full dmesg of failure here :

[    0.000000] Linux version 5.17.0+ (brad@bkmac) (gcc (Debian 8.3.0-6) 8.3.0, GNU ld (GNU Binutils for Debian) 2.31.1) #48 SMP PREEMPT_DYNAMIC Thu Mar 31 16:31:24 AWST 2022
[    0.000000] Command line: ro root=UUID=de35d1a6-e0e1-40b0-b46a-3974a04adf4b libata.allow_tpm=1 netconsole=6666@192.168.2.87/eth0,6666@192.168.2.208/dc:a6:32:61:33:da oops=panic panic=10 thunderbolt.dyndbg pci=assign-busses,realloc,hpbussize=0x10,hpmmiosize=128M,hpmmioprefsize=1G initrd=boot\initrd.img-5.17.0+
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    0.000000] signal: max sigframe size: 1776
[    0.000000] reserving inaccessible SNB gfx pages
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008e000-0x000000000008ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000bffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000020200000-0x000000003fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000040000000-0x00000000401fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000040200000-0x000000008ed32fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008ed33000-0x000000008ed5efff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000008ed5f000-0x000000008ed70fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008ed71000-0x000000008ed8efff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000008ed8f000-0x000000008ee59fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008ee5a000-0x000000008ee8efff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008ee8f000-0x000000008eed6fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008eed7000-0x000000008eefefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008eeff000-0x000000008efa2fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008efa3000-0x000000008f8fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffed8000-0x00000000ffefffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000086fefffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0x89109018-0x89124c57] usable ==> usable
[    0.000000] e820: update [mem 0x89109018-0x89124c57] usable ==> usable
[    0.000000] e820: update [mem 0x891a7018-0x891b8c3d] usable ==> usable
[    0.000000] e820: update [mem 0x891a7018-0x891b8c3d] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000008dfff] usable
[    0.000000] reserve setup_data: [mem 0x000000000008e000-0x000000000008ffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000000a0000-0x00000000000bffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000020000000-0x00000000201fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000020200000-0x000000003fffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000040000000-0x00000000401fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000040200000-0x0000000089109017] usable
[    0.000000] reserve setup_data: [mem 0x0000000089109018-0x0000000089124c57] usable
[    0.000000] reserve setup_data: [mem 0x0000000089124c58-0x00000000891a7017] usable
[    0.000000] reserve setup_data: [mem 0x00000000891a7018-0x00000000891b8c3d] usable
[    0.000000] reserve setup_data: [mem 0x00000000891b8c3e-0x000000008ed32fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008ed33000-0x000000008ed5efff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000008ed5f000-0x000000008ed70fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008ed71000-0x000000008ed8efff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000008ed8f000-0x000000008ee59fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008ee5a000-0x000000008ee8efff] reserved
[    0.000000] reserve setup_data: [mem 0x000000008ee8f000-0x000000008eed6fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008eed7000-0x000000008eefefff] reserved
[    0.000000] reserve setup_data: [mem 0x000000008eeff000-0x000000008efa2fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008efa3000-0x000000008f8fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ffed8000-0x00000000ffefffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000086fefffff] usable
[    0.000000] efi: EFI v1.10 by Apple
[    0.000000] efi: ACPI=0x8ed8e000 ACPI 2.0=0x8ed8e014 SMBIOS=0x8ed3b000 
[    0.000000] SMBIOS 2.4 present.
[    0.000000] DMI: Apple Inc. iMac12,2/Mac-942B59F58194171B, BIOS 87.0.0.0.0 06/14/2019
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 3400.327 MHz processor
[    0.000095] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000097] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000103] last_pfn = 0x86ff00 max_arch_pfn = 0x400000000
[    0.000754] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.001371] last_pfn = 0x8efa3 max_arch_pfn = 0x400000000
[    0.002471] Secure boot disabled
[    0.002472] RAMDISK: [mem 0x7e4ad000-0x7fffffff]
[    0.002476] ACPI: Early table checksum verification disabled
[    0.002480] ACPI: RSDP 0x000000008ED8E014 000024 (v02 APPLE )
[    0.002484] ACPI: XSDT 0x000000008ED8E1C0 0000A4 (v01 APPLE  Apple00  0000F000      01000013)
[    0.002488] ACPI: FACP 0x000000008ED8C000 0000F4 (v04 APPLE  Apple00  0000F000 Loki 0000005F)
[    0.002493] ACPI: DSDT 0x000000008ED81000 0053FB (v01 APPLE  iMac     00210001 INTL 20061109)
[    0.002496] ACPI: FACS 0x000000008ED3E000 000040
[    0.002498] ACPI: FACS 0x000000008ED3E000 000040
[    0.002500] ACPI: HPET 0x000000008ED8B000 000038 (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002503] ACPI: APIC 0x000000008ED8A000 0000BC (v02 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002505] ACPI: SBST 0x000000008ED88000 000030 (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002508] ACPI: ECDT 0x000000008ED87000 000053 (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002510] ACPI: SSDT 0x000000008ED7E000 00020D (v01 APPLE  SataAhci 00001000 INTL 20061109)
[    0.002513] ACPI: SSDT 0x000000008ED7C000 0000B1 (v01 APPLE  SmcDppt  00001000 INTL 20061109)
[    0.002516] ACPI: SSDT 0x000000008ED7A000 000646 (v01 APPLE  UsbNoRmh 00001000 INTL 20061109)
[    0.002518] ACPI: SSDT 0x000000008ED78000 00013D (v01 APPLE  SataPrt1 00001000 INTL 20061109)
[    0.002521] ACPI: SSDT 0x000000008ED77000 0000A0 (v02 APPLE  IGHda    00001000 INTL 20061109)
[    0.002523] ACPI: SSDT 0x000000008ED75000 000032 (v01 APPLE  SsdtS3   00001000 INTL 20061109)
[    0.002526] ACPI: SSDT 0x000000008ED74000 000548 (v01 PmRef  Cpu0Ist  00003000 INTL 20061109)
[    0.002528] ACPI: SSDT 0x000000008ED73000 0009B1 (v01 PmRef  CpuPm    00003000 INTL 20061109)
[    0.002531] ACPI: SSDT 0x000000008ED72000 000315 (v01 PmRef  Cpu0Tst  00003000 INTL 20061109)
[    0.002534] ACPI: SSDT 0x000000008ED71000 00037A (v01 PmRef  ApTst    00003000 INTL 20061109)
[    0.002536] ACPI: MCFG 0x000000008ED89000 00003C (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002538] ACPI: Reserving FACP table memory at [mem 0x8ed8c000-0x8ed8c0f3]
[    0.002540] ACPI: Reserving DSDT table memory at [mem 0x8ed81000-0x8ed863fa]
[    0.002541] ACPI: Reserving FACS table memory at [mem 0x8ed3e000-0x8ed3e03f]
[    0.002542] ACPI: Reserving FACS table memory at [mem 0x8ed3e000-0x8ed3e03f]
[    0.002543] ACPI: Reserving HPET table memory at [mem 0x8ed8b000-0x8ed8b037]
[    0.002544] ACPI: Reserving APIC table memory at [mem 0x8ed8a000-0x8ed8a0bb]
[    0.002545] ACPI: Reserving SBST table memory at [mem 0x8ed88000-0x8ed8802f]
[    0.002546] ACPI: Reserving ECDT table memory at [mem 0x8ed87000-0x8ed87052]
[    0.002547] ACPI: Reserving SSDT table memory at [mem 0x8ed7e000-0x8ed7e20c]
[    0.002549] ACPI: Reserving SSDT table memory at [mem 0x8ed7c000-0x8ed7c0b0]
[    0.002550] ACPI: Reserving SSDT table memory at [mem 0x8ed7a000-0x8ed7a645]
[    0.002551] ACPI: Reserving SSDT table memory at [mem 0x8ed78000-0x8ed7813c]
[    0.002552] ACPI: Reserving SSDT table memory at [mem 0x8ed77000-0x8ed7709f]
[    0.002553] ACPI: Reserving SSDT table memory at [mem 0x8ed75000-0x8ed75031]
[    0.002554] ACPI: Reserving SSDT table memory at [mem 0x8ed74000-0x8ed74547]
[    0.002555] ACPI: Reserving SSDT table memory at [mem 0x8ed73000-0x8ed739b0]
[    0.002556] ACPI: Reserving SSDT table memory at [mem 0x8ed72000-0x8ed72314]
[    0.002557] ACPI: Reserving SSDT table memory at [mem 0x8ed71000-0x8ed71379]
[    0.002559] ACPI: Reserving MCFG table memory at [mem 0x8ed89000-0x8ed8903b]
[    0.002565] ACPI: DMI detected to setup _OSI("Darwin"): Apple hardware
[    0.002592] Zone ranges:
[    0.002593]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.002595]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.002597]   Normal   [mem 0x0000000100000000-0x000000086fefffff]
[    0.002598] Movable zone start for each node
[    0.002599] Early memory node ranges
[    0.002599]   node   0: [mem 0x0000000000001000-0x000000000008dfff]
[    0.002601]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.002602]   node   0: [mem 0x0000000000100000-0x000000001fffffff]
[    0.002603]   node   0: [mem 0x0000000020200000-0x000000003fffffff]
[    0.002604]   node   0: [mem 0x0000000040200000-0x000000008ed32fff]
[    0.002605]   node   0: [mem 0x000000008ed5f000-0x000000008ed70fff]
[    0.002606]   node   0: [mem 0x000000008ed8f000-0x000000008ee59fff]
[    0.002606]   node   0: [mem 0x000000008ee8f000-0x000000008eed6fff]
[    0.002607]   node   0: [mem 0x000000008eeff000-0x000000008efa2fff]
[    0.002608]   node   0: [mem 0x0000000100000000-0x000000086fefffff]
[    0.002611] Initmem setup node 0 [mem 0x0000000000001000-0x000000086fefffff]
[    0.002615] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.002616] On node 0, zone DMA: 2 pages in unavailable ranges
[    0.002635] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.004133] On node 0, zone DMA32: 512 pages in unavailable ranges
[    0.006371] On node 0, zone DMA32: 512 pages in unavailable ranges
[    0.006376] On node 0, zone DMA32: 44 pages in unavailable ranges
[    0.006379] On node 0, zone DMA32: 30 pages in unavailable ranges
[    0.006381] On node 0, zone DMA32: 53 pages in unavailable ranges
[    0.006383] On node 0, zone DMA32: 40 pages in unavailable ranges
[    0.060514] On node 0, zone Normal: 4189 pages in unavailable ranges
[    0.060521] On node 0, zone Normal: 256 pages in unavailable ranges
[    0.060682] ACPI: PM-Timer IO Port: 0x408
[    0.060688] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.060690] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.060691] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.060692] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.060692] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.060693] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.060694] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.060695] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.060704] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[    0.060706] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.060708] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.060711] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.060712] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.060716] TSC deadline timer available
[    0.060717] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[    0.060739] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.060741] PM: hibernation: Registered nosave memory: [mem 0x0008e000-0x0008ffff]
[    0.060743] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000bffff]
[    0.060744] PM: hibernation: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[    0.060746] PM: hibernation: Registered nosave memory: [mem 0x20000000-0x201fffff]
[    0.060748] PM: hibernation: Registered nosave memory: [mem 0x40000000-0x401fffff]
[    0.060749] PM: hibernation: Registered nosave memory: [mem 0x89109000-0x89109fff]
[    0.060751] PM: hibernation: Registered nosave memory: [mem 0x89124000-0x89124fff]
[    0.060753] PM: hibernation: Registered nosave memory: [mem 0x891a7000-0x891a7fff]
[    0.060755] PM: hibernation: Registered nosave memory: [mem 0x891b8000-0x891b8fff]
[    0.060757] PM: hibernation: Registered nosave memory: [mem 0x8ed33000-0x8ed5efff]
[    0.060759] PM: hibernation: Registered nosave memory: [mem 0x8ed71000-0x8ed8efff]
[    0.060760] PM: hibernation: Registered nosave memory: [mem 0x8ee5a000-0x8ee8efff]
[    0.060762] PM: hibernation: Registered nosave memory: [mem 0x8eed7000-0x8eefefff]
[    0.060764] PM: hibernation: Registered nosave memory: [mem 0x8efa3000-0x8f8fffff]
[    0.060765] PM: hibernation: Registered nosave memory: [mem 0x8f900000-0xe00f7fff]
[    0.060766] PM: hibernation: Registered nosave memory: [mem 0xe00f8000-0xe00f8fff]
[    0.060767] PM: hibernation: Registered nosave memory: [mem 0xe00f9000-0xfed1bfff]
[    0.060768] PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.060768] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xffed7fff]
[    0.060769] PM: hibernation: Registered nosave memory: [mem 0xffed8000-0xffefffff]
[    0.060770] PM: hibernation: Registered nosave memory: [mem 0xfff00000-0xffffffff]
[    0.060772] [mem 0x8f900000-0xe00f7fff] available for PCI devices
[    0.060775] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.063067] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[    0.063235] percpu: Embedded 44 pages/cpu s139880 r8192 d32152 u262144
[    0.063242] pcpu-alloc: s139880 r8192 d32152 u262144 alloc=1*2097152
[    0.063244] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.063265] Built 1 zonelists, mobility grouping on.  Total pages: 8251732
[    0.063267] Kernel command line: ro root=UUID=de35d1a6-e0e1-40b0-b46a-3974a04adf4b libata.allow_tpm=1 netconsole=6666@192.168.2.87/eth0,6666@192.168.2.208/dc:a6:32:61:33:da oops=panic panic=10 thunderbolt.dyndbg pci=assign-busses,realloc,hpbussize=0x10,hpmmiosize=128M,hpmmioprefsize=1G initrd=boot\initrd.img-5.17.0+
[    0.063328] Unknown kernel command line parameters "netconsole=6666@192.168.2.87/eth0,6666@192.168.2.208/dc:a6:32:61:33:da", will be passed to user space.
[    0.064951] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.065775] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.065840] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.152473] Memory: 32768252K/33531492K available (8192K kernel code, 2298K rwdata, 1860K rodata, 956K init, 2628K bss, 762984K reserved, 0K cma-reserved)
[    0.152508] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.152722] Dynamic Preempt: voluntary
[    0.152746] rcu: Preemptible hierarchical RCU implementation.
[    0.152748] 	Trampoline variant of Tasks RCU enabled.
[    0.152749] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[    0.152757] NR_IRQS: 4352, nr_irqs: 488, preallocated irqs: 16
[    0.152949] random: get_random_bytes called from start_kernel+0x443/0x5fb with crng_init=0
[    0.152974] Console: colour dummy device 80x25
[    0.153243] printk: console [tty0] enabled
[    0.153251] ACPI: Core revision 20211217
[    0.153334] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.153349] APIC: Switch to symmetric I/O mode setup
[    0.153727] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.203344] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x3103833a219, max_idle_ns: 440795222021 ns
[    0.203349] Calibrating delay loop (skipped), value calculated using timer frequency.. 6800.65 BogoMIPS (lpj=34003270)
[    0.203353] pid_max: default: 32768 minimum: 301
[    0.207271] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.207335] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.207455] CPU0: Thermal monitoring enabled (TM1)
[    0.207459] process: using mwait in idle threads
[    0.207462] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.207464] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.207467] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.207470] Spectre V2 : Kernel not compiled with retpoline; no mitigation available!
[    0.207471] Spectre V2 : Vulnerable
[    0.207474] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.207476] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    0.207478] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.207481] Spectre V2 : User space: Mitigation: STIBP via prctl
[    0.207483] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.207486] MDS: Mitigation: Clear CPU buffers
[    0.207645] Freeing SMP alternatives memory: 24K
[    0.207914] smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 1054
[    0.207920] smpboot: CPU0: Intel(R) Core(TM) i7-2600 CPU @ 3.40GHz (family: 0x6, model: 0x2a, stepping: 0x7)
[    0.207986] cblist_init_generic: Setting adjustable number of callback queues.
[    0.207990] cblist_init_generic: Setting shift to 3 and lim to 1.
[    0.208000] Performance Events: PEBS fmt1+, SandyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
[    0.208013] ... version:                3
[    0.208015] ... bit width:              48
[    0.208016] ... generic registers:      4
[    0.208018] ... value mask:             0000ffffffffffff
[    0.208019] ... max period:             00007fffffffffff
[    0.208021] ... fixed-purpose events:   3
[    0.208023] ... event mask:             000000070000000f
[    0.208100] rcu: Hierarchical SRCU implementation.
[    0.208201] smp: Bringing up secondary CPUs ...
[    0.208246] x86: Booting SMP configuration:
[    0.208248] .... node  #0, CPUs:      #1 #2 #3 #4
[    0.216799] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[    0.216799]  #5 #6 #7
[    0.226677] smp: Brought up 1 node, 8 CPUs
[    0.226677] smpboot: Max logical packages: 1
[    0.226677] smpboot: Total of 8 processors activated (54405.23 BogoMIPS)
[    0.228844] devtmpfs: initialized
[    0.228844] ACPI: PM: Registering ACPI NVS region [mem 0x8ed33000-0x8ed5efff] (180224 bytes)
[    0.228844] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.228844] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[    0.228844] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.228844] thermal_sys: Registered thermal governor 'step_wise'
[    0.228844] thermal_sys: Registered thermal governor 'user_space'
[    0.228844] cpuidle: using governor ladder
[    0.228844] cpuidle: using governor menu
[    0.228844] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.228844] PCI: MMCONFIG for domain 0000 [bus 00-fb] at [mem 0xe0000000-0xefbfffff] (base 0xe0000000)
[    0.228844] PCI: not using MMCONFIG
[    0.228844] PCI: Using configuration type 1 for base access
[    0.228844] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[    0.233850] ACPI: Disabled all _OSI OS vendors
[    0.233850] ACPI: Added _OSI(Module Device)
[    0.233850] ACPI: Added _OSI(Processor Device)
[    0.233850] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.233850] ACPI: Added _OSI(Processor Aggregator Device)
[    0.233850] ACPI: Added _OSI(Linux-Dell-Video)
[    0.233850] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.233850] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.233850] ACPI: Added _OSI(Darwin)
[    0.235674] ACPI: 11 ACPI AML tables successfully acquired and loaded
[    0.235875] ACPI: EC: EC started
[    0.235878] ACPI: EC: interrupt blocked
[    0.236365] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.236368] ACPI: EC: Boot ECDT EC used to handle transactions
[    0.236496] ACPI: BIOS _OSI(Darwin) query honored via DMI
[    0.236629] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.236829] ACPI: Dynamic OEM Table Load:
[    0.236837] ACPI: SSDT 0xFFFF888100379800 000781 (v01 PmRef  Cpu0Cst  00003001 INTL 20061109)
[    0.237154] ACPI: Dynamic OEM Table Load:
[    0.237160] ACPI: SSDT 0xFFFF88810036E800 0003A4 (v01 PmRef  ApIst    00003000 INTL 20061109)
[    0.237392] ACPI: Dynamic OEM Table Load:
[    0.237397] ACPI: SSDT 0xFFFF8881000FA600 000119 (v01 PmRef  ApCst    00003000 INTL 20061109)
[    0.238178] ACPI: Interpreter enabled
[    0.238192] ACPI: PM: (supports S0 S3 S4 S5)
[    0.238194] ACPI: Using IOAPIC for interrupt routing
[    0.238211] PCI: MMCONFIG for domain 0000 [bus 00-fb] at [mem 0xe0000000-0xefbfffff] (base 0xe0000000)
[    0.238423] PCI: MMCONFIG at [mem 0xe0000000-0xefbfffff] reserved in ACPI motherboard resources
[    0.238435] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.238529] ACPI: Enabled 6 GPEs in block 00 to 3F
[    0.241387] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.241393] acpi PNP0A08:00: _OSC: OS assumes control of [PCIeHotplug SHPCHotplug AER PCIeCapability LTR DPC]
[    0.241398] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-fb] only partially covers this bridge
[    0.241534] PCI host bridge to bus 0000:00
[    0.241537] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.241540] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.241543] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000fffff window]
[    0.241546] pci_bus 0000:00: root bus resource [mem 0x8f900000-0xfeafffff window]
[    0.241548] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff window]
[    0.241551] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.241561] pci 0000:00:00.0: [8086:0100] type 00 class 0x060000
[    0.241623] pci 0000:00:01.0: [8086:0101] type 01 class 0x060400
[    0.241651] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.241706] pci 0000:00:02.0: [8086:0102] type 00 class 0x038000
[    0.241714] pci 0000:00:02.0: reg 0x10: [mem 0xa8000000-0xa83fffff 64bit]
[    0.241719] pci 0000:00:02.0: reg 0x18: [mem 0xa0000000-0xa7ffffff 64bit pref]
[    0.241724] pci 0000:00:02.0: reg 0x20: [io  0x3000-0x303f]
[    0.241795] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
[    0.241814] pci 0000:00:16.0: reg 0x10: [mem 0xa8907100-0xa890710f 64bit]
[    0.241881] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.241926] pci 0000:00:1a.0: [8086:1c2c] type 00 class 0x0c0300
[    0.241964] pci 0000:00:1a.0: reg 0x20: [io  0x3140-0x315f]
[    0.242047] pci 0000:00:1a.7: [8086:1c2d] type 00 class 0x0c0320
[    0.242063] pci 0000:00:1a.7: reg 0x10: [mem 0xa8906c00-0xa8906fff]
[    0.242138] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
[    0.242304] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
[    0.242319] pci 0000:00:1b.0: reg 0x10: [mem 0xa8900000-0xa8903fff 64bit]
[    0.242380] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.242438] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
[    0.242518] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.242584] pci 0000:00:1c.1: [8086:1c12] type 01 class 0x060400
[    0.242662] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.242727] pci 0000:00:1c.2: [8086:1c14] type 01 class 0x060400
[    0.243413] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.243479] pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
[    0.243557] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.243621] pci 0000:00:1d.0: [8086:1c27] type 00 class 0x0c0300
[    0.243659] pci 0000:00:1d.0: reg 0x20: [io  0x30e0-0x30ff]
[    0.243742] pci 0000:00:1d.7: [8086:1c26] type 00 class 0x0c0320
[    0.243757] pci 0000:00:1d.7: reg 0x10: [mem 0xa8906800-0xa8906bff]
[    0.243833] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.243995] pci 0000:00:1f.0: [8086:1c44] type 00 class 0x060100
[    0.244137] pci 0000:00:1f.2: [8086:1c02] type 00 class 0x010601
[    0.244150] pci 0000:00:1f.2: reg 0x10: [io  0x3168-0x316f]
[    0.244157] pci 0000:00:1f.2: reg 0x14: [io  0x317c-0x317f]
[    0.244164] pci 0000:00:1f.2: reg 0x18: [io  0x3160-0x3167]
[    0.244172] pci 0000:00:1f.2: reg 0x1c: [io  0x3178-0x317b]
[    0.244179] pci 0000:00:1f.2: reg 0x20: [io  0x3060-0x307f]
[    0.244186] pci 0000:00:1f.2: reg 0x24: [mem 0xa8906000-0xa89067ff]
[    0.244221] pci 0000:00:1f.2: PME# supported from D3hot
[    0.244267] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
[    0.244281] pci 0000:00:1f.3: reg 0x10: [mem 0xa8907000-0xa89070ff 64bit]
[    0.244296] pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
[    0.244398] pci 0000:01:00.0: [1002:6720] type 00 class 0x030000
[    0.244413] pci 0000:01:00.0: reg 0x10: [mem 0x90000000-0x9fffffff 64bit pref]
[    0.244424] pci 0000:01:00.0: reg 0x18: [mem 0xa8800000-0xa881ffff 64bit]
[    0.244432] pci 0000:01:00.0: reg 0x20: [io  0x2000-0x20ff]
[    0.244445] pci 0000:01:00.0: reg 0x30: [mem 0xa8820000-0xa883ffff pref]
[    0.244451] pci 0000:01:00.0: enabling Extended Tags
[    0.244461] pci 0000:01:00.0: BAR 0: assigned to efifb
[    0.244491] pci 0000:01:00.0: supports D1 D2
[    0.244579] pci 0000:01:00.1: [1002:aa88] type 00 class 0x040300
[    0.244593] pci 0000:01:00.1: reg 0x10: [mem 0xa8840000-0xa8843fff 64bit]
[    0.244618] pci 0000:01:00.1: enabling Extended Tags
[    0.244653] pci 0000:01:00.1: supports D1 D2
[    0.244745] pci 0000:00:01.0: PCI bridge to [bus 01-ff]
[    0.244748] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.244751] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.244755] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.244758] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
[    0.244831] pci 0000:02:00.0: [14e4:16b4] type 00 class 0x020000
[    0.244865] pci 0000:02:00.0: reg 0x10: [mem 0xa8400000-0xa840ffff 64bit pref]
[    0.244888] pci 0000:02:00.0: reg 0x18: [mem 0xa8410000-0xa841ffff 64bit pref]
[    0.245044] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[    0.245158] pci 0000:00:1c.0: PCI bridge to [bus 02-ff]
[    0.245165] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.245171] pci 0000:00:1c.0:   bridge window [mem 0xa8400000-0xa84fffff 64bit pref]
[    0.245174] pci_bus 0000:02: busn_res: [bus 02-ff] end is updated to 02
[    0.245244] pci 0000:03:00.0: [168c:0030] type 00 class 0x028000
[    0.245275] pci 0000:03:00.0: reg 0x10: [mem 0xa8600000-0xa861ffff 64bit]
[    0.245336] pci 0000:03:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    0.245427] pci 0000:03:00.0: supports D1 D2
[    0.245429] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.245528] pci 0000:00:1c.1: PCI bridge to [bus 03-ff]
[    0.245535] pci 0000:00:1c.1:   bridge window [mem 0xa8600000-0xa86fffff]
[    0.245541] pci_bus 0000:03: busn_res: [bus 03-ff] end is updated to 03
[    0.245612] pci 0000:04:00.0: [11c1:5901] type 00 class 0x0c0010
[    0.245646] pci 0000:04:00.0: reg 0x10: [mem 0xa8500000-0xa8500fff 64bit]
[    0.245808] pci 0000:04:00.0: supports D1 D2
[    0.245810] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.246004] pci 0000:00:1c.2: PCI bridge to [bus 04-ff]
[    0.246011] pci 0000:00:1c.2:   bridge window [mem 0xa8500000-0xa85fffff]
[    0.246017] pci_bus 0000:04: busn_res: [bus 04-ff] end is updated to 04
[    0.246089] pci 0000:05:00.0: [8086:1513] type 01 class 0x060400
[    0.246154] pci 0000:05:00.0: enabling Extended Tags
[    0.246249] pci 0000:05:00.0: supports D1 D2
[    0.246251] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.246376] pci 0000:00:1c.4: PCI bridge to [bus 05-ff]
[    0.246381] pci 0000:00:1c.4:   bridge window [io  0x4000-0x4fff]
[    0.246385] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xad6fffff]
[    0.246391] pci 0000:00:1c.4:   bridge window [mem 0xacf00000-0xb10fffff 64bit pref]
[    0.246475] acpiphp: Slot [3] registered
[    0.246497] acpiphp: Slot [4] registered
[    0.246539] pci 0000:06:00.0: [8086:1513] type 01 class 0x060400
[    0.246609] pci 0000:06:00.0: enabling Extended Tags
[    0.246709] pci 0000:06:00.0: supports D1 D2
[    0.246711] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.246823] pci 0000:06:03.0: [8086:1513] type 01 class 0x060400
[    0.246893] pci 0000:06:03.0: enabling Extended Tags
[    0.246995] pci 0000:06:03.0: supports D1 D2
[    0.246997] pci 0000:06:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.247102] pci 0000:06:04.0: [8086:1513] type 01 class 0x060400
[    0.247172] pci 0000:06:04.0: enabling Extended Tags
[    0.247273] pci 0000:06:04.0: supports D1 D2
[    0.247275] pci 0000:06:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.247383] pci 0000:06:05.0: [8086:1513] type 01 class 0x060400
[    0.247453] pci 0000:06:05.0: enabling Extended Tags
[    0.247554] pci 0000:06:05.0: supports D1 D2
[    0.247556] pci 0000:06:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.247665] pci 0000:06:06.0: [8086:1513] type 01 class 0x060400
[    0.247735] pci 0000:06:06.0: enabling Extended Tags
[    0.247836] pci 0000:06:06.0: supports D1 D2
[    0.247838] pci 0000:06:06.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.247955] pci 0000:05:00.0: PCI bridge to [bus 06-ff]
[    0.247966] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xa96fffff]
[    0.247975] pci 0000:05:00.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.248074] acpiphp: Slot [1] registered
[    0.248115] pci 0000:07:00.0: [8086:1513] type 00 class 0x088000
[    0.248142] pci 0000:07:00.0: reg 0x10: [mem 0xa8a00000-0xa8a3ffff]
[    0.248158] pci 0000:07:00.0: reg 0x14: [mem 0xa8a40000-0xa8a40fff]
[    0.248238] pci 0000:07:00.0: enabling Extended Tags
[    0.248362] pci 0000:07:00.0: supports D1 D2
[    0.248364] pci 0000:07:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.248505] pci 0000:06:00.0: PCI bridge to [bus 07-ff]
[    0.248517] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.248526] pci_bus 0000:07: busn_res: [bus 07-ff] end is updated to 07
[    0.248583] pci 0000:06:03.0: PCI bridge to [bus 08-ff]
[    0.248595] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xa8bfffff]
[    0.248604] pci_bus 0000:08: busn_res: [bus 08-ff] end is updated to 17
[    0.248716] pci 0000:18:00.0: [8086:1513] type 01 class 0x060400
[    0.248834] pci 0000:18:00.0: enabling Extended Tags
[    0.249011] pci 0000:18:00.0: supports D1 D2
[    0.249013] pci 0000:18:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.273408] pci 0000:06:04.0: PCI bridge to [bus 18-ff]
[    0.273426] pci 0000:06:04.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.273439] pci 0000:06:04.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.273448] pci 0000:18:00.0: bridge configuration invalid ([bus 3a-49]), reconfiguring
[    0.273613] pci 0000:19:00.0: [8086:1513] type 01 class 0x060400
[    0.273738] pci 0000:19:00.0: enabling Extended Tags
[    0.273919] pci 0000:19:00.0: supports D1 D2
[    0.273921] pci 0000:19:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.274078] pci 0000:19:01.0: [8086:1513] type 01 class 0x060400
[    0.274202] pci 0000:19:01.0: enabling Extended Tags
[    0.274382] pci 0000:19:01.0: supports D1 D2
[    0.274384] pci 0000:19:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.274539] pci 0000:19:02.0: [8086:1513] type 01 class 0x060400
[    0.274663] pci 0000:19:02.0: enabling Extended Tags
[    0.274843] pci 0000:19:02.0: supports D1 D2
[    0.274845] pci 0000:19:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.275006] pci 0000:19:04.0: [8086:1513] type 01 class 0x060400
[    0.275130] pci 0000:19:04.0: enabling Extended Tags
[    0.275313] pci 0000:19:04.0: supports D1 D2
[    0.275315] pci 0000:19:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.275476] pci 0000:19:05.0: [8086:1513] type 01 class 0x060400
[    0.275583] pci 0000:19:05.0: enabling Extended Tags
[    0.275767] pci 0000:19:05.0: supports D1 D2
[    0.275769] pci 0000:19:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.275949] pci 0000:18:00.0: PCI bridge to [bus 19-ff]
[    0.275968] pci 0000:18:00.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.275982] pci 0000:18:00.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.275988] pci 0000:19:00.0: bridge configuration invalid ([bus 3b-3d]), reconfiguring
[    0.276005] pci 0000:19:01.0: bridge configuration invalid ([bus 3e-3e]), reconfiguring
[    0.276022] pci 0000:19:02.0: bridge configuration invalid ([bus 3f-3f]), reconfiguring
[    0.276039] pci 0000:19:04.0: bridge configuration invalid ([bus 40-48]), reconfiguring
[    0.276056] pci 0000:19:05.0: bridge configuration invalid ([bus 49-49]), reconfiguring
[    0.276210] pci 0000:1a:00.0: [12d8:400c] type 01 class 0x060400
[    0.276598] pci 0000:1a:00.0: supports D1 D2
[    0.276600] pci 0000:1a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.303386] pci 0000:19:00.0: PCI bridge to [bus 1a-ff]
[    0.303410] pci 0000:19:00.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.303432] pci 0000:1a:00.0: bridge configuration invalid ([bus 3c-3d]), reconfiguring
[    0.303668] pci 0000:1b:03.0: [12d8:400c] type 01 class 0x060400
[    0.304004] pci 0000:1b:03.0: supports D1 D2
[    0.304006] pci 0000:1b:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.304208] pci 0000:1a:00.0: PCI bridge to [bus 1b-ff]
[    0.304233] pci 0000:1a:00.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.304254] pci 0000:1b:03.0: bridge configuration invalid ([bus 3d-3d]), reconfiguring
[    0.304458] pci 0000:1c:00.0: [12d8:400e] type 00 class 0x0c0310
[    0.304510] pci 0000:1c:00.0: reg 0x10: [mem 0xa9401000-0xa9401fff]
[    0.304823] pci 0000:1c:00.0: supports D1 D2
[    0.304825] pci 0000:1c:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.304980] pci 0000:1c:00.1: [12d8:400e] type 00 class 0x0c0310
[    0.305032] pci 0000:1c:00.1: reg 0x10: [mem 0xa9400000-0xa9400fff]
[    0.305344] pci 0000:1c:00.1: supports D1 D2
[    0.305347] pci 0000:1c:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.305473] pci 0000:1c:00.2: [12d8:400f] type 00 class 0x0c0320
[    0.305525] pci 0000:1c:00.2: reg 0x10: [mem 0xa9402000-0xa94020ff]
[    0.305837] pci 0000:1c:00.2: supports D1 D2
[    0.305839] pci 0000:1c:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.306096] pci 0000:1b:03.0: PCI bridge to [bus 1c-ff]
[    0.306121] pci 0000:1b:03.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.306139] pci_bus 0000:1c: busn_res: [bus 1c-ff] end is updated to 1c
[    0.306149] pci_bus 0000:1b: busn_res: [bus 1b-ff] end is updated to 1c
[    0.306160] pci_bus 0000:1a: busn_res: [bus 1a-ff] end is updated to 1c
[    0.306306] pci 0000:1d:00.0: [14e4:16b0] type 00 class 0x020000
[    0.306376] pci 0000:1d:00.0: reg 0x10: [mem 0xad000000-0xad00ffff 64bit pref]
[    0.306422] pci 0000:1d:00.0: reg 0x18: [mem 0xad010000-0xad01ffff 64bit pref]
[    0.306764] pci 0000:1d:00.0: PME# supported from D0 D3hot D3cold
[    0.333405] pci 0000:19:01.0: PCI bridge to [bus 1d-ff]
[    0.333429] pci 0000:19:01.0:   bridge window [mem 0xa9300000-0xa93fffff]
[    0.333447] pci 0000:19:01.0:   bridge window [mem 0xad000000-0xad0fffff 64bit pref]
[    0.333461] pci_bus 0000:1d: busn_res: [bus 1d-ff] end is updated to 1d
[    0.333605] pci 0000:1e:00.0: [11c1:5901] type 00 class 0x0c0010
[    0.333675] pci 0000:1e:00.0: reg 0x10: [mem 0xa9200000-0xa9200fff 64bit]
[    0.334029] pci 0000:1e:00.0: supports D1 D2
[    0.334031] pci 0000:1e:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.363404] pci 0000:19:02.0: PCI bridge to [bus 1e-ff]
[    0.363429] pci 0000:19:02.0:   bridge window [mem 0xa9200000-0xa92fffff]
[    0.363447] pci_bus 0000:1e: busn_res: [bus 1e-ff] end is updated to 1e
[    0.363627] pci 0000:1f:00.0: [8086:1513] type 01 class 0x060400
[    0.363799] pci 0000:1f:00.0: enabling Extended Tags
[    0.364057] pci 0000:1f:00.0: supports D1 D2
[    0.364059] pci 0000:1f:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.393391] pci 0000:19:04.0: PCI bridge to [bus 1f-ff]
[    0.393415] pci 0000:19:04.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.393433] pci 0000:19:04.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.393443] pci 0000:1f:00.0: bridge configuration invalid ([bus 41-48]), reconfiguring
[    0.393672] pci 0000:20:00.0: [8086:1513] type 01 class 0x060400
[    0.393851] pci 0000:20:00.0: enabling Extended Tags
[    0.394113] pci 0000:20:00.0: supports D1 D2
[    0.394115] pci 0000:20:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.394335] pci 0000:20:01.0: [8086:1513] type 01 class 0x060400
[    0.394514] pci 0000:20:01.0: enabling Extended Tags
[    0.394775] pci 0000:20:01.0: supports D1 D2
[    0.394777] pci 0000:20:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.394995] pci 0000:20:02.0: [8086:1513] type 01 class 0x060400
[    0.395174] pci 0000:20:02.0: enabling Extended Tags
[    0.395435] pci 0000:20:02.0: supports D1 D2
[    0.395437] pci 0000:20:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.395663] pci 0000:20:04.0: [8086:1513] type 01 class 0x060400
[    0.395818] pci 0000:20:04.0: enabling Extended Tags
[    0.396083] pci 0000:20:04.0: supports D1 D2
[    0.396086] pci 0000:20:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.396313] pci 0000:20:05.0: [8086:1513] type 01 class 0x060400
[    0.396468] pci 0000:20:05.0: enabling Extended Tags
[    0.396734] pci 0000:20:05.0: supports D1 D2
[    0.396736] pci 0000:20:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.396991] pci 0000:1f:00.0: PCI bridge to [bus 20-ff]
[    0.397018] pci 0000:1f:00.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.397037] pci 0000:1f:00.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.397044] pci 0000:20:00.0: bridge configuration invalid ([bus 42-44]), reconfiguring
[    0.397067] pci 0000:20:01.0: bridge configuration invalid ([bus 45-45]), reconfiguring
[    0.397090] pci 0000:20:02.0: bridge configuration invalid ([bus 46-46]), reconfiguring
[    0.397113] pci 0000:20:04.0: bridge configuration invalid ([bus 47-47]), reconfiguring
[    0.397137] pci 0000:20:05.0: bridge configuration invalid ([bus 48-48]), reconfiguring
[    0.397350] pci 0000:21:00.0: [12d8:400c] type 01 class 0x060400
[    0.397873] pci 0000:21:00.0: supports D1 D2
[    0.397875] pci 0000:21:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.398143] pci 0000:20:00.0: PCI bridge to [bus 21-ff]
[    0.398170] pci 0000:20:00.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.398194] pci 0000:21:00.0: bridge configuration invalid ([bus 43-44]), reconfiguring
[    0.398492] pci 0000:22:03.0: [12d8:400c] type 01 class 0x060400
[    0.398941] pci 0000:22:03.0: supports D1 D2
[    0.398943] pci 0000:22:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.399208] pci 0000:21:00.0: PCI bridge to [bus 22-ff]
[    0.399241] pci 0000:21:00.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.399269] pci 0000:22:03.0: bridge configuration invalid ([bus 44-44]), reconfiguring
[    0.399540] pci 0000:23:00.0: [12d8:400e] type 00 class 0x0c0310
[    0.399608] pci 0000:23:00.0: reg 0x10: [mem 0xa9101000-0xa9101fff]
[    0.400028] pci 0000:23:00.0: supports D1 D2
[    0.400030] pci 0000:23:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.400238] pci 0000:23:00.1: [12d8:400e] type 00 class 0x0c0310
[    0.400306] pci 0000:23:00.1: reg 0x10: [mem 0xa9100000-0xa9100fff]
[    0.400724] pci 0000:23:00.1: supports D1 D2
[    0.400727] pci 0000:23:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.400890] pci 0000:23:00.2: [12d8:400f] type 00 class 0x0c0320
[    0.400959] pci 0000:23:00.2: reg 0x10: [mem 0xa9102000-0xa91020ff]
[    0.401377] pci 0000:23:00.2: supports D1 D2
[    0.401379] pci 0000:23:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.401733] pci 0000:22:03.0: PCI bridge to [bus 23-ff]
[    0.401766] pci 0000:22:03.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.401788] pci_bus 0000:23: busn_res: [bus 23-ff] end is updated to 23
[    0.401801] pci_bus 0000:22: busn_res: [bus 22-ff] end is updated to 23
[    0.401814] pci_bus 0000:21: busn_res: [bus 21-ff] end is updated to 23
[    0.402017] pci 0000:24:00.0: [14e4:16b0] type 00 class 0x020000
[    0.402108] pci 0000:24:00.0: reg 0x10: [mem 0xacf00000-0xacf0ffff 64bit pref]
[    0.402168] pci 0000:24:00.0: reg 0x18: [mem 0xacf10000-0xacf1ffff 64bit pref]
[    0.402622] pci 0000:24:00.0: PME# supported from D0 D3hot D3cold
[    0.402940] pci 0000:20:01.0: PCI bridge to [bus 24-ff]
[    0.402967] pci 0000:20:01.0:   bridge window [mem 0xa9000000-0xa90fffff]
[    0.402986] pci 0000:20:01.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.402989] pci_bus 0000:24: busn_res: [bus 24-ff] end is updated to 24
[    0.403186] pci 0000:25:00.0: [11c1:5901] type 00 class 0x0c0010
[    0.403278] pci 0000:25:00.0: reg 0x10: [mem 0xa8f00000-0xa8f00fff 64bit]
[    0.403742] pci 0000:25:00.0: supports D1 D2
[    0.403745] pci 0000:25:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.404043] pci 0000:20:02.0: PCI bridge to [bus 25-ff]
[    0.404070] pci 0000:20:02.0:   bridge window [mem 0xa8f00000-0xa8ffffff]
[    0.404089] pci_bus 0000:25: busn_res: [bus 25-ff] end is updated to 25
[    0.404222] pci 0000:20:04.0: PCI bridge to [bus 26-ff]
[    0.404249] pci 0000:20:04.0:   bridge window [mem 0xa8e00000-0xa8efffff]
[    0.404268] pci_bus 0000:26: busn_res: [bus 26-ff] end is updated to 35
[    0.404401] pci 0000:20:05.0: PCI bridge to [bus 36-ff]
[    0.404428] pci 0000:20:05.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.404447] pci_bus 0000:36: busn_res: [bus 36-ff] end is updated to 45
[    0.404458] pci_bus 0000:20: busn_res: [bus 20-ff] end is updated to 45
[    0.404469] pci_bus 0000:1f: busn_res: [bus 1f-ff] end is updated to 45
[    0.404562] pci 0000:19:05.0: PCI bridge to [bus 46-ff]
[    0.404581] pci 0000:19:05.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.404595] pci_bus 0000:46: busn_res: [bus 46-ff] end is updated to 55
[    0.404603] pci_bus 0000:19: busn_res: [bus 19-ff] end is updated to 55
[    0.404612] pci_bus 0000:18: busn_res: [bus 18-ff] end is updated to 55
[    0.404673] pci 0000:06:05.0: PCI bridge to [bus 56-ff]
[    0.404685] pci 0000:06:05.0:   bridge window [mem 0xa9500000-0xa95fffff]
[    0.404694] pci_bus 0000:56: busn_res: [bus 56-ff] end is updated to 65
[    0.404750] pci 0000:06:06.0: PCI bridge to [bus 66-ff]
[    0.404762] pci 0000:06:06.0:   bridge window [mem 0xa9600000-0xa96fffff]
[    0.404771] pci_bus 0000:66: busn_res: [bus 66-ff] end is updated to 75
[    0.404777] pci_bus 0000:06: busn_res: [bus 06-ff] end is updated to 75
[    0.404782] pci_bus 0000:05: busn_res: [bus 05-ff] end is updated to 75
[    0.404787] pci_bus 0000:00: on NUMA node 0
[    0.405054] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    0.405057] ACPI: PCI: Interrupt link LNKA disabled
[    0.405088] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    0.405091] ACPI: PCI: Interrupt link LNKB disabled
[    0.405120] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    0.405122] ACPI: PCI: Interrupt link LNKC disabled
[    0.405150] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    0.405152] ACPI: PCI: Interrupt link LNKD disabled
[    0.405181] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    0.405183] ACPI: PCI: Interrupt link LNKE disabled
[    0.405211] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    0.405213] ACPI: PCI: Interrupt link LNKF disabled
[    0.405241] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    0.405243] ACPI: PCI: Interrupt link LNKG disabled
[    0.405271] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    0.405273] ACPI: PCI: Interrupt link LNKH disabled
[    0.405359] ACPI: EC: interrupt unblocked
[    0.405362] ACPI: EC: event unblocked
[    0.405366] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.405368] ACPI: EC: GPE=0x17
[    0.405370] ACPI: \_SB_.PCI0.LPCB.EC__: Boot ECDT EC initialization complete
[    0.405373] ACPI: \_SB_.PCI0.LPCB.EC__: EC: Used to handle transactions and events
[    0.405426] SCSI subsystem initialized
[    0.405434] libata version 3.00 loaded.
[    0.405434] Registered efivars operations
[    0.405434] PCI: Using ACPI for IRQ routing
[    0.416094] PCI: pci_cache_line_size set to 64 bytes
[    0.416097] pci 0000:00:1c.4: can't claim BAR 9 [mem 0xacf00000-0xb10fffff 64bit pref]: address conflict with PCI Bus 0000:05 [mem 0xa8a00000-0xad6fffff]
[    0.416377] e820: reserve RAM buffer [mem 0x0008e000-0x0008ffff]
[    0.416379] e820: reserve RAM buffer [mem 0x89109018-0x8bffffff]
[    0.416380] e820: reserve RAM buffer [mem 0x891a7018-0x8bffffff]
[    0.416381] e820: reserve RAM buffer [mem 0x8ed33000-0x8fffffff]
[    0.416382] e820: reserve RAM buffer [mem 0x8ed71000-0x8fffffff]
[    0.416384] e820: reserve RAM buffer [mem 0x8ee5a000-0x8fffffff]
[    0.416385] e820: reserve RAM buffer [mem 0x8eed7000-0x8fffffff]
[    0.416386] e820: reserve RAM buffer [mem 0x8efa3000-0x8fffffff]
[    0.416387] e820: reserve RAM buffer [mem 0x86ff00000-0x86fffffff]
[    0.416396] pci 0000:01:00.0: vgaarb: setting as boot VGA device
[    0.416396] pci 0000:01:00.0: vgaarb: bridge control possible
[    0.416396] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    0.416396] vgaarb: loaded
[    0.416396] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.416396] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.416396] clocksource: Switched to clocksource tsc-early
[    0.416396] VFS: Disk quotas dquot_6.6.0
[    0.416396] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.416396] pnp: PnP ACPI init
[    0.416502] system 00:00: [mem 0xfed00000-0xfed003ff] has been reserved
[    0.416546] system 00:01: [io  0x0680-0x069f] has been reserved
[    0.416549] system 00:01: [io  0x1000-0x100f] has been reserved
[    0.416552] system 00:01: [io  0xffff] has been reserved
[    0.416554] system 00:01: [io  0xffff] has been reserved
[    0.416557] system 00:01: [io  0x0400-0x047f] has been reserved
[    0.416559] system 00:01: [io  0x0500-0x057f] has been reserved
[    0.416562] system 00:01: [io  0x164e-0x164f] has been reserved
[    0.416714] system 00:03: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.416718] system 00:03: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.416720] system 00:03: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.416723] system 00:03: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.416726] system 00:03: [mem 0xe0000000-0xefffffff] could not be reserved
[    0.416729] system 00:03: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.416731] system 00:03: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.416734] system 00:03: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.416736] system 00:03: [mem 0xff000000-0xffffffff] could not be reserved
[    0.416739] system 00:03: [mem 0xfee00000-0xfeefffff] has been reserved
[    0.416823] pnp: PnP ACPI: found 4 devices
[    0.416838] pci 0000:01:00.0: assigning 75 device properties
[    0.416838] pci 0000:04:00.0: assigning 2 device properties
[    0.416838] pci 0000:07:00.0: assigning 5 device properties
[    0.416838] pci 0000:1e:00.0: assigning 2 device properties
[    0.416838] pci 0000:25:00.0: assigning 2 device properties
[    0.416838] pci 0000:00:1b.0: assigning 4 device properties
[    0.419158] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.419179] NET: Registered PF_INET protocol family
[    0.419337] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.421195] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    0.421233] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.421498] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.421585] TCP: Hash tables configured (established 262144 bind 65536)
[    0.421610] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.421670] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.421749] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.421757] pci 0000:03:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[    0.421765] pci_bus 0000:00: max bus depth: 9 pci_try_num: 10
[    0.421778] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.421782] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.421785] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.421788] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.421793] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.421798] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.421802] pci 0000:00:1c.0:   bridge window [mem 0xa8400000-0xa84fffff 64bit pref]
[    0.421810] pci 0000:03:00.0: BAR 6: assigned [mem 0xa8620000-0xa862ffff pref]
[    0.421814] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.421819] pci 0000:00:1c.1:   bridge window [mem 0xa8600000-0xa86fffff]
[    0.421827] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.421831] pci 0000:00:1c.2:   bridge window [mem 0xa8500000-0xa85fffff]
[    0.421840] pci 0000:05:00.0: BAR 7: no space for [io  size 0x8000]
[    0.421842] pci 0000:05:00.0: BAR 7: failed to assign [io  size 0x8000]
[    0.421847] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.421850] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.421853] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.421856] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.421859] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.421862] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.421865] pci 0000:06:03.0: BAR 7: no space for [io  size 0x1000]
[    0.421867] pci 0000:06:03.0: BAR 7: failed to assign [io  size 0x1000]
[    0.421870] pci 0000:06:04.0: BAR 7: no space for [io  size 0x5000]
[    0.421872] pci 0000:06:04.0: BAR 7: failed to assign [io  size 0x5000]
[    0.421875] pci 0000:06:05.0: BAR 7: no space for [io  size 0x1000]
[    0.421877] pci 0000:06:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.421880] pci 0000:06:06.0: BAR 7: no space for [io  size 0x1000]
[    0.421882] pci 0000:06:06.0: BAR 7: failed to assign [io  size 0x1000]
[    0.421886] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.421893] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.421904] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.421911] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xa8bfffff]
[    0.421923] pci 0000:18:00.0: BAR 7: no space for [io  size 0x4000]
[    0.421925] pci 0000:18:00.0: BAR 7: failed to assign [io  size 0x4000]
[    0.421929] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.421932] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.421935] pci 0000:19:04.0: BAR 7: no space for [io  size 0x3000]
[    0.421937] pci 0000:19:04.0: BAR 7: failed to assign [io  size 0x3000]
[    0.421940] pci 0000:19:05.0: BAR 7: no space for [io  size 0x1000]
[    0.421942] pci 0000:19:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.421945] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.421958] pci 0000:1b:03.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.421984] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.421997] pci 0000:1a:00.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.422022] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.422033] pci 0000:19:00.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.422052] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.422062] pci 0000:19:01.0:   bridge window [mem 0xa9300000-0xa93fffff]
[    0.422071] pci 0000:19:01.0:   bridge window [mem 0xad000000-0xad0fffff 64bit pref]
[    0.422085] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.422095] pci 0000:19:02.0:   bridge window [mem 0xa9200000-0xa92fffff]
[    0.422115] pci 0000:1f:00.0: BAR 7: no space for [io  size 0x2000]
[    0.422117] pci 0000:1f:00.0: BAR 7: failed to assign [io  size 0x2000]
[    0.422121] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422123] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422127] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422130] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422133] pci 0000:20:04.0: BAR 7: no space for [io  size 0x1000]
[    0.422135] pci 0000:20:04.0: BAR 7: failed to assign [io  size 0x1000]
[    0.422137] pci 0000:20:05.0: BAR 7: no space for [io  size 0x1000]
[    0.422140] pci 0000:20:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.422142] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.422159] pci 0000:22:03.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.422192] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.422210] pci 0000:21:00.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.422242] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.422257] pci 0000:20:00.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.422284] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.422298] pci 0000:20:01.0:   bridge window [mem 0xa9000000-0xa90fffff]
[    0.422309] pci 0000:20:01.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.422328] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.422343] pci 0000:20:02.0:   bridge window [mem 0xa8f00000-0xa8ffffff]
[    0.422370] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.422384] pci 0000:20:04.0:   bridge window [mem 0xa8e00000-0xa8efffff]
[    0.422411] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.422425] pci 0000:20:05.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.422452] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.422467] pci 0000:1f:00.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.422477] pci 0000:1f:00.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.422496] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.422507] pci 0000:19:04.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.422514] pci 0000:19:04.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.422529] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.422539] pci 0000:19:05.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.422558] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.422569] pci 0000:18:00.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.422577] pci 0000:18:00.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.422590] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.422597] pci 0000:06:04.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.422602] pci 0000:06:04.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.422611] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.422618] pci 0000:06:05.0:   bridge window [mem 0xa9500000-0xa95fffff]
[    0.422630] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.422637] pci 0000:06:06.0:   bridge window [mem 0xa9600000-0xa96fffff]
[    0.422648] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.422655] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xa96fffff]
[    0.422660] pci 0000:05:00.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.422669] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.422672] pci 0000:00:1c.4:   bridge window [io  0x4000-0x4fff]
[    0.422677] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xad6fffff]
[    0.422685] pci_bus 0000:00: No. 2 try to assign unassigned res
[    0.422693] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.422696] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.422698] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.422701] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.422705] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.422710] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.422714] pci 0000:00:1c.0:   bridge window [mem 0xa8400000-0xa84fffff 64bit pref]
[    0.422721] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.422725] pci 0000:00:1c.1:   bridge window [mem 0xa8600000-0xa86fffff]
[    0.422733] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.422738] pci 0000:00:1c.2:   bridge window [mem 0xa8500000-0xa85fffff]
[    0.422746] pci 0000:05:00.0: BAR 7: no space for [io  size 0x8000]
[    0.422748] pci 0000:05:00.0: BAR 7: failed to assign [io  size 0x8000]
[    0.422752] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422754] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422758] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422760] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422764] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422766] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422769] pci 0000:06:03.0: BAR 7: no space for [io  size 0x1000]
[    0.422772] pci 0000:06:03.0: BAR 7: failed to assign [io  size 0x1000]
[    0.422774] pci 0000:06:04.0: BAR 7: no space for [io  size 0x5000]
[    0.422776] pci 0000:06:04.0: BAR 7: failed to assign [io  size 0x5000]
[    0.422779] pci 0000:06:05.0: BAR 7: no space for [io  size 0x1000]
[    0.422781] pci 0000:06:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.422783] pci 0000:06:06.0: BAR 7: no space for [io  size 0x1000]
[    0.422786] pci 0000:06:06.0: BAR 7: failed to assign [io  size 0x1000]
[    0.422788] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.422795] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.422807] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.422814] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xa8bfffff]
[    0.422825] pci 0000:18:00.0: BAR 7: no space for [io  size 0x4000]
[    0.422828] pci 0000:18:00.0: BAR 7: failed to assign [io  size 0x4000]
[    0.422831] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422834] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422836] pci 0000:19:04.0: BAR 7: no space for [io  size 0x3000]
[    0.422839] pci 0000:19:04.0: BAR 7: failed to assign [io  size 0x3000]
[    0.422841] pci 0000:19:05.0: BAR 7: no space for [io  size 0x1000]
[    0.422843] pci 0000:19:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.422846] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.422859] pci 0000:1b:03.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.422884] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.422898] pci 0000:1a:00.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.422923] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.422933] pci 0000:19:00.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.422952] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.422963] pci 0000:19:01.0:   bridge window [mem 0xa9300000-0xa93fffff]
[    0.422971] pci 0000:19:01.0:   bridge window [mem 0xad000000-0xad0fffff 64bit pref]
[    0.422985] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.422995] pci 0000:19:02.0:   bridge window [mem 0xa9200000-0xa92fffff]
[    0.423015] pci 0000:1f:00.0: BAR 7: no space for [io  size 0x2000]
[    0.423017] pci 0000:1f:00.0: BAR 7: failed to assign [io  size 0x2000]
[    0.423020] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.423023] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.423026] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.423029] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.423032] pci 0000:20:04.0: BAR 7: no space for [io  size 0x1000]
[    0.423034] pci 0000:20:04.0: BAR 7: failed to assign [io  size 0x1000]
[    0.423037] pci 0000:20:05.0: BAR 7: no space for [io  size 0x1000]
[    0.423039] pci 0000:20:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.423042] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.423059] pci 0000:22:03.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.423092] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.423109] pci 0000:21:00.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.423141] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.423156] pci 0000:20:00.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.423183] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.423197] pci 0000:20:01.0:   bridge window [mem 0xa9000000-0xa90fffff]
[    0.423208] pci 0000:20:01.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.423227] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.423241] pci 0000:20:02.0:   bridge window [mem 0xa8f00000-0xa8ffffff]
[    0.423268] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.423283] pci 0000:20:04.0:   bridge window [mem 0xa8e00000-0xa8efffff]
[    0.423310] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.423324] pci 0000:20:05.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.423351] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.423365] pci 0000:1f:00.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.423376] pci 0000:1f:00.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.423395] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.423405] pci 0000:19:04.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.423413] pci 0000:19:04.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.423427] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.423437] pci 0000:19:05.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.423457] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.423467] pci 0000:18:00.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.423475] pci 0000:18:00.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.423489] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.423495] pci 0000:06:04.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.423501] pci 0000:06:04.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.423510] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.423517] pci 0000:06:05.0:   bridge window [mem 0xa9500000-0xa95fffff]
[    0.423528] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.423535] pci 0000:06:06.0:   bridge window [mem 0xa9600000-0xa96fffff]
[    0.423547] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.423553] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xa96fffff]
[    0.423559] pci 0000:05:00.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.423567] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.423570] pci 0000:00:1c.4:   bridge window [io  0x4000-0x4fff]
[    0.423575] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xad6fffff]
[    0.423583] pci_bus 0000:00: No. 3 try to assign unassigned res
[    0.423586] release child resource [mem 0xa9100000-0xa9100fff]
[    0.423587] release child resource [mem 0xa9101000-0xa9101fff]
[    0.423587] release child resource [mem 0xa9102000-0xa91020ff]
[    0.423588] pci 0000:22:03.0: resource 8 [mem 0xa9100000-0xa91fffff] released
[    0.423591] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.423603] pci 0000:21:00.0: resource 8 [mem 0xa9100000-0xa91fffff] released
[    0.423605] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.423618] pci 0000:20:00.0: resource 8 [mem 0xa9100000-0xa91fffff] released
[    0.423620] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.423630] release child resource [mem 0xacf00000-0xacf0ffff 64bit pref]
[    0.423631] release child resource [mem 0xacf10000-0xacf1ffff 64bit pref]
[    0.423632] pci 0000:20:01.0: resource 9 [mem 0xacf00000-0xacffffff 64bit pref] released
[    0.423635] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.423658] release child resource [mem 0xa8f00000-0xa8f00fff 64bit]
[    0.423659] pci 0000:20:02.0: resource 8 [mem 0xa8f00000-0xa8ffffff] released
[    0.423661] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.423671] pci 0000:20:04.0: resource 8 [mem 0xa8e00000-0xa8efffff] released
[    0.423674] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.423684] pci 0000:20:05.0: resource 8 [mem 0xa8d00000-0xa8dfffff] released
[    0.423686] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.423697] pci 0000:1f:00.0: resource 9 [mem 0xacf00000-0xacffffff 64bit pref] released
[    0.423700] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.423722] release child resource [mem 0xa9400000-0xa9400fff]
[    0.423723] release child resource [mem 0xa9401000-0xa9401fff]
[    0.423724] release child resource [mem 0xa9402000-0xa94020ff]
[    0.423725] pci 0000:1b:03.0: resource 8 [mem 0xa9400000-0xa94fffff] released
[    0.423727] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.423737] pci 0000:1a:00.0: resource 8 [mem 0xa9400000-0xa94fffff] released
[    0.423739] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.423749] pci 0000:19:00.0: resource 8 [mem 0xa9400000-0xa94fffff] released
[    0.423751] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.423759] release child resource [mem 0xad000000-0xad00ffff 64bit pref]
[    0.423760] release child resource [mem 0xad010000-0xad01ffff 64bit pref]
[    0.423760] pci 0000:19:01.0: resource 9 [mem 0xad000000-0xad0fffff 64bit pref] released
[    0.423763] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.423779] release child resource [mem 0xa9200000-0xa9200fff 64bit]
[    0.423780] pci 0000:19:02.0: resource 8 [mem 0xa9200000-0xa92fffff] released
[    0.423783] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.423791] pci 0000:19:04.0: resource 9 [mem 0xacf00000-0xacffffff 64bit pref] released
[    0.423794] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.423810] pci 0000:19:05.0: resource 8 [mem 0xa8c00000-0xa8cfffff] released
[    0.423812] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.423820] pci 0000:18:00.0: resource 9 [mem 0xacf00000-0xad0fffff 64bit pref] released
[    0.423823] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.423839] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.423840] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.423841] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.423843] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.423849] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xa8bfffff] released
[    0.423851] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.423857] pci 0000:06:04.0: resource 9 [mem 0xacf00000-0xad0fffff 64bit pref] released
[    0.423859] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.423869] pci 0000:06:05.0: resource 8 [mem 0xa9500000-0xa95fffff] released
[    0.423872] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.423877] pci 0000:06:06.0: resource 8 [mem 0xa9600000-0xa96fffff] released
[    0.423879] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.423885] pci 0000:05:00.0: resource 9 [mem 0xacf00000-0xad0fffff 64bit pref] released
[    0.423888] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.423898] pci 0000:00:1c.4: resource 7 [io  0x4000-0x4fff] released
[    0.423900] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.423915] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.423918] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.423922] pci 0000:00:1c.4: BAR 7: assigned [io  0x4000-0xbfff]
[    0.423925] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.423927] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.423930] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.423933] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.423937] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.423942] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.423946] pci 0000:00:1c.0:   bridge window [mem 0xa8400000-0xa84fffff 64bit pref]
[    0.423952] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.423957] pci 0000:00:1c.1:   bridge window [mem 0xa8600000-0xa86fffff]
[    0.423965] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.423969] pci 0000:00:1c.2:   bridge window [mem 0xa8500000-0xa85fffff]
[    0.423978] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.423980] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.423984] pci 0000:05:00.0: BAR 7: assigned [io  0x4000-0xbfff]
[    0.423987] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.423990] pci 0000:06:03.0: BAR 8: no space for [mem size 0x08000000]
[    0.423992] pci 0000:06:03.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.423995] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.423998] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.424001] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.424004] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.424007] pci 0000:06:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.424010] pci 0000:06:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.424012] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.424015] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.424018] pci 0000:06:06.0: BAR 8: no space for [mem size 0x08000000]
[    0.424021] pci 0000:06:06.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.424023] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.424026] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.424029] pci 0000:06:03.0: BAR 7: assigned [io  0x4000-0x4fff]
[    0.424032] pci 0000:06:04.0: BAR 7: assigned [io  0x5000-0x9fff]
[    0.424034] pci 0000:06:05.0: BAR 7: assigned [io  0xa000-0xafff]
[    0.424036] pci 0000:06:06.0: BAR 7: assigned [io  0xb000-0xbfff]
[    0.424039] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.424046] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.424052] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.424059] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.424071] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.424074] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.424091] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.424094] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.424097] pci 0000:18:00.0: BAR 7: assigned [io  0x5000-0x8fff]
[    0.424100] pci 0000:19:00.0: BAR 8: assigned [mem 0xa8c00000-0xa8cfffff]
[    0.424103] pci 0000:19:01.0: BAR 9: assigned [mem 0xa9200000-0xa92fffff 64bit pref]
[    0.424106] pci 0000:19:02.0: BAR 8: assigned [mem 0xa9400000-0xa94fffff]
[    0.424109] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.424111] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.424114] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.424117] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.424119] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.424122] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.424125] pci 0000:19:04.0: BAR 7: assigned [io  0x5000-0x7fff]
[    0.424127] pci 0000:19:05.0: BAR 7: assigned [io  0x8000-0x8fff]
[    0.424130] pci 0000:1a:00.0: BAR 8: assigned [mem 0xa8c00000-0xa8cfffff]
[    0.424133] pci 0000:1b:03.0: BAR 8: assigned [mem 0xa8c00000-0xa8cfffff]
[    0.424136] pci 0000:1c:00.0: BAR 0: assigned [mem 0xa8c00000-0xa8c00fff]
[    0.424146] pci 0000:1c:00.1: BAR 0: assigned [mem 0xa8c01000-0xa8c01fff]
[    0.424156] pci 0000:1c:00.2: BAR 0: assigned [mem 0xa8c02000-0xa8c020ff]
[    0.424166] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.424180] pci 0000:1b:03.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.424205] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.424218] pci 0000:1a:00.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.424243] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.424254] pci 0000:19:00.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.424274] pci 0000:1d:00.0: BAR 0: assigned [mem 0xa9200000-0xa920ffff 64bit pref]
[    0.424304] pci 0000:1d:00.0: BAR 2: assigned [mem 0xa9210000-0xa921ffff 64bit pref]
[    0.424334] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.424345] pci 0000:19:01.0:   bridge window [mem 0xa9300000-0xa93fffff]
[    0.424353] pci 0000:19:01.0:   bridge window [mem 0xa9200000-0xa92fffff 64bit pref]
[    0.424367] pci 0000:1e:00.0: BAR 0: assigned [mem 0xa9400000-0xa9400fff 64bit]
[    0.424398] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.424408] pci 0000:19:02.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.424428] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.424431] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.424434] pci 0000:1f:00.0: BAR 7: assigned [io  0x5000-0x6fff]
[    0.424437] pci 0000:20:00.0: BAR 8: assigned [mem 0xa8d00000-0xa8dfffff]
[    0.424440] pci 0000:20:01.0: BAR 9: assigned [mem 0xa8e00000-0xa8efffff 64bit pref]
[    0.424443] pci 0000:20:02.0: BAR 8: assigned [mem 0xa8f00000-0xa8ffffff]
[    0.424445] pci 0000:20:04.0: BAR 8: no space for [mem size 0x08000000]
[    0.424448] pci 0000:20:04.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.424450] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.424453] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.424456] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.424459] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.424461] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.424464] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.424467] pci 0000:20:04.0: BAR 7: assigned [io  0x5000-0x5fff]
[    0.424469] pci 0000:20:05.0: BAR 7: assigned [io  0x6000-0x6fff]
[    0.424472] pci 0000:21:00.0: BAR 8: assigned [mem 0xa8d00000-0xa8dfffff]
[    0.424475] pci 0000:22:03.0: BAR 8: assigned [mem 0xa8d00000-0xa8dfffff]
[    0.424478] pci 0000:23:00.0: BAR 0: assigned [mem 0xa8d00000-0xa8d00fff]
[    0.424491] pci 0000:23:00.1: BAR 0: assigned [mem 0xa8d01000-0xa8d01fff]
[    0.424503] pci 0000:23:00.2: BAR 0: assigned [mem 0xa8d02000-0xa8d020ff]
[    0.424516] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.424533] pci 0000:22:03.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.424566] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.424583] pci 0000:21:00.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.424616] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.424630] pci 0000:20:00.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.424658] pci 0000:24:00.0: BAR 0: assigned [mem 0xa8e00000-0xa8e0ffff 64bit pref]
[    0.424697] pci 0000:24:00.0: BAR 2: assigned [mem 0xa8e10000-0xa8e1ffff 64bit pref]
[    0.424736] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.424751] pci 0000:20:01.0:   bridge window [mem 0xa9000000-0xa90fffff]
[    0.424761] pci 0000:20:01.0:   bridge window [mem 0xa8e00000-0xa8efffff 64bit pref]
[    0.424781] pci 0000:25:00.0: BAR 0: assigned [mem 0xa8f00000-0xa8f00fff 64bit]
[    0.424821] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.424835] pci 0000:20:02.0:   bridge window [mem 0xa8f00000-0xa8ffffff]
[    0.424862] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.424868] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.424907] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.424913] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.424953] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.424959] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.424973] pci 0000:1f:00.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.425000] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.425005] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.425015] pci 0000:19:04.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.425035] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.425040] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.425067] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.425072] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.425082] pci 0000:18:00.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.425101] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.425105] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.425112] pci 0000:06:04.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.425124] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.425127] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.425143] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.425147] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.425163] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.425167] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.425174] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xa96fffff]
[    0.425185] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.425188] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.425193] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xad6fffff]
[    0.425200] pci_bus 0000:00: No. 4 try to assign unassigned res
[    0.425203] release child resource [mem 0xa8d00000-0xa8d00fff]
[    0.425203] release child resource [mem 0xa8d01000-0xa8d01fff]
[    0.425204] release child resource [mem 0xa8d02000-0xa8d020ff]
[    0.425205] pci 0000:22:03.0: resource 8 [mem 0xa8d00000-0xa8dfffff] released
[    0.425207] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.425219] pci 0000:21:00.0: resource 8 [mem 0xa8d00000-0xa8dfffff] released
[    0.425222] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.425234] pci 0000:20:00.0: resource 8 [mem 0xa8d00000-0xa8dfffff] released
[    0.425237] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.425247] release child resource [mem 0xa8e00000-0xa8e0ffff 64bit pref]
[    0.425247] release child resource [mem 0xa8e10000-0xa8e1ffff 64bit pref]
[    0.425248] pci 0000:20:01.0: resource 9 [mem 0xa8e00000-0xa8efffff 64bit pref] released
[    0.425251] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.425274] release child resource [mem 0xa8f00000-0xa8f00fff 64bit]
[    0.425275] pci 0000:20:02.0: resource 8 [mem 0xa8f00000-0xa8ffffff] released
[    0.425277] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.425287] release child resource [mem 0xa9000000-0xa90fffff]
[    0.425288] pci 0000:1f:00.0: resource 8 [mem 0xa8d00000-0xa91fffff] released
[    0.425290] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.425301] pci 0000:19:04.0: resource 8 [mem 0xa8d00000-0xa91fffff] released
[    0.425303] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.425311] release child resource [mem 0xa8c00000-0xa8c00fff]
[    0.425312] release child resource [mem 0xa8c01000-0xa8c01fff]
[    0.425312] release child resource [mem 0xa8c02000-0xa8c020ff]
[    0.425313] pci 0000:1b:03.0: resource 8 [mem 0xa8c00000-0xa8cfffff] released
[    0.425316] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.425325] pci 0000:1a:00.0: resource 8 [mem 0xa8c00000-0xa8cfffff] released
[    0.425327] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.425337] pci 0000:19:00.0: resource 8 [mem 0xa8c00000-0xa8cfffff] released
[    0.425340] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.425347] release child resource [mem 0xa9200000-0xa920ffff 64bit pref]
[    0.425348] release child resource [mem 0xa9210000-0xa921ffff 64bit pref]
[    0.425349] pci 0000:19:01.0: resource 9 [mem 0xa9200000-0xa92fffff 64bit pref] released
[    0.425352] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.425368] release child resource [mem 0xa9400000-0xa9400fff 64bit]
[    0.425369] pci 0000:19:02.0: resource 8 [mem 0xa9400000-0xa94fffff] released
[    0.425371] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.425379] release child resource [mem 0xa9300000-0xa93fffff]
[    0.425379] pci 0000:18:00.0: resource 8 [mem 0xa8c00000-0xa94fffff] released
[    0.425382] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.425390] pci 0000:06:04.0: resource 8 [mem 0xa8c00000-0xa94fffff] released
[    0.425392] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.425398] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.425398] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.425399] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.425401] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.425407] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xa96fffff] released
[    0.425409] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.425416] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xad6fffff] released
[    0.425419] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.425422] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.425423] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.425426] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.425430] release child resource [mem 0xa8400000-0xa840ffff 64bit pref]
[    0.425430] release child resource [mem 0xa8410000-0xa841ffff 64bit pref]
[    0.425431] pci 0000:00:1c.0: resource 9 [mem 0xa8400000-0xa84fffff 64bit pref] released
[    0.425434] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.425441] release child resource [mem 0xa8600000-0xa861ffff 64bit]
[    0.425441] release child resource [mem 0xa8620000-0xa862ffff pref]
[    0.425442] pci 0000:00:1c.1: resource 8 [mem 0xa8600000-0xa86fffff] released
[    0.425445] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.425448] release child resource [mem 0xa8500000-0xa8500fff 64bit]
[    0.425449] pci 0000:00:1c.2: resource 8 [mem 0xa8500000-0xa85fffff] released
[    0.425452] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.425465] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.425469] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.425472] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.425475] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.425478] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.425481] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.425484] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.425488] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.425496] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.425498] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.425501] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.425504] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.425509] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.425524] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.425540] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.425544] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.425549] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.425555] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.425570] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.425573] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.425577] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.425586] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.425601] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.425606] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.425614] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.425616] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.425619] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.425623] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.425625] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.425628] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.425631] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.425634] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.425637] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.425640] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.425643] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.425645] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.425648] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.425651] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.425654] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.425656] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.425660] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.425666] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.425672] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.425679] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.425691] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.425695] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.425702] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.425714] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.425716] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.425719] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.425723] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.425725] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.425728] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.425731] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.425734] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.425736] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.425739] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.425742] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.425744] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.425747] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.425750] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.425753] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.425756] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.425759] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.425769] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.425779] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.425789] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.425802] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.425827] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.425840] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.425865] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.425876] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.425896] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.425926] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.425956] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.425967] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.425975] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.425989] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.426020] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.426030] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.426050] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.426052] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.426055] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.426059] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.426061] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.426064] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.426067] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.426070] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.426072] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.426075] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.426078] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.426080] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.426083] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.426086] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.426089] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.426092] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.426094] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.426107] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.426120] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.426133] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.426150] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.426182] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.426200] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.426233] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.426247] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.426274] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.426314] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.426353] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.426367] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.426378] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.426398] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.426437] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.426451] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.426478] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.426485] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.426499] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.426526] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.426532] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.426571] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.426578] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.426592] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.426619] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.426624] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.426634] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.426653] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.426658] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.426686] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.426691] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.426701] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.426720] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.426724] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.426731] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.426742] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.426746] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.426753] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.426765] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.426768] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.426775] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.426787] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.426790] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.426797] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.426808] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.426811] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.426816] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.426824] pci_bus 0000:00: No. 5 try to assign unassigned res
[    0.426826] release child resource [mem 0xb0f00000-0xb0f00fff]
[    0.426827] release child resource [mem 0xb0f01000-0xb0f01fff]
[    0.426827] release child resource [mem 0xb0f02000-0xb0f020ff]
[    0.426828] pci 0000:22:03.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.426831] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.426843] pci 0000:21:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.426845] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.426858] pci 0000:20:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.426860] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.426870] release child resource [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.426871] release child resource [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.426872] pci 0000:20:01.0: resource 9 [mem 0xb1100000-0xb11fffff 64bit pref] released
[    0.426875] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.426897] release child resource [mem 0xb1200000-0xb1200fff 64bit]
[    0.426898] pci 0000:20:02.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[    0.426900] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.426911] pci 0000:20:04.0: resource 8 [mem 0xb1300000-0xb92fffff] released
[    0.426913] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.426923] release child resource [mem 0xb1000000-0xb10fffff]
[    0.426924] pci 0000:1f:00.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.426927] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.426937] pci 0000:19:04.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.426939] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.426947] release child resource [mem 0xb0b00000-0xb0b00fff]
[    0.426948] release child resource [mem 0xb0b01000-0xb0b01fff]
[    0.426948] release child resource [mem 0xb0b02000-0xb0b020ff]
[    0.426949] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.426952] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.426961] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.426963] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.426973] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.426975] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.426983] release child resource [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.426984] release child resource [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.426985] pci 0000:19:01.0: resource 9 [mem 0xb0d00000-0xb0dfffff 64bit pref] released
[    0.426988] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427003] release child resource [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427004] pci 0000:19:02.0: resource 8 [mem 0xb0e00000-0xb0efffff] released
[    0.427007] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427014] release child resource [mem 0xb0c00000-0xb0cfffff]
[    0.427015] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427018] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427026] pci 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427028] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427033] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.427034] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.427035] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.427037] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427042] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[    0.427045] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427050] pci 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[    0.427053] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427058] pci 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[    0.427060] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427066] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427068] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427074] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427077] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427080] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427081] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.427084] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427087] release child resource [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427088] release child resource [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427089] pci 0000:00:1c.0: resource 9 [mem 0x8f900000-0x8f9fffff 64bit pref] released
[    0.427092] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427098] release child resource [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427099] release child resource [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427100] pci 0000:00:1c.1: resource 8 [mem 0x8fa00000-0x8fafffff] released
[    0.427102] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427106] release child resource [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427107] pci 0000:00:1c.2: resource 8 [mem 0x8fb00000-0x8fbfffff] released
[    0.427109] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427121] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427125] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427128] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.427131] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.427134] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427137] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427140] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427144] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427152] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427154] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.427157] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.427160] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427164] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427180] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427196] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427200] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.427204] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427211] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427225] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427228] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427233] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.427241] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427256] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427261] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.427269] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427272] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427275] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427278] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.427281] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.427284] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427286] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427289] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427292] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427295] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427298] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.427301] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427303] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427306] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.427309] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427312] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427315] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.427321] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.427328] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427331] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.427331] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427331] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.427331] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.427331] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427331] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427331] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427331] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427331] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.427331] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427331] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.427331] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427331] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427331] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427331] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427331] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427331] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427331] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427331] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.427331] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.427331] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.427331] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427331] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427331] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427331] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427331] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427331] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427331] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427331] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427331] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427331] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.427331] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427331] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427331] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427331] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.427331] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427331] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427331] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427331] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427331] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.427331] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427331] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.427331] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.427331] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427331] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427331] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427331] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427331] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.427331] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.427331] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.427331] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427331] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427331] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427331] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427331] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427331] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427331] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427331] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427331] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427331] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.427331] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427331] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.427331] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427331] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.427331] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427331] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.427331] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.427331] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.427331] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.427331] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427331] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.427331] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427331] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427331] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.427331] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427331] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.427331] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.427331] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427331] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.427331] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427331] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427331] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.427331] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427331] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427331] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.427331] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.427331] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427331] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.427331] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.427331] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427331] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.427331] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.427331] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427331] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.427331] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.427331] pci_bus 0000:00: No. 6 try to assign unassigned res
[    0.427331] release child resource [mem 0xb0f00000-0xb0f00fff]
[    0.427331] release child resource [mem 0xb0f01000-0xb0f01fff]
[    0.427331] release child resource [mem 0xb0f02000-0xb0f020ff]
[    0.427331] pci 0000:22:03.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427331] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427331] pci 0000:21:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427331] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427331] pci 0000:20:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427331] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427331] release child resource [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427331] release child resource [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427331] pci 0000:20:01.0: resource 9 [mem 0xb1100000-0xb11fffff 64bit pref] released
[    0.427331] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427331] release child resource [mem 0xb1200000-0xb1200fff 64bit]
[    0.427331] pci 0000:20:02.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[    0.427331] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427331] pci 0000:20:04.0: resource 8 [mem 0xb1300000-0xb92fffff] released
[    0.427331] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427331] release child resource [mem 0xb1000000-0xb10fffff]
[    0.427331] pci 0000:1f:00.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.427331] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427331] pci 0000:19:04.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.427331] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427331] release child resource [mem 0xb0b00000-0xb0b00fff]
[    0.427331] release child resource [mem 0xb0b01000-0xb0b01fff]
[    0.427331] release child resource [mem 0xb0b02000-0xb0b020ff]
[    0.427331] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427331] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427331] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427331] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427331] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427331] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427331] release child resource [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427331] release child resource [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427331] pci 0000:19:01.0: resource 9 [mem 0xb0d00000-0xb0dfffff 64bit pref] released
[    0.427331] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427331] release child resource [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427331] pci 0000:19:02.0: resource 8 [mem 0xb0e00000-0xb0efffff] released
[    0.427331] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427331] release child resource [mem 0xb0c00000-0xb0cfffff]
[    0.427331] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427331] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427331] pci 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427331] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427331] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.427331] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.427331] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.427331] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427331] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[    0.427331] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427331] pci 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[    0.427331] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427331] pci 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[    0.427331] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427331] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427331] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427331] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427331] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427331] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427331] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.427331] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427331] release child resource [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427331] release child resource [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427331] pci 0000:00:1c.0: resource 9 [mem 0x8f900000-0x8f9fffff 64bit pref] released
[    0.427331] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427331] release child resource [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427331] release child resource [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427331] pci 0000:00:1c.1: resource 8 [mem 0x8fa00000-0x8fafffff] released
[    0.427331] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427331] release child resource [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427331] pci 0000:00:1c.2: resource 8 [mem 0x8fb00000-0x8fbfffff] released
[    0.427331] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427331] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427331] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427331] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.427331] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.427331] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427331] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427331] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427331] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427331] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427331] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.427331] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.427331] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427331] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427331] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427331] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427331] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.427331] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427331] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427331] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427331] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427331] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.427331] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427331] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427331] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.427331] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427331] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427331] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427331] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.427331] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.427331] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427331] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427331] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427331] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.427331] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.427331] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.427331] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.427331] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427331] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.427331] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427331] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.427331] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.427331] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427331] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427331] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427331] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427331] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.427331] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427331] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.427331] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427331] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427331] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427331] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427331] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427331] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427331] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427331] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.427331] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.427331] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.427331] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427331] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427331] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427331] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427331] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427331] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427331] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427331] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427331] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427331] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.427331] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427331] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427331] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427331] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.427331] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427331] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427331] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427331] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427331] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.427331] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427331] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.427331] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.427331] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427331] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427331] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427331] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427331] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.427331] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.427331] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.427331] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427331] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427331] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427331] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427331] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427331] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427331] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427331] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427331] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427331] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.427331] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427331] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.427331] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427331] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.427331] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427331] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.427331] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.427331] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.427331] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.427331] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427331] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.427331] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427331] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427331] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.427331] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427331] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.427331] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.427331] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427331] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.427331] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427331] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427331] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.427331] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427331] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427331] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.427331] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.427331] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427331] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.427331] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.427331] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427331] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.427331] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.427331] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427331] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.427331] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.427331] pci_bus 0000:00: No. 7 try to assign unassigned res
[    0.427331] release child resource [mem 0xb0f00000-0xb0f00fff]
[    0.427331] release child resource [mem 0xb0f01000-0xb0f01fff]
[    0.427331] release child resource [mem 0xb0f02000-0xb0f020ff]
[    0.427331] pci 0000:22:03.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427331] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427331] pci 0000:21:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427331] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427331] pci 0000:20:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427331] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427331] release child resource [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427331] release child resource [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427331] pci 0000:20:01.0: resource 9 [mem 0xb1100000-0xb11fffff 64bit pref] released
[    0.427331] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427331] release child resource [mem 0xb1200000-0xb1200fff 64bit]
[    0.427331] pci 0000:20:02.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[    0.427331] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427331] pci 0000:20:04.0: resource 8 [mem 0xb1300000-0xb92fffff] released
[    0.427331] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427331] release child resource [mem 0xb1000000-0xb10fffff]
[    0.427331] pci 0000:1f:00.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.427331] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427331] pci 0000:19:04.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.427331] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427331] release child resource [mem 0xb0b00000-0xb0b00fff]
[    0.427331] release child resource [mem 0xb0b01000-0xb0b01fff]
[    0.427331] release child resource [mem 0xb0b02000-0xb0b020ff]
[    0.427331] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427331] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427331] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427331] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427331] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427331] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427331] release child resource [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427331] release child resource [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427331] pci 0000:19:01.0: resource 9 [mem 0xb0d00000-0xb0dfffff 64bit pref] released
[    0.427331] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427331] release child resource [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427331] pci 0000:19:02.0: resource 8 [mem 0xb0e00000-0xb0efffff] released
[    0.427331] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427331] release child resource [mem 0xb0c00000-0xb0cfffff]
[    0.427331] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427331] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427331] pci 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427331] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427331] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.427331] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.427331] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.427331] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427331] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[    0.427331] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427331] pci 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[    0.427331] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427331] pci 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[    0.427331] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427331] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427331] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427331] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427331] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427331] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427331] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.427331] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427331] release child resource [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427331] release child resource [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427331] pci 0000:00:1c.0: resource 9 [mem 0x8f900000-0x8f9fffff 64bit pref] released
[    0.427331] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427331] release child resource [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427331] release child resource [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427331] pci 0000:00:1c.1: resource 8 [mem 0x8fa00000-0x8fafffff] released
[    0.427331] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427331] release child resource [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427331] pci 0000:00:1c.2: resource 8 [mem 0x8fb00000-0x8fbfffff] released
[    0.427331] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427331] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427331] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427331] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.427331] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.427331] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427331] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427331] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427331] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427331] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427331] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.427331] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.427331] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427331] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427331] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427331] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427331] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.427331] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427331] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427331] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427331] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427331] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.427331] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427331] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427331] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.427331] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427331] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427331] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427331] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.427331] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.427331] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427331] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427331] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427331] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.427331] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.427331] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.427331] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.427331] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427331] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.427331] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427331] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.427331] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.427331] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427331] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427331] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427331] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427331] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.427331] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427331] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.427331] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427331] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427331] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427331] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427331] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427331] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427331] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427331] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.427331] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.427331] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.427331] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427331] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427331] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427331] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427331] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427331] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427331] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427331] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427331] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427331] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.427331] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427331] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427331] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427331] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.427331] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427331] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427331] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427331] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427331] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.427331] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427331] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.427331] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.427331] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427331] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427331] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427331] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427331] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.427331] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.427331] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.427331] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427331] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427331] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427331] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427331] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427331] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427331] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427331] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427331] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427331] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.427331] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427331] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.427331] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427331] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.427331] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427331] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.427331] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.427331] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.427331] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.427331] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427331] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.427331] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427331] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427331] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.427331] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427331] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.427331] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.427331] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427331] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.427331] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427331] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427331] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.427331] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427331] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427331] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.427331] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.427331] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427331] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.427331] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.427331] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427331] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.427331] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.427331] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427331] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.427331] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.427331] pci_bus 0000:00: No. 8 try to assign unassigned res
[    0.427331] release child resource [mem 0xb0f00000-0xb0f00fff]
[    0.427331] release child resource [mem 0xb0f01000-0xb0f01fff]
[    0.427331] release child resource [mem 0xb0f02000-0xb0f020ff]
[    0.427331] pci 0000:22:03.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427331] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427331] pci 0000:21:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427331] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427331] pci 0000:20:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427331] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427331] release child resource [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427331] release child resource [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427331] pci 0000:20:01.0: resource 9 [mem 0xb1100000-0xb11fffff 64bit pref] released
[    0.427331] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427331] release child resource [mem 0xb1200000-0xb1200fff 64bit]
[    0.427331] pci 0000:20:02.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[    0.427331] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427331] pci 0000:20:04.0: resource 8 [mem 0xb1300000-0xb92fffff] released
[    0.427331] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427331] release child resource [mem 0xb1000000-0xb10fffff]
[    0.427331] pci 0000:1f:00.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.427331] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427331] pci 0000:19:04.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.427331] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427331] release child resource [mem 0xb0b00000-0xb0b00fff]
[    0.427331] release child resource [mem 0xb0b01000-0xb0b01fff]
[    0.427331] release child resource [mem 0xb0b02000-0xb0b020ff]
[    0.427331] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427331] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427331] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427331] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427331] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427331] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427331] release child resource [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427331] release child resource [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427331] pci 0000:19:01.0: resource 9 [mem 0xb0d00000-0xb0dfffff 64bit pref] released
[    0.427331] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427331] release child resource [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427331] pci 0000:19:02.0: resource 8 [mem 0xb0e00000-0xb0efffff] released
[    0.427331] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427331] release child resource [mem 0xb0c00000-0xb0cfffff]
[    0.427331] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427331] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427331] pci 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427331] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427331] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.427331] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.427331] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.427331] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427331] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[    0.427331] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427331] pci 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[    0.427331] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427331] pci 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[    0.427331] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427331] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427331] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427331] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427331] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427331] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427331] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.427331] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427331] release child resource [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427331] release child resource [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427331] pci 0000:00:1c.0: resource 9 [mem 0x8f900000-0x8f9fffff 64bit pref] released
[    0.427331] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427331] release child resource [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427331] release child resource [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427331] pci 0000:00:1c.1: resource 8 [mem 0x8fa00000-0x8fafffff] released
[    0.427331] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427331] release child resource [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427331] pci 0000:00:1c.2: resource 8 [mem 0x8fb00000-0x8fbfffff] released
[    0.427331] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427331] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427331] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427331] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.427331] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.427331] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427331] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427331] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427331] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427331] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427331] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.427331] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.427331] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427331] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427331] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427331] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427331] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.427331] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427331] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427331] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427331] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427331] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.427331] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427331] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427331] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.427331] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427331] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427331] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427331] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.427331] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.427331] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427331] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427331] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427331] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.427331] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.427331] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.427331] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.427331] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427331] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.427331] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427331] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.427331] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.427331] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427331] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427331] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427331] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427331] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.427331] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427331] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.427331] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427331] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427331] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427331] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427331] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427331] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427331] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427331] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.427331] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.427331] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.427331] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427331] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427331] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427331] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427331] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427331] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427331] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427331] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427331] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427331] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.427331] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427331] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427331] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427331] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.427331] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427331] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427331] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427331] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427331] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.427331] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427331] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.427331] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.427331] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427331] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427331] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427331] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427331] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427331] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.427331] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.427331] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.427331] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427331] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427331] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427331] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427331] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427331] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427331] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427331] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427331] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427331] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.427331] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427331] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.427331] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427331] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.427331] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427331] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.427331] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.427331] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.427331] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.427331] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427331] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.427331] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427331] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427331] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.427331] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427331] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.427331] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.427331] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427331] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.427331] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427331] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427331] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.427331] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.433359] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.433364] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.433371] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.433382] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.433386] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.433393] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.433405] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.433408] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.433415] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.433426] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.433429] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.433434] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.433442] pci_bus 0000:00: No. 9 try to assign unassigned res
[    0.433444] release child resource [mem 0xb0f00000-0xb0f00fff]
[    0.433445] release child resource [mem 0xb0f01000-0xb0f01fff]
[    0.433445] release child resource [mem 0xb0f02000-0xb0f020ff]
[    0.433446] pci 0000:22:03.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.433449] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.433461] pci 0000:21:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.433463] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.433476] pci 0000:20:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.433478] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.433488] release child resource [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.433489] release child resource [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.433490] pci 0000:20:01.0: resource 9 [mem 0xb1100000-0xb11fffff 64bit pref] released
[    0.433493] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.433515] release child resource [mem 0xb1200000-0xb1200fff 64bit]
[    0.433516] pci 0000:20:02.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[    0.433518] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.433529] pci 0000:20:04.0: resource 8 [mem 0xb1300000-0xb92fffff] released
[    0.433531] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.433541] release child resource [mem 0xb1000000-0xb10fffff]
[    0.433542] pci 0000:1f:00.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.433545] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.433555] pci 0000:19:04.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.433557] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.433565] release child resource [mem 0xb0b00000-0xb0b00fff]
[    0.433566] release child resource [mem 0xb0b01000-0xb0b01fff]
[    0.433566] release child resource [mem 0xb0b02000-0xb0b020ff]
[    0.433567] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.433570] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.433579] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.433582] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.433591] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.433594] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.433601] release child resource [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.433602] release child resource [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.433603] pci 0000:19:01.0: resource 9 [mem 0xb0d00000-0xb0dfffff 64bit pref] released
[    0.433606] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.433622] release child resource [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.433623] pci 0000:19:02.0: resource 8 [mem 0xb0e00000-0xb0efffff] released
[    0.433625] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.433633] release child resource [mem 0xb0c00000-0xb0cfffff]
[    0.433634] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.433636] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.433644] pci 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.433647] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.433652] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.433652] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.433653] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.433656] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.433661] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[    0.433663] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.433669] pci 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[    0.433671] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.433676] pci 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[    0.433679] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.433684] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.433686] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.433693] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.433695] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.433699] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.433700] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.433703] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.433706] release child resource [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.433707] release child resource [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.433708] pci 0000:00:1c.0: resource 9 [mem 0x8f900000-0x8f9fffff 64bit pref] released
[    0.433710] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.433717] release child resource [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.433717] release child resource [mem 0x8fa20000-0x8fa2ffff pref]
[    0.433718] pci 0000:00:1c.1: resource 8 [mem 0x8fa00000-0x8fafffff] released
[    0.433721] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.433724] release child resource [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.433725] pci 0000:00:1c.2: resource 8 [mem 0x8fb00000-0x8fbfffff] released
[    0.433728] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.433747] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.433753] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.433757] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.433762] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.433767] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.433772] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.433775] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.433784] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.433792] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.433795] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.433798] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.433801] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.433805] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.433821] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.433836] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.433841] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.433845] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.433852] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.433866] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.433869] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.433874] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.433882] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.433897] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.433902] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.433910] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.433913] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.433916] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.433919] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.433922] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.433925] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.433927] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.433930] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.433933] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.433936] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.433939] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.433942] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.433944] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.433947] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.433950] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.433953] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.433956] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.433962] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.433969] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.433975] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.433987] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.433991] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.433998] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.434010] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.434012] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.434015] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.434018] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.434021] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.434024] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.434027] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.434029] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.434032] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.434035] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.434038] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.434040] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.434043] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.434046] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.434049] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.434052] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.434054] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.434065] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.434075] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.434085] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.434098] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.434123] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.434136] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.434161] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.434172] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.434191] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.434222] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.434252] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.434263] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.434270] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.434285] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.434315] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.434326] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.434345] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.434348] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.434351] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.434354] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.434357] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.434360] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.434362] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.434365] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.434368] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.434370] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.434373] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.434376] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.434378] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.434381] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.434384] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.434387] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.434390] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.434403] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.434415] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.434428] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.434445] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.434478] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.434495] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.434528] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.434542] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.434569] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.434609] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.434648] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.434662] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.434673] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.434692] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.434732] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.434746] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.434773] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.434779] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.434794] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.434821] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.434827] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.434866] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.434872] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.434887] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.434914] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.434918] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.434929] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.434948] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.434953] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.434981] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.434986] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.434996] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.435015] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.435019] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.435026] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.435038] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.435041] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.435048] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.435060] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.435063] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.435070] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.435082] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.435086] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.435092] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.435104] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.435107] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.435111] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.435119] pci_bus 0000:00: No. 10 try to assign unassigned res
[    0.435121] release child resource [mem 0xb0f00000-0xb0f00fff]
[    0.435122] release child resource [mem 0xb0f01000-0xb0f01fff]
[    0.435123] release child resource [mem 0xb0f02000-0xb0f020ff]
[    0.435124] pci 0000:22:03.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.435126] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.435138] pci 0000:21:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.435141] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.435153] pci 0000:20:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.435155] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.435165] release child resource [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.435166] release child resource [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.435167] pci 0000:20:01.0: resource 9 [mem 0xb1100000-0xb11fffff 64bit pref] released
[    0.435170] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.435192] release child resource [mem 0xb1200000-0xb1200fff 64bit]
[    0.435193] pci 0000:20:02.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[    0.435196] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.435206] pci 0000:20:04.0: resource 8 [mem 0xb1300000-0xb92fffff] released
[    0.435208] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.435219] release child resource [mem 0xb1000000-0xb10fffff]
[    0.435220] pci 0000:1f:00.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.435222] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.435232] pci 0000:19:04.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.435235] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.435242] release child resource [mem 0xb0b00000-0xb0b00fff]
[    0.435243] release child resource [mem 0xb0b01000-0xb0b01fff]
[    0.435244] release child resource [mem 0xb0b02000-0xb0b020ff]
[    0.435245] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.435247] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.435257] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.435259] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.435269] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.435271] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.435279] release child resource [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.435279] release child resource [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.435280] pci 0000:19:01.0: resource 9 [mem 0xb0d00000-0xb0dfffff 64bit pref] released
[    0.435283] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.435299] release child resource [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.435300] pci 0000:19:02.0: resource 8 [mem 0xb0e00000-0xb0efffff] released
[    0.435302] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.435310] release child resource [mem 0xb0c00000-0xb0cfffff]
[    0.435311] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.435313] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.435321] pci 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.435324] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.435329] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.435330] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.435330] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.435333] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.435338] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[    0.435340] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.435346] pci 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[    0.435348] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.435354] pci 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[    0.435356] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.435361] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.435364] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.435370] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.435372] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.435376] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.435377] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.435380] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.435383] release child resource [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.435384] release child resource [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.435385] pci 0000:00:1c.0: resource 9 [mem 0x8f900000-0x8f9fffff 64bit pref] released
[    0.435388] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.435394] release child resource [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.435395] release child resource [mem 0x8fa20000-0x8fa2ffff pref]
[    0.435395] pci 0000:00:1c.1: resource 8 [mem 0x8fa00000-0x8fafffff] released
[    0.435398] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.435402] release child resource [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.435402] pci 0000:00:1c.2: resource 8 [mem 0x8fb00000-0x8fbfffff] released
[    0.435405] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.435417] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.435421] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.435424] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.435427] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.435430] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.435434] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.435436] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.435440] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.435448] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.435450] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.435453] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.435456] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.435460] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.435476] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.435491] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.435496] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.435500] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.435507] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.435521] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.435524] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.435529] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.435537] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.435552] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.435557] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.435565] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.435568] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.435571] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.435574] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.435577] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.435580] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.435582] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.435585] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.435588] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.435591] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.435594] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.435597] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.435599] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.435602] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.435605] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.435608] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.435611] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.435617] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.435624] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.435630] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.435642] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.435646] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.435653] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.435665] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.435668] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.435670] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.435674] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.435676] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.435679] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.435682] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.435685] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.435687] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.435690] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.435693] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.435695] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.435698] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.435701] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.435704] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.435707] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.435710] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.435720] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.435730] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.435740] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.435753] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.435778] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.435791] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.435816] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.435827] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.435846] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.435877] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.435907] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.435918] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.435926] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.435940] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.435970] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.435981] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.436000] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.436003] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.436006] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.436009] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.436012] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.436014] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.436017] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.436020] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.436023] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.436026] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.436029] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.436031] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.436034] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.436037] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.436040] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.436042] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.436045] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.436058] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.436071] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.436083] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.436100] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.436133] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.436151] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.436183] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.436198] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.436225] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.436264] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.436304] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.436318] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.436329] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.436348] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.436388] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.436402] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.436429] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.436435] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.436450] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.436477] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.436483] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.436522] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.436528] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.436543] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.436569] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.436574] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.436585] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.436604] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.436609] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.436637] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.436642] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.436652] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.436671] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.436675] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.436682] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.436693] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.436697] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.436704] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.436716] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.436719] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.436726] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.436738] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.436741] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.436748] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.436759] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.436762] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.436767] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.436775] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.436778] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.436780] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000fffff window]
[    0.436782] pci_bus 0000:00: resource 7 [mem 0x8f900000-0xfeafffff window]
[    0.436785] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff window]
[    0.436787] pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
[    0.436790] pci_bus 0000:01: resource 1 [mem 0xa8800000-0xa88fffff]
[    0.436792] pci_bus 0000:01: resource 2 [mem 0x90000000-0x9fffffff 64bit pref]
[    0.436795] pci_bus 0000:02: resource 1 [mem 0xa8700000-0xa87fffff]
[    0.436797] pci_bus 0000:02: resource 2 [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.436800] pci_bus 0000:03: resource 1 [mem 0x8fa00000-0x8fafffff]
[    0.436802] pci_bus 0000:04: resource 1 [mem 0x8fb00000-0x8fbfffff]
[    0.436805] pci_bus 0000:05: resource 0 [io  0x4000-0xbfff]
[    0.436807] pci_bus 0000:05: resource 1 [mem 0xa8a00000-0xd90fffff]
[    0.436809] pci_bus 0000:06: resource 0 [io  0x4000-0xbfff]
[    0.436811] pci_bus 0000:06: resource 1 [mem 0xa8a00000-0xd90fffff]
[    0.436814] pci_bus 0000:07: resource 1 [mem 0xa8a00000-0xa8afffff]
[    0.436816] pci_bus 0000:08: resource 0 [io  0x4000-0x4fff]
[    0.436818] pci_bus 0000:08: resource 1 [mem 0xa8b00000-0xb0afffff]
[    0.436820] pci_bus 0000:18: resource 0 [io  0x5000-0x9fff]
[    0.436823] pci_bus 0000:18: resource 1 [mem 0xb0b00000-0xc90fffff]
[    0.436825] pci_bus 0000:19: resource 0 [io  0x5000-0x8fff]
[    0.436827] pci_bus 0000:19: resource 1 [mem 0xb0b00000-0xc90fffff]
[    0.436829] pci_bus 0000:1a: resource 1 [mem 0xb0b00000-0xb0bfffff]
[    0.436832] pci_bus 0000:1b: resource 1 [mem 0xb0b00000-0xb0bfffff]
[    0.436834] pci_bus 0000:1c: resource 1 [mem 0xb0b00000-0xb0bfffff]
[    0.436836] pci_bus 0000:1d: resource 1 [mem 0xb0c00000-0xb0cfffff]
[    0.436839] pci_bus 0000:1d: resource 2 [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.436841] pci_bus 0000:1e: resource 1 [mem 0xb0e00000-0xb0efffff]
[    0.436844] pci_bus 0000:1f: resource 0 [io  0x5000-0x7fff]
[    0.436846] pci_bus 0000:1f: resource 1 [mem 0xb0f00000-0xc11fffff]
[    0.436848] pci_bus 0000:20: resource 0 [io  0x5000-0x6fff]
[    0.436851] pci_bus 0000:20: resource 1 [mem 0xb0f00000-0xc11fffff]
[    0.436853] pci_bus 0000:21: resource 1 [mem 0xb0f00000-0xb0ffffff]
[    0.436855] pci_bus 0000:22: resource 1 [mem 0xb0f00000-0xb0ffffff]
[    0.436857] pci_bus 0000:23: resource 1 [mem 0xb0f00000-0xb0ffffff]
[    0.436860] pci_bus 0000:24: resource 1 [mem 0xb1000000-0xb10fffff]
[    0.436862] pci_bus 0000:24: resource 2 [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.436865] pci_bus 0000:25: resource 1 [mem 0xb1200000-0xb12fffff]
[    0.436867] pci_bus 0000:26: resource 0 [io  0x5000-0x5fff]
[    0.436869] pci_bus 0000:26: resource 1 [mem 0xb1300000-0xb92fffff]
[    0.436872] pci_bus 0000:36: resource 0 [io  0x6000-0x6fff]
[    0.436874] pci_bus 0000:46: resource 0 [io  0x8000-0x8fff]
[    0.436876] pci_bus 0000:56: resource 0 [io  0xa000-0xafff]
[    0.436878] pci_bus 0000:56: resource 1 [mem 0xc9100000-0xd10fffff]
[    0.436881] pci_bus 0000:66: resource 0 [io  0xb000-0xbfff]
[    0.436883] pci_bus 0000:66: resource 1 [mem 0xd1100000-0xd90fffff]
[    0.437317] pci 0000:01:00.1: D0 power state depends on 0000:01:00.0
[    0.437334] pci 0000:05:00.0: CLS mismatch (256 != 128), using 64 bytes
[    0.437348] pci 0000:1c:00.0: MSI is not implemented on this device, disabling it
[    0.437350] pci 0000:1c:00.0: PME# is unreliable, disabling it
[    0.437646] pci 0000:1c:00.1: MSI is not implemented on this device, disabling it
[    0.437650] pci 0000:1c:00.1: PME# is unreliable, disabling it
[    0.437728] pci 0000:1c:00.2: MSI is not implemented on this device, disabling it
[    0.437731] pci 0000:1c:00.2: PME# is unreliable, disabling it
[    0.437786] pci 0000:1c:00.2: EHCI: unrecognized capability 00
[    0.437825] pci 0000:23:00.0: MSI is not implemented on this device, disabling it
[    0.437828] pci 0000:23:00.0: PME# is unreliable, disabling it
[    0.438082] pci 0000:23:00.1: MSI is not implemented on this device, disabling it
[    0.438085] pci 0000:23:00.1: PME# is unreliable, disabling it
[    0.438179] pci 0000:23:00.2: MSI is not implemented on this device, disabling it
[    0.438182] pci 0000:23:00.2: PME# is unreliable, disabling it
[    0.438248] pci 0000:23:00.2: EHCI: unrecognized capability 00
[    0.438287] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.438290] software IO TLB: mapped [mem 0x0000000083000000-0x0000000087000000] (64MB)
[    0.438299] ACPI: bus type thunderbolt registered
[    0.438325] Trying to unpack rootfs image as initramfs...
[    0.438382] thunderbolt 0000:07:00.0: total paths: 32
[    0.438557] thunderbolt 0000:07:00.0: allocating TX ring 0 of size 10
[    0.438575] thunderbolt 0000:07:00.0: allocating RX ring 0 of size 10
[    0.438588] thunderbolt 0000:07:00.0: control channel created
[    0.438591] thunderbolt 0000:07:00.0: ICM not supported on this controller
[    0.438600] thunderbolt 0000:07:00.0: freeing RX ring 0
[    0.438607] thunderbolt 0000:07:00.0: freeing TX ring 0
[    0.438616] thunderbolt 0000:07:00.0: allocating TX ring 0 of size 10
[    0.438624] thunderbolt 0000:07:00.0: allocating RX ring 0 of size 10
[    0.438632] thunderbolt 0000:07:00.0: control channel created
[    0.438634] thunderbolt 0000:07:00.0: using software connection manager
[    0.438650] thunderbolt 0000:07:00.0: created link from 0000:06:03.0
[    0.438674] thunderbolt 0000:07:00.0: created link from 0000:06:04.0
[    0.438689] thunderbolt 0000:07:00.0: created link from 0000:06:05.0
[    0.438701] thunderbolt 0000:07:00.0: created link from 0000:06:06.0
[    0.438756] thunderbolt 0000:07:00.0: NHI initialized, starting thunderbolt
[    0.438758] thunderbolt 0000:07:00.0: control channel starting...
[    0.438759] thunderbolt 0000:07:00.0: starting TX ring 0
[    0.438767] thunderbolt 0000:07:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[    0.438769] thunderbolt 0000:07:00.0: starting RX ring 0
[    0.438777] thunderbolt 0000:07:00.0: enabling interrupt at register 0x38204 bit 0 (0x0 -> 0x1)
[    0.438780] thunderbolt 0000:07:00.0: security level set to user
[    0.438934] thunderbolt 0000:07:00.0: current switch config:
[    0.438935] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[    0.438938] thunderbolt 0000:07:00.0:   Max Port Number: 13
[    0.438939] thunderbolt 0000:07:00.0:   Config:
[    0.438940] thunderbolt 0000:07:00.0:    Upstream Port Number: 6 Depth: 0 Route String: 0x0 Enabled: 1, PlugEventsDelay: 255ms
[    0.438942] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[    0.465845] thunderbolt 0000:07:00.0: initializing Switch at 0x0 (depth: 0, up port: 6)
[    0.466356] thunderbolt 0000:07:00.0: 0: DROM version: 1
[    0.467890] thunderbolt 0000:07:00.0: 0: uid: 0x1000a13f2da20
[    0.470833] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    0.470836] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    0.470837] thunderbolt 0000:07:00.0:   Max counters: 32
[    0.470838] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.470839] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.473777] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    0.473779] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    0.473780] thunderbolt 0000:07:00.0:   Max counters: 32
[    0.473781] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.473782] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.476720] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    0.476722] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    0.476723] thunderbolt 0000:07:00.0:   Max counters: 32
[    0.476724] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.476725] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.477360] random: fast init done
[    0.479664] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    0.479666] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    0.479667] thunderbolt 0000:07:00.0:   Max counters: 32
[    0.479668] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.479669] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.479670] thunderbolt 0000:07:00.0: 0:5: disabled by eeprom
[    0.480560] thunderbolt 0000:07:00.0:  Port 6: 8086:1513 (Revision: 2, TB Version: 1, Type: NHI (0x2))
[    0.480562] thunderbolt 0000:07:00.0:   Max hop id (in/out): 31/31
[    0.480563] thunderbolt 0000:07:00.0:   Max counters: 32
[    0.480564] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.480565] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.481456] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    0.481458] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.481459] thunderbolt 0000:07:00.0:   Max counters: 1
[    0.481460] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.481461] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.482352] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    0.482354] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.482355] thunderbolt 0000:07:00.0:   Max counters: 1
[    0.482356] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.482357] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.483248] thunderbolt 0000:07:00.0:  Port 9: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    0.483250] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.483251] thunderbolt 0000:07:00.0:   Max counters: 1
[    0.483252] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.483253] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.484144] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    0.484146] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.484147] thunderbolt 0000:07:00.0:   Max counters: 1
[    0.484148] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.484149] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.485296] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[    0.485298] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    0.485299] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.485300] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.485301] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.486191] thunderbolt 0000:07:00.0:  Port 12: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0101))
[    0.486193] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    0.486194] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.486195] thunderbolt 0000:07:00.0:   NFC Credits: 0x700005
[    0.486196] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.487087] thunderbolt 0000:07:00.0:  Port 13: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0101))
[    0.487089] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    0.487090] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.487091] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.487092] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.502480] thunderbolt 0000:07:00.0: 0: TMU: current mode: HiFi
[    0.502609] thunderbolt 0000:07:00.0: 0:1: is unplugged (state: 7)
[    0.502735] thunderbolt 0000:07:00.0: 0:3: is connected, link is up (state: 2)
[    0.502991] thunderbolt 0000:07:00.0: current switch config:
[    0.502992] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[    0.502994] thunderbolt 0000:07:00.0:   Max Port Number: 13
[    0.502995] thunderbolt 0000:07:00.0:   Config:
[    0.502996] thunderbolt 0000:07:00.0:    Upstream Port Number: 1 Depth: 1 Route String: 0x3 Enabled: 1, PlugEventsDelay: 255ms
[    0.502997] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[    0.507599] thunderbolt 0000:07:00.0: initializing Switch at 0x3 (depth: 1, up port: 1)
[    0.525006] thunderbolt 0000:07:00.0: 3: reading drom (length: 0x97)
[    0.706037] Freeing initrd memory: 27980K
[    1.018658] thunderbolt 0000:07:00.0: 3: DROM version: 1
[    1.019682] thunderbolt 0000:07:00.0: 3: uid: 0x1000100189170
[    1.022624] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.022629] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.022631] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.022633] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.022636] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.025568] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.025572] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.025574] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.025576] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c0000e
[    1.025578] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.028511] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.028514] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.028516] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.028518] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.028520] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.031455] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.031458] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.031460] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.031462] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.031464] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.031466] thunderbolt 0000:07:00.0: 3:5: disabled by eeprom
[    1.031469] thunderbolt 0000:07:00.0: 3:6: disabled by eeprom
[    1.032351] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.032355] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.032357] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.032359] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.032361] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.033247] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.033250] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.033252] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.033254] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.033256] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.033258] thunderbolt 0000:07:00.0: 3:9: disabled by eeprom
[    1.034143] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[    1.034146] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.034149] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.034151] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.034152] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.035295] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[    1.035298] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    1.035301] thunderbolt 0000:07:00.0:   Max counters: 2
[    1.035302] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.035304] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.035307] thunderbolt 0000:07:00.0: 3:c: disabled by eeprom
[    1.035309] thunderbolt 0000:07:00.0: 3:d: disabled by eeprom
[    1.053696] thunderbolt 0000:07:00.0: 3: TMU: current mode: bi-directional, HiFi
[    1.053738] thunderbolt 0-3: new device found, vendor=0x1 device=0x8002
[    1.053746] thunderbolt 0-3: Apple, Inc. Thunderbolt Display
[    1.053843] thunderbolt 0000:07:00.0: 3:3: is connected, link is up (state: 2)
[    1.054102] thunderbolt 0000:07:00.0: current switch config:
[    1.054104] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[    1.054107] thunderbolt 0000:07:00.0:   Max Port Number: 13
[    1.054109] thunderbolt 0000:07:00.0:   Config:
[    1.054111] thunderbolt 0000:07:00.0:    Upstream Port Number: 3 Depth: 2 Route String: 0x303 Enabled: 1, PlugEventsDelay: 255ms
[    1.054115] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[    1.058710] thunderbolt 0000:07:00.0: initializing Switch at 0x303 (depth: 2, up port: 3)
[    1.076115] thunderbolt 0000:07:00.0: 303: reading drom (length: 0x97)
[    1.535850] random: crng init done
[    1.569765] thunderbolt 0000:07:00.0: 303: DROM version: 1
[    1.570790] thunderbolt 0000:07:00.0: 303: uid: 0x100010102a740
[    1.573733] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.573737] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.573739] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.573741] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.573743] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.576676] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.576680] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.576682] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.576684] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.576686] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.579620] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.579624] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.579626] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.579628] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.579630] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.582564] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.582567] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.582569] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.582571] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.582573] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.582575] thunderbolt 0000:07:00.0: 303:5: disabled by eeprom
[    1.582578] thunderbolt 0000:07:00.0: 303:6: disabled by eeprom
[    1.583460] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.583464] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.583466] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.583468] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.583470] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.584355] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.584359] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.584361] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.584363] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.584365] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.584367] thunderbolt 0000:07:00.0: 303:9: disabled by eeprom
[    1.585251] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[    1.585255] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.585257] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.585259] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.585261] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.586403] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[    1.586407] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    1.586409] thunderbolt 0000:07:00.0:   Max counters: 2
[    1.586411] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.586413] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.586415] thunderbolt 0000:07:00.0: 303:c: disabled by eeprom
[    1.586417] thunderbolt 0000:07:00.0: 303:d: disabled by eeprom
[    1.604483] thunderbolt 0000:07:00.0: 303: TMU: current mode: bi-directional, HiFi
[    1.604504] thunderbolt 0-303: new device found, vendor=0x1 device=0x8002
[    1.604511] thunderbolt 0-303: Apple, Inc. Thunderbolt Display
[    1.604607] thunderbolt 0000:07:00.0: 303:1: is unplugged (state: 7)
[    1.604866] thunderbolt 0000:07:00.0: 303:b: DP adapter HPD set, queuing hotplug
[    1.606787] thunderbolt 0000:07:00.0: 0:7 <-> 3:a (PCI): discovered
[    1.609346] thunderbolt 0000:07:00.0: 0:c <-> 3:b (DP): discovered
[    1.611010] thunderbolt 0000:07:00.0: 3:7 <-> 303:a (PCI): discovered
[    1.611396] thunderbolt 0000:07:00.0: 0:c: DP IN resource available
[    1.611399] thunderbolt 0000:07:00.0: 0:d: DP IN resource available
[    1.611521] thunderbolt 0000:07:00.0: 303:b: DP OUT resource available
[    1.611525] thunderbolt 0000:07:00.0: looking for DP IN <-> DP OUT pairs:
[    1.611579] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer
[    1.611583] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[    1.611585] RAPL PMU: hw unit of domain package 2^-16 Joules
[    1.611587] RAPL PMU: hw unit of domain pp1-gpu 2^-16 Joules
[    1.611648] thunderbolt 0000:07:00.0: 0:c: in use
[    1.611777] thunderbolt 0000:07:00.0: 0:d: DP IN available
[    1.611904] thunderbolt 0000:07:00.0: 303:b: DP OUT available
[    1.611906] thunderbolt 0000:07:00.0: 0: allocated DP resource for port 13
[    1.611908] thunderbolt 0000:07:00.0: 303:b: calculating available bandwidth
[    1.611982] Initialise system trusted keyrings
[    1.612004] workingset: timestamp_bits=62 max_order=23 bucket_order=0
[    1.612031] thunderbolt 0000:07:00.0: 0:3: link total bandwidth 9000 Mb/s
[    1.612033] thunderbolt 0000:07:00.0: 3:1: link total bandwidth 9000 Mb/s
[    1.612158] thunderbolt 0000:07:00.0: 3:3: link total bandwidth 9000 Mb/s
[    1.612159] thunderbolt 0000:07:00.0: 303:3: link total bandwidth 9000 Mb/s
[    1.612160] thunderbolt 0000:07:00.0: available bandwidth for new DP tunnel 9000/9000 Mb/s
[    1.612162] thunderbolt 0000:07:00.0: in->port 13
[    1.612166] thunderbolt 0000:07:00.0: Tunnel 0
[    1.612167] thunderbolt 0000:07:00.0: 0:d <-> 303:b (DP): activating
[    1.612169] thunderbolt 0000:07:00.0: activating Video path from 0:13 to 303:11
[    1.612171] thunderbolt 0000:07:00.0: 303:3: adding 12 NFC credits to 0
[    1.612286] thunderbolt 0000:07:00.0: 3:1: adding 12 NFC credits to 0
[    1.612413] thunderbolt 0000:07:00.0: 0:d: adding 5 NFC credits to 0
[    1.612670] thunderbolt 0000:07:00.0: 303:3: Writing hop 2
[    1.612671] thunderbolt 0000:07:00.0: 303:3:  In HopID: 9 => Out port: 11 Out HopID: 9
[    1.612673] thunderbolt 0000:07:00.0: 303:3:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.612674] thunderbolt 0000:07:00.0: 303:3:    Counter enabled: 0 Counter index: 2047
[    1.612676] thunderbolt 0000:07:00.0: 303:3:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.612677] thunderbolt 0000:07:00.0: 303:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.612710] Key type asymmetric registered
[    1.612713] Asymmetric key parser 'x509' registered
[    1.612724] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
[    1.612926] thunderbolt 0000:07:00.0: 3:1: Writing hop 1
[    1.612928] thunderbolt 0000:07:00.0: 3:1:  In HopID: 9 => Out port: 3 Out HopID: 9
[    1.612929] thunderbolt 0000:07:00.0: 3:1:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.612930] thunderbolt 0000:07:00.0: 3:1:    Counter enabled: 0 Counter index: 2047
[    1.612932] thunderbolt 0000:07:00.0: 3:1:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.612933] thunderbolt 0000:07:00.0: 3:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.613182] thunderbolt 0000:07:00.0: 0:d: Writing hop 0
[    1.613185] thunderbolt 0000:07:00.0: 0:d:  In HopID: 9 => Out port: 3 Out HopID: 9
[    1.613187] thunderbolt 0000:07:00.0: 0:d:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.613190] thunderbolt 0000:07:00.0: 0:d:    Counter enabled: 0 Counter index: 2047
[    1.613192] thunderbolt 0000:07:00.0: 0:d:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.613194] thunderbolt 0000:07:00.0: 0:d:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.613310] thunderbolt 0000:07:00.0: path activation complete
[    1.613311] thunderbolt 0000:07:00.0: activating AUX TX path from 0:13 to 303:11
[    1.613438] thunderbolt 0000:07:00.0: 303:3: Writing hop 2
[    1.613440] thunderbolt 0000:07:00.0: 303:3:  In HopID: 10 => Out port: 11 Out HopID: 8
[    1.613442] thunderbolt 0000:07:00.0: 303:3:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.613443] thunderbolt 0000:07:00.0: 303:3:    Counter enabled: 0 Counter index: 2047
[    1.613444] thunderbolt 0000:07:00.0: 303:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.613446] thunderbolt 0000:07:00.0: 303:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.613582] pcieport 0000:06:03.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.613694] thunderbolt 0000:07:00.0: 3:1: Writing hop 1
[    1.613696] thunderbolt 0000:07:00.0: 3:1:  In HopID: 10 => Out port: 3 Out HopID: 10
[    1.613697] thunderbolt 0000:07:00.0: 3:1:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.613699] thunderbolt 0000:07:00.0: 3:1:    Counter enabled: 0 Counter index: 2047
[    1.613700] thunderbolt 0000:07:00.0: 3:1:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.613701] thunderbolt 0000:07:00.0: 3:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.613774] pcieport 0000:06:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.613950] thunderbolt 0000:07:00.0: 0:d: Writing hop 0
[    1.613952] thunderbolt 0000:07:00.0: 0:d:  In HopID: 8 => Out port: 3 Out HopID: 10
[    1.613953] thunderbolt 0000:07:00.0: 0:d:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.613955] thunderbolt 0000:07:00.0: 0:d:    Counter enabled: 0 Counter index: 2047
[    1.613956] thunderbolt 0000:07:00.0: 0:d:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.613957] thunderbolt 0000:07:00.0: 0:d:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.613972] pcieport 0000:06:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.614078] thunderbolt 0000:07:00.0: path activation complete
[    1.614079] thunderbolt 0000:07:00.0: activating AUX RX path from 303:11 to 0:13
[    1.614177] pcieport 0000:06:06.0: pciehp: Slot #6 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.614207] thunderbolt 0000:07:00.0: 0:3: Writing hop 2
[    1.614209] thunderbolt 0000:07:00.0: 0:3:  In HopID: 9 => Out port: 13 Out HopID: 8
[    1.614210] thunderbolt 0000:07:00.0: 0:3:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.614211] thunderbolt 0000:07:00.0: 0:3:    Counter enabled: 0 Counter index: 2047
[    1.614213] thunderbolt 0000:07:00.0: 0:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.614214] thunderbolt 0000:07:00.0: 0:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.614462] thunderbolt 0000:07:00.0: 3:3: Writing hop 1
[    1.614464] thunderbolt 0000:07:00.0: 3:3:  In HopID: 9 => Out port: 1 Out HopID: 9
[    1.614465] thunderbolt 0000:07:00.0: 3:3:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.614466] thunderbolt 0000:07:00.0: 3:3:    Counter enabled: 0 Counter index: 2047
[    1.614467] thunderbolt 0000:07:00.0: 3:3:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.614469] thunderbolt 0000:07:00.0: 3:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.614718] thunderbolt 0000:07:00.0: 303:b: Writing hop 0
[    1.614720] thunderbolt 0000:07:00.0: 303:b:  In HopID: 8 => Out port: 3 Out HopID: 9
[    1.614721] thunderbolt 0000:07:00.0: 303:b:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.614722] thunderbolt 0000:07:00.0: 303:b:    Counter enabled: 0 Counter index: 2047
[    1.614724] thunderbolt 0000:07:00.0: 303:b:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.614725] thunderbolt 0000:07:00.0: 303:b:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.614846] thunderbolt 0000:07:00.0: path activation complete
[    1.615456] pcieport 0000:19:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.615669] pcieport 0000:19:05.0: enabling device (0000 -> 0001)
[    1.615775] pcieport 0000:19:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.617669] pcieport 0000:20:04.0: enabling device (0000 -> 0003)
[    1.617794] pcieport 0000:20:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.618088] pcieport 0000:20:05.0: enabling device (0000 -> 0001)
[    1.618209] pcieport 0000:20:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.627153] brd: module loaded
[    1.627416] Intel(R) 2.5G Ethernet Linux Driver
[    1.627422] Copyright(c) 2018 Intel Corporation.
[    1.627480] i8042: PNP: No PS/2 controller found.
[    1.627519] mousedev: PS/2 mouse device common for all mice
[    1.627584] intel_pstate: Intel P-state driver initializing
[    1.627705] efifb: probing for efifb
[    1.627721] efifb: framebuffer at 0x90010000, using 14400k, total 14400k
[    1.627724] efifb: mode is 2560x1440x32, linelength=10240, pages=1
[    1.627726] efifb: scrolling: redraw
[    1.627728] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    1.637233] Console: switching to colour frame buffer device 320x90
[    1.646311] fb0: EFI VGA frame buffer device
[    1.646415] Key type dns_resolver registered
[    1.646489] microcode: sig=0x206a7, pf=0x2, revision=0x2f
[    1.646675] microcode: Microcode Update Driver: v2.2.
[    1.646677] IPI shorthand broadcast: enabled
[    1.646720] sched_clock: Marking stable (1646262973, 409135)->(1657804218, -11132110)
[    1.646818] registered taskstats version 1
[    1.646835] Loading compiled-in X.509 certificates
[    1.647438] Freeing unused kernel image (initmem) memory: 956K
[    1.703408] Write protecting the kernel read-only data: 12288k
[    1.704064] Freeing unused kernel image (text/rodata gap) memory: 2044K
[    1.704155] Freeing unused kernel image (rodata/data gap) memory: 188K
[    1.704184] Run /init as init process
[    1.704199]   with arguments:
[    1.704200]     /init
[    1.704201]   with environment:
[    1.704202]     HOME=/
[    1.704202]     TERM=linux
[    1.704203]     netconsole=6666@192.168.2.87/eth0,6666@192.168.2.208/dc:a6:32:61:33:da
[    1.749015] udevd[875]: starting version 3.2.9
[    1.749714] udevd[876]: starting eudev-3.2.9
[    1.763961] ACPI: bus type USB registered
[    1.764006] usbcore: registered new interface driver usbfs
[    1.764034] usbcore: registered new interface driver hub
[    1.764063] usbcore: registered new device driver usb
[    1.764779] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.766495] ehci-pci: EHCI PCI platform driver
[    1.766500] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.766501] uhci_hcd: USB Universal Host Controller Interface driver
[    1.766534] ACPI: bus type drm_connector registered
[    1.766773] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[    1.766807] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    1.766851] uhci_hcd 0000:00:1a.0: detected 2 ports
[    1.766919] uhci_hcd 0000:00:1a.0: irq 21, io port 0x00003140
[    1.767016] usb usb1: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17
[    1.767058] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.767093] usb usb1: Product: UHCI Host Controller
[    1.767119] usb usb1: Manufacturer: Linux 5.17.0+ uhci_hcd
[    1.767147] usb usb1: SerialNumber: 0000:00:1a.0
[    1.767313] hub 1-0:1.0: USB hub found
[    1.767342] hub 1-0:1.0: 2 ports detected
[    1.767639] ehci-pci 0000:00:1a.7: EHCI Host Controller
[    1.767665] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 2
[    1.767704] ehci-pci 0000:00:1a.7: debug port 2
[    1.769304] ahci 0000:00:1f.2: version 3.0
[    1.769970] cryptd: max_cpu_qlen set to 1000
[    1.771097] AVX version of gcm_enc/dec engaged.
[    1.771142] AES CTR mode by8 optimization enabled
[    1.771654] ehci-pci 0000:00:1a.7: irq 23, io mem 0xa8906c00
[    1.779535] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x7 impl SATA mode
[    1.779586] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst 
[    1.779648] radeon: unknown parameter 'pm' ignored
[    1.779756] [drm] radeon kernel modesetting enabled.
[    1.779822] checking generic (90010000 e10000) vs hw (90000000 10000000)
[    1.779824] fb0: switching to radeon from EFI VGA
[    1.779951] Console: switching to colour dummy device 80x25
[    1.780037] radeon 0000:01:00.0: vgaarb: deactivate vga console
[    1.780201] [drm] initializing kernel modesetting (BARTS 0x1002:0x6720 0x106B:0x0B00 0x00).
[    1.780207] radeon 0000:01:00.0: vram limit (0) must be a power of 2
[    1.803171] tg3 0000:02:00.0 eth0: Tigon3 [partno(BCM957765) rev 57785100] (PCI Express) MAC address 3c:07:54:14:b2:08
[    1.803178] tg3 0000:02:00.0 eth0: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    1.803182] tg3 0000:02:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    1.803185] tg3 0000:02:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[    1.803395] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[    1.803428] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
[    1.803432] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.803435] usb usb2: Product: EHCI Host Controller
[    1.803437] usb usb2: Manufacturer: Linux 5.17.0+ ehci_hcd
[    1.803439] usb usb2: SerialNumber: 0000:00:1a.7
[    1.803675] hub 2-0:1.0: USB hub found
[    1.803697] hub 2-0:1.0: 6 ports detected
[    1.833662] firewire_ohci 0000:04:00.0: added OHCI v1.10 device as card 0, 8 IR + 8 IT contexts, quirks 0x0, physUB
[    1.843456] hub 1-0:1.0: USB hub found
[    1.843468] hub 1-0:1.0: 2 ports detected
[    1.843540] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    1.843549] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 3
[    1.843610] uhci_hcd 0000:00:1d.0: detected 2 ports
[    1.843852] uhci_hcd 0000:00:1d.0: irq 19, io port 0x000030e0
[    1.844127] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17
[    1.844151] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.844156] usb usb3: Product: UHCI Host Controller
[    1.844161] usb usb3: Manufacturer: Linux 5.17.0+ uhci_hcd
[    1.844163] usb usb3: SerialNumber: 0000:00:1d.0
[    1.844251] hub 3-0:1.0: USB hub found
[    1.844263] hub 3-0:1.0: 2 ports detected
[    1.844495] scsi host0: ahci
[    1.844583] ehci-pci 0000:00:1d.7: EHCI Host Controller
[    1.844661] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 4
[    1.844792] ehci-pci 0000:00:1d.7: debug port 2
[    1.845107] scsi host1: ahci
[    1.845775] scsi host2: ahci
[    1.846235] scsi host3: ahci
[    1.846600] scsi host4: ahci
[    1.847195] scsi host5: ahci
[    1.847513] ata1: SATA max UDMA/133 abar m2048@0xa8906000 port 0xa8906100 irq 52
[    1.847573] ata2: SATA max UDMA/133 abar m2048@0xa8906000 port 0xa8906180 irq 52
[    1.847614] ata3: SATA max UDMA/133 abar m2048@0xa8906000 port 0xa8906200 irq 52
[    1.847654] ata4: DUMMY
[    1.847674] ata5: DUMMY
[    1.847694] ata6: DUMMY
[    1.848967] ehci-pci 0000:00:1d.7: irq 22, io mem 0xa8906800
[    1.873390] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    1.873429] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
[    1.873433] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.873436] usb usb4: Product: EHCI Host Controller
[    1.873438] usb usb4: Manufacturer: Linux 5.17.0+ ehci_hcd
[    1.873440] usb usb4: SerialNumber: 0000:00:1d.7
[    1.873671] hub 4-0:1.0: USB hub found
[    1.873677] hub 4-0:1.0: 8 ports detected
[    1.896547] tg3 0000:1d:00.0 eth1: Tigon3 [partno(BCM957761) rev 57785100] (PCI Express) MAC address c8:2a:14:4f:80:3e
[    1.896553] tg3 0000:1d:00.0 eth1: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    1.896557] tg3 0000:1d:00.0 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    1.896560] tg3 0000:1d:00.0 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[    1.903651] firewire_ohci 0000:1e:00.0: added OHCI v1.10 device as card 1, 8 IR + 8 IT contexts, quirks 0x0, physUB
[    1.913514] hub 3-0:1.0: USB hub found
[    1.913564] hub 3-0:1.0: 2 ports detected
[    1.913827] ehci-pci 0000:1c:00.2: EHCI Host Controller
[    1.913833] ehci-pci 0000:1c:00.2: new USB bus registered, assigned bus number 5
[    1.914110] ehci-pci 0000:1c:00.2: irq 17, io mem 0xb0b02000
[    1.953401] ehci-pci 0000:1c:00.2: USB 2.0 started, EHCI 1.00
[    1.953501] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
[    1.953522] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.953538] usb usb5: Product: EHCI Host Controller
[    1.953541] usb usb5: Manufacturer: Linux 5.17.0+ ehci_hcd
[    1.953544] usb usb5: SerialNumber: 0000:1c:00.2
[    1.953808] hub 5-0:1.0: USB hub found
[    1.953828] hub 5-0:1.0: 4 ports detected
[    1.954800] ehci-pci 0000:23:00.2: EHCI Host Controller
[    1.954806] ehci-pci 0000:23:00.2: new USB bus registered, assigned bus number 6
[    1.955145] ehci-pci 0000:23:00.2: irq 17, io mem 0xb0f02000
[    1.973819] firewire_ohci 0000:25:00.0: added OHCI v1.10 device as card 2, 8 IR + 8 IT contexts, quirks 0x0, physUB
[    1.987756] tg3 0000:24:00.0 eth2: Tigon3 [partno(BCM957761) rev 57785100] (PCI Express) MAC address 38:c9:86:48:0c:c8
[    1.987762] tg3 0000:24:00.0 eth2: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    1.987765] tg3 0000:24:00.0 eth2: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    1.987769] tg3 0000:24:00.0 eth2: dma_rwctrl[00000001] dma_mask[64-bit]
[    2.103373] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    2.110672] ATOM BIOS: Apple
[    2.110843] radeon 0000:01:00.0: VRAM: 1024M 0x0000000000000000 - 0x000000003FFFFFFF (1024M used)
[    2.110855] radeon 0000:01:00.0: GTT: 1024M 0x0000000040000000 - 0x000000007FFFFFFF
[    2.110861] [drm] Detected VRAM RAM=1024M, BAR=256M
[    2.110863] [drm] RAM width 256bits DDR
[    2.110878] [drm] radeon: 1024M of VRAM memory ready
[    2.110880] [drm] radeon: 1024M of GTT memory ready.
[    2.110886] [drm] Loading BARTS Microcode
[    2.110936] [drm] External GPIO thermal controller with fan control
[    2.110950] == power state 0 ==
[    2.110952] 	ui class: none
[    2.110953] 	internal class: boot
[    2.110956] 	caps:
[    2.110957] 	uvd    vclk: 0 dclk: 0
[    2.110958] 		power level 0    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    2.110961] 		power level 1    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    2.110962] 		power level 2    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    2.110964] 	status: c r b
[    2.110967] == power state 1 ==
[    2.110968] 	ui class: performance
[    2.110969] 	internal class: none
[    2.110971] 	caps:
[    2.110972] 	uvd    vclk: 0 dclk: 0
[    2.110973] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    2.110975] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    2.110977] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    2.110979] 	status:
[    2.110980] == power state 2 ==
[    2.110981] 	ui class: none
[    2.110983] 	internal class: uvd
[    2.110984] 	caps: video
[    2.110986] 	uvd    vclk: 54000 dclk: 40000
[    2.110987] 		power level 0    sclk: 29800 mclk: 90000 vddc: 950 vddci: 1100
[    2.110989] 		power level 1    sclk: 29800 mclk: 90000 vddc: 950 vddci: 1100
[    2.110991] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    2.110993] 	status:
[    2.110994] == power state 3 ==
[    2.110995] 	ui class: none
[    2.110996] 	internal class: uvd_mvc
[    2.110998] 	caps: video
[    2.110999] 	uvd    vclk: 70000 dclk: 56000
[    2.111001] 		power level 0    sclk: 50200 mclk: 90000 vddc: 1050 vddci: 1100
[    2.111003] 		power level 1    sclk: 50200 mclk: 90000 vddc: 1050 vddci: 1100
[    2.111004] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    2.111006] 	status:
[    2.111007] == power state 4 ==
[    2.111009] 	ui class: battery
[    2.111010] 	internal class: none
[    2.111011] 	caps:
[    2.111012] 	uvd    vclk: 0 dclk: 0
[    2.111014] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    2.111016] 		power level 1    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    2.111017] 		power level 2    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    2.111019] 	status:
[    2.115924] [drm] radeon: dpm initialized
[    2.115998] [drm] GART: num cpu pages 262144, num gpu pages 262144
[    2.116397] [drm] enabling PCIE gen 2 link speeds, disable with radeon.pcie_gen2=0
[    2.133011] [drm] PCIE GART of 1024M enabled (table at 0x0000000000162000).
[    2.133115] radeon 0000:01:00.0: WB enabled
[    2.133119] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000040000c00
[    2.133122] radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000040000c0c
[    2.133401] ehci-pci 0000:23:00.2: USB 2.0 started, EHCI 1.00
[    2.133507] usb usb6: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
[    2.133514] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.133527] usb usb6: Product: EHCI Host Controller
[    2.133538] usb usb6: Manufacturer: Linux 5.17.0+ ehci_hcd
[    2.133541] usb usb6: SerialNumber: 0000:23:00.2
[    2.133663] hub 6-0:1.0: USB hub found
[    2.133673] hub 6-0:1.0: 4 ports detected
[    2.133942] radeon 0000:01:00.0: fence driver on ring 5 use gpu addr 0x0000000000072118
[    2.134046] radeon 0000:01:00.0: radeon: MSI limited to 32-bit
[    2.134088] radeon 0000:01:00.0: radeon: using MSI.
[    2.134118] [drm] radeon: irq initialized.
[    2.150455] [drm] ring test on 0 succeeded in 3 usecs
[    2.150468] [drm] ring test on 3 succeeded in 7 usecs
[    2.174710] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    2.174802] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    2.174820] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    2.176419] ata2.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    2.176478] ata1.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    2.176486] ata2.00: supports DRM functions and may not be fully accessible
[    2.176491] ata2.00: ATA-9: Samsung SSD 850 EVO 500GB, EMT02B6Q, max UDMA/133
[    2.176562] ata3.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    2.176569] ata3.00: ATAPI: OPTIARC DVD RW AD-5690H, 4AH5, max UDMA/100
[    2.176579] ata1.00: supports DRM functions and may not be fully accessible
[    2.176585] ata1.00: ATA-9: Samsung SSD 850 PRO 256GB, EXM03B6Q, max UDMA/133
[    2.177127] ata2.00: 976773168 sectors, multi 1: LBA48 NCQ (depth 32), AA
[    2.177186] ata1.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 32), AA
[    2.178637] ata3.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    2.178644] ata3.00: configured for UDMA/100
[    2.179102] ata2.00: Features: Trust Dev-Sleep NCQ-sndrcv
[    2.179204] ata1.00: Features: Trust Dev-Sleep NCQ-sndrcv
[    2.179375] ata2.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    2.179444] ata2.00: supports DRM functions and may not be fully accessible
[    2.179509] ata1.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    2.179570] ata1.00: supports DRM functions and may not be fully accessible
[    2.182186] ata2.00: configured for UDMA/133
[    2.182358] ata1.00: configured for UDMA/133
[    2.182448] scsi 0:0:0:0: Direct-Access     ATA      Samsung SSD 850  3B6Q PQ: 0 ANSI: 5
[    2.182627] scsi 1:0:0:0: Direct-Access     ATA      Samsung SSD 850  2B6Q PQ: 0 ANSI: 5
[    2.184035] scsi 2:0:0:0: CD-ROM            OPTIARC  DVD RW AD-5690H  4AH5 PQ: 0 ANSI: 5
[    2.283387] usb 4-1: new high-speed USB device number 2 using ehci-pci
[    2.293354] usb 5-1: new high-speed USB device number 2 using ehci-pci
[    2.327575] [drm] ring test on 5 succeeded in 2 usecs
[    2.327585] [drm] UVD initialized successfully.
[    2.327693] [drm] ib test on ring 0 succeeded in 0 usecs
[    2.327796] [drm] ib test on ring 3 succeeded in 0 usecs
[    2.333715] usb 2-1: New USB device found, idVendor=0424, idProduct=2514, bcdDevice= 0.03
[    2.333722] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.333991] hub 2-1:1.0: USB hub found
[    2.334071] hub 2-1:1.0: 3 ports detected
[    2.343512] firewire_core 0000:04:00.0: created device fw0: GUID a4b197fffe3f2da2, S800
[    2.343522] firewire_core 0000:04:00.0: phy config: new root=ffc0, gap_count=63
[    2.344630] ohci-pci: OHCI PCI platform driver
[    2.344734] ohci-pci 0000:1c:00.0: OHCI PCI host controller
[    2.344745] ohci-pci 0000:1c:00.0: new USB bus registered, assigned bus number 7
[    2.344779] ohci-pci 0000:1c:00.0: irq 19, io mem 0xb0b00000
[    2.346809] sd 0:0:0:0: [sdb] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[    2.346809] sd 1:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[    2.346822] sd 0:0:0:0: [sdb] Write Protect is off
[    2.346828] sd 0:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    2.346828] sd 1:0:0:0: [sda] Write Protect is off
[    2.346836] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.346841] sd 0:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.346849] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.349248] sd 1:0:0:0: [sda] supports TCG Opal
[    2.349253] sd 1:0:0:0: [sda] Attached SCSI disk
[    2.349383]  sdb: sdb1 sdb2 sdb3 sdb4 sdb5 sdb6
[    2.350250] sd 0:0:0:0: [sdb] supports TCG Opal
[    2.350254] sd 0:0:0:0: [sdb] Attached SCSI disk
[    2.350637] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    2.350655] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    2.350673] sr 2:0:0:0: Attached scsi generic sg2 type 5
[    2.413531] firewire_core 0000:1e:00.0: created device fw1: GUID 000a27020040c4ba, S800
[    2.413553] firewire_core 0000:1e:00.0: phy config: new root=ffc0, gap_count=63
[    2.417487] usb usb7: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17
[    2.417493] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.417496] usb usb7: Product: OHCI PCI host controller
[    2.417498] usb usb7: Manufacturer: Linux 5.17.0+ ohci_hcd
[    2.417500] usb usb7: SerialNumber: 0000:1c:00.0
[    2.417633] hub 7-0:1.0: USB hub found
[    2.417649] hub 7-0:1.0: 2 ports detected
[    2.417837] ohci-pci 0000:1c:00.1: OHCI PCI host controller
[    2.417843] ohci-pci 0000:1c:00.1: new USB bus registered, assigned bus number 8
[    2.417870] ohci-pci 0000:1c:00.1: irq 16, io mem 0xb0b01000
[    2.423364] usb 6-1: new high-speed USB device number 2 using ehci-pci
[    2.483375] usb 2-2: new high-speed USB device number 3 using ehci-pci
[    2.483815] usb 4-1: New USB device found, idVendor=0424, idProduct=2514, bcdDevice= 0.03
[    2.483821] usb 4-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.484112] hub 4-1:1.0: USB hub found
[    2.484179] hub 4-1:1.0: 4 ports detected
[    2.485415] sr 2:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda caddy
[    2.485422] cdrom: Uniform CD-ROM driver Revision: 3.20
[    2.487474] usb usb8: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17
[    2.487478] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.487481] usb usb8: Product: OHCI PCI host controller
[    2.487483] usb usb8: Manufacturer: Linux 5.17.0+ ohci_hcd
[    2.487485] usb usb8: SerialNumber: 0000:1c:00.1
[    2.487604] hub 8-0:1.0: USB hub found
[    2.487620] hub 8-0:1.0: 2 ports detected
[    2.487768] ohci-pci 0000:23:00.0: OHCI PCI host controller
[    2.487774] ohci-pci 0000:23:00.0: new USB bus registered, assigned bus number 9
[    2.487800] ohci-pci 0000:23:00.0: irq 19, io mem 0xb0f00000
[    2.493433] firewire_core 0000:25:00.0: created device fw2: GUID 000a2702006cfdfb, S800
[    2.493455] firewire_core 0000:25:00.0: phy config: new root=ffc0, gap_count=63
[    2.504104] usb 5-1: New USB device found, idVendor=05ac, idProduct=9127, bcdDevice= 1.00
[    2.504118] usb 5-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.504521] hub 5-1:1.0: USB hub found
[    2.504711] hub 5-1:1.0: 7 ports detected
[    2.554399] sr 2:0:0:0: Attached scsi CD-ROM sr0
[    2.557538] usb usb9: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17
[    2.557543] usb usb9: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.557546] usb usb9: Product: OHCI PCI host controller
[    2.557548] usb usb9: Manufacturer: Linux 5.17.0+ ohci_hcd
[    2.557550] usb usb9: SerialNumber: 0000:23:00.0
[    2.557668] hub 9-0:1.0: USB hub found
[    2.557686] hub 9-0:1.0: 2 ports detected
[    2.557834] ohci-pci 0000:23:00.1: OHCI PCI host controller
[    2.557839] ohci-pci 0000:23:00.1: new USB bus registered, assigned bus number 10
[    2.557865] ohci-pci 0000:23:00.1: irq 16, io mem 0xb0f01000
[    2.624139] usb 6-1: New USB device found, idVendor=05ac, idProduct=9127, bcdDevice= 1.00
[    2.624146] usb 6-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.624423] hub 6-1:1.0: USB hub found
[    2.624638] hub 6-1:1.0: 7 ports detected
[    2.627526] usb usb10: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17
[    2.627532] usb usb10: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.627535] usb usb10: Product: OHCI PCI host controller
[    2.627538] usb usb10: Manufacturer: Linux 5.17.0+ ohci_hcd
[    2.627540] usb usb10: SerialNumber: 0000:23:00.1
[    2.627609] hub 10-0:1.0: USB hub found
[    2.627625] hub 10-0:1.0: 2 ports detected
[    2.633358] tsc: Refined TSC clocksource calibration: 3400.025 MHz
[    2.633373] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x31026635618, max_idle_ns: 440795254572 ns
[    2.633406] clocksource: Switched to clocksource tsc
[    2.698958] usb 2-2: New USB device found, idVendor=05ac, idProduct=850b, bcdDevice= 7.55
[    2.698977] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.698979] usb 2-2: Product: FaceTime HD Camera (Built-in)
[    2.698981] usb 2-2: Manufacturer: Apple Inc.
[    2.698983] usb 2-2: SerialNumber: CCGB8K062WDDJRLX
[    2.783396] usb 2-1.1: new full-speed USB device number 4 using ehci-pci
[    2.803387] usb 4-1.1: new high-speed USB device number 3 using ehci-pci
[    2.823388] usb 5-1.4: new full-speed USB device number 3 using ehci-pci
[    2.936147] usb 2-1.1: New USB device found, idVendor=0a5c, idProduct=4500, bcdDevice= 1.00
[    2.936153] usb 2-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.936156] usb 2-1.1: Product: BRCM2046 Hub
[    2.936158] usb 2-1.1: Manufacturer: Apple Inc.
[    2.936547] hub 2-1.1:1.0: USB hub found
[    2.936906] hub 2-1.1:1.0: 3 ports detected
[    2.953392] usb 6-1.4: new full-speed USB device number 3 using ehci-pci
[    2.958914] usb 4-1.1: New USB device found, idVendor=05ac, idProduct=8403, bcdDevice=98.33
[    2.958920] usb 4-1.1: New USB device strings: Mfr=3, Product=4, SerialNumber=2
[    2.958923] usb 4-1.1: Product: Card Reader
[    2.958925] usb 4-1.1: Manufacturer: Apple
[    2.958927] usb 4-1.1: SerialNumber: 000000009833
[    2.960753] usb-storage 4-1.1:1.0: USB Mass Storage device detected
[    2.960838] scsi host6: usb-storage 4-1.1:1.0
[    2.960896] usbcore: registered new interface driver usb-storage
[    2.961187] usbcore: registered new interface driver uas
[    2.982758] usb 5-1.4: New USB device found, idVendor=05ac, idProduct=1107, bcdDevice= 2.09
[    2.982764] usb 5-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.982767] usb 5-1.4: Product: Display Audio
[    2.982769] usb 5-1.4: Manufacturer: Apple Inc.
[    2.982770] usb 5-1.4: SerialNumber: 152303D9
[    2.983412] [drm] ib test on ring 5 succeeded
[    2.984472] hid: raw HID events driver (C) Jiri Kosina
[    2.995814] usbcore: registered new interface driver usbhid
[    2.995818] usbhid: USB HID core driver
[    2.996570] input: Apple Inc. Display Audio as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:04.0/0000:18:00.0/0000:19:00.0/0000:1a:00.0/0000:1b:03.0/0000:1c:00.2/usb5/5-1/5-1.4/5-1.4:1.3/0003:05AC:1107.0001/input/input0
[    2.996602] hid-generic 0003:05AC:1107.0001: input,hidraw0: USB HID v1.11 Device [Apple Inc. Display Audio] on usb-0000:1c:00.2-1.4/input3
[    3.033387] usb 2-1.2: new high-speed USB device number 5 using ehci-pci
[    3.053387] usb 4-1.2: new low-speed USB device number 4 using ehci-pci
[    3.063370] [drm] radeon atom DIG backlight initialized
[    3.063391] [drm] Radeon Display Connectors
[    3.063397] [drm] Connector 0:
[    3.063400] [drm]   eDP-1
[    3.063403] [drm]   HPD3
[    3.063406] [drm]   DDC: 0x6450 0x6450 0x6454 0x6454 0x6458 0x6458 0x645c 0x645c
[    3.063413] [drm]   Encoders:
[    3.063415] [drm]     LCD1: INTERNAL_UNIPHY2
[    3.063419] [drm] Connector 1:
[    3.063422] [drm]   DP-1
[    3.063424] [drm]   HPD1
[    3.063427] [drm]   DDC: 0x6430 0x6430 0x6434 0x6434 0x6438 0x6438 0x643c 0x643c
[    3.063433] [drm]   Encoders:
[    3.063435] [drm]     DFP1: INTERNAL_UNIPHY1
[    3.063438] [drm] Connector 2:
[    3.063441] [drm]   DP-2
[    3.063443] [drm]   HPD2
[    3.063446] [drm]   DDC: 0x6440 0x6440 0x6444 0x6444 0x6448 0x6448 0x644c 0x644c
[    3.063457] [drm]   Encoders:
[    3.063458] [drm]     DFP2: INTERNAL_UNIPHY1
[    3.063459] [drm] Connector 3:
[    3.063460] [drm]   DP-3
[    3.063461] [drm]   HPD4
[    3.063462] [drm]   DDC: 0x6460 0x6460 0x6464 0x6464 0x6468 0x6468 0x646c 0x646c
[    3.063465] [drm]   Encoders:
[    3.063466] [drm]     DFP3: INTERNAL_UNIPHY2
[    3.063467] [drm] Connector 4:
[    3.063468] [drm]   DP-4
[    3.063470] [drm]   HPD5
[    3.063471] [drm]   DDC: 0x6470 0x6470 0x6474 0x6474 0x6478 0x6478 0x647c 0x647c
[    3.063473] [drm]   Encoders:
[    3.063474] [drm]     DFP4: INTERNAL_UNIPHY
[    3.063476] [drm] Connector 5:
[    3.063477] [drm]   VGA-1
[    3.063478] [drm]   DDC: 0x64d8 0x64d8 0x64dc 0x64dc 0x64e0 0x64e0 0x64e4 0x64e4
[    3.063481] [drm]   Encoders:
[    3.063482] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[    3.083393] usb 5-1.5: new high-speed USB device number 4 using ehci-pci
[    3.093824] switching from power state:
[    3.093828] 	ui class: none
[    3.093830] 	internal class: boot
[    3.093832] 	caps:
[    3.093833] 	uvd    vclk: 0 dclk: 0
[    3.093835] 		power level 0    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    3.093837] 		power level 1    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    3.093839] 		power level 2    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    3.093841] 	status: c b
[    3.093843] switching to power state:
[    3.093844] 	ui class: performance
[    3.093845] 	internal class: none
[    3.093847] 	caps:
[    3.093848] 	uvd    vclk: 0 dclk: 0
[    3.093850] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    3.093852] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    3.093853] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    3.093855] 	status: r
[    3.123278] usb 6-1.4: New USB device found, idVendor=05ac, idProduct=1107, bcdDevice= 2.09
[    3.123292] usb 6-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.123299] usb 6-1.4: Product: Display Audio
[    3.123304] usb 6-1.4: Manufacturer: Apple Inc.
[    3.123308] usb 6-1.4: SerialNumber: 1A0E0738
[    3.135264] input: Apple Inc. Display Audio as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:04.0/0000:18:00.0/0000:19:04.0/0000:1f:00.0/0000:20:00.0/0000:21:00.0/0000:22:03.0/0000:23:00.2/usb6/6-1/6-1.4/6-1.4:1.3/0003:05AC:1107.0002/input/input1
[    3.135331] hid-generic 0003:05AC:1107.0002: input,hidraw1: USB HID v1.11 Device [Apple Inc. Display Audio] on usb-0000:23:00.2-1.4/input3
[    3.192036] usb 2-1.2: New USB device found, idVendor=05ac, idProduct=1006, bcdDevice=96.15
[    3.192042] usb 2-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.192045] usb 2-1.2: Product: Keyboard Hub
[    3.192047] usb 2-1.2: Manufacturer: Apple, Inc.
[    3.192049] usb 2-1.2: SerialNumber: 000000000000
[    3.192209] hub 2-1.2:1.0: USB hub found
[    3.192285] hub 2-1.2:1.0: 3 ports detected
[    3.209410] usb 4-1.2: New USB device found, idVendor=05ac, idProduct=8242, bcdDevice= 0.16
[    3.209416] usb 4-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.209426] usb 4-1.2: Product: IR Receiver
[    3.209428] usb 4-1.2: Manufacturer: Apple Computer, Inc.
[    3.214520] input: Apple Computer, Inc. IR Receiver as /devices/pci0000:00/0000:00:1d.7/usb4/4-1/4-1.2/4-1.2:1.0/0003:05AC:8242.0003/input/input2
[    3.233356] usb 6-1.5: new high-speed USB device number 4 using ehci-pci
[    3.260798] usb 5-1.5: New USB device found, idVendor=05ac, idProduct=1112, bcdDevice=71.60
[    3.260804] usb 5-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.260807] usb 5-1.5: Product: FaceTime HD Camera (Display)
[    3.260809] usb 5-1.5: Manufacturer: Apple Inc.
[    3.260811] usb 5-1.5: SerialNumber: CCGB690CKUDJ9DFX
[    3.283366] usb 2-1.1.1: new full-speed USB device number 6 using ehci-pci
[    3.283577] appleir 0003:05AC:8242.0003: input,hiddev96,hidraw2: USB HID v1.11 Device [Apple Computer, Inc. IR Receiver] on usb-0000:00:1d.7-1.2/input0
[    3.313364] usb 4-1.4: new low-speed USB device number 5 using ehci-pci
[    3.363359] usb 5-1.7: new full-speed USB device number 5 using ehci-pci
[    3.400094] usb 6-1.5: New USB device found, idVendor=05ac, idProduct=1112, bcdDevice=71.60
[    3.400100] usb 6-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.400111] usb 6-1.5: Product: FaceTime HD Camera (Display)
[    3.400114] usb 6-1.5: Manufacturer: Apple Inc.
[    3.400116] usb 6-1.5: SerialNumber: CC2G3101FFDJ9FLP
[    3.447783] usb 2-1.1.1: New USB device found, idVendor=05ac, idProduct=8215, bcdDevice= 2.08
[    3.447789] usb 2-1.1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.447800] usb 2-1.1.1: Product: Bluetooth USB Host Controller
[    3.447802] usb 2-1.1.1: Manufacturer: Apple Inc.
[    3.447804] usb 2-1.1.1: SerialNumber: 3451C9ED7F9B
[    3.468933] usb 4-1.4: New USB device found, idVendor=047d, idProduct=1020, bcdDevice= 1.06
[    3.468939] usb 4-1.4: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    3.468941] usb 4-1.4: Product: Kensington Expert Mouse
[    3.472048] input: Kensington Expert Mouse as /devices/pci0000:00/0000:00:1d.7/usb4/4-1/4-1.4/4-1.4:1.0/0003:047D:1020.0004/input/input3
[    3.472096] hid-generic 0003:047D:1020.0004: input,hidraw3: USB HID v1.11 Mouse [Kensington Expert Mouse] on usb-0000:00:1d.7-1.4/input0
[    3.503356] usb 6-1.7: new full-speed USB device number 5 using ehci-pci
[    3.515577] usb 5-1.7: New USB device found, idVendor=05ac, idProduct=9227, bcdDevice= 1.37
[    3.515583] usb 5-1.7: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.515587] usb 5-1.7: Product: Apple Thunderbolt Display
[    3.515589] usb 5-1.7: Manufacturer: Apple Inc.
[    3.515591] usb 5-1.7: SerialNumber: 152303D9
[    3.517332] hid-generic 0003:05AC:9227.0005: hiddev97,hidraw4: USB HID v1.11 Device [Apple Inc. Apple Thunderbolt Display] on usb-0000:1c:00.2-1.7/input0
[    3.543356] usb 2-1.2.2: new low-speed USB device number 7 using ehci-pci
[    3.655495] usb 6-1.7: New USB device found, idVendor=05ac, idProduct=9227, bcdDevice= 1.39
[    3.655501] usb 6-1.7: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.655511] usb 6-1.7: Product: Apple Thunderbolt Display
[    3.655515] usb 6-1.7: Manufacturer: Apple Inc.
[    3.655517] usb 6-1.7: SerialNumber: 1A0E0738
[    3.657595] hid-generic 0003:05AC:9227.0006: hiddev98,hidraw5: USB HID v1.11 Device [Apple Inc. Apple Thunderbolt Display] on usb-0000:23:00.2-1.7/input0
[    3.700003] usb 2-1.2.2: New USB device found, idVendor=05ac, idProduct=0220, bcdDevice= 0.71
[    3.700007] usb 2-1.2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.700011] usb 2-1.2.2: Product: Apple Keyboard
[    3.700013] usb 2-1.2.2: Manufacturer: Apple, Inc
[    3.707444] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:1a.7/usb2/2-1/2-1.2/2-1.2.2/2-1.2.2:1.0/0003:05AC:0220.0007/input/input4
[    3.773475] apple 0003:05AC:0220.0007: input,hidraw6: USB HID v1.11 Keyboard [Apple, Inc Apple Keyboard] on usb-0000:00:1a.7-1.2.2/input0
[    3.773550] apple 0003:05AC:0220.0008: Fn key not found (Apple Wireless Keyboard clone?), disabling Fn key handling
[    3.773583] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:1a.7/usb2/2-1/2-1.2/2-1.2.2/2-1.2.2:1.1/0003:05AC:0220.0008/input/input5
[    3.793362] usb 2-1.1.2: new full-speed USB device number 8 using ehci-pci
[    3.843474] apple 0003:05AC:0220.0008: input,hidraw7: USB HID v1.11 Device [Apple, Inc Apple Keyboard] on usb-0000:00:1a.7-1.2.2/input1
[    3.946781] usb 2-1.1.2: New USB device found, idVendor=05ac, idProduct=820a, bcdDevice= 1.00
[    3.946787] usb 2-1.1.2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.948561] input: HID 05ac:820a as /devices/pci0000:00/0000:00:1a.7/usb2/2-1/2-1.1/2-1.1.2/2-1.1.2:1.0/0003:05AC:820A.0009/input/input6
[    3.995065] scsi 6:0:0:0: Direct-Access     APPLE    SD Card Reader   1.00 PQ: 0 ANSI: 0
[    3.995245] sd 6:0:0:0: Attached scsi generic sg3 type 0
[    3.995962] sd 6:0:0:0: [sdc] Media removed, stopped polling
[    3.996803] sd 6:0:0:0: [sdc] Attached SCSI removable disk
[    4.013441] hid-generic 0003:05AC:820A.0009: input,hidraw8: USB HID v1.11 Keyboard [HID 05ac:820a] on usb-0000:00:1a.7-1.1.2/input0
[    4.113359] usb 2-1.1.3: new full-speed USB device number 9 using ehci-pci
[    4.266917] usb 2-1.1.3: New USB device found, idVendor=05ac, idProduct=820b, bcdDevice= 1.00
[    4.266931] usb 2-1.1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.268979] input: HID 05ac:820b as /devices/pci0000:00/0000:00:1a.7/usb2/2-1/2-1.1/2-1.1.3/2-1.1.3:1.0/0003:05AC:820B.000A/input/input7
[    4.269217] hid-generic 0003:05AC:820B.000A: input,hidraw9: USB HID v1.11 Mouse [HID 05ac:820b] on usb-0000:00:1a.7-1.1.3/input0
[    4.496855] [drm] fb mappable at 0x90363000
[    4.496859] [drm] vram apper at 0x90000000
[    4.496860] [drm] size 14745600
[    4.496861] [drm] fb depth is 24
[    4.496863] [drm]    pitch is 10240
[    4.496954] fbcon: radeondrmfb (fb0) is primary device
[    5.179266] switching from power state:
[    5.179268] 	ui class: performance
[    5.179269] 	internal class: none
[    5.179270] 	caps:
[    5.179270] 	uvd    vclk: 0 dclk: 0
[    5.179271] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    5.179272] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    5.179273] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    5.179274] 	status: c r
[    5.179275] switching to power state:
[    5.179275] 	ui class: performance
[    5.179275] 	internal class: none
[    5.179276] 	caps:
[    5.179276] 	uvd    vclk: 0 dclk: 0
[    5.179277] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    5.179277] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    5.179278] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    5.179279] 	status: c r
[    6.293830] switching from power state:
[    6.293831] 	ui class: performance
[    6.293831] 	internal class: none
[    6.293832] 	caps:
[    6.293833] 	uvd    vclk: 0 dclk: 0
[    6.293834] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    6.293835] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    6.293835] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    6.293836] 	status: c r
[    6.293837] switching to power state:
[    6.293837] 	ui class: performance
[    6.293838] 	internal class: none
[    6.293838] 	caps:
[    6.293839] 	uvd    vclk: 0 dclk: 0
[    6.293839] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    6.293840] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    6.293840] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    6.293841] 	status: c r
[    6.405901] Console: switching to colour frame buffer device 320x90
[    6.410293] radeon 0000:01:00.0: [drm] fb0: radeondrmfb frame buffer device
[    6.443430] [drm] Initialized radeon 2.50.0 20080528 for 0000:01:00.0 on minor 0
[    6.470119] [drm] amdgpu kernel modesetting enabled.
[    6.505432] netpoll: netconsole: local port 6666
[    6.505449] netpoll: netconsole: local IPv4 address 192.168.2.87
[    6.505463] netpoll: netconsole: interface 'eth0'
[    6.505473] netpoll: netconsole: remote port 6666
[    6.505483] netpoll: netconsole: remote IPv4 address 192.168.2.208
[    6.505496] netpoll: netconsole: remote ethernet address dc:a6:32:61:33:da
[    6.505513] netpoll: netconsole: device eth0 not up yet, forcing it
[   10.158425] tg3 0000:02:00.0 eth0: Link is up at 1000 Mbps, full duplex
[   10.158442] tg3 0000:02:00.0 eth0: Flow control is off for TX and off for RX
[   10.158457] tg3 0000:02:00.0 eth0: EEE is enabled
[   10.170898] printk: console [netcon0] enabled
[   10.170911] netconsole: network logging started
[   17.270550]  sda: sda1
[   17.354552] process '/usr/bin/fstype' started with executable stack
[   17.378014] EXT4-fs (sdb6): mounted filesystem with ordered data mode. Quota mode: none.
[   17.559109] udevd[1274]: starting version 3.2.9
[   17.582042] udevd[1275]: starting eudev-3.2.9
[   17.614963] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input8
[   17.616914] ACPI: button: Power Button [PWRB]
[   17.618474] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input9
[   17.619511] ACPI: button: Sleep Button [SLPB]
[   17.620985] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input10
[   17.627865] udevd[1311]: Error changing net interface name eth1 to eth2: File exists
[   17.628882] udevd[1311]: could not rename interface '3' from 'eth1' to 'eth2': File exists
[   17.636355] udevd[1300]: Error changing net interface name eth2 to eth1: File exists
[   17.637440] udevd[1300]: could not rename interface '4' from 'eth2' to 'eth1': File exists
[   17.650764] mc: Linux media interface: v0.10
[   17.654513] ACPI: button: Power Button [PWRF]
[   17.657812] videodev: Linux video capture interface: v2.00
[   17.665345] snd_hda_intel 0000:00:1b.0: enabling device (0000 -> 0002)
[   17.666576] snd_hda_intel 0000:01:00.1: enabling device (0000 -> 0002)
[   17.668836] usb 2-2: Found UVC 1.00 device FaceTime HD Camera (Built-in) (05ac:850b)
[   17.675061] Bluetooth: Core ver 2.22
[   17.676124] NET: Registered PF_BLUETOOTH protocol family
[   17.676972] Bluetooth: HCI device and connection manager initialized
[   17.677803] Bluetooth: HCI socket layer initialized
[   17.678653] Bluetooth: L2CAP socket layer initialized
[   17.679507] Bluetooth: SCO socket layer initialized
[   17.679807] usb 5-1.4: 1:1: cannot get freq at ep 0x4
[   17.684120] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input11
[   17.687246] usbcore: registered new interface driver btusb
[   17.689129] snd_hda_codec_cirrus hdaudioC0D0: autoconfig for CS4206: line_outs=2 (0x9/0xb/0x0/0x0/0x0) type:speaker
[   17.690251] snd_hda_codec_cirrus hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   17.691319] snd_hda_codec_cirrus hdaudioC0D0:    hp_outs=1 (0xa/0x0/0x0/0x0/0x0)
[   17.692402] snd_hda_codec_cirrus hdaudioC0D0:    mono: mono_out=0x0
[   17.693516] snd_hda_codec_cirrus hdaudioC0D0:    dig-out=0x10/0x0
[   17.694539] snd_hda_codec_cirrus hdaudioC0D0:    inputs:
[   17.695739] snd_hda_codec_cirrus hdaudioC0D0:      Mic=0xd
[   17.696700] snd_hda_codec_cirrus hdaudioC0D0:      Line=0xc
[   17.697580] snd_hda_codec_cirrus hdaudioC0D0:    dig-in=0xf
[   17.701545] input: FaceTime HD Camera (Built-in):  as /devices/pci0000:00/0000:00:1a.7/usb2/2-2/2-2:1.0/input/input12
[   17.703601] usb 5-1.5: Found UVC 1.00 device FaceTime HD Camera (Display) (05ac:1112)
[   17.705978] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
[   17.707089] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
[   17.708341] input: HDA Intel PCH SPDIF In as /devices/pci0000:00/0000:00:1b.0/sound/card0/input15
[   17.752574] applesmc: key=332 fan=3 temp=50 index=49 acc=0 lux=2 kbd=0
[   17.753632] applesmc applesmc.768: hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[   17.774057] usb 2-1.1.2: USB disconnect, device number 8
[   17.804923] Bluetooth: hci0: BCM: chip id 254 build 0518
[   17.806923] Bluetooth: hci0: BCM: product 05ac:8215
[   17.808931] Bluetooth: hci0: BCM: features 0x00
[   17.826918] Bluetooth: hci0: Bluetooth USB Host Controller
[   17.848980] usb 5-1.4: 1:2: cannot get freq at ep 0x4
[   17.853079] input: FaceTime HD Camera (Display): F as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:04.0/0000:18:00.0/0000:19:00.0/0000:1a:00.0/0000:1b:03.0/0000:1c:00.2/usb5/5-1/5-1.5/5-1.5:1.0/input/input16
[   17.858084] usb 5-1.4: 2:1: cannot get freq at ep 0x84
[   17.896954] usb 5-1.4: Warning! Unlikely big volume range (=16384), cval->res is probably wrong.
[   17.897855] usb 5-1.4: [2] FU [PCM Playback Volume] ch = 2, val = -16384/0/1
[   17.932984] usb 5-1.4: Warning! Unlikely big volume range (=15872), cval->res is probably wrong.
[   17.933916] usb 5-1.4: [5] FU [Mic Capture Volume] ch = 1, val = -11264/4608/1
[   17.948437] usb 6-1.4: 1:1: cannot get freq at ep 0x4
[   18.034743] usb 6-1.5: Found UVC 1.00 device FaceTime HD Camera (Display) (05ac:1112)
[   18.117332] usb 6-1.4: 1:2: cannot get freq at ep 0x4
[   18.121797] input: FaceTime HD Camera (Display): F as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:04.0/0000:18:00.0/0000:19:04.0/0000:1f:00.0/0000:20:00.0/0000:21:00.0/0000:22:03.0/0000:23:00.2/usb6/6-1/6-1.5/6-1.5:1.0/input/input17
[   18.122883] usbcore: registered new interface driver uvcvideo
[   18.126340] usb 6-1.4: 2:1: cannot get freq at ep 0x84
[   18.165235] usb 6-1.4: Warning! Unlikely big volume range (=16384), cval->res is probably wrong.
[   18.166176] usb 6-1.4: [2] FU [PCM Playback Volume] ch = 2, val = -16384/0/1
[   18.203385] usb 6-1.4: Warning! Unlikely big volume range (=15872), cval->res is probably wrong.
[   18.204366] usb 6-1.4: [5] FU [Mic Capture Volume] ch = 1, val = -11264/4608/1
[   18.205684] usbcore: registered new interface driver snd-usb-audio
[   18.263803] usb 2-1.1.3: USB disconnect, device number 9
[   19.305417] Adding 16777212k swap on /dev/sdb5.  Priority:-2 extents:1 across:16777212k SS
[   19.318561] EXT4-fs (sdb6): re-mounted. Quota mode: none.
[   19.405321] device-mapper: ioctl: 4.46.0-ioctl (2022-02-22) initialised: dm-devel@redhat.com
[   22.316952] EXT4-fs (sda1): mounted filesystem with ordered data mode. Quota mode: none.
[   22.896878] NET: Registered PF_PACKET protocol family
[   25.821282] tg3 0000:02:00.0 eth0: Link is up at 1000 Mbps, full duplex
[   25.822297] tg3 0000:02:00.0 eth0: Flow control is off for TX and off for RX
[   25.823301] tg3 0000:02:00.0 eth0: EEE is enabled
[   28.811553] FS-Cache: Loaded
[   28.817338] RPC: Registered named UNIX socket transport module.
[   28.818207] RPC: Registered udp transport module.
[   28.819051] RPC: Registered tcp transport module.
[   28.819885] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   28.832135] NFS: Registering the id_resolver key type
[   28.833010] Key type id_resolver registered
[   28.833849] Key type id_legacy registered
[   30.194549] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[   30.611020] elogind-daemon[3134]: New seat seat0.
[   32.179775] switching from power state:
[   32.179783] 	ui class: performance
[   32.179785] 	internal class: none
[   32.179788] 	caps:
[   32.179789] 	uvd    vclk: 0 dclk: 0
[   32.179791] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   32.179793] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[   32.179795] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[   32.179796] 	status: c
[   32.179798] switching to power state:
[   32.179799] 	ui class: battery
[   32.179800] 	internal class: none
[   32.179802] 	caps:
[   32.179804] 	uvd    vclk: 0 dclk: 0
[   32.179805] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   32.179807] 		power level 1    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   32.179808] 		power level 2    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   32.179809] 	status: r
[   37.089379] elogind-daemon[3134]: New session c1 of user brad.
[   71.827896] thunderbolt 0000:07:00.0: acking hot unplug event on 0:3
[   71.827910] thunderbolt 0000:07:00.0: acking hot unplug event on 0:4
[   71.877166] pcieport 0000:19:04.0: pciehp: pciehp_isr: no response from device
[   71.877202] pcieport 0000:20:04.0: pciehp: pciehp_isr: no response from device
[   71.877203] thunderbolt 0000:07:00.0: 0:3: switch unplugged
[   71.877229] thunderbolt 0000:07:00.0: 0:7 <-> 3:a (PCI): deactivating
[   71.927226] ohci-pci 0000:1c:00.1: HC died; cleaning up
[   71.927248] thunderbolt 0000:07:00.0: deactivating PCIe Down path from 3:10 to 0:7
[   71.977285] ohci-pci 0000:23:00.1: HC died; cleaning up
[   71.977316] pcieport 0000:19:04.0: pciehp: pciehp_isr: no response from device
[   71.977346] pcieport 0000:20:04.0: pciehp: pciehp_isr: no response from device
[   71.977366] pcieport 0000:06:04.0: pciehp: Slot(4-1): Link Down
[   71.977394] pcieport 0000:06:04.0: pciehp: Slot(4-1): Card not present
[   71.977420] pcieport 0000:19:05.0: can't change power state from D3cold to D0 (config space inaccessible)
[   71.977531] thunderbolt 0000:07:00.0: deactivating PCIe Up path from 0:7 to 3:10
[   71.977585] pcieport 0000:20:05.0: can't change power state from D3cold to D0 (config space inaccessible)
[   71.977672] pcieport 0000:20:04.0: can't change power state from D3cold to D0 (config space inaccessible)
[   71.977839] thunderbolt 0000:07:00.0: 0:c <-> 3:b (DP): deactivating
[   72.177643] firewire_ohci 0000:25:00.0: removed fw-ohci device
[   72.177747] thunderbolt 0000:07:00.0: deactivating Video path from 0:12 to 3:11
[   72.178130] thunderbolt 0000:07:00.0: 0:c: adding -5 NFC credits to 5
[   72.178263] thunderbolt 0000:07:00.0: deactivating AUX TX path from 0:12 to 3:11
[   72.178644] thunderbolt 0000:07:00.0: deactivating AUX RX path from 3:11 to 0:12
[   72.179029] thunderbolt 0000:07:00.0: 0: released DP resource for port 12
[   72.179036] thunderbolt 0000:07:00.0: 3:7 <-> 303:a (PCI): deactivating
[   72.179038] thunderbolt 0000:07:00.0: deactivating PCIe Down path from 303:10 to 3:7
[   72.179040] thunderbolt 0000:07:00.0: deactivating PCIe Up path from 3:7 to 303:10
[   72.179043] thunderbolt 0000:07:00.0: 0:d <-> 303:b (DP): deactivating
[   72.179796] thunderbolt 0000:07:00.0: deactivating Video path from 0:13 to 303:11
[   72.180204] thunderbolt 0000:07:00.0: 0:d: adding -5 NFC credits to 5
[   72.180332] thunderbolt 0000:07:00.0: deactivating AUX TX path from 0:13 to 303:11
[   72.180737] thunderbolt 0000:07:00.0: deactivating AUX RX path from 303:11 to 0:13
[   72.181071] thunderbolt 0000:07:00.0: 0: released DP resource for port 13
[   72.181077] thunderbolt 0000:07:00.0: 303:b: DP OUT resource unavailable
[   72.181128] thunderbolt 0-303: device disconnected
[   72.181198] thunderbolt 0-3: device disconnected
[   72.181242] thunderbolt 0000:07:00.0: looking for DP IN <-> DP OUT pairs:
[   72.181366] thunderbolt 0000:07:00.0: 0:c: DP IN available
[   72.181487] thunderbolt 0000:07:00.0: 0:d: DP IN available
[   72.181489] thunderbolt 0000:07:00.0: no suitable DP IN adapter available, not tunneling
[   72.181492] thunderbolt 0000:07:00.0: 0:4: got unplug event for disconnected port, ignoring
[   72.347877] ehci-pci 0000:23:00.2: HC died; cleaning up
[   72.398002] ehci-pci 0000:23:00.2: remove, state 1
[   72.398018] usb usb6: USB disconnect, device number 1
[   72.398042] usb 6-1: USB disconnect, device number 2
[   72.398058] usb 6-1.4: USB disconnect, device number 3
[   72.444728] usb 6-1.5: USB disconnect, device number 4
[   72.615112] usb 6-1.7: USB disconnect, device number 5
[   73.119192] ehci-pci 0000:23:00.2: USB bus 6 deregistered
[   73.119336] ohci-pci 0000:23:00.1: remove, state 4
[   73.119355] usb usb10: USB disconnect, device number 1
[   73.770172] ohci-pci 0000:23:00.1: USB bus 10 deregistered
[   73.820227] ohci-pci 0000:23:00.0: HC died; cleaning up
[   73.820248] sched: RT throttling activated
[   73.827942] ohci-pci 0000:23:00.0: remove, state 4
[   73.827978] usb usb9: USB disconnect, device number 1
[   74.470958] ohci-pci 0000:23:00.0: USB bus 9 deregistered
[   74.671315] firewire_ohci 0000:1e:00.0: removed fw-ohci device
[   74.711172] switching from power state:
[   74.711190] 	ui class: battery
[   74.711198] 	internal class: none
[   74.711207] 	caps:
[   74.711212] 	uvd    vclk: 0 dclk: 0
[   74.711220] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   74.711233] 		power level 1    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   74.711245] 		power level 2    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   74.711258] 	status: c r
[   74.711265] switching to power state:
[   74.711273] 	ui class: battery
[   74.711279] 	internal class: none
[   74.711286] 	caps:
[   74.711292] 	uvd    vclk: 0 dclk: 0
[   74.711299] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   74.711312] 		power level 1    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   74.711325] 		power level 2    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   74.711337] 	status: c r
[   74.811349] ehci-pci 0000:1c:00.2: HC died; cleaning up
[   74.861448] ehci-pci 0000:1c:00.2: remove, state 1
[   74.861466] usb usb5: USB disconnect, device number 1
[   74.861489] usb 5-1: USB disconnect, device number 2
[   74.861505] usb 5-1.4: USB disconnect, device number 3
[   74.924899] usb 5-1.5: USB disconnect, device number 4
[   75.045511] usb 5-1.7: USB disconnect, device number 5
[   75.542473] ehci-pci 0000:1c:00.2: USB bus 5 deregistered
[   75.542544] ohci-pci 0000:1c:00.1: remove, state 4
[   75.542557] usb usb8: USB disconnect, device number 1
[   76.193420] ohci-pci 0000:1c:00.1: USB bus 8 deregistered
[   76.243480] ohci-pci 0000:1c:00.0: HC died; cleaning up
[   76.243507] ohci-pci 0000:1c:00.0: remove, state 4
[   76.243528] usb usb7: USB disconnect, device number 1
[   76.894465] ohci-pci 0000:1c:00.0: USB bus 7 deregistered
[   76.895333] pci_bus 0000:1c: busn_res: [bus 1c] is released
[   76.896509] pci_bus 0000:1b: busn_res: [bus 1b-1c] is released
[   76.897353] pci_bus 0000:1a: busn_res: [bus 1a-1c] is released
[   76.898267] pci_bus 0000:1d: busn_res: [bus 1d] is released
[   76.899085] pci_bus 0000:1e: busn_res: [bus 1e] is released
[   76.900204] pci_bus 0000:23: busn_res: [bus 23] is released
[   76.901094] pci_bus 0000:22: busn_res: [bus 22-23] is released
[   76.901859] pci_bus 0000:21: busn_res: [bus 21-23] is released
[   76.902666] pci_bus 0000:24: busn_res: [bus 24] is released
[   76.903411] pci_bus 0000:25: busn_res: [bus 25] is released
[   76.904161] pci_bus 0000:26: busn_res: [bus 26-35] is released
[   76.904905] pci_bus 0000:36: busn_res: [bus 36-45] is released
[   76.905596] pci_bus 0000:20: busn_res: [bus 20-45] is released
[   76.906305] pci_bus 0000:1f: busn_res: [bus 1f-45] is released
[   76.906996] pci_bus 0000:46: busn_res: [bus 46-55] is released
[   76.907700] pci_bus 0000:19: busn_res: [bus 19-55] is released
[   80.244057] thunderbolt 0000:07:00.0: acking hot plug event on 0:4
[   80.244179] thunderbolt 0000:07:00.0: 0:4: hotplug: scanning
[   80.244182] thunderbolt 0000:07:00.0: 0:4: hotplug: no switch found
[   80.260116] thunderbolt 0000:07:00.0: acking hot plug event on 0:3
[   80.260252] thunderbolt 0000:07:00.0: 0:3: hotplug: scanning
[   80.260359] thunderbolt 0000:07:00.0: 0:3: is connected, link is up (state: 2)
[   80.260601] thunderbolt 0000:07:00.0: current switch config:
[   80.260604] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[   80.260606] thunderbolt 0000:07:00.0:   Max Port Number: 13
[   80.260607] thunderbolt 0000:07:00.0:   Config:
[   80.260608] thunderbolt 0000:07:00.0:    Upstream Port Number: 0 Depth: 0 Route String: 0x0 Enabled: 0, PlugEventsDelay: 10ms
[   80.260609] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[   80.265222] thunderbolt 0000:07:00.0: initializing Switch at 0x3 (depth: 1, up port: 1)
[   80.282730] thunderbolt 0000:07:00.0: 3: reading drom (length: 0x97)
[   80.409114] thunderbolt 0000:07:00.0: acking hot plug event on 3:4
[   80.415315] thunderbolt 0000:07:00.0: acking hot plug event on 3:3
[   80.777587] thunderbolt 0000:07:00.0: 3: DROM version: 1
[   80.778611] thunderbolt 0000:07:00.0: 3: uid: 0x1000100189170
[   80.781554] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   80.781560] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   80.781563] thunderbolt 0000:07:00.0:   Max counters: 32
[   80.781565] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   80.781567] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   80.784499] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   80.784503] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   80.784505] thunderbolt 0000:07:00.0:   Max counters: 32
[   80.784507] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   80.784509] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   80.787442] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   80.787446] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   80.787448] thunderbolt 0000:07:00.0:   Max counters: 32
[   80.787450] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   80.787452] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   80.790385] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   80.790389] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   80.790391] thunderbolt 0000:07:00.0:   Max counters: 32
[   80.790393] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   80.790395] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   80.790397] thunderbolt 0000:07:00.0: 3:5: disabled by eeprom
[   80.790400] thunderbolt 0000:07:00.0: 3:6: disabled by eeprom
[   80.791282] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[   80.791286] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[   80.791288] thunderbolt 0000:07:00.0:   Max counters: 1
[   80.791290] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   80.791292] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   80.792178] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[   80.792181] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[   80.792184] thunderbolt 0000:07:00.0:   Max counters: 1
[   80.792185] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   80.792187] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   80.792189] thunderbolt 0000:07:00.0: 3:9: disabled by eeprom
[   80.793074] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[   80.793078] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[   80.793080] thunderbolt 0000:07:00.0:   Max counters: 1
[   80.793082] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   80.793083] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   80.794226] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[   80.794230] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[   80.794232] thunderbolt 0000:07:00.0:   Max counters: 2
[   80.794234] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   80.794236] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   80.794238] thunderbolt 0000:07:00.0: 3:c: disabled by eeprom
[   80.794240] thunderbolt 0000:07:00.0: 3:d: disabled by eeprom
[   80.813045] thunderbolt 0000:07:00.0: 3: TMU: current mode: bi-directional, HiFi
[   80.813094] thunderbolt 0-3: new device found, vendor=0x1 device=0x8002
[   80.813781] thunderbolt 0-3: Apple, Inc. Thunderbolt Display
[   80.814489] thunderbolt 0000:07:00.0: 3:3: is connected, link is up (state: 2)
[   80.814802] thunderbolt 0000:07:00.0: current switch config:
[   80.814804] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[   80.814806] thunderbolt 0000:07:00.0:   Max Port Number: 13
[   80.814807] thunderbolt 0000:07:00.0:   Config:
[   80.814808] thunderbolt 0000:07:00.0:    Upstream Port Number: 0 Depth: 0 Route String: 0x0 Enabled: 0, PlugEventsDelay: 10ms
[   80.814809] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[   80.819353] thunderbolt 0000:07:00.0: initializing Switch at 0x303 (depth: 2, up port: 3)
[   80.836760] thunderbolt 0000:07:00.0: 303: reading drom (length: 0x97)
[   81.048725] thunderbolt 0000:07:00.0: acking hot plug event on 3:b
[   81.048730] thunderbolt 0000:07:00.0: acking hot plug event on 3:b
[   81.150390] thunderbolt 0000:07:00.0: acking hot plug event on 303:b
[   81.150395] thunderbolt 0000:07:00.0: acking hot plug event on 303:b
[   81.330485] thunderbolt 0000:07:00.0: 303: DROM version: 1
[   81.331476] thunderbolt 0000:07:00.0: 303: uid: 0x100010102a740
[   81.334420] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   81.334422] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   81.334423] thunderbolt 0000:07:00.0:   Max counters: 32
[   81.334424] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   81.334430] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   81.337396] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   81.337399] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   81.337400] thunderbolt 0000:07:00.0:   Max counters: 32
[   81.337401] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   81.337402] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   81.340307] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   81.340309] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   81.340310] thunderbolt 0000:07:00.0:   Max counters: 32
[   81.340311] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   81.340312] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   81.343251] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   81.343253] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   81.343254] thunderbolt 0000:07:00.0:   Max counters: 32
[   81.343255] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   81.343256] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   81.343257] thunderbolt 0000:07:00.0: 303:5: disabled by eeprom
[   81.343258] thunderbolt 0000:07:00.0: 303:6: disabled by eeprom
[   81.344147] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[   81.344149] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[   81.344150] thunderbolt 0000:07:00.0:   Max counters: 1
[   81.344151] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   81.344152] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   81.345077] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[   81.345081] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[   81.345083] thunderbolt 0000:07:00.0:   Max counters: 1
[   81.345084] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   81.345085] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   81.345086] thunderbolt 0000:07:00.0: 303:9: disabled by eeprom
[   81.345940] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[   81.345944] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[   81.345946] thunderbolt 0000:07:00.0:   Max counters: 1
[   81.345947] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   81.345948] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   81.347124] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[   81.347127] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[   81.347128] thunderbolt 0000:07:00.0:   Max counters: 2
[   81.347129] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   81.347130] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   81.347131] thunderbolt 0000:07:00.0: 303:c: disabled by eeprom
[   81.347132] thunderbolt 0000:07:00.0: 303:d: disabled by eeprom
[   81.365194] thunderbolt 0000:07:00.0: 303: TMU: current mode: bi-directional, HiFi
[   81.365216] thunderbolt 0-303: new device found, vendor=0x1 device=0x8002
[   81.365865] thunderbolt 0-303: Apple, Inc. Thunderbolt Display
[   81.366584] thunderbolt 0000:07:00.0: 303:1: is unplugged (state: 7)
[   81.366834] thunderbolt 0000:07:00.0: 303:b: DP adapter HPD set, queuing hotplug
[   81.367133] thunderbolt 0000:07:00.0: 3:b: DP adapter HPD set, queuing hotplug
[   81.367288] thunderbolt 0000:07:00.0: 0:7 <-> 3:a (PCI): activating
[   81.367296] thunderbolt 0000:07:00.0: activating PCIe Down path from 0:7 to 3:10
[   81.367395] thunderbolt 0000:07:00.0: 3:1: Writing hop 1
[   81.367403] thunderbolt 0000:07:00.0: 3:1:  In HopID: 8 => Out port: 10 Out HopID: 8
[   81.367406] thunderbolt 0000:07:00.0: 3:1:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   81.367410] thunderbolt 0000:07:00.0: 3:1:    Counter enabled: 0 Counter index: 2047
[   81.367413] thunderbolt 0000:07:00.0: 3:1:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   81.367416] thunderbolt 0000:07:00.0: 3:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   81.367761] thunderbolt 0000:07:00.0: 0:7: Writing hop 0
[   81.367764] thunderbolt 0000:07:00.0: 0:7:  In HopID: 8 => Out port: 3 Out HopID: 8
[   81.367766] thunderbolt 0000:07:00.0: 0:7:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   81.367767] thunderbolt 0000:07:00.0: 0:7:    Counter enabled: 0 Counter index: 2047
[   81.367769] thunderbolt 0000:07:00.0: 0:7:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   81.367770] thunderbolt 0000:07:00.0: 0:7:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   81.367808] thunderbolt 0000:07:00.0: path activation complete
[   81.367810] thunderbolt 0000:07:00.0: activating PCIe Up path from 3:10 to 0:7
[   81.367955] thunderbolt 0000:07:00.0: 0:3: Writing hop 1
[   81.367962] thunderbolt 0000:07:00.0: 0:3:  In HopID: 8 => Out port: 7 Out HopID: 8
[   81.367966] thunderbolt 0000:07:00.0: 0:3:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   81.367969] thunderbolt 0000:07:00.0: 0:3:    Counter enabled: 0 Counter index: 2047
[   81.367972] thunderbolt 0000:07:00.0: 0:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   81.367975] thunderbolt 0000:07:00.0: 0:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   81.368212] thunderbolt 0000:07:00.0: 3:a: Writing hop 0
[   81.368218] thunderbolt 0000:07:00.0: 3:a:  In HopID: 8 => Out port: 1 Out HopID: 8
[   81.368222] thunderbolt 0000:07:00.0: 3:a:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   81.368225] thunderbolt 0000:07:00.0: 3:a:    Counter enabled: 0 Counter index: 2047
[   81.368228] thunderbolt 0000:07:00.0: 3:a:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   81.368231] thunderbolt 0000:07:00.0: 3:a:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   81.368299] thunderbolt 0000:07:00.0: path activation complete
[   81.368331] pcieport 0000:06:04.0: pciehp: Slot(4-1): Card present
[   81.368590] thunderbolt 0000:07:00.0: 3:4: got plug event for connected port, ignoring
[   81.369035] thunderbolt 0000:07:00.0: 3:3: got plug event for connected port, ignoring
[   81.369074] thunderbolt 0000:07:00.0: 3:b: DP OUT resource available
[   81.369077] thunderbolt 0000:07:00.0: looking for DP IN <-> DP OUT pairs:
[   81.369207] thunderbolt 0000:07:00.0: 0:c: DP IN available
[   81.369335] thunderbolt 0000:07:00.0: 3:b: DP OUT available
[   81.369338] thunderbolt 0000:07:00.0: 0: allocated DP resource for port 12
[   81.369340] thunderbolt 0000:07:00.0: 3:b: calculating available bandwidth
[   81.369461] thunderbolt 0000:07:00.0: 0:3: link total bandwidth 9000 Mb/s
[   81.369465] thunderbolt 0000:07:00.0: 3:1: link total bandwidth 9000 Mb/s
[   81.369466] thunderbolt 0000:07:00.0: available bandwidth for new DP tunnel 9000/9000 Mb/s
[   81.369468] thunderbolt 0000:07:00.0: in->port 12
[   81.369471] thunderbolt 0000:07:00.0: Tunnel 1
[   81.369472] thunderbolt 0000:07:00.0: 0:c <-> 3:b (DP): activating
[   81.369474] thunderbolt 0000:07:00.0: activating Video path from 0:12 to 3:11
[   81.369476] thunderbolt 0000:07:00.0: 3:2: adding 12 NFC credits to 0
[   81.369590] thunderbolt 0000:07:00.0: 0:c: adding 5 NFC credits to 0
[   81.369816] thunderbolt 0000:07:00.0: 3:2: Writing hop 1
[   81.369818] thunderbolt 0000:07:00.0: 3:2:  In HopID: 8 => Out port: 11 Out HopID: 9
[   81.369819] thunderbolt 0000:07:00.0: 3:2:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[   81.369821] thunderbolt 0000:07:00.0: 3:2:    Counter enabled: 0 Counter index: 2047
[   81.369822] thunderbolt 0000:07:00.0: 3:2:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[   81.369823] thunderbolt 0000:07:00.0: 3:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   81.370072] thunderbolt 0000:07:00.0: 0:c: Writing hop 0
[   81.370073] thunderbolt 0000:07:00.0: 0:c:  In HopID: 9 => Out port: 4 Out HopID: 8
[   81.370074] thunderbolt 0000:07:00.0: 0:c:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[   81.370075] thunderbolt 0000:07:00.0: 0:c:    Counter enabled: 0 Counter index: 2047
[   81.370077] thunderbolt 0000:07:00.0: 0:c:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[   81.370078] thunderbolt 0000:07:00.0: 0:c:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   81.370200] thunderbolt 0000:07:00.0: path activation complete
[   81.370201] thunderbolt 0000:07:00.0: activating AUX TX path from 0:12 to 3:11
[   81.370348] thunderbolt 0000:07:00.0: 3:2: Writing hop 1
[   81.370349] thunderbolt 0000:07:00.0: 3:2:  In HopID: 9 => Out port: 11 Out HopID: 8
[   81.370351] thunderbolt 0000:07:00.0: 3:2:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   81.370352] thunderbolt 0000:07:00.0: 3:2:    Counter enabled: 0 Counter index: 2047
[   81.370353] thunderbolt 0000:07:00.0: 3:2:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   81.370354] thunderbolt 0000:07:00.0: 3:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   81.370584] thunderbolt 0000:07:00.0: 0:c: Writing hop 0
[   81.370585] thunderbolt 0000:07:00.0: 0:c:  In HopID: 8 => Out port: 4 Out HopID: 9
[   81.370587] thunderbolt 0000:07:00.0: 0:c:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   81.370588] thunderbolt 0000:07:00.0: 0:c:    Counter enabled: 0 Counter index: 2047
[   81.370589] thunderbolt 0000:07:00.0: 0:c:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   81.370590] thunderbolt 0000:07:00.0: 0:c:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   81.370712] thunderbolt 0000:07:00.0: path activation complete
[   81.370713] thunderbolt 0000:07:00.0: activating AUX RX path from 3:11 to 0:12
[   81.370840] thunderbolt 0000:07:00.0: 0:4: Writing hop 1
[   81.370841] thunderbolt 0000:07:00.0: 0:4:  In HopID: 8 => Out port: 12 Out HopID: 8
[   81.370842] thunderbolt 0000:07:00.0: 0:4:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   81.370843] thunderbolt 0000:07:00.0: 0:4:    Counter enabled: 0 Counter index: 2047
[   81.370844] thunderbolt 0000:07:00.0: 0:4:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   81.370846] thunderbolt 0000:07:00.0: 0:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   81.371096] thunderbolt 0000:07:00.0: 3:b: Writing hop 0
[   81.371097] thunderbolt 0000:07:00.0: 3:b:  In HopID: 8 => Out port: 2 Out HopID: 8
[   81.371098] thunderbolt 0000:07:00.0: 3:b:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   81.371099] thunderbolt 0000:07:00.0: 3:b:    Counter enabled: 0 Counter index: 2047
[   81.371100] thunderbolt 0000:07:00.0: 3:b:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   81.371102] thunderbolt 0000:07:00.0: 3:b:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   81.371224] thunderbolt 0000:07:00.0: path activation complete
[   81.375013] thunderbolt 0000:07:00.0: 3:7 <-> 303:a (PCI): activating
[   81.375020] thunderbolt 0000:07:00.0: activating PCIe Down path from 3:7 to 303:10
[   81.375143] thunderbolt 0000:07:00.0: 303:3: Writing hop 1
[   81.375145] thunderbolt 0000:07:00.0: 303:3:  In HopID: 8 => Out port: 10 Out HopID: 8
[   81.375146] thunderbolt 0000:07:00.0: 303:3:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   81.375148] thunderbolt 0000:07:00.0: 303:3:    Counter enabled: 0 Counter index: 2047
[   81.375157] thunderbolt 0000:07:00.0: 303:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   81.375158] thunderbolt 0000:07:00.0: 303:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   81.375390] thunderbolt 0000:07:00.0: 3:7: Writing hop 0
[   81.375393] thunderbolt 0000:07:00.0: 3:7:  In HopID: 8 => Out port: 3 Out HopID: 8
[   81.375396] thunderbolt 0000:07:00.0: 3:7:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   81.375399] thunderbolt 0000:07:00.0: 3:7:    Counter enabled: 0 Counter index: 2047
[   81.375402] thunderbolt 0000:07:00.0: 3:7:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   81.375405] thunderbolt 0000:07:00.0: 3:7:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   81.375518] thunderbolt 0000:07:00.0: path activation complete
[   81.375520] thunderbolt 0000:07:00.0: activating PCIe Up path from 303:10 to 3:7
[   81.375646] thunderbolt 0000:07:00.0: 3:3: Writing hop 1
[   81.375649] thunderbolt 0000:07:00.0: 3:3:  In HopID: 8 => Out port: 7 Out HopID: 8
[   81.375651] thunderbolt 0000:07:00.0: 3:3:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   81.375654] thunderbolt 0000:07:00.0: 3:3:    Counter enabled: 0 Counter index: 2047
[   81.375657] thunderbolt 0000:07:00.0: 3:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   81.375660] thunderbolt 0000:07:00.0: 3:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   81.375902] thunderbolt 0000:07:00.0: 303:a: Writing hop 0
[   81.375905] thunderbolt 0000:07:00.0: 303:a:  In HopID: 8 => Out port: 3 Out HopID: 8
[   81.375908] thunderbolt 0000:07:00.0: 303:a:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   81.375911] thunderbolt 0000:07:00.0: 303:a:    Counter enabled: 0 Counter index: 2047
[   81.375913] thunderbolt 0000:07:00.0: 303:a:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   81.375916] thunderbolt 0000:07:00.0: 303:a:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   81.376030] thunderbolt 0000:07:00.0: path activation complete
[   81.376542] thunderbolt 0000:07:00.0: 303:b: DP OUT resource available
[   81.376546] thunderbolt 0000:07:00.0: looking for DP IN <-> DP OUT pairs:
[   81.376669] thunderbolt 0000:07:00.0: 0:c: in use
[   81.376797] thunderbolt 0000:07:00.0: 0:d: DP IN available
[   81.376925] thunderbolt 0000:07:00.0: 3:b: in use
[   81.377058] thunderbolt 0000:07:00.0: 303:b: DP OUT available
[   81.377061] thunderbolt 0000:07:00.0: 0: allocated DP resource for port 13
[   81.377065] thunderbolt 0000:07:00.0: 303:b: calculating available bandwidth
[   81.377184] thunderbolt 0000:07:00.0: 0:3: link total bandwidth 9000 Mb/s
[   81.377188] thunderbolt 0000:07:00.0: 3:1: link total bandwidth 9000 Mb/s
[   81.377311] thunderbolt 0000:07:00.0: 3:3: link total bandwidth 9000 Mb/s
[   81.377314] thunderbolt 0000:07:00.0: 303:3: link total bandwidth 9000 Mb/s
[   81.377316] thunderbolt 0000:07:00.0: available bandwidth for new DP tunnel 9000/9000 Mb/s
[   81.377320] thunderbolt 0000:07:00.0: in->port 13
[   81.377328] thunderbolt 0000:07:00.0: Tunnel 0
[   81.377330] thunderbolt 0000:07:00.0: 0:d <-> 303:b (DP): activating
[   81.377333] thunderbolt 0000:07:00.0: activating Video path from 0:13 to 303:11
[   81.377337] thunderbolt 0000:07:00.0: 303:3: adding 12 NFC credits to 0
[   81.377439] thunderbolt 0000:07:00.0: 3:1: adding 12 NFC credits to 0
[   81.377566] thunderbolt 0000:07:00.0: 0:d: adding 5 NFC credits to 0
[   81.377823] thunderbolt 0000:07:00.0: 303:3: Writing hop 2
[   81.377826] thunderbolt 0000:07:00.0: 303:3:  In HopID: 9 => Out port: 11 Out HopID: 9
[   81.377829] thunderbolt 0000:07:00.0: 303:3:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[   81.377832] thunderbolt 0000:07:00.0: 303:3:    Counter enabled: 0 Counter index: 2047
[   81.377835] thunderbolt 0000:07:00.0: 303:3:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[   81.377838] thunderbolt 0000:07:00.0: 303:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   81.378079] thunderbolt 0000:07:00.0: 3:1: Writing hop 1
[   81.378081] thunderbolt 0000:07:00.0: 3:1:  In HopID: 9 => Out port: 3 Out HopID: 9
[   81.378084] thunderbolt 0000:07:00.0: 3:1:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[   81.378087] thunderbolt 0000:07:00.0: 3:1:    Counter enabled: 0 Counter index: 2047
[   81.378090] thunderbolt 0000:07:00.0: 3:1:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[   81.378093] thunderbolt 0000:07:00.0: 3:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   81.378334] thunderbolt 0000:07:00.0: 0:d: Writing hop 0
[   81.378337] thunderbolt 0000:07:00.0: 0:d:  In HopID: 9 => Out port: 3 Out HopID: 9
[   81.378340] thunderbolt 0000:07:00.0: 0:d:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[   81.378343] thunderbolt 0000:07:00.0: 0:d:    Counter enabled: 0 Counter index: 2047
[   81.378345] thunderbolt 0000:07:00.0: 0:d:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[   81.378348] thunderbolt 0000:07:00.0: 0:d:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   81.378462] thunderbolt 0000:07:00.0: path activation complete
[   81.378465] thunderbolt 0000:07:00.0: activating AUX TX path from 0:13 to 303:11
[   81.378590] thunderbolt 0000:07:00.0: 303:3: Writing hop 2
[   81.378593] thunderbolt 0000:07:00.0: 303:3:  In HopID: 10 => Out port: 11 Out HopID: 8
[   81.378596] thunderbolt 0000:07:00.0: 303:3:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   81.378599] thunderbolt 0000:07:00.0: 303:3:    Counter enabled: 0 Counter index: 2047
[   81.378602] thunderbolt 0000:07:00.0: 303:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   81.378605] thunderbolt 0000:07:00.0: 303:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   81.381696] thunderbolt 0000:07:00.0: 3:1: Writing hop 1
[   81.381699] thunderbolt 0000:07:00.0: 3:1:  In HopID: 10 => Out port: 3 Out HopID: 10
[   81.381702] thunderbolt 0000:07:00.0: 3:1:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   81.381705] thunderbolt 0000:07:00.0: 3:1:    Counter enabled: 0 Counter index: 2047
[   81.381707] thunderbolt 0000:07:00.0: 3:1:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   81.381710] thunderbolt 0000:07:00.0: 3:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   81.381952] thunderbolt 0000:07:00.0: 0:d: Writing hop 0
[   81.381955] thunderbolt 0000:07:00.0: 0:d:  In HopID: 8 => Out port: 3 Out HopID: 10
[   81.381957] thunderbolt 0000:07:00.0: 0:d:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   81.381960] thunderbolt 0000:07:00.0: 0:d:    Counter enabled: 0 Counter index: 2047
[   81.381963] thunderbolt 0000:07:00.0: 0:d:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   81.381965] thunderbolt 0000:07:00.0: 0:d:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   81.382080] thunderbolt 0000:07:00.0: path activation complete
[   81.382082] thunderbolt 0000:07:00.0: activating AUX RX path from 303:11 to 0:13
[   81.382208] thunderbolt 0000:07:00.0: 0:3: Writing hop 2
[   81.382211] thunderbolt 0000:07:00.0: 0:3:  In HopID: 9 => Out port: 13 Out HopID: 8
[   81.382213] thunderbolt 0000:07:00.0: 0:3:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   81.382216] thunderbolt 0000:07:00.0: 0:3:    Counter enabled: 0 Counter index: 2047
[   81.382219] thunderbolt 0000:07:00.0: 0:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   81.382222] thunderbolt 0000:07:00.0: 0:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   81.382464] thunderbolt 0000:07:00.0: 3:3: Writing hop 1
[   81.382466] thunderbolt 0000:07:00.0: 3:3:  In HopID: 9 => Out port: 1 Out HopID: 9
[   81.382469] thunderbolt 0000:07:00.0: 3:3:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   81.382472] thunderbolt 0000:07:00.0: 3:3:    Counter enabled: 0 Counter index: 2047
[   81.382475] thunderbolt 0000:07:00.0: 3:3:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   81.382477] thunderbolt 0000:07:00.0: 3:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   81.382720] thunderbolt 0000:07:00.0: 303:b: Writing hop 0
[   81.382723] thunderbolt 0000:07:00.0: 303:b:  In HopID: 8 => Out port: 3 Out HopID: 9
[   81.382725] thunderbolt 0000:07:00.0: 303:b:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   81.382728] thunderbolt 0000:07:00.0: 303:b:    Counter enabled: 0 Counter index: 2047
[   81.382731] thunderbolt 0000:07:00.0: 303:b:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   81.382734] thunderbolt 0000:07:00.0: 303:b:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   81.382848] thunderbolt 0000:07:00.0: path activation complete
[   81.554557] pci 0000:18:00.0: [8086:1513] type 01 class 0x060400
[   81.555309] pci 0000:18:00.0: enabling Extended Tags
[   81.556131] pci 0000:18:00.0: supports D1 D2
[   81.556751] pci 0000:18:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   81.557571] pcieport 0000:06:04.0: ASPM: current common clock configuration is inconsistent, reconfiguring
[   81.584502] pci 0000:18:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   81.585350] pci 0000:19:00.0: [8086:1513] type 01 class 0x060400
[   81.586128] pci 0000:19:00.0: enabling Extended Tags
[   81.586939] pci 0000:19:00.0: supports D1 D2
[   81.587564] pci 0000:19:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   81.588374] pci 0000:19:01.0: [8086:1513] type 01 class 0x060400
[   81.589142] pci 0000:19:01.0: enabling Extended Tags
[   81.589960] pci 0000:19:01.0: supports D1 D2
[   81.590585] pci 0000:19:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[   81.591389] pci 0000:19:02.0: [8086:1513] type 01 class 0x060400
[   81.592162] pci 0000:19:02.0: enabling Extended Tags
[   81.592969] pci 0000:19:02.0: supports D1 D2
[   81.593595] pci 0000:19:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[   81.594404] pci 0000:19:04.0: [8086:1513] type 01 class 0x060400
[   81.595214] pci 0000:19:04.0: enabling Extended Tags
[   81.596035] pci 0000:19:04.0: supports D1 D2
[   81.596673] pci 0000:19:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[   81.597477] pci 0000:19:05.0: [8086:1513] type 01 class 0x060400
[   81.598227] pci 0000:19:05.0: enabling Extended Tags
[   81.599054] pci 0000:19:05.0: supports D1 D2
[   81.599704] pci 0000:19:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[   81.600548] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[   81.601231] pci 0000:18:00.0:   bridge window [io  0x0000-0x0fff]
[   81.601904] pci 0000:18:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   81.602559] pci 0000:18:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   81.603204] pci 0000:19:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   81.603861] pci 0000:19:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   81.604539] pci 0000:19:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   81.605202] pci 0000:19:04.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   81.605851] pci 0000:19:05.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   81.606641] pci 0000:1a:00.0: [12d8:400c] type 01 class 0x060400
[   81.607655] pci 0000:1a:00.0: supports D1 D2
[   81.608274] pci 0000:1a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   81.634558] pci 0000:19:00.0: PCI bridge to [bus 1a-55]
[   81.635210] pci 0000:19:00.0:   bridge window [io  0x0000-0x0fff]
[   81.635863] pci 0000:19:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   81.636516] pci 0000:19:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   81.637167] pci 0000:1a:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   81.638069] pci 0000:1b:03.0: [12d8:400c] type 01 class 0x060400
[   81.639024] pci 0000:1b:03.0: supports D1 D2
[   81.639657] pci 0000:1b:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[   81.640539] pci 0000:1a:00.0: PCI bridge to [bus 1b-55]
[   81.641206] pci 0000:1a:00.0:   bridge window [io  0x0000-0x0fff]
[   81.641858] pci 0000:1a:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   81.642530] pci 0000:1a:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   81.643173] pci 0000:1b:03.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   81.644061] pci 0000:1c:00.0: [12d8:400e] type 00 class 0x0c0310
[   81.644778] pci 0000:1c:00.0: reg 0x10: [mem 0x00000000-0x00000fff]
[   81.645714] pci 0000:1c:00.0: supports D1 D2
[   81.646358] pci 0000:1c:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   81.647180] pci 0000:1c:00.1: [12d8:400e] type 00 class 0x0c0310
[   81.647903] pci 0000:1c:00.1: reg 0x10: [mem 0x00000000-0x00000fff]
[   81.648832] pci 0000:1c:00.1: supports D1 D2
[   81.649479] pci 0000:1c:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[   81.650294] pci 0000:1c:00.2: [12d8:400f] type 00 class 0x0c0320
[   81.651013] pci 0000:1c:00.2: reg 0x10: [mem 0x00000000-0x000000ff]
[   81.651951] pci 0000:1c:00.2: supports D1 D2
[   81.652607] pci 0000:1c:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[   81.653563] pci 0000:1b:03.0: PCI bridge to [bus 1c-55]
[   81.654252] pci 0000:1b:03.0:   bridge window [io  0x0000-0x0fff]
[   81.654956] pci 0000:1b:03.0:   bridge window [mem 0x00000000-0x000fffff]
[   81.655654] pci 0000:1b:03.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   81.656319] pci_bus 0000:1c: busn_res: [bus 1c-55] end is updated to 1c
[   81.657009] pci_bus 0000:1b: busn_res: [bus 1b-55] end is updated to 1c
[   81.657693] pci_bus 0000:1a: busn_res: [bus 1a-55] end is updated to 1c
[   81.658534] pci 0000:1d:00.0: [14e4:16b0] type 00 class 0x020000
[   81.659265] pci 0000:1d:00.0: reg 0x10: [mem 0x00000000-0x0000ffff 64bit pref]
[   81.659986] pci 0000:1d:00.0: reg 0x18: [mem 0x00000000-0x0000ffff 64bit pref]
[   81.661002] pci 0000:1d:00.0: PME# supported from D0 D3hot D3cold
[   81.684513] pci 0000:19:01.0: PCI bridge to [bus 1d-55]
[   81.685228] pci 0000:19:01.0:   bridge window [io  0x0000-0x0fff]
[   81.685926] pci 0000:19:01.0:   bridge window [mem 0x00000000-0x000fffff]
[   81.686629] pci 0000:19:01.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   81.687323] pci_bus 0000:1d: busn_res: [bus 1d-55] end is updated to 1d
[   81.688194] pci 0000:1e:00.0: [11c1:5901] type 00 class 0x0c0010
[   81.688954] pci 0000:1e:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[   81.690000] pci 0000:1e:00.0: supports D1 D2
[   81.690700] pci 0000:1e:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   81.714518] pci 0000:19:02.0: PCI bridge to [bus 1e-55]
[   81.715272] pci 0000:19:02.0:   bridge window [io  0x0000-0x0fff]
[   81.715994] pci 0000:19:02.0:   bridge window [mem 0x00000000-0x000fffff]
[   81.716707] pci 0000:19:02.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   81.717421] pci_bus 0000:1e: busn_res: [bus 1e-55] end is updated to 1e
[   81.718336] pci 0000:1f:00.0: [8086:1513] type 01 class 0x060400
[   81.719205] pci 0000:1f:00.0: enabling Extended Tags
[   81.720176] pci 0000:1f:00.0: supports D1 D2
[   81.720871] pci 0000:1f:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   81.721844] pci 0000:19:04.0: PCI bridge to [bus 1f-55]
[   81.722567] pci 0000:19:04.0:   bridge window [io  0x0000-0x0fff]
[   81.723281] pci 0000:19:04.0:   bridge window [mem 0x00000000-0x000fffff]
[   81.723993] pci 0000:19:04.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   81.724731] pci 0000:1f:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   81.725705] pci 0000:20:00.0: [8086:1513] type 01 class 0x060400
[   81.726559] pci 0000:20:00.0: enabling Extended Tags
[   81.727511] pci 0000:20:00.0: supports D1 D2
[   81.728201] pci 0000:20:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   81.729118] pci 0000:20:01.0: [8086:1513] type 01 class 0x060400
[   81.729989] pci 0000:20:01.0: enabling Extended Tags
[   81.730945] pci 0000:20:01.0: supports D1 D2
[   81.731624] pci 0000:20:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[   81.732566] pci 0000:20:02.0: [8086:1513] type 01 class 0x060400
[   81.733434] pci 0000:20:02.0: enabling Extended Tags
[   81.734384] pci 0000:20:02.0: supports D1 D2
[   81.735091] pci 0000:20:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[   81.736041] pci 0000:20:04.0: [8086:1513] type 01 class 0x060400
[   81.736894] pci 0000:20:04.0: enabling Extended Tags
[   81.737855] pci 0000:20:04.0: supports D1 D2
[   81.738536] pci 0000:20:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[   81.739486] pci 0000:20:05.0: [8086:1513] type 01 class 0x060400
[   81.740355] pci 0000:20:05.0: enabling Extended Tags
[   81.741317] pci 0000:20:05.0: supports D1 D2
[   81.741996] pci 0000:20:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[   81.742976] pci 0000:1f:00.0: PCI bridge to [bus 20-55]
[   81.743691] pci 0000:1f:00.0:   bridge window [io  0x0000-0x0fff]
[   81.744407] pci 0000:1f:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   81.745138] pci 0000:1f:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   81.745851] pci 0000:20:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   81.746570] pci 0000:20:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   81.747290] pci 0000:20:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   81.748010] pci 0000:20:04.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   81.748721] pci 0000:20:05.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   81.749676] pci 0000:21:00.0: [12d8:400c] type 01 class 0x060400
[   81.750874] pci 0000:21:00.0: supports D1 D2
[   81.751555] pci 0000:21:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   81.752518] pci 0000:20:00.0: PCI bridge to [bus 21-55]
[   81.753246] pci 0000:20:00.0:   bridge window [io  0x0000-0x0fff]
[   81.753953] pci 0000:20:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   81.754681] pci 0000:20:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   81.755386] pci 0000:21:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   81.756383] pci 0000:22:03.0: [12d8:400c] type 01 class 0x060400
[   81.757499] pci 0000:22:03.0: supports D1 D2
[   81.758181] pci 0000:22:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[   81.759147] pci 0000:21:00.0: PCI bridge to [bus 22-55]
[   81.759876] pci 0000:21:00.0:   bridge window [io  0x0000-0x0fff]
[   81.760578] pci 0000:21:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   81.761287] pci 0000:21:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   81.761977] pci 0000:22:03.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   81.762935] pci 0000:23:00.0: [12d8:400e] type 00 class 0x0c0310
[   81.763715] pci 0000:23:00.0: reg 0x10: [mem 0x00000000-0x00000fff]
[   81.764797] pci 0000:23:00.0: supports D1 D2
[   81.765507] pci 0000:23:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   81.766460] pci 0000:23:00.1: [12d8:400e] type 00 class 0x0c0310
[   81.767215] pci 0000:23:00.1: reg 0x10: [mem 0x00000000-0x00000fff]
[   81.768267] pci 0000:23:00.1: supports D1 D2
[   81.768957] pci 0000:23:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[   81.769844] pci 0000:23:00.2: [12d8:400f] type 00 class 0x0c0320
[   81.770600] pci 0000:23:00.2: reg 0x10: [mem 0x00000000-0x000000ff]
[   81.771672] pci 0000:23:00.2: supports D1 D2
[   81.772352] pci 0000:23:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[   81.773427] pci 0000:22:03.0: PCI bridge to [bus 23-55]
[   81.774147] pci 0000:22:03.0:   bridge window [io  0x0000-0x0fff]
[   81.774893] pci 0000:22:03.0:   bridge window [mem 0x00000000-0x000fffff]
[   81.775608] pci 0000:22:03.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   81.776314] pci_bus 0000:23: busn_res: [bus 23-55] end is updated to 23
[   81.777021] pci_bus 0000:22: busn_res: [bus 22-55] end is updated to 23
[   81.777736] pci_bus 0000:21: busn_res: [bus 21-55] end is updated to 23
[   81.778657] pci 0000:24:00.0: [14e4:16b0] type 00 class 0x020000
[   81.779434] pci 0000:24:00.0: reg 0x10: [mem 0x00000000-0x0000ffff 64bit pref]
[   81.780187] pci 0000:24:00.0: reg 0x18: [mem 0x00000000-0x0000ffff 64bit pref]
[   81.781323] pci 0000:24:00.0: PME# supported from D0 D3hot D3cold
[   81.782352] pci 0000:20:01.0: PCI bridge to [bus 24-55]
[   81.783068] pci 0000:20:01.0:   bridge window [io  0x0000-0x0fff]
[   81.783782] pci 0000:20:01.0:   bridge window [mem 0x00000000-0x000fffff]
[   81.784531] pci 0000:20:01.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   81.785223] pci_bus 0000:24: busn_res: [bus 24-55] end is updated to 24
[   81.786124] pci 0000:25:00.0: [11c1:5901] type 00 class 0x0c0010
[   81.786906] pci 0000:25:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[   81.788038] pci 0000:25:00.0: supports D1 D2
[   81.788721] pci 0000:25:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   81.789743] pci 0000:20:02.0: PCI bridge to [bus 25-55]
[   81.790462] pci 0000:20:02.0:   bridge window [io  0x0000-0x0fff]
[   81.791178] pci 0000:20:02.0:   bridge window [mem 0x00000000-0x000fffff]
[   81.791898] pci 0000:20:02.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   81.792597] pci_bus 0000:25: busn_res: [bus 25-55] end is updated to 25
[   81.793438] pci 0000:20:04.0: PCI bridge to [bus 26-55]
[   81.794169] pci 0000:20:04.0:   bridge window [io  0x0000-0x0fff]
[   81.794901] pci 0000:20:04.0:   bridge window [mem 0x00000000-0x000fffff]
[   81.795611] pci 0000:20:04.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   81.796295] pci_bus 0000:26: busn_res: [bus 26-55] end is updated to 35
[   81.797146] pci 0000:20:05.0: PCI bridge to [bus 36-55]
[   81.797872] pci 0000:20:05.0:   bridge window [io  0x0000-0x0fff]
[   81.798583] pci 0000:20:05.0:   bridge window [mem 0x00000000-0x000fffff]
[   81.799299] pci 0000:20:05.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   81.799999] pci_bus 0000:36: busn_res: [bus 36-55] end is updated to 45
[   81.800707] pci_bus 0000:20: busn_res: [bus 20-55] end is updated to 45
[   81.801412] pci_bus 0000:1f: busn_res: [bus 1f-55] end is updated to 45
[   81.802208] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[   81.802923] pci 0000:19:05.0:   bridge window [io  0x0000-0x0fff]
[   81.803622] pci 0000:19:05.0:   bridge window [mem 0x00000000-0x000fffff]
[   81.804325] pci 0000:19:05.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   81.805033] pci_bus 0000:46: busn_res: [bus 46-55] end is updated to 55
[   81.805730] pci_bus 0000:19: busn_res: [bus 19-55] end is updated to 55
[   81.806414] pci 0000:20:04.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 26-35] add_size 3ff00000 add_align 100000
[   81.807106] pci 0000:20:04.0: bridge window [mem 0x00100000-0x001fffff] to [bus 26-35] add_size 7f00000 add_align 100000
[   81.807799] pci 0000:20:05.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 36-45] add_size 3ff00000 add_align 100000
[   81.808496] pci 0000:20:05.0: bridge window [mem 0x00100000-0x001fffff] to [bus 36-45] add_size 7f00000 add_align 100000
[   81.809195] pci 0000:1f:00.0: bridge window [mem 0x00100000-0x005fffff 64bit pref] to [bus 20-45] add_size 7fe00000 add_align 100000
[   81.809900] pci 0000:1f:00.0: bridge window [mem 0x00100000-0x005fffff] to [bus 20-45] add_size fe00000 add_align 100000
[   81.810611] pci 0000:19:04.0: bridge window [mem 0x00100000-0x005fffff 64bit pref] to [bus 1f-45] add_size bf900000 add_align 100000
[   81.811329] pci 0000:19:04.0: bridge window [mem 0x00100000-0x005fffff] to [bus 1f-45] add_size 17900000 add_align 100000
[   81.812045] pci 0000:19:05.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 46-55] add_size 3ff00000 add_align 100000
[   81.812767] pci 0000:19:05.0: bridge window [mem 0x00100000-0x001fffff] to [bus 46-55] add_size 7f00000 add_align 100000
[   81.813489] pci 0000:18:00.0: bridge window [mem 0x00100000-0x009fffff 64bit pref] to [bus 19-55] add_size ff800000 add_align 100000
[   81.814220] pci 0000:18:00.0: bridge window [mem 0x00100000-0x009fffff] to [bus 19-55] add_size 1f800000 add_align 100000
[   81.814975] pcieport 0000:06:04.0: bridge window [mem 0x00100000-0x009fffff 64bit pref] to [bus 18-55] add_size 13ef00000 add_align 100000
[   81.815738] pcieport 0000:06:04.0: BAR 9: no space for [mem size 0x00900000 64bit pref]
[   81.816501] pcieport 0000:06:04.0: BAR 9: failed to assign [mem size 0x00900000 64bit pref]
[   81.817248] pcieport 0000:06:04.0: BAR 9: no space for [mem size 0x00900000 64bit pref]
[   81.818002] pcieport 0000:06:04.0: BAR 9: failed to assign [mem size 0x00900000 64bit pref]
[   81.818762] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[   81.819533] pci 0000:18:00.0: BAR 9: no space for [mem size 0x00900000 64bit pref]
[   81.820303] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0x00900000 64bit pref]
[   81.821076] pci 0000:18:00.0: BAR 7: assigned [io  0x5000-0x9fff]
[   81.821845] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[   81.822612] pci 0000:18:00.0: BAR 9: no space for [mem size 0x00900000 64bit pref]
[   81.823383] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0x00900000 64bit pref]
[   81.824160] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[   81.824965] pci 0000:19:00.0: BAR 9: assigned [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   81.825766] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0d00000-0xb0dfffff]
[   81.826539] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0e00000-0xb0efffff 64bit pref]
[   81.827304] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[   81.828068] pci 0000:19:02.0: BAR 9: assigned [mem 0xb1000000-0xb10fffff 64bit pref]
[   81.828829] pci 0000:19:04.0: BAR 8: assigned [mem 0xb1100000-0xbd27ffff]
[   81.829591] pci 0000:19:04.0: BAR 9: assigned [mem 0xbd300000-0xbd5fffff 64bit pref]
[   81.830370] pci 0000:19:05.0: BAR 8: no space for [mem size 0x0c100000]
[   81.831137] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x0c100000]
[   81.831901] pci 0000:19:05.0: BAR 9: assigned [mem 0xbd600000-0xbd8fffff 64bit pref]
[   81.832664] pci 0000:19:00.0: BAR 7: assigned [io  0x5000-0x5fff]
[   81.833433] pci 0000:19:01.0: BAR 7: assigned [io  0x6000-0x6fff]
[   81.834224] pci 0000:19:02.0: BAR 7: assigned [io  0x7000-0x7fff]
[   81.835004] pci 0000:19:04.0: BAR 7: assigned [io  0x8000-0x8fff]
[   81.835770] pci 0000:19:05.0: BAR 7: assigned [io  0x9000-0x9fff]
[   81.836517] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[   81.837281] pci 0000:19:00.0: BAR 9: assigned [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   81.838029] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0d00000-0xb0dfffff]
[   81.838790] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0e00000-0xb0efffff 64bit pref]
[   81.839536] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[   81.840296] pci 0000:19:02.0: BAR 9: assigned [mem 0xb1000000-0xb10fffff 64bit pref]
[   81.841039] pci 0000:19:04.0: BAR 8: assigned [mem 0xb1100000-0xbd27ffff]
[   81.841777] pci 0000:19:04.0: BAR 9: assigned [mem 0xbd300000-0xbd5fffff 64bit pref]
[   81.842518] pci 0000:19:05.0: BAR 8: no space for [mem size 0x0c100000]
[   81.843262] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x0c100000]
[   81.844040] pci 0000:19:05.0: BAR 9: assigned [mem 0xbd600000-0xbd8fffff 64bit pref]
[   81.844811] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[   81.845575] pci 0000:1a:00.0: BAR 9: assigned [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   81.846330] pci 0000:1a:00.0: BAR 7: assigned [io  0x5000-0x5fff]
[   81.847079] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[   81.847827] pci 0000:1b:03.0: BAR 9: assigned [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   81.848578] pci 0000:1b:03.0: BAR 7: assigned [io  0x5000-0x5fff]
[   81.849327] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[   81.850100] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[   81.850863] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[   81.851624] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[   81.852385] pci 0000:1b:03.0:   bridge window [io  0x5000-0x5fff]
[   81.853150] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[   81.853909] pci 0000:1b:03.0:   bridge window [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   81.854713] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[   81.855466] pci 0000:1a:00.0:   bridge window [io  0x5000-0x5fff]
[   81.856237] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[   81.856983] pci 0000:1a:00.0:   bridge window [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   81.857737] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[   81.858479] pci 0000:19:00.0:   bridge window [io  0x5000-0x5fff]
[   81.859232] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[   81.859992] pci 0000:19:00.0:   bridge window [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   81.860744] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e0ffff 64bit pref]
[   81.861515] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0e10000-0xb0e1ffff 64bit pref]
[   81.862284] pci 0000:19:01.0: PCI bridge to [bus 1d]
[   81.863028] pci 0000:19:01.0:   bridge window [io  0x6000-0x6fff]
[   81.863777] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff]
[   81.864547] pci 0000:19:01.0:   bridge window [mem 0xb0e00000-0xb0efffff 64bit pref]
[   81.865307] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff 64bit]
[   81.866095] pci 0000:19:02.0: PCI bridge to [bus 1e]
[   81.866849] pci 0000:19:02.0:   bridge window [io  0x7000-0x7fff]
[   81.867608] pci 0000:19:02.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[   81.868364] pci 0000:19:02.0:   bridge window [mem 0xb1000000-0xb10fffff 64bit pref]
[   81.869132] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb1100000-0xbd27ffff]
[   81.869884] pci 0000:1f:00.0: BAR 9: assigned [mem 0xbd300000-0xbd5fffff 64bit pref]
[   81.870641] pci 0000:1f:00.0: BAR 7: assigned [io  0x8000-0x8fff]
[   81.871396] pci 0000:20:00.0: BAR 8: assigned [mem 0xb1100000-0xb11fffff]
[   81.872153] pci 0000:20:00.0: BAR 9: assigned [mem 0xbd300000-0xbd3fffff 64bit pref]
[   81.872908] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[   81.873665] pci 0000:20:01.0: BAR 9: assigned [mem 0xbd400000-0xbd4fffff 64bit pref]
[   81.874413] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1300000-0xb13fffff]
[   81.875180] pci 0000:20:02.0: BAR 9: assigned [mem 0xbd500000-0xbd5fffff 64bit pref]
[   81.875920] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1400000-0xb733ffff]
[   81.876656] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[   81.877388] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[   81.878104] pci 0000:20:05.0: BAR 8: assigned [mem 0xb7400000-0xbd27ffff]
[   81.878832] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[   81.879559] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[   81.880283] pci 0000:20:00.0: BAR 7: assigned [io  0x8000-0x8fff]
[   81.881003] pci 0000:20:01.0: BAR 7: no space for [io  size 0x1000]
[   81.881717] pci 0000:20:01.0: BAR 7: failed to assign [io  size 0x1000]
[   81.882427] pci 0000:20:02.0: BAR 7: no space for [io  size 0x1000]
[   81.883127] pci 0000:20:02.0: BAR 7: failed to assign [io  size 0x1000]
[   81.883819] pci 0000:20:04.0: BAR 7: no space for [io  size 0x1000]
[   81.884527] pci 0000:20:04.0: BAR 7: failed to assign [io  size 0x1000]
[   81.885217] pci 0000:20:05.0: BAR 7: no space for [io  size 0x1000]
[   81.885905] pci 0000:20:05.0: BAR 7: failed to assign [io  size 0x1000]
[   81.886588] pci 0000:20:00.0: BAR 8: assigned [mem 0xb1100000-0xb11fffff]
[   81.887271] pci 0000:20:00.0: BAR 9: assigned [mem 0xbd300000-0xbd3fffff 64bit pref]
[   81.887952] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[   81.888630] pci 0000:20:01.0: BAR 9: assigned [mem 0xbd400000-0xbd4fffff 64bit pref]
[   81.889310] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1300000-0xb13fffff]
[   81.889987] pci 0000:20:02.0: BAR 9: assigned [mem 0xbd500000-0xbd5fffff 64bit pref]
[   81.890663] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1400000-0xb733ffff]
[   81.891336] pci 0000:20:04.0: BAR 9: assigned [mem 0xb7400000-0xb74fffff 64bit pref]
[   81.892011] pci 0000:20:05.0: BAR 8: no space for [mem size 0x05e80000]
[   81.892686] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x05e80000]
[   81.893361] pci 0000:20:05.0: BAR 9: assigned [mem 0xb7500000-0xb75fffff 64bit pref]
[   81.894039] pci 0000:20:00.0: BAR 7: assigned [io  0x8000-0x8fff]
[   81.894750] pci 0000:20:01.0: BAR 7: no space for [io  size 0x1000]
[   81.895437] pci 0000:20:01.0: BAR 7: failed to assign [io  size 0x1000]
[   81.896109] pci 0000:20:02.0: BAR 7: no space for [io  size 0x1000]
[   81.896776] pci 0000:20:02.0: BAR 7: failed to assign [io  size 0x1000]
[   81.897444] pci 0000:20:04.0: BAR 7: no space for [io  size 0x1000]
[   81.898112] pci 0000:20:04.0: BAR 7: failed to assign [io  size 0x1000]
[   81.898776] pci 0000:20:05.0: BAR 7: no space for [io  size 0x1000]
[   81.899450] pci 0000:20:05.0: BAR 7: failed to assign [io  size 0x1000]
[   81.900128] pci 0000:20:05.0: BAR 9: [mem 0xb7500000-0xb75fffff 64bit pref] (failed to expand by 0x3ff00000)
[   81.900818] pci 0000:20:05.0: failed to add 3ff00000 res[9]=[mem 0xb7500000-0xb75fffff 64bit pref]
[   81.901518] pci 0000:20:04.0: BAR 9: [mem 0xb7400000-0xb74fffff 64bit pref] (failed to expand by 0x3ff00000)
[   81.902219] pci 0000:20:04.0: failed to add 3ff00000 res[9]=[mem 0xb7400000-0xb74fffff 64bit pref]
[   81.902927] pci 0000:21:00.0: BAR 8: assigned [mem 0xb1100000-0xb11fffff]
[   81.903634] pci 0000:21:00.0: BAR 9: assigned [mem 0xbd300000-0xbd3fffff 64bit pref]
[   81.904344] pci 0000:21:00.0: BAR 7: assigned [io  0x8000-0x8fff]
[   81.905062] pci 0000:22:03.0: BAR 8: assigned [mem 0xb1100000-0xb11fffff]
[   81.905774] pci 0000:22:03.0: BAR 9: assigned [mem 0xbd300000-0xbd3fffff 64bit pref]
[   81.906486] pci 0000:22:03.0: BAR 7: assigned [io  0x8000-0x8fff]
[   81.907196] pci 0000:23:00.0: BAR 0: assigned [mem 0xb1100000-0xb1100fff]
[   81.907916] pci 0000:23:00.1: BAR 0: assigned [mem 0xb1101000-0xb1101fff]
[   81.908630] pci 0000:23:00.2: BAR 0: assigned [mem 0xb1102000-0xb11020ff]
[   81.909342] pci 0000:22:03.0: PCI bridge to [bus 23]
[   81.910049] pci 0000:22:03.0:   bridge window [io  0x8000-0x8fff]
[   81.910764] pci 0000:22:03.0:   bridge window [mem 0xb1100000-0xb11fffff]
[   81.911473] pci 0000:22:03.0:   bridge window [mem 0xbd300000-0xbd3fffff 64bit pref]
[   81.912192] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[   81.912897] pci 0000:21:00.0:   bridge window [io  0x8000-0x8fff]
[   81.913609] pci 0000:21:00.0:   bridge window [mem 0xb1100000-0xb11fffff]
[   81.914317] pci 0000:21:00.0:   bridge window [mem 0xbd300000-0xbd3fffff 64bit pref]
[   81.915063] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[   81.915763] pci 0000:20:00.0:   bridge window [io  0x8000-0x8fff]
[   81.916475] pci 0000:20:00.0:   bridge window [mem 0xb1100000-0xb11fffff]
[   81.917171] pci 0000:20:00.0:   bridge window [mem 0xbd300000-0xbd3fffff 64bit pref]
[   81.917892] pci 0000:24:00.0: BAR 0: assigned [mem 0xbd400000-0xbd40ffff 64bit pref]
[   81.918632] pci 0000:24:00.0: BAR 2: assigned [mem 0xbd410000-0xbd41ffff 64bit pref]
[   81.919366] pci 0000:20:01.0: PCI bridge to [bus 24]
[   81.920074] pci 0000:20:01.0:   bridge window [mem 0xb1200000-0xb12fffff]
[   81.920783] pci 0000:20:01.0:   bridge window [mem 0xbd400000-0xbd4fffff 64bit pref]
[   81.921501] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1300000-0xb1300fff 64bit]
[   81.922239] pci 0000:20:02.0: PCI bridge to [bus 25]
[   81.922953] pci 0000:20:02.0:   bridge window [mem 0xb1300000-0xb13fffff]
[   81.923665] pci 0000:20:02.0:   bridge window [mem 0xbd500000-0xbd5fffff 64bit pref]
[   81.924388] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[   81.925123] pci 0000:20:04.0:   bridge window [mem 0xb1400000-0xb733ffff]
[   81.925835] pci 0000:20:04.0:   bridge window [mem 0xb7400000-0xb74fffff 64bit pref]
[   81.926545] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[   81.927258] pci 0000:20:05.0:   bridge window [mem 0xb7500000-0xb75fffff 64bit pref]
[   81.927974] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[   81.928675] pci 0000:1f:00.0:   bridge window [io  0x8000-0x8fff]
[   81.929394] pci 0000:1f:00.0:   bridge window [mem 0xb1100000-0xbd27ffff]
[   81.930104] pci 0000:1f:00.0:   bridge window [mem 0xbd300000-0xbd5fffff 64bit pref]
[   81.930825] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[   81.931533] pci 0000:19:04.0:   bridge window [io  0x8000-0x8fff]
[   81.932248] pci 0000:19:04.0:   bridge window [mem 0xb1100000-0xbd27ffff]
[   81.932957] pci 0000:19:04.0:   bridge window [mem 0xbd300000-0xbd5fffff 64bit pref]
[   81.933673] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[   81.934377] pci 0000:19:05.0:   bridge window [io  0x9000-0x9fff]
[   81.935121] pci 0000:19:05.0:   bridge window [mem 0xbd600000-0xbd8fffff 64bit pref]
[   81.935849] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[   81.936553] pci 0000:18:00.0:   bridge window [io  0x5000-0x9fff]
[   81.937261] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[   81.937976] pcieport 0000:06:04.0: PCI bridge to [bus 18-55]
[   81.938678] pcieport 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[   81.939392] pcieport 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[   81.940110] PCI: No. 2 try to assign unassigned res
[   81.940111] pci 0000:22:03.0: resource 7 [io  0x8000-0x8fff] released
[   81.940820] pci 0000:22:03.0: PCI bridge to [bus 23]
[   81.941545] pci 0000:21:00.0: resource 7 [io  0x8000-0x8fff] released
[   81.942252] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[   81.942979] pci 0000:20:00.0: resource 7 [io  0x8000-0x8fff] released
[   81.943684] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[   81.944408] pci 0000:1f:00.0: resource 7 [io  0x8000-0x8fff] released
[   81.945151] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[   81.945894] release child resource [mem 0xb1100000-0xb1100fff]
[   81.945895] release child resource [mem 0xb1101000-0xb1101fff]
[   81.945896] release child resource [mem 0xb1102000-0xb11020ff]
[   81.945897] pci 0000:22:03.0: resource 8 [mem 0xb1100000-0xb11fffff] released
[   81.946607] pci 0000:22:03.0: PCI bridge to [bus 23]
[   81.947324] pci 0000:21:00.0: resource 8 [mem 0xb1100000-0xb11fffff] released
[   81.948036] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[   81.948760] pci 0000:20:00.0: resource 8 [mem 0xb1100000-0xb11fffff] released
[   81.949481] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[   81.950210] pci 0000:20:01.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[   81.950938] pci 0000:20:01.0: PCI bridge to [bus 24]
[   81.951672] release child resource [mem 0xb1300000-0xb1300fff 64bit]
[   81.951673] pci 0000:20:02.0: resource 8 [mem 0xb1300000-0xb13fffff] released
[   81.952404] pci 0000:20:02.0: PCI bridge to [bus 25]
[   81.953142] pci 0000:20:04.0: resource 8 [mem 0xb1400000-0xb733ffff] released
[   81.953877] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[   81.954646] release child resource [mem 0xb7400000-0xb74fffff 64bit pref]
[   81.954647] release child resource [mem 0xb7500000-0xb75fffff 64bit pref]
[   81.954648] pci 0000:1f:00.0: resource 8 [mem 0xb1100000-0xbd27ffff] released
[   81.955397] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[   81.956149] release child resource [mem 0xb0b00000-0xb0b00fff]
[   81.956150] release child resource [mem 0xb0b01000-0xb0b01fff]
[   81.956150] release child resource [mem 0xb0b02000-0xb0b020ff]
[   81.956151] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[   81.956887] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[   81.957625] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[   81.958359] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[   81.959102] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[   81.959842] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[   81.960592] pci 0000:19:01.0: resource 8 [mem 0xb0d00000-0xb0dfffff] released
[   81.961341] pci 0000:19:01.0: PCI bridge to [bus 1d]
[   81.962094] release child resource [mem 0xb0f00000-0xb0f00fff 64bit]
[   81.962095] pci 0000:19:02.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[   81.962849] pci 0000:19:02.0: PCI bridge to [bus 1e]
[   81.963608] pci 0000:19:04.0: resource 8 [mem 0xb1100000-0xbd27ffff] released
[   81.964365] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[   81.965134] release child resource [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   81.965135] release child resource [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   81.965135] release child resource [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   81.965136] release child resource [mem 0xb0e00000-0xb0e0ffff 64bit pref]
[   81.965137] release child resource [mem 0xb0e10000-0xb0e1ffff 64bit pref]
[   81.965137] release child resource [mem 0xb0e00000-0xb0efffff 64bit pref]
[   81.965138] release child resource [mem 0xb1000000-0xb10fffff 64bit pref]
[   81.965139] release child resource [mem 0xbd300000-0xbd3fffff 64bit pref]
[   81.965139] release child resource [mem 0xbd300000-0xbd3fffff 64bit pref]
[   81.965148] release child resource [mem 0xbd300000-0xbd3fffff 64bit pref]
[   81.965148] release child resource [mem 0xbd400000-0xbd40ffff 64bit pref]
[   81.965149] release child resource [mem 0xbd410000-0xbd41ffff 64bit pref]
[   81.965150] release child resource [mem 0xbd400000-0xbd4fffff 64bit pref]
[   81.965150] release child resource [mem 0xbd500000-0xbd5fffff 64bit pref]
[   81.965151] release child resource [mem 0xbd300000-0xbd5fffff 64bit pref]
[   81.965152] release child resource [mem 0xbd300000-0xbd5fffff 64bit pref]
[   81.965152] release child resource [mem 0xbd600000-0xbd8fffff 64bit pref]
[   81.965153] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[   81.965908] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[   81.966660] pcieport 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[   81.967409] pcieport 0000:06:04.0: PCI bridge to [bus 18-55]
[   81.968155] release child resource [mem 0xa8a00000-0xa8a3ffff]
[   81.968155] release child resource [mem 0xa8a00000-0xa8a3ffff]
[   81.968156] release child resource [mem 0xa8a40000-0xa8a40fff]
[   81.968157] pcieport 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[   81.968905] pcieport 0000:06:00.0: PCI bridge to [bus 07]
[   81.969654] pcieport 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[   81.970402] pcieport 0000:06:03.0: PCI bridge to [bus 08-17]
[   81.971154] pcieport 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[   81.971906] pcieport 0000:06:05.0: PCI bridge to [bus 56-65]
[   81.972659] pcieport 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[   81.973417] pcieport 0000:06:06.0: PCI bridge to [bus 66-75]
[   81.974181] pcieport 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[   81.974967] pcieport 0000:05:00.0: PCI bridge to [bus 06-75]
[   81.975748] pci 0000:20:04.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 26-35] add_size 3ff00000 add_align 100000
[   81.976535] pci 0000:20:04.0: bridge window [mem 0x00100000-0x060fffff] to [bus 26-35] add_size 2000000 add_align 100000
[   81.977331] pci 0000:20:05.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 36-45] add_size 3ff00000 add_align 100000
[   81.978129] pci 0000:20:05.0: bridge window [mem 0x00100000-0x05ffffff] to [bus 36-45] add_size 2100000 add_align 100000
[   81.978931] pci 0000:1f:00.0: bridge window [mem 0x00100000-0x005fffff 64bit pref] to [bus 20-45] add_size 7fe00000 add_align 100000
[   81.979741] pci 0000:1f:00.0: bridge window [mem 0x00100000-0x0c2fffff] to [bus 20-45] add_size 4100000 add_align 100000
[   81.980551] pci 0000:19:04.0: bridge window [mem 0x00100000-0x005fffff 64bit pref] to [bus 1f-45] add_size bf900000 add_align 100000
[   81.981363] pci 0000:19:04.0: bridge window [mem 0x00100000-0x0c2fffff] to [bus 1f-45] add_size 4100000 add_align 100000
[   81.982177] pci 0000:19:05.0: bridge window [mem 0x00100000-0x003fffff 64bit pref] to [bus 46-55] add_size 3fd00000 add_align 100000
[   81.983000] pci 0000:18:00.0: bridge window [mem 0x00100000-0x00bfffff 64bit pref] to [bus 19-55] add_size ff600000 add_align 100000
[   81.983824] pci 0000:18:00.0: bridge window [mem 0x00100000-0x186fffff] to [bus 19-55] add_size 4100000 add_align 100000
[   81.984678] pcieport 0000:06:04.0: bridge window [mem 0x00100000-0x00bfffff 64bit pref] to [bus 18-55] add_size 13eb00000 add_align 100000
[   81.985521] pcieport 0000:06:04.0: bridge window [mem 0x00100000-0x186fffff] to [bus 18-55] add_size 4100000 add_align 100000
[   81.986366] pcieport 0000:06:04.0: BAR 8: no space for [mem size 0x18600000]
[   81.987196] pcieport 0000:06:04.0: BAR 8: failed to assign [mem size 0x18600000]
[   81.988039] pcieport 0000:06:04.0: BAR 9: no space for [mem size 0x00b00000 64bit pref]
[   81.988883] pcieport 0000:06:04.0: BAR 9: failed to assign [mem size 0x00b00000 64bit pref]
[   81.989726] pcieport 0000:06:04.0: BAR 8: no space for [mem size 0x18600000]
[   81.990570] pcieport 0000:06:04.0: BAR 8: failed to assign [mem size 0x18600000]
[   81.991416] pcieport 0000:06:04.0: BAR 9: no space for [mem size 0x00b00000 64bit pref]
[   81.992259] pcieport 0000:06:04.0: BAR 9: failed to assign [mem size 0x00b00000 64bit pref]
[   81.993104] pci 0000:18:00.0: BAR 8: no space for [mem size 0x18600000]
[   81.993953] pci 0000:18:00.0: BAR 8: failed to assign [mem size 0x18600000]
[   81.994832] pci 0000:18:00.0: BAR 9: no space for [mem size 0x00b00000 64bit pref]
[   81.995693] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0x00b00000 64bit pref]
[   81.996554] pci 0000:18:00.0: BAR 8: no space for [mem size 0x18600000]
[   81.997394] pci 0000:18:00.0: BAR 8: failed to assign [mem size 0x18600000]
[   81.998240] pci 0000:18:00.0: BAR 9: no space for [mem size 0x00b00000 64bit pref]
[   81.999087] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0x00b00000 64bit pref]
[   81.999936] pci 0000:19:00.0: BAR 8: no space for [mem size 0x00100000]
[   82.000788] pci 0000:19:00.0: BAR 8: failed to assign [mem size 0x00100000]
[   82.001642] pci 0000:19:00.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   82.002501] pci 0000:19:00.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   82.003360] pci 0000:19:01.0: BAR 8: no space for [mem size 0x00100000]
[   82.004220] pci 0000:19:01.0: BAR 8: failed to assign [mem size 0x00100000]
[   82.005102] pci 0000:19:01.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   82.005976] pci 0000:19:01.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   82.006824] pci 0000:19:02.0: BAR 8: no space for [mem size 0x00100000]
[   82.007675] pci 0000:19:02.0: BAR 8: failed to assign [mem size 0x00100000]
[   82.008540] pci 0000:19:02.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   82.009406] pci 0000:19:02.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   82.010275] pci 0000:19:04.0: BAR 8: no space for [mem size 0x0c180000]
[   82.011140] pci 0000:19:04.0: BAR 8: failed to assign [mem size 0x0c180000]
[   82.012007] pci 0000:19:04.0: BAR 9: no space for [mem size 0x00400000 64bit pref]
[   82.012875] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x00400000 64bit pref]
[   82.013744] pci 0000:19:05.0: BAR 8: no space for [mem size 0x0c100000]
[   82.014640] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x0c100000]
[   82.015510] pci 0000:19:05.0: BAR 9: no space for [mem size 0x00400000 64bit pref]
[   82.016382] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x00400000 64bit pref]
[   82.017256] pci 0000:19:00.0: BAR 8: no space for [mem size 0x00100000]
[   82.018128] pci 0000:19:00.0: BAR 8: failed to assign [mem size 0x00100000]
[   82.019000] pci 0000:19:00.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   82.019872] pci 0000:19:00.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   82.020743] pci 0000:19:01.0: BAR 8: no space for [mem size 0x00100000]
[   82.021614] pci 0000:19:01.0: BAR 8: failed to assign [mem size 0x00100000]
[   82.022484] pci 0000:19:01.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   82.023355] pci 0000:19:01.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   82.024227] pci 0000:19:02.0: BAR 8: no space for [mem size 0x00100000]
[   82.025117] pci 0000:19:02.0: BAR 8: failed to assign [mem size 0x00100000]
[   82.026012] pci 0000:19:02.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   82.026875] pci 0000:19:02.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   82.027741] pci 0000:19:04.0: BAR 8: no space for [mem size 0x0c180000]
[   82.028608] pci 0000:19:04.0: BAR 8: failed to assign [mem size 0x0c180000]
[   82.029477] pci 0000:19:04.0: BAR 9: no space for [mem size 0x00400000 64bit pref]
[   82.030346] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x00400000 64bit pref]
[   82.031215] pci 0000:19:05.0: BAR 8: no space for [mem size 0x0c100000]
[   82.032082] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x0c100000]
[   82.032948] pci 0000:19:05.0: BAR 9: no space for [mem size 0x00400000 64bit pref]
[   82.033814] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x00400000 64bit pref]
[   82.034706] pci 0000:1a:00.0: BAR 8: no space for [mem size 0x00100000]
[   82.035580] pci 0000:1a:00.0: BAR 8: failed to assign [mem size 0x00100000]
[   82.036452] pci 0000:1a:00.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   82.037318] pci 0000:1a:00.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   82.038188] pci 0000:1a:00.0: BAR 8: no space for [mem size 0x00100000]
[   82.039053] pci 0000:1a:00.0: BAR 8: failed to assign [mem size 0x00100000]
[   82.039919] pci 0000:1a:00.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   82.040782] pci 0000:1a:00.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   82.041649] pci 0000:1b:03.0: BAR 8: no space for [mem size 0x00100000]
[   82.042510] pci 0000:1b:03.0: BAR 8: failed to assign [mem size 0x00100000]
[   82.043371] pci 0000:1b:03.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   82.044233] pci 0000:1b:03.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   82.045117] pci 0000:1b:03.0: BAR 8: no space for [mem size 0x00100000]
[   82.045992] pci 0000:1b:03.0: BAR 8: failed to assign [mem size 0x00100000]
[   82.046853] pci 0000:1b:03.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   82.047715] pci 0000:1b:03.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   82.048582] pci 0000:1c:00.0: BAR 0: no space for [mem size 0x00001000]
[   82.049446] pci 0000:1c:00.0: BAR 0: failed to assign [mem size 0x00001000]
[   82.050309] pci 0000:1c:00.1: BAR 0: no space for [mem size 0x00001000]
[   82.051168] pci 0000:1c:00.1: BAR 0: failed to assign [mem size 0x00001000]
[   82.052027] pci 0000:1c:00.2: BAR 0: no space for [mem size 0x00000100]
[   82.052875] pci 0000:1c:00.2: BAR 0: failed to assign [mem size 0x00000100]
[   82.053720] pci 0000:1c:00.0: BAR 0: no space for [mem size 0x00001000]
[   82.054583] pci 0000:1c:00.0: BAR 0: failed to assign [mem size 0x00001000]
[   82.055421] pci 0000:1c:00.1: BAR 0: no space for [mem size 0x00001000]
[   82.056253] pci 0000:1c:00.1: BAR 0: failed to assign [mem size 0x00001000]
[   82.057067] pci 0000:1c:00.2: BAR 0: no space for [mem size 0x00000100]
[   82.057893] pci 0000:1c:00.2: BAR 0: failed to assign [mem size 0x00000100]
[   82.058716] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[   82.059538] pci 0000:1b:03.0:   bridge window [io  0x5000-0x5fff]
[   82.060394] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[   82.061216] pci 0000:1a:00.0:   bridge window [io  0x5000-0x5fff]
[   82.062057] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[   82.062860] pci 0000:19:00.0:   bridge window [io  0x5000-0x5fff]
[   82.063680] pci 0000:1d:00.0: BAR 0: no space for [mem size 0x00010000 64bit pref]
[   82.064505] pci 0000:1d:00.0: BAR 0: failed to assign [mem size 0x00010000 64bit pref]
[   82.065291] pci 0000:1d:00.0: BAR 2: no space for [mem size 0x00010000 64bit pref]
[   82.066091] pci 0000:1d:00.0: BAR 2: failed to assign [mem size 0x00010000 64bit pref]
[   82.066891] pci 0000:1d:00.0: BAR 0: no space for [mem size 0x00010000 64bit pref]
[   82.067692] pci 0000:1d:00.0: BAR 0: failed to assign [mem size 0x00010000 64bit pref]
[   82.068493] pci 0000:1d:00.0: BAR 2: no space for [mem size 0x00010000 64bit pref]
[   82.069296] pci 0000:1d:00.0: BAR 2: failed to assign [mem size 0x00010000 64bit pref]
[   82.070095] pci 0000:19:01.0: PCI bridge to [bus 1d]
[   82.070899] pci 0000:19:01.0:   bridge window [io  0x6000-0x6fff]
[   82.071725] pci 0000:1e:00.0: BAR 0: no space for [mem size 0x00001000 64bit]
[   82.072528] pci 0000:1e:00.0: BAR 0: failed to assign [mem size 0x00001000 64bit]
[   82.073328] pci 0000:1e:00.0: BAR 0: no space for [mem size 0x00001000 64bit]
[   82.074129] pci 0000:1e:00.0: BAR 0: failed to assign [mem size 0x00001000 64bit]
[   82.074948] pci 0000:19:02.0: PCI bridge to [bus 1e]
[   82.075750] pci 0000:19:02.0:   bridge window [io  0x7000-0x7fff]
[   82.076578] pci 0000:1f:00.0: BAR 8: no space for [mem size 0x0c180000]
[   82.077379] pci 0000:1f:00.0: BAR 8: failed to assign [mem size 0x0c180000]
[   82.078176] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x00400000 64bit pref]
[   82.078973] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x00400000 64bit pref]
[   82.079769] pci 0000:1f:00.0: BAR 7: no space for [io  size 0x2800]
[   82.080565] pci 0000:1f:00.0: BAR 7: failed to assign [io  size 0x2800]
[   82.081358] pci 0000:1f:00.0: BAR 8: no space for [mem size 0x0c180000]
[   82.082151] pci 0000:1f:00.0: BAR 8: failed to assign [mem size 0x0c180000]
[   82.082941] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x00400000 64bit pref]
[   82.083732] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x00400000 64bit pref]
[   82.084550] pci 0000:1f:00.0: BAR 7: no space for [io  size 0x2800]
[   82.085341] pci 0000:1f:00.0: BAR 7: failed to assign [io  size 0x2800]
[   82.086130] pci 0000:20:00.0: BAR 8: no space for [mem size 0x00100000]
[   82.086915] pci 0000:20:00.0: BAR 8: failed to assign [mem size 0x00100000]
[   82.087698] pci 0000:20:00.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   82.088487] pci 0000:20:00.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   82.089271] pci 0000:20:01.0: BAR 8: no space for [mem size 0x00100000]
[   82.090057] pci 0000:20:01.0: BAR 8: failed to assign [mem size 0x00100000]
[   82.090841] pci 0000:20:01.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   82.091626] pci 0000:20:01.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   82.092409] pci 0000:20:02.0: BAR 8: no space for [mem size 0x00100000]
[   82.093193] pci 0000:20:02.0: BAR 8: failed to assign [mem size 0x00100000]
[   82.093977] pci 0000:20:02.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   82.094794] pci 0000:20:02.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   82.095580] pci 0000:20:04.0: BAR 8: no space for [mem size 0x05f40000]
[   82.096380] pci 0000:20:04.0: BAR 8: failed to assign [mem size 0x05f40000]
[   82.097159] pci 0000:20:04.0: BAR 9: no space for [mem size 0x00080000 64bit pref]
[   82.097937] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x00080000 64bit pref]
[   82.098716] pci 0000:20:05.0: BAR 8: no space for [mem size 0x05e80000]
[   82.099502] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x05e80000]
[   82.100284] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[   82.101068] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[   82.101851] pci 0000:20:00.0: BAR 7: no space for [io  size 0x1000]
[   82.102633] pci 0000:20:00.0: BAR 7: failed to assign [io  size 0x1000]
[   82.103415] pci 0000:20:01.0: BAR 7: no space for [io  size 0x1000]
[   82.104194] pci 0000:20:01.0: BAR 7: failed to assign [io  size 0x1000]
[   82.104990] pci 0000:20:02.0: BAR 7: no space for [io  size 0x1000]
[   82.105767] pci 0000:20:02.0: BAR 7: failed to assign [io  size 0x1000]
[   82.106527] pci 0000:20:04.0: BAR 7: no space for [io  size 0x1000]
[   82.107284] pci 0000:20:04.0: BAR 7: failed to assign [io  size 0x1000]
[   82.108037] pci 0000:20:05.0: BAR 7: no space for [io  size 0x1000]
[   82.108789] pci 0000:20:05.0: BAR 7: failed to assign [io  size 0x1000]
[   82.109548] pci 0000:20:00.0: BAR 8: no space for [mem size 0x00100000]
[   82.110305] pci 0000:20:00.0: BAR 8: failed to assign [mem size 0x00100000]
[   82.111057] pci 0000:20:00.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   82.111815] pci 0000:20:00.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   82.112571] pci 0000:20:01.0: BAR 8: no space for [mem size 0x00100000]
[   82.113328] pci 0000:20:01.0: BAR 8: failed to assign [mem size 0x00100000]
[   82.114083] pci 0000:20:01.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   82.114857] pci 0000:20:01.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   82.115620] pci 0000:20:02.0: BAR 8: no space for [mem size 0x00100000]
[   82.116388] pci 0000:20:02.0: BAR 8: failed to assign [mem size 0x00100000]
[   82.117133] pci 0000:20:02.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   82.117883] pci 0000:20:02.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   82.118630] pci 0000:20:04.0: BAR 8: no space for [mem size 0x05f40000]
[   82.119386] pci 0000:20:04.0: BAR 8: failed to assign [mem size 0x05f40000]
[   82.120136] pci 0000:20:04.0: BAR 9: no space for [mem size 0x00080000 64bit pref]
[   82.120889] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x00080000 64bit pref]
[   82.121644] pci 0000:20:05.0: BAR 8: no space for [mem size 0x05e80000]
[   82.122398] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x05e80000]
[   82.123152] pci 0000:20:05.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   82.123909] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   82.124695] pci 0000:20:00.0: BAR 7: no space for [io  size 0x1000]
[   82.125466] pci 0000:20:00.0: BAR 7: failed to assign [io  size 0x1000]
[   82.126237] pci 0000:20:01.0: BAR 7: no space for [io  size 0x1000]
[   82.126989] pci 0000:20:01.0: BAR 7: failed to assign [io  size 0x1000]
[   82.127754] pci 0000:20:02.0: BAR 7: no space for [io  size 0x1000]
[   82.128519] pci 0000:20:02.0: BAR 7: failed to assign [io  size 0x1000]
[   82.129279] pci 0000:20:04.0: BAR 7: no space for [io  size 0x1000]
[   82.130040] pci 0000:20:04.0: BAR 7: failed to assign [io  size 0x1000]
[   82.130802] pci 0000:20:05.0: BAR 7: no space for [io  size 0x1000]
[   82.131562] pci 0000:20:05.0: BAR 7: failed to assign [io  size 0x1000]
[   82.132325] pci 0000:21:00.0: BAR 8: no space for [mem size 0x00100000]
[   82.133087] pci 0000:21:00.0: BAR 8: failed to assign [mem size 0x00100000]
[   82.133848] pci 0000:21:00.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   82.134629] pci 0000:21:00.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   82.135406] pci 0000:21:00.0: BAR 7: no space for [io  size 0x1000]
[   82.136167] pci 0000:21:00.0: BAR 7: failed to assign [io  size 0x1000]
[   82.136914] pci 0000:22:03.0: BAR 8: no space for [mem size 0x00100000]
[   82.137674] pci 0000:22:03.0: BAR 8: failed to assign [mem size 0x00100000]
[   82.138430] pci 0000:22:03.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   82.139188] pci 0000:22:03.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   82.139943] pci 0000:22:03.0: BAR 7: no space for [io  size 0x1000]
[   82.140698] pci 0000:22:03.0: BAR 7: failed to assign [io  size 0x1000]
[   82.141450] pci 0000:23:00.0: BAR 0: no space for [mem size 0x00001000]
[   82.142203] pci 0000:23:00.0: BAR 0: failed to assign [mem size 0x00001000]
[   82.142957] pci 0000:23:00.1: BAR 0: no space for [mem size 0x00001000]
[   82.143711] pci 0000:23:00.1: BAR 0: failed to assign [mem size 0x00001000]
[   82.144483] pci 0000:23:00.2: BAR 0: no space for [mem size 0x00000100]
[   82.145234] pci 0000:23:00.2: BAR 0: failed to assign [mem size 0x00000100]
[   82.145996] pci 0000:22:03.0: PCI bridge to [bus 23]
[   82.146778] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[   82.147569] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[   82.148347] pci 0000:24:00.0: BAR 0: no space for [mem size 0x00010000 64bit pref]
[   82.149092] pci 0000:24:00.0: BAR 0: failed to assign [mem size 0x00010000 64bit pref]
[   82.149840] pci 0000:24:00.0: BAR 2: no space for [mem size 0x00010000 64bit pref]
[   82.150588] pci 0000:24:00.0: BAR 2: failed to assign [mem size 0x00010000 64bit pref]
[   82.151335] pci 0000:20:01.0: PCI bridge to [bus 24]
[   82.152122] pci 0000:25:00.0: BAR 0: no space for [mem size 0x00001000 64bit]
[   82.152875] pci 0000:25:00.0: BAR 0: failed to assign [mem size 0x00001000 64bit]
[   82.153626] pci 0000:20:02.0: PCI bridge to [bus 25]
[   82.154418] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[   82.155223] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[   82.156011] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[   82.156790] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[   82.157513] pci 0000:19:04.0:   bridge window [io  0x8000-0x8fff]
[   82.158272] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[   82.159007] pci 0000:19:05.0:   bridge window [io  0x9000-0x9fff]
[   82.159764] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[   82.160496] pci 0000:18:00.0:   bridge window [io  0x5000-0x9fff]
[   82.161247] pcieport 0000:06:04.0: PCI bridge to [bus 18-55]
[   82.161976] pcieport 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[   82.162744] pcieport 0000:18:00.0: enabling device (0000 -> 0001)
[   82.163806] pcieport 0000:19:00.0: enabling device (0000 -> 0001)
[   82.164932] pcieport 0000:19:01.0: enabling device (0000 -> 0001)
[   82.166017] pcieport 0000:19:02.0: enabling device (0000 -> 0001)
[   82.167074] pcieport 0000:19:04.0: enabling device (0000 -> 0001)
[   82.167887] pcieport 0000:19:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[   82.168963] pcieport 0000:19:05.0: enabling device (0000 -> 0001)
[   82.169804] pcieport 0000:19:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[   82.170932] pcieport 0000:1a:00.0: enabling device (0000 -> 0001)
[   82.171783] pcieport 0000:1b:03.0: enabling device (0000 -> 0001)
[   82.172658] pci 0000:1c:00.0: MSI is not implemented on this device, disabling it
[   82.173412] pci 0000:1c:00.0: PME# is unreliable, disabling it
[   82.174310] ohci-pci 0000:1c:00.0: init 0000:1c:00.0 fail, -16
[   82.175082] ohci-pci: probe of 0000:1c:00.0 failed with error -16
[   82.175855] pci 0000:1c:00.1: MSI is not implemented on this device, disabling it
[   82.176621] pci 0000:1c:00.1: PME# is unreliable, disabling it
[   82.177500] ohci-pci 0000:1c:00.1: init 0000:1c:00.1 fail, -16
[   82.178261] ohci-pci: probe of 0000:1c:00.1 failed with error -16
[   82.179033] pci 0000:1c:00.2: MSI is not implemented on this device, disabling it
[   82.179809] pci 0000:1c:00.2: PME# is unreliable, disabling it
[   82.181138] ehci-pci 0000:1c:00.2: init 0000:1c:00.2 fail, -16
[   82.181900] ehci-pci: probe of 0000:1c:00.2 failed with error -16
[   82.182729] tg3 0000:1d:00.0: can't ioremap BAR 0: [??? 0x00000000 flags 0x0]
[   82.183511] tg3 0000:1d:00.0: Cannot map device registers, aborting
[   82.184314] tg3: probe of 0000:1d:00.0 failed with error -12
[   82.185176] firewire_ohci 0000:1e:00.0: invalid MMIO resource
[   82.187928] pcieport 0000:20:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[   82.189217] pcieport 0000:20:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[   82.190682] pci 0000:23:00.0: MSI is not implemented on this device, disabling it
[   82.191482] pci 0000:23:00.0: PME# is unreliable, disabling it
[   82.192415] ohci-pci 0000:23:00.0: init 0000:23:00.0 fail, -16
[   82.193213] ohci-pci: probe of 0000:23:00.0 failed with error -16
[   82.194014] pci 0000:23:00.1: MSI is not implemented on this device, disabling it
[   82.194840] pci 0000:23:00.1: PME# is unreliable, disabling it
[   82.195801] ohci-pci 0000:23:00.1: init 0000:23:00.1 fail, -16
[   82.196609] ohci-pci: probe of 0000:23:00.1 failed with error -16
[   82.197412] pci 0000:23:00.2: MSI is not implemented on this device, disabling it
[   82.198221] pci 0000:23:00.2: PME# is unreliable, disabling it
[   82.199148] ehci-pci 0000:23:00.2: init 0000:23:00.2 fail, -16
[   82.199955] ehci-pci: probe of 0000:23:00.2 failed with error -16
[   82.200828] tg3 0000:24:00.0: can't ioremap BAR 0: [??? 0x00000000 flags 0x0]
[   82.201648] tg3 0000:24:00.0: Cannot map device registers, aborting
[   82.202487] tg3: probe of 0000:24:00.0 failed with error -12
[   82.203371] firewire_ohci 0000:25:00.0: invalid MMIO resource
[   82.284904] switching from power state:
[   82.285705] 	ui class: battery
[   82.286528] 	internal class: none
[   82.287331] 	caps:
[   82.288129] 	uvd    vclk: 0 dclk: 0
[   82.288928] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   82.289739] 		power level 1    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   82.290549] 		power level 2    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   82.291352] 	status: c r
[   82.292154] switching to power state:
[   82.292951] 	ui class: battery
[   82.293750] 	internal class: none
[   82.294559] 	caps:
[   82.295387] 	uvd    vclk: 0 dclk: 0
[   82.296189] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   82.296982] 		power level 1    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   82.297769] 		power level 2    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   82.298552] 	status: c r
[   82.608080] [drm:radeon_dp_link_train [radeon]] *ERROR* displayport link status failed
[   82.608983] [drm:radeon_dp_link_train [radeon]] *ERROR* clock recovery failed
[   82.963620] [drm:radeon_dp_link_train [radeon]] *ERROR* displayport link status failed
[   82.964529] [drm:radeon_dp_link_train [radeon]] *ERROR* clock recovery failed
[   89.850757] elogind-daemon[3134]: New session c2 of user brad.
[  285.363920] elogind-daemon[3134]: Removed session c2.
[  592.984761] elogind-daemon[3134]: New session c3 of user brad.
brad@bkmac:~$ 

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-03-31  9:02                   ` Brad Campbell
@ 2022-03-31 16:36                     ` Mika Westerberg
  2022-04-01  5:48                       ` Brad Campbell
  0 siblings, 1 reply; 47+ messages in thread
From: Mika Westerberg @ 2022-03-31 16:36 UTC (permalink / raw)
  To: Brad Campbell; +Cc: linux-kernel

Hi,

On Thu, Mar 31, 2022 at 05:02:58PM +0800, Brad Campbell wrote:
> On 30/3/22 22:47, Mika Westerberg wrote:
> > Hi,
> > 
> > On Wed, Mar 30, 2022 at 10:24:35PM +0800, Brad Campbell wrote:
> >> Nope, that did the same thing. I wonder though. I'm testing it on the laptop and that reports :
> >> [    0.442832] thunderbolt 0000:07:00.0:  Thunderbolt 2 Switch: 8086:156d (Revision: 0, TB Version: 2)
> >>
> >> Changing "if (in->sw->generation == 1)" to "if (in->sw->generation == 2)" on the laptop solves that.
> > 
> > Heh, indeed I forgot that this is Falcon Ridge.
> > 
> >> I can't test hotplug properly on the iMac due to the radeon training issue.
> >>
> >> The laptop still has the issue of a cold boot working in one socket
> >> and not the other, but hot plug is working correctly.
> > 
> > Let's try this one next:
> > 
> > diff --git a/drivers/thunderbolt/tunnel.c b/drivers/thunderbolt/tunnel.c
> > index a473cc7d9a8d..7150b5bc5403 100644
> > --- a/drivers/thunderbolt/tunnel.c
> > +++ b/drivers/thunderbolt/tunnel.c
> > @@ -865,6 +865,8 @@ struct tb_tunnel *tb_tunnel_alloc_dp(struct tb *tb, struct tb_port *in,
> >   	struct tb_tunnel *tunnel;
> >   	struct tb_path **paths;
> >   	struct tb_path *path;
> > +	struct tb_port *port;
> > +	int link_nr;
> >   
> 
> On the iMac, it cold boots on either port.
> 
> On the Laptop it is the same as the previous in that it cold boots on
> one port and not the other. Hotplug works in all cases I did try
> (in->sw->generation < 3) just in case, but it didn't change anything
> on the Laptop.
> 
> Testing from here down is on the iMac.
> 
> I've re-tested the original patch and aside from the thunderbolt
> controller locking up, the radeon doesn't fail clock recovery.
> 
> Further investigation on the iMac shows we don't see port 11. I added
> a debug for discovered port.
> 
> So my next thing is to try and figure out if there is a correlation between which link is paired with which DP source.
> 
> I've changed link_nr = in->port == 11 ? 1 : 0; to 12 ? 1 : 0; and that boots, but hotplug still fails if the EFI sets up a display first. I've also tried reversing the 1 : 0, but that fails out of the gate.
> 
> I've just done a test now by booting with the chain disconnected, then
> plugging it in just before the bootloader loads which prevents the EFI
> from getting involved. 
> 
> This works (wait until just before bootloader to plug the chain): 
> 
> brad@bkmac:~$ dmesg | egrep '(Tunnel|in->|in use|DP .* available)'
> [    1.618277] thunderbolt 0000:07:00.0: 0:c: DP IN resource available
> [    1.618280] thunderbolt 0000:07:00.0: 0:d: DP IN resource available
> [    1.618403] thunderbolt 0000:07:00.0: 303:b: DP OUT resource available
> [    1.618529] thunderbolt 0000:07:00.0: 0:c: DP IN available
> [    1.618656] thunderbolt 0000:07:00.0: 303:b: DP OUT available
> [    1.618916] thunderbolt 0000:07:00.0: in->port 12
> [    1.618920] thunderbolt 0000:07:00.0: Tunnel 1
> [    1.622751] thunderbolt 0000:07:00.0: 3:b: DP OUT resource available
> [    1.622880] thunderbolt 0000:07:00.0: 0:c: in use
> [    1.623007] thunderbolt 0000:07:00.0: 0:d: DP IN available
> [    1.623135] thunderbolt 0000:07:00.0: 303:b: in use
> [    1.623263] thunderbolt 0000:07:00.0: 3:b: DP OUT available
> [    1.623399] thunderbolt 0000:07:00.0: in->port 13
> [    1.623402] thunderbolt 0000:07:00.0: Tunnel 0
> 
> Both displays are working at this point.
> Unplug -> Replug
> [   45.799923] thunderbolt 0000:07:00.0: 0:c: DP IN available
> [   45.800051] thunderbolt 0000:07:00.0: 0:d: DP IN available
> [   45.800053] thunderbolt 0000:07:00.0: no suitable DP IN adapter available, not tunneling
> [   54.606243] thunderbolt 0000:07:00.0: 303:b: DP OUT resource available
> [   54.606371] thunderbolt 0000:07:00.0: 0:c: DP IN available
> [   54.606497] thunderbolt 0000:07:00.0: 303:b: DP OUT available
> [   54.606763] thunderbolt 0000:07:00.0: in->port 12
> [   54.606768] thunderbolt 0000:07:00.0: Tunnel 1
> [   54.615067] thunderbolt 0000:07:00.0: 3:b: DP OUT resource available
> [   54.615176] thunderbolt 0000:07:00.0: 0:c: in use
> [   54.615309] thunderbolt 0000:07:00.0: 0:d: DP IN available
> [   54.615434] thunderbolt 0000:07:00.0: 303:b: in use
> [   54.615561] thunderbolt 0000:07:00.0: 3:b: DP OUT available
> [   54.615692] thunderbolt 0000:07:00.0: in->port 13
> [   54.615694] thunderbolt 0000:07:00.0: Tunnel 0
> 
> Both displays are working
> 
> This doesn't (standard cold boot):
> 
> brad@bkmac:~$ dmesg | egrep '(Tunnel|in->|in use|DP .* available)'
> [    1.611396] thunderbolt 0000:07:00.0: 0:c: DP IN resource available
> [    1.611399] thunderbolt 0000:07:00.0: 0:d: DP IN resource available
> [    1.611521] thunderbolt 0000:07:00.0: 303:b: DP OUT resource available
> [    1.611648] thunderbolt 0000:07:00.0: 0:c: in use
> [    1.611777] thunderbolt 0000:07:00.0: 0:d: DP IN available
> [    1.611904] thunderbolt 0000:07:00.0: 303:b: DP OUT available
> [    1.612162] thunderbolt 0000:07:00.0: in->port 13
> [    1.612166] thunderbolt 0000:07:00.0: Tunnel 0
> 
> Both displays are working at this point.
> Unplug -> Replug
> [   72.181366] thunderbolt 0000:07:00.0: 0:c: DP IN available
> [   72.181487] thunderbolt 0000:07:00.0: 0:d: DP IN available
> [   72.181489] thunderbolt 0000:07:00.0: no suitable DP IN adapter available, not tunneling
> [   81.369074] thunderbolt 0000:07:00.0: 3:b: DP OUT resource available
> [   81.369207] thunderbolt 0000:07:00.0: 0:c: DP IN available
> [   81.369335] thunderbolt 0000:07:00.0: 3:b: DP OUT available
> [   81.369468] thunderbolt 0000:07:00.0: in->port 12
> [   81.369471] thunderbolt 0000:07:00.0: Tunnel 1
> [   81.376542] thunderbolt 0000:07:00.0: 303:b: DP OUT resource available
> [   81.376669] thunderbolt 0000:07:00.0: 0:c: in use
> [   81.376797] thunderbolt 0000:07:00.0: 0:d: DP IN available
> [   81.376925] thunderbolt 0000:07:00.0: 3:b: in use
> [   81.377058] thunderbolt 0000:07:00.0: 303:b: DP OUT available
> [   81.377320] thunderbolt 0000:07:00.0: in->port 13
> [   81.377328] thunderbolt 0000:07:00.0: Tunnel 0
> 
> First display in the chain fails clock recovery.

Okay, thanks for testing. I think at this point we need to look a what
the Apple boot firmware actually configures for these paths. Can you
drop my previous patch and apply the below? Then on both problematic
systems boot up with the monitors connected and then send me dmesg.

If possible do this so that you have the chain connected to each port on
the system. I'm hoping we find some pattern here ;-)

diff --git a/drivers/thunderbolt/path.c b/drivers/thunderbolt/path.c
index 299712accfe9..ee03fd75a472 100644
--- a/drivers/thunderbolt/path.c
+++ b/drivers/thunderbolt/path.c
@@ -166,6 +166,9 @@ struct tb_path *tb_path_discover(struct tb_port *src, int src_hopid,
 		return NULL;
 	}
 
+	tb_dbg(path->tb, "discovering %s path starting from %llx:%u\n",
+	       path->name, tb_route(src->sw), src->port);
+
 	p = src;
 	h = src_hopid;
 
@@ -198,10 +201,13 @@ struct tb_path *tb_path_discover(struct tb_port *src, int src_hopid,
 		path->hops[i].out_port = out_port;
 		path->hops[i].next_hop_index = next_hop;
 
+		tb_dump_hop(&path->hops[i], &hop);
+
 		h = next_hop;
 		p = out_port->remote;
 	}
 
+	tb_dbg(path->tb, "path discovery complete\n");
 	return path;
 
 err:

^ permalink raw reply related	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-03-31 16:36                     ` Mika Westerberg
@ 2022-04-01  5:48                       ` Brad Campbell
  2022-04-01 14:30                         ` Mika Westerberg
  0 siblings, 1 reply; 47+ messages in thread
From: Brad Campbell @ 2022-04-01  5:48 UTC (permalink / raw)
  To: Mika Westerberg; +Cc: linux-kernel

G'day Mika,

On 1/4/22 00:36, Mika Westerberg wrote:
> Hi,
> 
> On Thu, Mar 31, 2022 at 05:02:58PM +0800, Brad Campbell wrote:
>> On 30/3/22 22:47, Mika Westerberg wrote:
>>> Hi,
>>>
>>> On Wed, Mar 30, 2022 at 10:24:35PM +0800, Brad Campbell wrote:
>>>> Nope, that did the same thing. I wonder though. I'm testing it on the laptop and that reports :
>>>> [    0.442832] thunderbolt 0000:07:00.0:  Thunderbolt 2 Switch: 8086:156d (Revision: 0, TB Version: 2)
>>>>
>>>> Changing "if (in->sw->generation == 1)" to "if (in->sw->generation == 2)" on the laptop solves that.
>>>
>>> Heh, indeed I forgot that this is Falcon Ridge.
>>>
>>>> I can't test hotplug properly on the iMac due to the radeon training issue.
>>>>
>>>> The laptop still has the issue of a cold boot working in one socket
>>>> and not the other, but hot plug is working correctly.
>>>
>>> Let's try this one next:
>>>
>>> diff --git a/drivers/thunderbolt/tunnel.c b/drivers/thunderbolt/tunnel.c
>>> index a473cc7d9a8d..7150b5bc5403 100644
>>> --- a/drivers/thunderbolt/tunnel.c
>>> +++ b/drivers/thunderbolt/tunnel.c
>>> @@ -865,6 +865,8 @@ struct tb_tunnel *tb_tunnel_alloc_dp(struct tb *tb, struct tb_port *in,
>>>    	struct tb_tunnel *tunnel;
>>>    	struct tb_path **paths;
>>>    	struct tb_path *path;
>>> +	struct tb_port *port;
>>> +	int link_nr;
>>>    
>>
>> On the iMac, it cold boots on either port.
>>
>> On the Laptop it is the same as the previous in that it cold boots on
>> one port and not the other. Hotplug works in all cases I did try
>> (in->sw->generation < 3) just in case, but it didn't change anything
>> on the Laptop.
>>
>> Testing from here down is on the iMac.
>>
>> I've re-tested the original patch and aside from the thunderbolt
>> controller locking up, the radeon doesn't fail clock recovery.
>>
>> Further investigation on the iMac shows we don't see port 11. I added
>> a debug for discovered port.
>>
>> So my next thing is to try and figure out if there is a correlation between which link is paired with which DP source.
>>
>> I've changed link_nr = in->port == 11 ? 1 : 0; to 12 ? 1 : 0; and that boots, but hotplug still fails if the EFI sets up a display first. I've also tried reversing the 1 : 0, but that fails out of the gate.
>>
>> I've just done a test now by booting with the chain disconnected, then
>> plugging it in just before the bootloader loads which prevents the EFI
>> from getting involved.
>>
>> This works (wait until just before bootloader to plug the chain):
>>
>> brad@bkmac:~$ dmesg | egrep '(Tunnel|in->|in use|DP .* available)'
>> [    1.618277] thunderbolt 0000:07:00.0: 0:c: DP IN resource available
>> [    1.618280] thunderbolt 0000:07:00.0: 0:d: DP IN resource available
>> [    1.618403] thunderbolt 0000:07:00.0: 303:b: DP OUT resource available
>> [    1.618529] thunderbolt 0000:07:00.0: 0:c: DP IN available
>> [    1.618656] thunderbolt 0000:07:00.0: 303:b: DP OUT available
>> [    1.618916] thunderbolt 0000:07:00.0: in->port 12
>> [    1.618920] thunderbolt 0000:07:00.0: Tunnel 1
>> [    1.622751] thunderbolt 0000:07:00.0: 3:b: DP OUT resource available
>> [    1.622880] thunderbolt 0000:07:00.0: 0:c: in use
>> [    1.623007] thunderbolt 0000:07:00.0: 0:d: DP IN available
>> [    1.623135] thunderbolt 0000:07:00.0: 303:b: in use
>> [    1.623263] thunderbolt 0000:07:00.0: 3:b: DP OUT available
>> [    1.623399] thunderbolt 0000:07:00.0: in->port 13
>> [    1.623402] thunderbolt 0000:07:00.0: Tunnel 0
>>
>> Both displays are working at this point.
>> Unplug -> Replug
>> [   45.799923] thunderbolt 0000:07:00.0: 0:c: DP IN available
>> [   45.800051] thunderbolt 0000:07:00.0: 0:d: DP IN available
>> [   45.800053] thunderbolt 0000:07:00.0: no suitable DP IN adapter available, not tunneling
>> [   54.606243] thunderbolt 0000:07:00.0: 303:b: DP OUT resource available
>> [   54.606371] thunderbolt 0000:07:00.0: 0:c: DP IN available
>> [   54.606497] thunderbolt 0000:07:00.0: 303:b: DP OUT available
>> [   54.606763] thunderbolt 0000:07:00.0: in->port 12
>> [   54.606768] thunderbolt 0000:07:00.0: Tunnel 1
>> [   54.615067] thunderbolt 0000:07:00.0: 3:b: DP OUT resource available
>> [   54.615176] thunderbolt 0000:07:00.0: 0:c: in use
>> [   54.615309] thunderbolt 0000:07:00.0: 0:d: DP IN available
>> [   54.615434] thunderbolt 0000:07:00.0: 303:b: in use
>> [   54.615561] thunderbolt 0000:07:00.0: 3:b: DP OUT available
>> [   54.615692] thunderbolt 0000:07:00.0: in->port 13
>> [   54.615694] thunderbolt 0000:07:00.0: Tunnel 0
>>
>> Both displays are working
>>
>> This doesn't (standard cold boot):
>>
>> brad@bkmac:~$ dmesg | egrep '(Tunnel|in->|in use|DP .* available)'
>> [    1.611396] thunderbolt 0000:07:00.0: 0:c: DP IN resource available
>> [    1.611399] thunderbolt 0000:07:00.0: 0:d: DP IN resource available
>> [    1.611521] thunderbolt 0000:07:00.0: 303:b: DP OUT resource available
>> [    1.611648] thunderbolt 0000:07:00.0: 0:c: in use
>> [    1.611777] thunderbolt 0000:07:00.0: 0:d: DP IN available
>> [    1.611904] thunderbolt 0000:07:00.0: 303:b: DP OUT available
>> [    1.612162] thunderbolt 0000:07:00.0: in->port 13
>> [    1.612166] thunderbolt 0000:07:00.0: Tunnel 0
>>
>> Both displays are working at this point.
>> Unplug -> Replug
>> [   72.181366] thunderbolt 0000:07:00.0: 0:c: DP IN available
>> [   72.181487] thunderbolt 0000:07:00.0: 0:d: DP IN available
>> [   72.181489] thunderbolt 0000:07:00.0: no suitable DP IN adapter available, not tunneling
>> [   81.369074] thunderbolt 0000:07:00.0: 3:b: DP OUT resource available
>> [   81.369207] thunderbolt 0000:07:00.0: 0:c: DP IN available
>> [   81.369335] thunderbolt 0000:07:00.0: 3:b: DP OUT available
>> [   81.369468] thunderbolt 0000:07:00.0: in->port 12
>> [   81.369471] thunderbolt 0000:07:00.0: Tunnel 1
>> [   81.376542] thunderbolt 0000:07:00.0: 303:b: DP OUT resource available
>> [   81.376669] thunderbolt 0000:07:00.0: 0:c: in use
>> [   81.376797] thunderbolt 0000:07:00.0: 0:d: DP IN available
>> [   81.376925] thunderbolt 0000:07:00.0: 3:b: in use
>> [   81.377058] thunderbolt 0000:07:00.0: 303:b: DP OUT available
>> [   81.377320] thunderbolt 0000:07:00.0: in->port 13
>> [   81.377328] thunderbolt 0000:07:00.0: Tunnel 0
>>
>> First display in the chain fails clock recovery.
> 
> Okay, thanks for testing. I think at this point we need to look a what
> the Apple boot firmware actually configures for these paths. Can you
> drop my previous patch and apply the below? Then on both problematic
> systems boot up with the monitors connected and then send me dmesg.
> 
> If possible do this so that you have the chain connected to each port on
> the system. I'm hoping we find some pattern here ;-)
> 
> diff --git a/drivers/thunderbolt/path.c b/drivers/thunderbolt/path.c
> index 299712accfe9..ee03fd75a472 100644
> --- a/drivers/thunderbolt/path.c
> +++ b/drivers/thunderbolt/path.c
> @@ -166,6 +166,9 @@ struct tb_path *tb_path_discover(struct tb_port *src, int src_hopid,
>   		return NULL;
>   	}
>   
> +	tb_dbg(path->tb, "discovering %s path starting from %llx:%u\n",
> +	       path->name, tb_route(src->sw), src->port);
> +
>   	p = src;
>   	h = src_hopid;
>   
> @@ -198,10 +201,13 @@ struct tb_path *tb_path_discover(struct tb_port *src, int src_hopid,
>   		path->hops[i].out_port = out_port;
>   		path->hops[i].next_hop_index = next_hop;
>   
> +		tb_dump_hop(&path->hops[i], &hop);
> +
>   		h = next_hop;
>   		p = out_port->remote;
>   	}
>   
> +	tb_dbg(path->tb, "path discovery complete\n");
>   	return path;
>   
>   err:
> 

That I can do. I didn't crop or grep as I wasn't sure what might be additionally relevant.
2 machines, 2 ports, 4 cold boots. Each time just the Thnuderbolt displays chained.


MacBookPro - Front port :
[    0.000000] Linux version 5.17.0+ (brad@bklaptop) (gcc (Debian 8.3.0-6) 8.3.0, GNU ld (GNU Binutils for Debian) 2.31.1) #45 SMP PREEMPT_DYNAMIC Fri Apr 1 13:30:02 AWST 2022
[    0.000000] Command line: ro root=UUID=c500d66c-50ec-42a2-a333-eb48d6c9d97b thunderbolt.dyndbg initrd=boot\initrd.img-5.17.0+
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    0.000000] signal: max sigframe size: 1776
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000059000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000bffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000008ad0ffff] usable
[    0.000000] BIOS-e820: [mem 0x000000008ad10000-0x000000008ad52fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000008ad53000-0x000000008ad61fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008ad62000-0x000000008ad8efff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000008ad8f000-0x000000008ae38fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008ae39000-0x000000008ae8efff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008ae8f000-0x000000008aed1fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008aed2000-0x000000008aefefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008aeff000-0x000000008af83fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008af84000-0x000000008afeffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008aff0000-0x000000008affffff] usable
[    0.000000] BIOS-e820: [mem 0x000000008b000000-0x000000008f9fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffe10000-0x00000000ffe3ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000046f5fffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0x73d4c190-0x73d5c1cf] usable ==> usable
[    0.000000] e820: update [mem 0x73d4c190-0x73d5c1cf] usable ==> usable
[    0.000000] e820: update [mem 0x73d6f190-0x73d6fd98] usable ==> usable
[    0.000000] e820: update [mem 0x73d6f190-0x73d6fd98] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x0000000000057fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000000058000-0x0000000000058fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000059000-0x000000000008efff] usable
[    0.000000] reserve setup_data: [mem 0x000000000008f000-0x000000000008ffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000000a0000-0x00000000000bffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000073d4c18f] usable
[    0.000000] reserve setup_data: [mem 0x0000000073d4c190-0x0000000073d5c1cf] usable
[    0.000000] reserve setup_data: [mem 0x0000000073d5c1d0-0x0000000073d6f18f] usable
[    0.000000] reserve setup_data: [mem 0x0000000073d6f190-0x0000000073d6fd98] usable
[    0.000000] reserve setup_data: [mem 0x0000000073d6fd99-0x000000008ad0ffff] usable
[    0.000000] reserve setup_data: [mem 0x000000008ad10000-0x000000008ad52fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000008ad53000-0x000000008ad61fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008ad62000-0x000000008ad8efff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000008ad8f000-0x000000008ae38fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008ae39000-0x000000008ae8efff] reserved
[    0.000000] reserve setup_data: [mem 0x000000008ae8f000-0x000000008aed1fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008aed2000-0x000000008aefefff] reserved
[    0.000000] reserve setup_data: [mem 0x000000008aeff000-0x000000008af83fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008af84000-0x000000008afeffff] reserved
[    0.000000] reserve setup_data: [mem 0x000000008aff0000-0x000000008affffff] usable
[    0.000000] reserve setup_data: [mem 0x000000008b000000-0x000000008f9fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ffe10000-0x00000000ffe3ffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000046f5fffff] usable
[    0.000000] efi: EFI v1.10 by Apple
[    0.000000] efi: ACPI=0x8ad8e000 ACPI 2.0=0x8ad8e014 SMBIOS=0x8ad11000
[    0.000000] SMBIOS 2.4 present.
[    0.000000] DMI: Apple Inc. MacBookPro11,1/Mac-189A3D4F975D5FFC, BIOS 432.60.3.0.0 10/27/2021
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2599.997 MHz processor
[    0.000116] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000119] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000127] last_pfn = 0x46f600 max_arch_pfn = 0x400000000
[    0.000214] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT
[    0.001095] last_pfn = 0x8b000 max_arch_pfn = 0x400000000
[    0.001143] Using GB pages for direct mapping
[    0.001748] Secure boot disabled
[    0.001749] RAMDISK: [mem 0x7076e000-0x70e90fff]
[    0.001752] ACPI: Early table checksum verification disabled
[    0.001755] ACPI: RSDP 0x000000008AD8E014 000024 (v02 APPLE )
[    0.001759] ACPI: XSDT 0x000000008AD8E1C0 0000A4 (v01 APPLE  Apple00  00000000      01000013)
[    0.001764] ACPI: FACP 0x000000008AD8C000 0000F4 (v05 APPLE  Apple00  00000000 Loki 0000005F)
[    0.001769] ACPI: DSDT 0x000000008AD7F000 007681 (v03 APPLE  MacBookP 00110001 INTL 20100915)
[    0.001773] ACPI: FACS 0x000000008AD18000 000040
[    0.001775] ACPI: FACS 0x000000008AD18000 000040
[    0.001778] ACPI: HPET 0x000000008AD8B000 000038 (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.001781] ACPI: APIC 0x000000008AD8A000 0000BC (v02 APPLE  Apple00  00000001 Loki 0000005F)
[    0.001784] ACPI: SBST 0x000000008AD88000 000030 (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.001786] ACPI: ECDT 0x000000008AD87000 000053 (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.001789] ACPI: SSDT 0x000000008AD7E000 00010B (v01 APPLE  SataAhci 00001000 INTL 20100915)
[    0.001792] ACPI: SSDT 0x000000008AD7D000 000024 (v01 APPLE  SmcDppt  00001000 INTL 20100915)
[    0.001795] ACPI: SSDT 0x000000008AD7A000 000FE9 (v01 APPLE  SDUsbLpt 00001000 INTL 20100915)
[    0.001798] ACPI: SSDT 0x000000008AD76000 000032 (v01 APPLE  SsdtS3   00001000 INTL 20100915)
[    0.001801] ACPI: SSDT 0x000000008AD73000 0028B2 (v01 APPLE  PcieTbt  00001000 INTL 20100915)
[    0.001804] ACPI: SSDT 0x000000008AD66000 0000B8 (v01 APPLE  Sdxc     00001000 INTL 20100915)
[    0.001807] ACPI: SSDT 0x000000008AD65000 0003E0 (v01 APPLE  SaHdaCdc 00001000 INTL 20100915)
[    0.001810] ACPI: SSDT 0x000000008AD64000 000594 (v01 PmRef  Cpu0Ist  00003000 INTL 20100915)
[    0.001813] ACPI: SSDT 0x000000008AD63000 000B83 (v01 PmRef  CpuPm    00003000 INTL 20100915)
[    0.001817] ACPI: DMAR 0x000000008AD62000 000088 (v01 APPLE  HSW      00000001 AAPL 00000001)
[    0.001820] ACPI: MCFG 0x000000008AD89000 00003C (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.001822] ACPI: Reserving FACP table memory at [mem 0x8ad8c000-0x8ad8c0f3]
[    0.001824] ACPI: Reserving DSDT table memory at [mem 0x8ad7f000-0x8ad86680]
[    0.001825] ACPI: Reserving FACS table memory at [mem 0x8ad18000-0x8ad1803f]
[    0.001827] ACPI: Reserving FACS table memory at [mem 0x8ad18000-0x8ad1803f]
[    0.001828] ACPI: Reserving HPET table memory at [mem 0x8ad8b000-0x8ad8b037]
[    0.001829] ACPI: Reserving APIC table memory at [mem 0x8ad8a000-0x8ad8a0bb]
[    0.001830] ACPI: Reserving SBST table memory at [mem 0x8ad88000-0x8ad8802f]
[    0.001831] ACPI: Reserving ECDT table memory at [mem 0x8ad87000-0x8ad87052]
[    0.001832] ACPI: Reserving SSDT table memory at [mem 0x8ad7e000-0x8ad7e10a]
[    0.001834] ACPI: Reserving SSDT table memory at [mem 0x8ad7d000-0x8ad7d023]
[    0.001835] ACPI: Reserving SSDT table memory at [mem 0x8ad7a000-0x8ad7afe8]
[    0.001836] ACPI: Reserving SSDT table memory at [mem 0x8ad76000-0x8ad76031]
[    0.001837] ACPI: Reserving SSDT table memory at [mem 0x8ad73000-0x8ad758b1]
[    0.001838] ACPI: Reserving SSDT table memory at [mem 0x8ad66000-0x8ad660b7]
[    0.001839] ACPI: Reserving SSDT table memory at [mem 0x8ad65000-0x8ad653df]
[    0.001841] ACPI: Reserving SSDT table memory at [mem 0x8ad64000-0x8ad64593]
[    0.001842] ACPI: Reserving SSDT table memory at [mem 0x8ad63000-0x8ad63b82]
[    0.001843] ACPI: Reserving DMAR table memory at [mem 0x8ad62000-0x8ad62087]
[    0.001844] ACPI: Reserving MCFG table memory at [mem 0x8ad89000-0x8ad8903b]
[    0.001851] ACPI: DMI detected to setup _OSI("Darwin"): Apple hardware
[    0.001872] Zone ranges:
[    0.001872]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.001875]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.001876]   Normal   [mem 0x0000000100000000-0x000000046f5fffff]
[    0.001878] Movable zone start for each node
[    0.001879] Early memory node ranges
[    0.001880]   node   0: [mem 0x0000000000001000-0x0000000000057fff]
[    0.001881]   node   0: [mem 0x0000000000059000-0x000000000008efff]
[    0.001883]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.001884]   node   0: [mem 0x0000000000100000-0x000000008ad0ffff]
[    0.001885]   node   0: [mem 0x000000008ad53000-0x000000008ad61fff]
[    0.001886]   node   0: [mem 0x000000008ad8f000-0x000000008ae38fff]
[    0.001887]   node   0: [mem 0x000000008ae8f000-0x000000008aed1fff]
[    0.001888]   node   0: [mem 0x000000008aeff000-0x000000008af83fff]
[    0.001889]   node   0: [mem 0x000000008aff0000-0x000000008affffff]
[    0.001890]   node   0: [mem 0x0000000100000000-0x000000046f5fffff]
[    0.001892] Initmem setup node 0 [mem 0x0000000000001000-0x000000046f5fffff]
[    0.001896] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.001898] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.001899] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.001924] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.005692] On node 0, zone DMA32: 67 pages in unavailable ranges
[    0.005697] On node 0, zone DMA32: 45 pages in unavailable ranges
[    0.005700] On node 0, zone DMA32: 86 pages in unavailable ranges
[    0.005702] On node 0, zone DMA32: 45 pages in unavailable ranges
[    0.005704] On node 0, zone DMA32: 108 pages in unavailable ranges
[    0.029854] On node 0, zone Normal: 20480 pages in unavailable ranges
[    0.029882] On node 0, zone Normal: 2560 pages in unavailable ranges
[    0.029890] Reserving Intel graphics memory at [mem 0x8ba00000-0x8f9fffff]
[    0.030010] ACPI: PM-Timer IO Port: 0x1808
[    0.030017] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.030019] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.030020] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.030021] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.030022] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.030023] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.030024] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.030025] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.030035] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-39
[    0.030038] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.030040] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.030044] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.030045] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.030048] TSC deadline timer available
[    0.030050] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.030070] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.030073] PM: hibernation: Registered nosave memory: [mem 0x00058000-0x00058fff]
[    0.030075] PM: hibernation: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    0.030078] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000bffff]
[    0.030079] PM: hibernation: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[    0.030081] PM: hibernation: Registered nosave memory: [mem 0x73d4c000-0x73d4cfff]
[    0.030083] PM: hibernation: Registered nosave memory: [mem 0x73d5c000-0x73d5cfff]
[    0.030085] PM: hibernation: Registered nosave memory: [mem 0x73d6f000-0x73d6ffff]
[    0.030087] PM: hibernation: Registered nosave memory: [mem 0x73d6f000-0x73d6ffff]
[    0.030089] PM: hibernation: Registered nosave memory: [mem 0x8ad10000-0x8ad52fff]
[    0.030091] PM: hibernation: Registered nosave memory: [mem 0x8ad62000-0x8ad8efff]
[    0.030093] PM: hibernation: Registered nosave memory: [mem 0x8ae39000-0x8ae8efff]
[    0.030096] PM: hibernation: Registered nosave memory: [mem 0x8aed2000-0x8aefefff]
[    0.030098] PM: hibernation: Registered nosave memory: [mem 0x8af84000-0x8afeffff]
[    0.030100] PM: hibernation: Registered nosave memory: [mem 0x8b000000-0x8f9fffff]
[    0.030101] PM: hibernation: Registered nosave memory: [mem 0x8fa00000-0xe00f7fff]
[    0.030102] PM: hibernation: Registered nosave memory: [mem 0xe00f8000-0xe00f8fff]
[    0.030103] PM: hibernation: Registered nosave memory: [mem 0xe00f9000-0xfed1bfff]
[    0.030104] PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.030105] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xffe0ffff]
[    0.030106] PM: hibernation: Registered nosave memory: [mem 0xffe10000-0xffe3ffff]
[    0.030107] PM: hibernation: Registered nosave memory: [mem 0xffe40000-0xffffffff]
[    0.030109] [mem 0x8fa00000-0xe00f7fff] available for PCI devices
[    0.030113] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.030119] setup_percpu: NR_CPUS:4 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[    0.030300] percpu: Embedded 52 pages/cpu s173096 r8192 d31704 u524288
[    0.030309] pcpu-alloc: s173096 r8192 d31704 u524288 alloc=1*2097152
[    0.030311] pcpu-alloc: [0] 0 1 2 3
[    0.030333] Built 1 zonelists, mobility grouping on.  Total pages: 4105486
[    0.030335] Kernel command line: ro root=UUID=c500d66c-50ec-42a2-a333-eb48d6c9d97b thunderbolt.dyndbg initrd=boot\initrd.img-5.17.0+
[    0.031200] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.031615] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.031655] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.079682] Memory: 15923600K/16683256K available (10248K kernel code, 2251K rwdata, 2740K rodata, 996K init, 740K bss, 759396K reserved, 0K cma-reserved)
[    0.079713] random: get_random_u64 called from cache_random_seq_create+0x63/0x150 with crng_init=0
[    0.079780] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.080413] Dynamic Preempt: voluntary
[    0.080438] rcu: Preemptible hierarchical RCU implementation.
[    0.080440] 	Trampoline variant of Tasks RCU enabled.
[    0.080441] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[    0.081406] NR_IRQS: 4352, nr_irqs: 728, preallocated irqs: 16
[    0.081630] Console: colour dummy device 80x25
[    0.081958] printk: console [tty0] enabled
[    0.081968] ACPI: Core revision 20211217
[    0.082065] hpet: HPET dysfunctional in PC10. Force disabled.
[    0.082068] APIC: Switch to symmetric I/O mode setup
[    0.082071] DMAR: Host address width 39
[    0.082073] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[    0.082080] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap c0000020660462 ecap f0101a
[    0.082084] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[    0.082090] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008020660462 ecap f010da
[    0.082093] DMAR: RMRR base: 0x0000008b800000 end: 0x0000008f9fffff
[    0.082097] DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
[    0.082100] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[    0.082698] DMAR-IR: Enabled IRQ remapping in xapic mode
[    0.083185] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x257a391c223, max_idle_ns: 440795220104 ns
[    0.083195] Calibrating delay loop (skipped), value calculated using timer frequency.. 5199.99 BogoMIPS (lpj=25999970)
[    0.083200] pid_max: default: 32768 minimum: 301
[    0.093191] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.093191] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.093191] CPU0: Thermal monitoring enabled (TM1)
[    0.093191] process: using mwait in idle threads
[    0.093191] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
[    0.093191] Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
[    0.093191] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.093191] Spectre V2 : Kernel not compiled with retpoline; no mitigation available!
[    0.093191] Spectre V2 : Vulnerable
[    0.093191] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.093191] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    0.093191] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.093191] Spectre V2 : User space: Mitigation: STIBP via prctl
[    0.093191] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.093191] SRBDS: Mitigation: Microcode
[    0.093191] MDS: Mitigation: Clear CPU buffers
[    0.093191] Freeing SMP alternatives memory: 28K
[    0.093191] smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 1220
[    0.093191] smpboot: CPU0: Intel(R) Core(TM) i5-4278U CPU @ 2.60GHz (family: 0x6, model: 0x45, stepping: 0x1)
[    0.093191] cblist_init_generic: Setting adjustable number of callback queues.
[    0.093191] cblist_init_generic: Setting shift to 2 and lim to 1.
[    0.093191] Performance Events: PEBS fmt2+, Haswell events, 16-deep LBR, full-width counters, Intel PMU driver.
[    0.093191] ... version:                3
[    0.093191] ... bit width:              48
[    0.093191] ... generic registers:      4
[    0.093191] ... value mask:             0000ffffffffffff
[    0.093191] ... max period:             00007fffffffffff
[    0.093191] ... fixed-purpose events:   3
[    0.093191] ... event mask:             000000070000000f
[    0.093191] rcu: Hierarchical SRCU implementation.
[    0.093191] smp: Bringing up secondary CPUs ...
[    0.093191] x86: Booting SMP configuration:
[    0.093191] .... node  #0, CPUs:      #1 #2
[    0.093191] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[    0.093191]  #3
[    0.093191] smp: Brought up 1 node, 4 CPUs
[    0.093191] smpboot: Max logical packages: 1
[    0.093191] smpboot: Total of 4 processors activated (20799.97 BogoMIPS)
[    0.093191] devtmpfs: initialized
[    0.093191] ACPI: PM: Registering ACPI NVS region [mem 0x8ad10000-0x8ad52fff] (274432 bytes)
[    0.093191] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.093191] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.093191] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.093191] thermal_sys: Registered thermal governor 'step_wise'
[    0.093191] thermal_sys: Registered thermal governor 'user_space'
[    0.093191] cpuidle: using governor ladder
[    0.093191] cpuidle: using governor menu
[    0.093191] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.093191] PCI: MMCONFIG for domain 0000 [bus 00-9b] at [mem 0xe0000000-0xe9bfffff] (base 0xe0000000)
[    0.093191] PCI: not using MMCONFIG
[    0.093191] PCI: Using configuration type 1 for base access
[    0.093191] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[    0.093191] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.093191] cryptd: max_cpu_qlen set to 1000
[    0.093191] ACPI: Disabled all _OSI OS vendors
[    0.093191] ACPI: Added _OSI(Module Device)
[    0.093191] ACPI: Added _OSI(Processor Device)
[    0.093191] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.093191] ACPI: Added _OSI(Processor Aggregator Device)
[    0.093191] ACPI: Added _OSI(Linux-Dell-Video)
[    0.093191] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.093191] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.093191] ACPI: Added _OSI(Darwin)
[    0.094987] ACPI: 10 ACPI AML tables successfully acquired and loaded
[    0.095354] ACPI: EC: EC started
[    0.095356] ACPI: EC: interrupt blocked
[    0.096435] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.096439] ACPI: EC: Boot ECDT EC used to handle transactions
[    0.096622] ACPI: BIOS _OSI(Darwin) query honored via DMI
[    0.096936] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.096973] ACPI Error: Needed type [Reference], found [Integer] 0000000035db64a3 (20211217/exresop-69)
[    0.096973] ACPI Error: AE_AML_OPERAND_TYPE, While resolving operands for [OpcodeName unavailable] (20211217/dswexec-434)
[    0.096973] ACPI Error: Aborting method \_PR.CPU0._PDC due to previous error (AE_AML_OPERAND_TYPE) (20211217/psparse-531)
[    0.096973] ACPI: Dynamic OEM Table Load:
[    0.096973] ACPI: SSDT 0xFFFFA0DE40AF7800 00067C (v01 PmRef  ApIst    00003000 INTL 20100915)
[    0.096973] ACPI: Dynamic OEM Table Load:
[    0.096973] ACPI: SSDT 0xFFFFA0DE40C8F600 000119 (v01 PmRef  ApCst    00003000 INTL 20100915)
[    0.096973] ACPI: Interpreter enabled
[    0.096973] ACPI: PM: (supports S0 S3 S4 S5)
[    0.096973] ACPI: Using IOAPIC for interrupt routing
[    0.096973] PCI: MMCONFIG for domain 0000 [bus 00-9b] at [mem 0xe0000000-0xe9bfffff] (base 0xe0000000)
[    0.096973] PCI: MMCONFIG at [mem 0xe0000000-0xe9bfffff] reserved in ACPI motherboard resources
[    0.096973] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.096973] ACPI: Enabled 4 GPEs in block 00 to 7F
[    0.106802] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.106809] acpi PNP0A08:00: _OSC: OS assumes control of [PCIeHotplug SHPCHotplug AER PCIeCapability LTR DPC]
[    0.106815] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-9b] only partially covers this bridge
[    0.106971] PCI host bridge to bus 0000:00
[    0.106975] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.106978] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.106981] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000fffff window]
[    0.106984] pci_bus 0000:00: root bus resource [mem 0x8fa00000-0xfeafffff window]
[    0.106987] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff window]
[    0.106990] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.107001] pci 0000:00:00.0: [8086:0a04] type 00 class 0x060000
[    0.107079] pci 0000:00:02.0: [8086:0a2e] type 00 class 0x030000
[    0.107089] pci 0000:00:02.0: reg 0x10: [mem 0xb0000000-0xb03fffff 64bit]
[    0.107096] pci 0000:00:02.0: reg 0x18: [mem 0xa0000000-0xafffffff 64bit pref]
[    0.107101] pci 0000:00:02.0: reg 0x20: [io  0x2000-0x203f]
[    0.107113] pci 0000:00:02.0: BAR 2: assigned to efifb
[    0.107117] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.107206] pci 0000:00:03.0: [8086:0a0c] type 00 class 0x040300
[    0.107215] pci 0000:00:03.0: reg 0x10: [mem 0xb0c10000-0xb0c13fff 64bit]
[    0.107330] pci 0000:00:14.0: [8086:9c31] type 00 class 0x0c0330
[    0.107346] pci 0000:00:14.0: reg 0x10: [mem 0xb0c00000-0xb0c0ffff 64bit]
[    0.107396] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.107578] pci 0000:00:16.0: [8086:9c3a] type 00 class 0x078000
[    0.107597] pci 0000:00:16.0: reg 0x10: [mem 0xb0c2a100-0xb0c2a11f 64bit]
[    0.107657] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.107709] pci 0000:00:1b.0: [8086:9c20] type 00 class 0x040300
[    0.107724] pci 0000:00:1b.0: reg 0x10: [mem 0xb0c14000-0xb0c17fff 64bit]
[    0.107785] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.107843] pci 0000:00:1c.0: [8086:9c10] type 01 class 0x060400
[    0.107902] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.107919] pci 0000:00:1c.0: Enabling MPC IRBNCE
[    0.107922] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled
[    0.108013] pci 0000:00:1c.1: [8086:9c12] type 01 class 0x060400
[    0.108079] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.108096] pci 0000:00:1c.1: Enabling MPC IRBNCE
[    0.108098] pci 0000:00:1c.1: Intel PCH root port ACS workaround enabled
[    0.108189] pci 0000:00:1c.2: [8086:9c14] type 01 class 0x060400
[    0.108255] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.108271] pci 0000:00:1c.2: Enabling MPC IRBNCE
[    0.108274] pci 0000:00:1c.2: Intel PCH root port ACS workaround enabled
[    0.108361] pci 0000:00:1c.4: [8086:9c18] type 01 class 0x060400
[    0.108427] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.108443] pci 0000:00:1c.4: Enabling MPC IRBNCE
[    0.108446] pci 0000:00:1c.4: Intel PCH root port ACS workaround enabled
[    0.108540] pci 0000:00:1c.5: [8086:9c1a] type 01 class 0x060400
[    0.108606] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
[    0.108622] pci 0000:00:1c.5: Enabling MPC IRBNCE
[    0.108625] pci 0000:00:1c.5: Intel PCH root port ACS workaround enabled
[    0.108718] pci 0000:00:1f.0: [8086:9c43] type 00 class 0x060100
[    0.108867] pci 0000:00:1f.3: [8086:9c22] type 00 class 0x0c0500
[    0.108882] pci 0000:00:1f.3: reg 0x10: [mem 0xb0c2a000-0xb0c2a0ff 64bit]
[    0.108901] pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
[    0.108983] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.109043] pci 0000:02:00.0: [14e4:1570] type 00 class 0x048000
[    0.109066] pci 0000:02:00.0: reg 0x10: [mem 0xb0b00000-0xb0b0ffff 64bit]
[    0.109082] pci 0000:02:00.0: reg 0x18: [mem 0x90000000-0x9fffffff 64bit pref]
[    0.109098] pci 0000:02:00.0: reg 0x20: [mem 0xb0a00000-0xb0afffff 64bit]
[    0.109191] pci 0000:02:00.0: supports D1
[    0.109194] pci 0000:02:00.0: PME# supported from D0 D3hot
[    0.109297] pci 0000:00:1c.1: PCI bridge to [bus 02]
[    0.109302] pci 0000:00:1c.1:   bridge window [mem 0xb0a00000-0xb0bfffff]
[    0.109308] pci 0000:00:1c.1:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.109366] pci 0000:03:00.0: [14e4:43ba] type 00 class 0x028000
[    0.109389] pci 0000:03:00.0: reg 0x10: [mem 0xb0800000-0xb0807fff 64bit]
[    0.109404] pci 0000:03:00.0: reg 0x18: [mem 0xb0400000-0xb07fffff 64bit]
[    0.109525] pci 0000:03:00.0: supports D1 D2
[    0.109527] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.109668] pci 0000:00:1c.2: PCI bridge to [bus 03]
[    0.109674] pci 0000:00:1c.2:   bridge window [mem 0xb0400000-0xb08fffff]
[    0.109738] pci 0000:05:00.0: [8086:156d] type 01 class 0x060400
[    0.109792] pci 0000:05:00.0: enabling Extended Tags
[    0.109874] pci 0000:05:00.0: supports D1 D2
[    0.109876] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.133220] pci 0000:00:1c.4: PCI bridge to [bus 05-6b]
[    0.133226] pci 0000:00:1c.4:   bridge window [io  0x3000-0x5fff]
[    0.133230] pci 0000:00:1c.4:   bridge window [mem 0xb0d00000-0xbd1fffff]
[    0.133235] pci 0000:00:1c.4:   bridge window [mem 0xbd200000-0xc93fffff 64bit pref]
[    0.133339] pci 0000:06:00.0: [8086:156d] type 01 class 0x060400
[    0.133397] pci 0000:06:00.0: enabling Extended Tags
[    0.133481] pci 0000:06:00.0: supports D1 D2
[    0.133483] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.133594] pci 0000:06:03.0: [8086:156d] type 01 class 0x060400
[    0.133651] pci 0000:06:03.0: enabling Extended Tags
[    0.133734] pci 0000:06:03.0: supports D1 D2
[    0.133736] pci 0000:06:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.133844] pci 0000:06:04.0: [8086:156d] type 01 class 0x060400
[    0.133894] pci 0000:06:04.0: enabling Extended Tags
[    0.133981] pci 0000:06:04.0: supports D1 D2
[    0.133983] pci 0000:06:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.134086] pci 0000:06:05.0: [8086:156d] type 01 class 0x060400
[    0.134136] pci 0000:06:05.0: enabling Extended Tags
[    0.134222] pci 0000:06:05.0: supports D1 D2
[    0.134224] pci 0000:06:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.134328] pci 0000:06:06.0: [8086:156d] type 01 class 0x060400
[    0.134377] pci 0000:06:06.0: enabling Extended Tags
[    0.134463] pci 0000:06:06.0: supports D1 D2
[    0.134465] pci 0000:06:06.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.134575] pci 0000:05:00.0: PCI bridge to [bus 06-6b]
[    0.134582] pci 0000:05:00.0:   bridge window [io  0x3000-0x4fff]
[    0.134587] pci 0000:05:00.0:   bridge window [mem 0xb0d00000-0xb91fffff]
[    0.134594] pci 0000:05:00.0:   bridge window [mem 0xbd200000-0xc53fffff 64bit pref]
[    0.134671] pci 0000:07:00.0: [8086:156c] type 00 class 0x088000
[    0.134694] pci 0000:07:00.0: reg 0x10: [mem 0xb0d00000-0xb0d3ffff]
[    0.134708] pci 0000:07:00.0: reg 0x14: [mem 0xb0d40000-0xb0d40fff]
[    0.134774] pci 0000:07:00.0: enabling Extended Tags
[    0.134886] pci 0000:07:00.0: supports D1 D2
[    0.134888] pci 0000:07:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.163228] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.163240] pci 0000:06:00.0:   bridge window [mem 0xb0d00000-0xb0dfffff]
[    0.163358] pci 0000:08:00.0: [8086:1513] type 01 class 0x060400
[    0.163462] pci 0000:08:00.0: enabling Extended Tags
[    0.163616] pci 0000:08:00.0: supports D1 D2
[    0.163619] pci 0000:08:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.193227] pci 0000:06:03.0: PCI bridge to [bus 08-38]
[    0.193236] pci 0000:06:03.0:   bridge window [io  0x3000-0x3fff]
[    0.193241] pci 0000:06:03.0:   bridge window [mem 0xb0e00000-0xb51fffff]
[    0.193248] pci 0000:06:03.0:   bridge window [mem 0xbd200000-0xc13fffff 64bit pref]
[    0.193339] acpiphp: Slot [1] registered
[    0.193363] acpiphp: Slot [2] registered
[    0.193387] acpiphp: Slot [3] registered
[    0.193410] acpiphp: Slot [4] registered
[    0.193433] acpiphp: Slot [5] registered
[    0.193488] pci 0000:09:00.0: [8086:1513] type 01 class 0x060400
[    0.193597] pci 0000:09:00.0: enabling Extended Tags
[    0.193756] pci 0000:09:00.0: supports D1 D2
[    0.193758] pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.193930] pci 0000:09:01.0: [8086:1513] type 01 class 0x060400
[    0.194039] pci 0000:09:01.0: enabling Extended Tags
[    0.194197] pci 0000:09:01.0: supports D1 D2
[    0.194199] pci 0000:09:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.194353] pci 0000:09:02.0: [8086:1513] type 01 class 0x060400
[    0.194462] pci 0000:09:02.0: enabling Extended Tags
[    0.194620] pci 0000:09:02.0: supports D1 D2
[    0.194622] pci 0000:09:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.194781] pci 0000:09:04.0: [8086:1513] type 01 class 0x060400
[    0.194890] pci 0000:09:04.0: enabling Extended Tags
[    0.195050] pci 0000:09:04.0: supports D1 D2
[    0.195052] pci 0000:09:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.195225] pci 0000:09:05.0: [8086:1513] type 01 class 0x060400
[    0.195320] pci 0000:09:05.0: enabling Extended Tags
[    0.195480] pci 0000:09:05.0: supports D1 D2
[    0.195482] pci 0000:09:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.195670] pci 0000:08:00.0: PCI bridge to [bus 09-18]
[    0.195688] pci 0000:08:00.0:   bridge window [mem 0xb0e00000-0xb11fffff]
[    0.195700] pci 0000:08:00.0:   bridge window [mem 0xbd200000-0xbd3fffff 64bit pref]
[    0.195792] acpiphp: Slot [1-1] registered
[    0.195850] pci 0000:0a:00.0: [12d8:400c] type 01 class 0x060400
[    0.196205] pci 0000:0a:00.0: supports D1 D2
[    0.196207] pci 0000:0a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.223234] pci 0000:09:00.0: PCI bridge to [bus 0a-0c]
[    0.223252] pci 0000:09:00.0:   bridge window [mem 0xb1100000-0xb11fffff]
[    0.223425] pci 0000:0b:03.0: [12d8:400c] type 01 class 0x060400
[    0.223734] pci 0000:0b:03.0: supports D1 D2
[    0.223736] pci 0000:0b:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.223930] pci 0000:0a:00.0: PCI bridge to [bus 0b-0c]
[    0.223953] pci 0000:0a:00.0:   bridge window [mem 0xb1100000-0xb11fffff]
[    0.224110] pci 0000:0c:00.0: [12d8:400e] type 00 class 0x0c0310
[    0.224158] pci 0000:0c:00.0: reg 0x10: [mem 0xb1101000-0xb1101fff]
[    0.224446] pci 0000:0c:00.0: supports D1 D2
[    0.224448] pci 0000:0c:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.224597] pci 0000:0c:00.1: [12d8:400e] type 00 class 0x0c0310
[    0.224644] pci 0000:0c:00.1: reg 0x10: [mem 0xb1100000-0xb1100fff]
[    0.224932] pci 0000:0c:00.1: supports D1 D2
[    0.224934] pci 0000:0c:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.225059] pci 0000:0c:00.2: [12d8:400f] type 00 class 0x0c0320
[    0.225106] pci 0000:0c:00.2: reg 0x10: [mem 0xb1102000-0xb11020ff]
[    0.225393] pci 0000:0c:00.2: supports D1 D2
[    0.225395] pci 0000:0c:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.225635] pci 0000:0b:03.0: PCI bridge to [bus 0c]
[    0.225658] pci 0000:0b:03.0:   bridge window [mem 0xb1100000-0xb11fffff]
[    0.225820] pci 0000:0d:00.0: [14e4:16b0] type 00 class 0x020000
[    0.225883] pci 0000:0d:00.0: reg 0x10: [mem 0xbd300000-0xbd30ffff 64bit pref]
[    0.225926] pci 0000:0d:00.0: reg 0x18: [mem 0xbd310000-0xbd31ffff 64bit pref]
[    0.226236] pci 0000:0d:00.0: PME# supported from D0 D3hot D3cold
[    0.253249] pci 0000:09:01.0: PCI bridge to [bus 0d]
[    0.253277] pci 0000:09:01.0:   bridge window [mem 0xbd300000-0xbd3fffff 64bit pref]
[    0.253388] pci 0000:0e:00.0: [11c1:5901] type 00 class 0x0c0010
[    0.253452] pci 0000:0e:00.0: reg 0x10: [mem 0xb1000000-0xb1000fff 64bit]
[    0.253777] pci 0000:0e:00.0: supports D1 D2
[    0.253779] pci 0000:0e:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.283249] pci 0000:09:02.0: PCI bridge to [bus 0e]
[    0.283266] pci 0000:09:02.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.283441] pci 0000:0f:00.0: [8086:1513] type 01 class 0x060400
[    0.283599] pci 0000:0f:00.0: enabling Extended Tags
[    0.283835] pci 0000:0f:00.0: supports D1 D2
[    0.283837] pci 0000:0f:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.313239] pci 0000:09:04.0: PCI bridge to [bus 0f-17]
[    0.313257] pci 0000:09:04.0:   bridge window [mem 0xb0e00000-0xb0ffffff]
[    0.313270] pci 0000:09:04.0:   bridge window [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.313392] acpiphp: Slot [1-2] registered
[    0.313418] acpiphp: Slot [2-1] registered
[    0.313444] acpiphp: Slot [3-1] registered
[    0.313469] acpiphp: Slot [4-1] registered
[    0.313551] pci 0000:10:00.0: [8086:1513] type 01 class 0x060400
[    0.313716] pci 0000:10:00.0: enabling Extended Tags
[    0.313956] pci 0000:10:00.0: supports D1 D2
[    0.313959] pci 0000:10:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.314200] pci 0000:10:01.0: [8086:1513] type 01 class 0x060400
[    0.314365] pci 0000:10:01.0: enabling Extended Tags
[    0.314605] pci 0000:10:01.0: supports D1 D2
[    0.314607] pci 0000:10:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.314831] pci 0000:10:02.0: [8086:1513] type 01 class 0x060400
[    0.314995] pci 0000:10:02.0: enabling Extended Tags
[    0.315235] pci 0000:10:02.0: supports D1 D2
[    0.315237] pci 0000:10:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.315467] pci 0000:10:04.0: [8086:1513] type 01 class 0x060400
[    0.315608] pci 0000:10:04.0: enabling Extended Tags
[    0.315851] pci 0000:10:04.0: supports D1 D2
[    0.315853] pci 0000:10:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.316098] pci 0000:10:05.0: [8086:1513] type 01 class 0x060400
[    0.316240] pci 0000:10:05.0: enabling Extended Tags
[    0.316483] pci 0000:10:05.0: supports D1 D2
[    0.316485] pci 0000:10:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.316757] pci 0000:0f:00.0: PCI bridge to [bus 10-17]
[    0.316782] pci 0000:0f:00.0:   bridge window [mem 0xb0e00000-0xb0ffffff]
[    0.316800] pci 0000:0f:00.0:   bridge window [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.316917] acpiphp: Slot [1-3] registered
[    0.316995] pci 0000:11:00.0: [12d8:400c] type 01 class 0x060400
[    0.317482] pci 0000:11:00.0: supports D1 D2
[    0.317484] pci 0000:11:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.317767] pci 0000:10:00.0: PCI bridge to [bus 11-13]
[    0.317792] pci 0000:10:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.318026] pci 0000:12:03.0: [12d8:400c] type 01 class 0x060400
[    0.318447] pci 0000:12:03.0: supports D1 D2
[    0.318449] pci 0000:12:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.318704] pci 0000:11:00.0: PCI bridge to [bus 12-13]
[    0.318735] pci 0000:11:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.318947] pci 0000:13:00.0: [12d8:400e] type 00 class 0x0c0310
[    0.319011] pci 0000:13:00.0: reg 0x10: [mem 0xb0f01000-0xb0f01fff]
[    0.319404] pci 0000:13:00.0: supports D1 D2
[    0.319406] pci 0000:13:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.319607] pci 0000:13:00.1: [12d8:400e] type 00 class 0x0c0310
[    0.319671] pci 0000:13:00.1: reg 0x10: [mem 0xb0f00000-0xb0f00fff]
[    0.320064] pci 0000:13:00.1: supports D1 D2
[    0.320067] pci 0000:13:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.320227] pci 0000:13:00.2: [12d8:400f] type 00 class 0x0c0320
[    0.320291] pci 0000:13:00.2: reg 0x10: [mem 0xb0f02000-0xb0f020ff]
[    0.320684] pci 0000:13:00.2: supports D1 D2
[    0.320686] pci 0000:13:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.321021] pci 0000:12:03.0: PCI bridge to [bus 13]
[    0.321051] pci 0000:12:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.321276] pci 0000:14:00.0: [14e4:16b0] type 00 class 0x020000
[    0.321362] pci 0000:14:00.0: reg 0x10: [mem 0xbd200000-0xbd20ffff 64bit pref]
[    0.321419] pci 0000:14:00.0: reg 0x18: [mem 0xbd210000-0xbd21ffff 64bit pref]
[    0.321844] pci 0000:14:00.0: PME# supported from D0 D3hot D3cold
[    0.322161] pci 0000:10:01.0: PCI bridge to [bus 14]
[    0.322201] pci 0000:10:01.0:   bridge window [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.322355] pci 0000:15:00.0: [11c1:5901] type 00 class 0x0c0010
[    0.322441] pci 0000:15:00.0: reg 0x10: [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.322881] pci 0000:15:00.0: supports D1 D2
[    0.322883] pci 0000:15:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.323176] pci 0000:10:02.0: PCI bridge to [bus 15]
[    0.323201] pci 0000:10:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.323340] pci 0000:10:04.0: PCI bridge to [bus 16]
[    0.323473] pci 0000:10:05.0: PCI bridge to [bus 17]
[    0.323675] pci 0000:09:05.0: PCI bridge to [bus 18]
[    0.323824] pci 0000:06:04.0: PCI bridge to [bus 39]
[    0.323894] pci 0000:06:05.0: PCI bridge to [bus 3a-6a]
[    0.323901] pci 0000:06:05.0:   bridge window [io  0x4000-0x4fff]
[    0.323906] pci 0000:06:05.0:   bridge window [mem 0xb5200000-0xb91fffff]
[    0.323914] pci 0000:06:05.0:   bridge window [mem 0xc1400000-0xc53fffff 64bit pref]
[    0.323956] pci 0000:06:06.0: PCI bridge to [bus 6b]
[    0.324055] pci 0000:04:00.0: [1c5c:174a] type 00 class 0x010802
[    0.324080] pci 0000:04:00.0: reg 0x10: [mem 0xb0900000-0xb0903fff 64bit]
[    0.324091] pci 0000:04:00.0: reg 0x18: [mem 0xb0905000-0xb0905fff]
[    0.324102] pci 0000:04:00.0: reg 0x1c: [mem 0xb0904000-0xb0904fff]
[    0.324252] pci 0000:04:00.0: 16.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x4 link at 0000:00:1c.5 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
[    0.324456] pci 0000:00:1c.5: PCI bridge to [bus 04]
[    0.324462] pci 0000:00:1c.5:   bridge window [mem 0xb0900000-0xb09fffff]
[    0.324486] pci_bus 0000:00: on NUMA node 0
[    0.325225] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    0.325229] ACPI: PCI: Interrupt link LNKA disabled
[    0.325263] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    0.325265] ACPI: PCI: Interrupt link LNKB disabled
[    0.325296] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    0.325299] ACPI: PCI: Interrupt link LNKC disabled
[    0.325330] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    0.325332] ACPI: PCI: Interrupt link LNKD disabled
[    0.325363] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    0.325365] ACPI: PCI: Interrupt link LNKE disabled
[    0.325396] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    0.325399] ACPI: PCI: Interrupt link LNKF disabled
[    0.325431] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    0.325433] ACPI: PCI: Interrupt link LNKG disabled
[    0.325464] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    0.325466] ACPI: PCI: Interrupt link LNKH disabled
[    0.325615] ACPI: EC: interrupt unblocked
[    0.325618] ACPI: EC: event unblocked
[    0.325627] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.325630] ACPI: EC: GPE=0x4e
[    0.325633] ACPI: \_SB_.PCI0.LPCB.EC__: Boot ECDT EC initialization complete
[    0.325638] ACPI: \_SB_.PCI0.LPCB.EC__: EC: Used to handle transactions and events
[    0.325693] iommu: Default domain type: Translated
[    0.325695] iommu: DMA domain TLB invalidation policy: lazy mode
[    0.325738] SCSI subsystem initialized
[    0.325745] libata version 3.00 loaded.
[    0.325803] Registered efivars operations
[    0.325906] PCI: Using ACPI for IRQ routing
[    0.331085] PCI: pci_cache_line_size set to 64 bytes
[    0.331332] e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
[    0.331334] e820: reserve RAM buffer [mem 0x0008f000-0x0008ffff]
[    0.331336] e820: reserve RAM buffer [mem 0x73d4c190-0x73ffffff]
[    0.331337] e820: reserve RAM buffer [mem 0x73d6f190-0x73ffffff]
[    0.331338] e820: reserve RAM buffer [mem 0x8ad10000-0x8bffffff]
[    0.331340] e820: reserve RAM buffer [mem 0x8ad62000-0x8bffffff]
[    0.331341] e820: reserve RAM buffer [mem 0x8ae39000-0x8bffffff]
[    0.331343] e820: reserve RAM buffer [mem 0x8aed2000-0x8bffffff]
[    0.331344] e820: reserve RAM buffer [mem 0x8af84000-0x8bffffff]
[    0.331345] e820: reserve RAM buffer [mem 0x8b000000-0x8bffffff]
[    0.331346] e820: reserve RAM buffer [mem 0x46f600000-0x46fffffff]
[    0.331359] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.331359] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.331359] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.331359] vgaarb: loaded
[    0.331359] clocksource: Switched to clocksource tsc-early
[    0.331359] pnp: PnP ACPI init
[    0.331359] system 00:00: [mem 0xfed00000-0xfed03fff] has been reserved
[    0.331359] system 00:01: [io  0xffff] has been reserved
[    0.331359] system 00:01: [io  0x1800-0x187f] has been reserved
[    0.331359] system 00:01: [io  0x0800-0x087f] has been reserved
[    0.331359] system 00:03: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.331359] system 00:03: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.331359] system 00:03: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.331359] system 00:03: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.331359] system 00:03: [mem 0xe0000000-0xefffffff] could not be reserved
[    0.331359] system 00:03: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.331359] system 00:03: [mem 0xfed90000-0xfed93fff] could not be reserved
[    0.331359] system 00:03: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.331359] system 00:03: [mem 0xff000000-0xffffffff] could not be reserved
[    0.331359] system 00:03: [mem 0xfee00000-0xfeefffff] has been reserved
[    0.331359] system 00:04: [mem 0x20000000-0x201fffff] could not be reserved
[    0.331359] system 00:04: [mem 0x40000000-0x401fffff] could not be reserved
[    0.331359] pnp: PnP ACPI: found 5 devices
[    0.331359] pci 0000:00:02.0: assigning 3 device properties
[    0.331359] pci 0000:07:00.0: assigning 9 device properties
[    0.331359] pci 0000:08:00.0: assigning 3 device properties
[    0.331359] pci 0000:0f:00.0: assigning 3 device properties
[    0.331359] pci 0000:0e:00.0: assigning 2 device properties
[    0.331359] pci 0000:15:00.0: assigning 2 device properties
[    0.331359] pci 0000:00:1b.0: assigning 4 device properties
[    0.335246] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.335285] NET: Registered PF_INET protocol family
[    0.335448] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.338129] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[    0.338166] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.338390] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.338533] TCP: Hash tables configured (established 131072 bind 65536)
[    0.338563] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
[    0.338607] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
[    0.338677] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.338751] RPC: Registered named UNIX socket transport module.
[    0.338755] RPC: Registered udp transport module.
[    0.338759] RPC: Registered tcp transport module.
[    0.338762] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.338774] pci 0000:06:00.0: bridge window [io  0x1000-0x0fff] to [bus 07] add_size 1000
[    0.338783] pci 0000:06:00.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 07] add_size 200000 add_align 100000
[    0.338797] pci 0000:10:04.0: bridge window [io  0x1000-0x0fff] to [bus 16] add_size 1000
[    0.338804] pci 0000:10:04.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 16] add_size 200000 add_align 100000
[    0.338812] pci 0000:10:04.0: bridge window [mem 0x00100000-0x000fffff] to [bus 16] add_size 200000 add_align 100000
[    0.338820] pci 0000:10:05.0: bridge window [io  0x1000-0x0fff] to [bus 17] add_size 1000
[    0.338826] pci 0000:10:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 17] add_size 200000 add_align 100000
[    0.338834] pci 0000:10:05.0: bridge window [mem 0x00100000-0x000fffff] to [bus 17] add_size 200000 add_align 100000
[    0.338842] pci 0000:0f:00.0: bridge window [io  0x1000-0x0fff] to [bus 10-17] add_size 2000
[    0.338849] pci 0000:09:04.0: bridge window [io  0x1000-0x0fff] to [bus 0f-17] add_size 3000
[    0.338856] pci 0000:09:05.0: bridge window [io  0x1000-0x0fff] to [bus 18] add_size 1000
[    0.338862] pci 0000:09:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 18] add_size 200000 add_align 100000
[    0.338870] pci 0000:09:05.0: bridge window [mem 0x00100000-0x000fffff] to [bus 18] add_size 200000 add_align 100000
[    0.338879] pci 0000:08:00.0: bridge window [io  0x1000-0x0fff] to [bus 09-18] add_size 4000
[    0.338886] pci 0000:06:04.0: bridge window [io  0x1000-0x0fff] to [bus 39] add_size 1000
[    0.338892] pci 0000:06:04.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 39] add_size 200000 add_align 100000
[    0.338900] pci 0000:06:04.0: bridge window [mem 0x00100000-0x000fffff] to [bus 39] add_size 200000 add_align 100000
[    0.338908] pci 0000:06:06.0: bridge window [io  0x1000-0x0fff] to [bus 6b] add_size 1000
[    0.338914] pci 0000:06:06.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 6b] add_size 200000 add_align 100000
[    0.338921] pci 0000:06:06.0: bridge window [mem 0x00100000-0x000fffff] to [bus 6b] add_size 200000 add_align 100000
[    0.338934] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.338947] pci 0000:00:1c.1: PCI bridge to [bus 02]
[    0.338954] pci 0000:00:1c.1:   bridge window [mem 0xb0a00000-0xb0bfffff]
[    0.338961] pci 0000:00:1c.1:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.338971] pci 0000:00:1c.2: PCI bridge to [bus 03]
[    0.338977] pci 0000:00:1c.2:   bridge window [mem 0xb0400000-0xb08fffff]
[    0.338993] pci 0000:06:00.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339000] pci 0000:06:00.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339006] pci 0000:06:04.0: BAR 8: no space for [mem size 0x00200000]
[    0.339011] pci 0000:06:04.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339017] pci 0000:06:04.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339022] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339028] pci 0000:06:06.0: BAR 8: no space for [mem size 0x00200000]
[    0.339033] pci 0000:06:06.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339039] pci 0000:06:06.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339045] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339051] pci 0000:06:00.0: BAR 7: no space for [io  size 0x1000]
[    0.339056] pci 0000:06:00.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339061] pci 0000:06:04.0: BAR 7: no space for [io  size 0x1000]
[    0.339066] pci 0000:06:04.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339071] pci 0000:06:06.0: BAR 7: no space for [io  size 0x1000]
[    0.339075] pci 0000:06:06.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339082] pci 0000:06:06.0: BAR 8: no space for [mem size 0x00200000]
[    0.339087] pci 0000:06:06.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339093] pci 0000:06:06.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339098] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339104] pci 0000:06:06.0: BAR 7: no space for [io  size 0x1000]
[    0.339109] pci 0000:06:06.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339114] pci 0000:06:04.0: BAR 8: no space for [mem size 0x00200000]
[    0.339119] pci 0000:06:04.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339125] pci 0000:06:04.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339131] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339137] pci 0000:06:04.0: BAR 7: no space for [io  size 0x1000]
[    0.339141] pci 0000:06:04.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339148] pci 0000:06:00.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339153] pci 0000:06:00.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339159] pci 0000:06:00.0: BAR 7: no space for [io  size 0x1000]
[    0.339164] pci 0000:06:00.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339170] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.339178] pci 0000:06:00.0:   bridge window [mem 0xb0d00000-0xb0dfffff]
[    0.339192] pci 0000:08:00.0: BAR 7: no space for [io  size 0x4000]
[    0.339197] pci 0000:08:00.0: BAR 7: failed to assign [io  size 0x4000]
[    0.339202] pci 0000:08:00.0: BAR 7: no space for [io  size 0x4000]
[    0.339207] pci 0000:08:00.0: BAR 7: failed to assign [io  size 0x4000]
[    0.339213] pci 0000:09:05.0: BAR 8: no space for [mem size 0x00200000]
[    0.339218] pci 0000:09:05.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339225] pci 0000:09:05.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339230] pci 0000:09:05.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339236] pci 0000:09:04.0: BAR 7: no space for [io  size 0x3000]
[    0.339241] pci 0000:09:04.0: BAR 7: failed to assign [io  size 0x3000]
[    0.339246] pci 0000:09:05.0: BAR 7: no space for [io  size 0x1000]
[    0.339250] pci 0000:09:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339256] pci 0000:09:05.0: BAR 8: no space for [mem size 0x00200000]
[    0.339261] pci 0000:09:05.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339267] pci 0000:09:05.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339273] pci 0000:09:05.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339278] pci 0000:09:05.0: BAR 7: no space for [io  size 0x1000]
[    0.339283] pci 0000:09:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339288] pci 0000:09:04.0: BAR 7: no space for [io  size 0x3000]
[    0.339293] pci 0000:09:04.0: BAR 7: failed to assign [io  size 0x3000]
[    0.339299] pci 0000:0b:03.0: PCI bridge to [bus 0c]
[    0.339314] pci 0000:0b:03.0:   bridge window [mem 0xb1100000-0xb11fffff]
[    0.339340] pci 0000:0a:00.0: PCI bridge to [bus 0b-0c]
[    0.339355] pci 0000:0a:00.0:   bridge window [mem 0xb1100000-0xb11fffff]
[    0.339381] pci 0000:09:00.0: PCI bridge to [bus 0a-0c]
[    0.339393] pci 0000:09:00.0:   bridge window [mem 0xb1100000-0xb11fffff]
[    0.339414] pci 0000:09:01.0: PCI bridge to [bus 0d]
[    0.339431] pci 0000:09:01.0:   bridge window [mem 0xbd300000-0xbd3fffff 64bit pref]
[    0.339447] pci 0000:09:02.0: PCI bridge to [bus 0e]
[    0.339459] pci 0000:09:02.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.339480] pci 0000:0f:00.0: BAR 7: no space for [io  size 0x2000]
[    0.339485] pci 0000:0f:00.0: BAR 7: failed to assign [io  size 0x2000]
[    0.339490] pci 0000:0f:00.0: BAR 7: no space for [io  size 0x2000]
[    0.339495] pci 0000:0f:00.0: BAR 7: failed to assign [io  size 0x2000]
[    0.339502] pci 0000:10:04.0: BAR 8: no space for [mem size 0x00200000]
[    0.339507] pci 0000:10:04.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339513] pci 0000:10:04.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339519] pci 0000:10:04.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339524] pci 0000:10:05.0: BAR 8: no space for [mem size 0x00200000]
[    0.339529] pci 0000:10:05.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339535] pci 0000:10:05.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339541] pci 0000:10:05.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339546] pci 0000:10:04.0: BAR 7: no space for [io  size 0x1000]
[    0.339551] pci 0000:10:04.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339556] pci 0000:10:05.0: BAR 7: no space for [io  size 0x1000]
[    0.339561] pci 0000:10:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339566] pci 0000:10:05.0: BAR 8: no space for [mem size 0x00200000]
[    0.339571] pci 0000:10:05.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339577] pci 0000:10:05.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339583] pci 0000:10:05.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339589] pci 0000:10:05.0: BAR 7: no space for [io  size 0x1000]
[    0.339593] pci 0000:10:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339598] pci 0000:10:04.0: BAR 8: no space for [mem size 0x00200000]
[    0.339603] pci 0000:10:04.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339609] pci 0000:10:04.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339615] pci 0000:10:04.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339620] pci 0000:10:04.0: BAR 7: no space for [io  size 0x1000]
[    0.339625] pci 0000:10:04.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339631] pci 0000:12:03.0: PCI bridge to [bus 13]
[    0.339649] pci 0000:12:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.339683] pci 0000:11:00.0: PCI bridge to [bus 12-13]
[    0.339702] pci 0000:11:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.339736] pci 0000:10:00.0: PCI bridge to [bus 11-13]
[    0.339752] pci 0000:10:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.339780] pci 0000:10:01.0: PCI bridge to [bus 14]
[    0.339804] pci 0000:10:01.0:   bridge window [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.339825] pci 0000:10:02.0: PCI bridge to [bus 15]
[    0.339841] pci 0000:10:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.339869] pci 0000:10:04.0: PCI bridge to [bus 16]
[    0.339908] pci 0000:10:05.0: PCI bridge to [bus 17]
[    0.339947] pci 0000:0f:00.0: PCI bridge to [bus 10-17]
[    0.339963] pci 0000:0f:00.0:   bridge window [mem 0xb0e00000-0xb0ffffff]
[    0.339976] pci 0000:0f:00.0:   bridge window [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.339996] pci 0000:09:04.0: PCI bridge to [bus 0f-17]
[    0.340009] pci 0000:09:04.0:   bridge window [mem 0xb0e00000-0xb0ffffff]
[    0.340019] pci 0000:09:04.0:   bridge window [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.340035] pci 0000:09:05.0: PCI bridge to [bus 18]
[    0.340063] pci 0000:08:00.0: PCI bridge to [bus 09-18]
[    0.340074] pci 0000:08:00.0:   bridge window [mem 0xb0e00000-0xb11fffff]
[    0.340084] pci 0000:08:00.0:   bridge window [mem 0xbd200000-0xbd3fffff 64bit pref]
[    0.340100] pci 0000:06:03.0: PCI bridge to [bus 08-38]
[    0.340106] pci 0000:06:03.0:   bridge window [io  0x3000-0x3fff]
[    0.340115] pci 0000:06:03.0:   bridge window [mem 0xb0e00000-0xb51fffff]
[    0.340122] pci 0000:06:03.0:   bridge window [mem 0xbd200000-0xc13fffff 64bit pref]
[    0.340133] pci 0000:06:04.0: PCI bridge to [bus 39]
[    0.340149] pci 0000:06:05.0: PCI bridge to [bus 3a-6a]
[    0.340155] pci 0000:06:05.0:   bridge window [io  0x4000-0x4fff]
[    0.340164] pci 0000:06:05.0:   bridge window [mem 0xb5200000-0xb91fffff]
[    0.340171] pci 0000:06:05.0:   bridge window [mem 0xc1400000-0xc53fffff 64bit pref]
[    0.340182] pci 0000:06:06.0: PCI bridge to [bus 6b]
[    0.340198] pci 0000:05:00.0: PCI bridge to [bus 06-6b]
[    0.340204] pci 0000:05:00.0:   bridge window [io  0x3000-0x4fff]
[    0.340212] pci 0000:05:00.0:   bridge window [mem 0xb0d00000-0xb91fffff]
[    0.340220] pci 0000:05:00.0:   bridge window [mem 0xbd200000-0xc53fffff 64bit pref]
[    0.340230] pci 0000:00:1c.4: PCI bridge to [bus 05-6b]
[    0.340235] pci 0000:00:1c.4:   bridge window [io  0x3000-0x5fff]
[    0.340242] pci 0000:00:1c.4:   bridge window [mem 0xb0d00000-0xbd1fffff]
[    0.340249] pci 0000:00:1c.4:   bridge window [mem 0xbd200000-0xc93fffff 64bit pref]
[    0.340258] pci 0000:00:1c.5: PCI bridge to [bus 04]
[    0.340265] pci 0000:00:1c.5:   bridge window [mem 0xb0900000-0xb09fffff]
[    0.340275] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.340280] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.340285] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000fffff window]
[    0.340291] pci_bus 0000:00: resource 7 [mem 0x8fa00000-0xfeafffff window]
[    0.340296] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff window]
[    0.340302] pci_bus 0000:02: resource 1 [mem 0xb0a00000-0xb0bfffff]
[    0.340306] pci_bus 0000:02: resource 2 [mem 0x90000000-0x9fffffff 64bit pref]
[    0.340312] pci_bus 0000:03: resource 1 [mem 0xb0400000-0xb08fffff]
[    0.340317] pci_bus 0000:05: resource 0 [io  0x3000-0x5fff]
[    0.340322] pci_bus 0000:05: resource 1 [mem 0xb0d00000-0xbd1fffff]
[    0.340327] pci_bus 0000:05: resource 2 [mem 0xbd200000-0xc93fffff 64bit pref]
[    0.340333] pci_bus 0000:06: resource 0 [io  0x3000-0x4fff]
[    0.340337] pci_bus 0000:06: resource 1 [mem 0xb0d00000-0xb91fffff]
[    0.340342] pci_bus 0000:06: resource 2 [mem 0xbd200000-0xc53fffff 64bit pref]
[    0.340348] pci_bus 0000:07: resource 1 [mem 0xb0d00000-0xb0dfffff]
[    0.340353] pci_bus 0000:08: resource 0 [io  0x3000-0x3fff]
[    0.340357] pci_bus 0000:08: resource 1 [mem 0xb0e00000-0xb51fffff]
[    0.340362] pci_bus 0000:08: resource 2 [mem 0xbd200000-0xc13fffff 64bit pref]
[    0.340368] pci_bus 0000:09: resource 1 [mem 0xb0e00000-0xb11fffff]
[    0.340373] pci_bus 0000:09: resource 2 [mem 0xbd200000-0xbd3fffff 64bit pref]
[    0.340379] pci_bus 0000:0a: resource 1 [mem 0xb1100000-0xb11fffff]
[    0.340384] pci_bus 0000:0b: resource 1 [mem 0xb1100000-0xb11fffff]
[    0.340389] pci_bus 0000:0c: resource 1 [mem 0xb1100000-0xb11fffff]
[    0.340394] pci_bus 0000:0d: resource 2 [mem 0xbd300000-0xbd3fffff 64bit pref]
[    0.340400] pci_bus 0000:0e: resource 1 [mem 0xb1000000-0xb10fffff]
[    0.340405] pci_bus 0000:0f: resource 1 [mem 0xb0e00000-0xb0ffffff]
[    0.340410] pci_bus 0000:0f: resource 2 [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.340416] pci_bus 0000:10: resource 1 [mem 0xb0e00000-0xb0ffffff]
[    0.340421] pci_bus 0000:10: resource 2 [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.340426] pci_bus 0000:11: resource 1 [mem 0xb0f00000-0xb0ffffff]
[    0.340431] pci_bus 0000:12: resource 1 [mem 0xb0f00000-0xb0ffffff]
[    0.340436] pci_bus 0000:13: resource 1 [mem 0xb0f00000-0xb0ffffff]
[    0.340441] pci_bus 0000:14: resource 2 [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.340447] pci_bus 0000:15: resource 1 [mem 0xb0e00000-0xb0efffff]
[    0.340453] pci_bus 0000:3a: resource 0 [io  0x4000-0x4fff]
[    0.340458] pci_bus 0000:3a: resource 1 [mem 0xb5200000-0xb91fffff]
[    0.340463] pci_bus 0000:3a: resource 2 [mem 0xc1400000-0xc53fffff 64bit pref]
[    0.340469] pci_bus 0000:04: resource 1 [mem 0xb0900000-0xb09fffff]
[    0.340862] pci 0000:05:00.0: CLS mismatch (256 != 128), using 64 bytes
[    0.340890] pci 0000:0c:00.0: MSI is not implemented on this device, disabling it
[    0.340895] pci 0000:0c:00.0: PME# is unreliable, disabling it
[    0.341278] pci 0000:0c:00.1: MSI is not implemented on this device, disabling it
[    0.341284] pci 0000:0c:00.1: PME# is unreliable, disabling it
[    0.341390] pci 0000:0c:00.2: MSI is not implemented on this device, disabling it
[    0.341395] pci 0000:0c:00.2: PME# is unreliable, disabling it
[    0.341460] pci 0000:0c:00.2: EHCI: unrecognized capability 00
[    0.341518] pci 0000:13:00.0: MSI is not implemented on this device, disabling it
[    0.341524] pci 0000:13:00.0: PME# is unreliable, disabling it
[    0.341844] pci 0000:13:00.1: MSI is not implemented on this device, disabling it
[    0.341849] pci 0000:13:00.1: PME# is unreliable, disabling it
[    0.341972] pci 0000:13:00.2: MSI is not implemented on this device, disabling it
[    0.341977] pci 0000:13:00.2: PME# is unreliable, disabling it
[    0.342054] pci 0000:13:00.2: EHCI: unrecognized capability 00
[    0.342134] DMAR: No ATSR found
[    0.342137] DMAR: No SATC found
[    0.342141] DMAR: IOMMU feature pgsel_inv inconsistent
[    0.342143] DMAR: IOMMU feature sc_support inconsistent
[    0.342147] DMAR: IOMMU feature pass_through inconsistent
[    0.342151] DMAR: dmar0: Using Queued invalidation
[    0.342151] Unpacking initramfs...
[    0.342160] DMAR: dmar1: Using Queued invalidation
[    0.438295] pci 0000:00:00.0: Adding to iommu group 0
[    0.438327] pci 0000:00:02.0: Adding to iommu group 1
[    0.438349] pci 0000:00:03.0: Adding to iommu group 2
[    0.438370] pci 0000:00:14.0: Adding to iommu group 3
[    0.438401] pci 0000:00:16.0: Adding to iommu group 4
[    0.438420] pci 0000:00:1b.0: Adding to iommu group 5
[    0.438441] pci 0000:00:1c.0: Adding to iommu group 6
[    0.438461] pci 0000:00:1c.1: Adding to iommu group 7
[    0.438481] pci 0000:00:1c.2: Adding to iommu group 8
[    0.438502] pci 0000:00:1c.4: Adding to iommu group 9
[    0.438522] pci 0000:00:1c.5: Adding to iommu group 10
[    0.438558] pci 0000:00:1f.0: Adding to iommu group 11
[    0.438578] pci 0000:00:1f.3: Adding to iommu group 11
[    0.438597] pci 0000:02:00.0: Adding to iommu group 12
[    0.438617] pci 0000:03:00.0: Adding to iommu group 13
[    0.438637] pci 0000:05:00.0: Adding to iommu group 14
[    0.438658] pci 0000:06:00.0: Adding to iommu group 15
[    0.438678] pci 0000:06:03.0: Adding to iommu group 16
[    0.438699] pci 0000:06:04.0: Adding to iommu group 17
[    0.438719] pci 0000:06:05.0: Adding to iommu group 18
[    0.438740] pci 0000:06:06.0: Adding to iommu group 19
[    0.438749] pci 0000:07:00.0: Adding to iommu group 15
[    0.438758] pci 0000:08:00.0: Adding to iommu group 16
[    0.438767] pci 0000:09:00.0: Adding to iommu group 16
[    0.438776] pci 0000:09:01.0: Adding to iommu group 16
[    0.438786] pci 0000:09:02.0: Adding to iommu group 16
[    0.438794] pci 0000:09:04.0: Adding to iommu group 16
[    0.438803] pci 0000:09:05.0: Adding to iommu group 16
[    0.438813] pci 0000:0a:00.0: Adding to iommu group 16
[    0.438821] pci 0000:0b:03.0: Adding to iommu group 16
[    0.438830] pci 0000:0c:00.0: Adding to iommu group 16
[    0.438838] pci 0000:0c:00.1: Adding to iommu group 16
[    0.438846] pci 0000:0c:00.2: Adding to iommu group 16
[    0.438855] pci 0000:0d:00.0: Adding to iommu group 16
[    0.438863] pci 0000:0e:00.0: Adding to iommu group 16
[    0.438872] pci 0000:0f:00.0: Adding to iommu group 16
[    0.438882] pci 0000:10:00.0: Adding to iommu group 16
[    0.438890] pci 0000:10:01.0: Adding to iommu group 16
[    0.438899] pci 0000:10:02.0: Adding to iommu group 16
[    0.438907] pci 0000:10:04.0: Adding to iommu group 16
[    0.438915] pci 0000:10:05.0: Adding to iommu group 16
[    0.438924] pci 0000:11:00.0: Adding to iommu group 16
[    0.438933] pci 0000:12:03.0: Adding to iommu group 16
[    0.438942] pci 0000:13:00.0: Adding to iommu group 16
[    0.438951] pci 0000:13:00.1: Adding to iommu group 16
[    0.438959] pci 0000:13:00.2: Adding to iommu group 16
[    0.438968] pci 0000:14:00.0: Adding to iommu group 16
[    0.438977] pci 0000:15:00.0: Adding to iommu group 16
[    0.438996] pci 0000:04:00.0: Adding to iommu group 20
[    0.441096] DMAR: Intel(R) Virtualization Technology for Directed I/O
[    0.441102] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.441105] software IO TLB: mapped [mem 0x000000006c76e000-0x000000007076e000] (64MB)
[    0.441116] ACPI: bus type thunderbolt registered
[    0.441288] thunderbolt 0000:07:00.0: total paths: 12
[    0.441553] thunderbolt 0000:07:00.0: allocating TX ring 0 of size 10
[    0.441590] thunderbolt 0000:07:00.0: allocating RX ring 0 of size 10
[    0.441613] thunderbolt 0000:07:00.0: control channel created
[    0.441617] thunderbolt 0000:07:00.0: ICM not supported on this controller
[    0.441629] thunderbolt 0000:07:00.0: freeing RX ring 0
[    0.441639] thunderbolt 0000:07:00.0: freeing TX ring 0
[    0.441653] thunderbolt 0000:07:00.0: allocating TX ring 0 of size 10
[    0.441663] thunderbolt 0000:07:00.0: allocating RX ring 0 of size 10
[    0.441674] thunderbolt 0000:07:00.0: control channel created
[    0.441677] thunderbolt 0000:07:00.0: using software connection manager
[    0.441680] thunderbolt 0000:07:00.0: device link creation from 0000:06:00.0 failed
[    0.441727] thunderbolt 0000:07:00.0: created link from 0000:06:03.0
[    0.441744] thunderbolt 0000:07:00.0: created link from 0000:06:04.0
[    0.441760] thunderbolt 0000:07:00.0: created link from 0000:06:05.0
[    0.441776] thunderbolt 0000:07:00.0: created link from 0000:06:06.0
[    0.441921] thunderbolt 0000:07:00.0: NHI initialized, starting thunderbolt
[    0.441923] thunderbolt 0000:07:00.0: control channel starting...
[    0.441925] thunderbolt 0000:07:00.0: starting TX ring 0
[    0.441933] thunderbolt 0000:07:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[    0.441937] thunderbolt 0000:07:00.0: starting RX ring 0
[    0.441944] thunderbolt 0000:07:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[    0.441949] thunderbolt 0000:07:00.0: security level set to user
[    0.442112] thunderbolt 0000:07:00.0: current switch config:
[    0.442114] thunderbolt 0000:07:00.0:  Thunderbolt 2 Switch: 8086:156d (Revision: 0, TB Version: 2)
[    0.442118] thunderbolt 0000:07:00.0:   Max Port Number: 12
[    0.442120] thunderbolt 0000:07:00.0:   Config:
[    0.442122] thunderbolt 0000:07:00.0:    Upstream Port Number: 5 Depth: 0 Route String: 0x0 Enabled: 1, PlugEventsDelay: 255ms
[    0.442125] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[    0.443932] Freeing initrd memory: 7308K
[    0.554991] thunderbolt 0000:07:00.0: initializing Switch at 0x0 (depth: 0, up port: 5)
[    0.555630] thunderbolt 0000:07:00.0: 0: DROM version: 1
[    0.557037] thunderbolt 0000:07:00.0: 0: uid: 0x1000f0811ee60
[    0.558957] thunderbolt 0000:07:00.0:  Port 1: 8086:156d (Revision: 0, TB Version: 1, Type: Port (0x1))
[    0.558960] thunderbolt 0000:07:00.0:   Max hop id (in/out): 15/15
[    0.558962] thunderbolt 0000:07:00.0:   Max counters: 16
[    0.558963] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.558964] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.560876] thunderbolt 0000:07:00.0:  Port 2: 8086:156d (Revision: 0, TB Version: 1, Type: Port (0x1))
[    0.560878] thunderbolt 0000:07:00.0:   Max hop id (in/out): 15/15
[    0.560879] thunderbolt 0000:07:00.0:   Max counters: 16
[    0.560880] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.560881] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.562795] thunderbolt 0000:07:00.0:  Port 3: 8086:156d (Revision: 0, TB Version: 1, Type: Port (0x1))
[    0.562798] thunderbolt 0000:07:00.0:   Max hop id (in/out): 15/15
[    0.562799] thunderbolt 0000:07:00.0:   Max counters: 16
[    0.562800] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.562801] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.564715] thunderbolt 0000:07:00.0:  Port 4: 8086:156d (Revision: 0, TB Version: 1, Type: Port (0x1))
[    0.564718] thunderbolt 0000:07:00.0:   Max hop id (in/out): 15/15
[    0.564719] thunderbolt 0000:07:00.0:   Max counters: 16
[    0.564720] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.564721] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.565483] thunderbolt 0000:07:00.0:  Port 5: 8086:156d (Revision: 0, TB Version: 1, Type: NHI (0x2))
[    0.565486] thunderbolt 0000:07:00.0:   Max hop id (in/out): 11/11
[    0.565487] thunderbolt 0000:07:00.0:   Max counters: 16
[    0.565488] thunderbolt 0000:07:00.0:   NFC Credits: 0xf00000
[    0.565489] thunderbolt 0000:07:00.0:   Credits (total/control): 15/0
[    0.565739] thunderbolt 0000:07:00.0:  Port 6: 8086:156d (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[    0.565742] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.565743] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.565744] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.565746] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.565996] random: fast init done
[    0.565996] thunderbolt 0000:07:00.0:  Port 7: 8086:156d (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[    0.566001] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.566003] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.566005] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.566006] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.566251] thunderbolt 0000:07:00.0:  Port 8: 8086:156d (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[    0.566253] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.566255] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.566256] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.566257] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.566507] thunderbolt 0000:07:00.0:  Port 9: 8086:156d (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[    0.566509] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.566510] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.566511] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.566512] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.566513] thunderbolt 0000:07:00.0: 0:a: disabled by eeprom
[    0.566763] thunderbolt 0000:07:00.0:  Port 11: 8086:156d (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0101))
[    0.566765] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    0.566767] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.566767] thunderbolt 0000:07:00.0:   NFC Credits: 0xf00000
[    0.566769] thunderbolt 0000:07:00.0:   Credits (total/control): 15/0
[    0.567019] thunderbolt 0000:07:00.0:  Port 12: 8086:156d (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0101))
[    0.567021] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    0.567023] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.567023] thunderbolt 0000:07:00.0:   NFC Credits: 0xf0000b
[    0.567025] thunderbolt 0000:07:00.0:   Credits (total/control): 15/0
[    0.572011] thunderbolt 0000:07:00.0: 0: TMU: current mode: HiFi
[    0.572141] thunderbolt 0000:07:00.0: 0:1: is unplugged (state: 7)
[    0.572267] thunderbolt 0000:07:00.0: 0:3: is connected, link is up (state: 2)
[    0.572523] thunderbolt 0000:07:00.0: current switch config:
[    0.572524] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[    0.572526] thunderbolt 0000:07:00.0:   Max Port Number: 13
[    0.572527] thunderbolt 0000:07:00.0:   Config:
[    0.572528] thunderbolt 0000:07:00.0:    Upstream Port Number: 1 Depth: 1 Route String: 0x3 Enabled: 1, PlugEventsDelay: 255ms
[    0.572530] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[    0.577131] thunderbolt 0000:07:00.0: initializing Switch at 0x3 (depth: 1, up port: 1)
[    0.594537] thunderbolt 0000:07:00.0: 3: reading drom (length: 0x97)
[    1.088194] thunderbolt 0000:07:00.0: 3: DROM version: 1
[    1.089218] thunderbolt 0000:07:00.0: 3: uid: 0x1000100189170
[    1.092162] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.092164] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.092165] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.092166] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.092167] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.095105] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.095107] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.095108] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.095109] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c0000e
[    1.095110] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.098049] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.098050] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.098051] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.098052] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.098053] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.100993] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.100994] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.100995] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.100996] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.100997] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.100998] thunderbolt 0000:07:00.0: 3:5: disabled by eeprom
[    1.100999] thunderbolt 0000:07:00.0: 3:6: disabled by eeprom
[    1.101888] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.101890] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.101891] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.101892] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.101893] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.102785] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.102786] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.102787] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.102788] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.102789] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.102791] thunderbolt 0000:07:00.0: 3:9: disabled by eeprom
[    1.103681] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[    1.103683] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.103684] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.103685] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.103686] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.104833] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[    1.104835] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    1.104836] thunderbolt 0000:07:00.0:   Max counters: 2
[    1.104837] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.104838] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.104839] thunderbolt 0000:07:00.0: 3:c: disabled by eeprom
[    1.104840] thunderbolt 0000:07:00.0: 3:d: disabled by eeprom
[    1.122677] thunderbolt 0000:07:00.0: 3: TMU: current mode: bi-directional, HiFi
[    1.122693] thunderbolt 0-3: new device found, vendor=0x1 device=0x8002
[    1.122697] thunderbolt 0-3: Apple, Inc. Thunderbolt Display
[    1.123189] thunderbolt 0000:07:00.0: 3:3: is connected, link is up (state: 2)
[    1.123445] thunderbolt 0000:07:00.0: current switch config:
[    1.123446] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[    1.123448] thunderbolt 0000:07:00.0:   Max Port Number: 13
[    1.123449] thunderbolt 0000:07:00.0:   Config:
[    1.123450] thunderbolt 0000:07:00.0:    Upstream Port Number: 3 Depth: 2 Route String: 0x303 Enabled: 1, PlugEventsDelay: 255ms
[    1.123452] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[    1.128053] thunderbolt 0000:07:00.0: initializing Switch at 0x303 (depth: 2, up port: 3)
[    1.145459] thunderbolt 0000:07:00.0: 303: reading drom (length: 0x97)
[    1.620944] random: crng init done
[    1.639116] thunderbolt 0000:07:00.0: 303: DROM version: 1
[    1.640140] thunderbolt 0000:07:00.0: 303: uid: 0x100010102a740
[    1.643083] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.643085] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.643086] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.643087] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.643089] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.646027] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.646029] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.646030] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.646031] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.646032] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.648970] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.648972] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.648973] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.648974] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.648975] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.651914] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.651916] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.651917] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.651918] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.651919] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.651920] thunderbolt 0000:07:00.0: 303:5: disabled by eeprom
[    1.651921] thunderbolt 0000:07:00.0: 303:6: disabled by eeprom
[    1.652810] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.652812] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.652813] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.652814] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.652815] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.653707] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.653710] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.653711] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.653712] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.653713] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.653714] thunderbolt 0000:07:00.0: 303:9: disabled by eeprom
[    1.654602] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[    1.654604] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.654605] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.654606] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.654607] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.655754] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[    1.655756] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    1.655757] thunderbolt 0000:07:00.0:   Max counters: 2
[    1.655758] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.655759] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.655760] thunderbolt 0000:07:00.0: 303:c: disabled by eeprom
[    1.655761] thunderbolt 0000:07:00.0: 303:d: disabled by eeprom
[    1.673562] thunderbolt 0000:07:00.0: 303: TMU: current mode: bi-directional, HiFi
[    1.673577] thunderbolt 0-303: new device found, vendor=0x1 device=0x8002
[    1.673581] thunderbolt 0-303: Apple, Inc. Thunderbolt Display
[    1.673692] thunderbolt 0000:07:00.0: 303:1: is unplugged (state: 7)
[    1.673946] thunderbolt 0000:07:00.0: 303:b: DP adapter HPD set, queuing hotplug
[    1.674586] thunderbolt 0000:07:00.0: discovering PCIe Up path starting from 0:6
[    1.674714] thunderbolt 0000:07:00.0: 0:6:  In HopID: 8 => Out port: 3 Out HopID: 8
[    1.674716] thunderbolt 0000:07:00.0: 0:6:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.674718] thunderbolt 0000:07:00.0: 0:6:    Counter enabled: 1 Counter index: 0
[    1.674719] thunderbolt 0000:07:00.0: 0:6:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.674721] thunderbolt 0000:07:00.0: 0:6:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.674842] thunderbolt 0000:07:00.0: 3:1:  In HopID: 8 => Out port: 10 Out HopID: 8
[    1.674844] thunderbolt 0000:07:00.0: 3:1:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[    1.674845] thunderbolt 0000:07:00.0: 3:1:    Counter enabled: 1 Counter index: 0
[    1.674847] thunderbolt 0000:07:00.0: 3:1:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.674848] thunderbolt 0000:07:00.0: 3:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.674850] thunderbolt 0000:07:00.0: path discovery complete
[    1.675353] thunderbolt 0000:07:00.0: discovering PCIe Down path starting from 3:10
[    1.675482] thunderbolt 0000:07:00.0: 3:a:  In HopID: 8 => Out port: 1 Out HopID: 8
[    1.675483] thunderbolt 0000:07:00.0: 3:a:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.675485] thunderbolt 0000:07:00.0: 3:a:    Counter enabled: 1 Counter index: 0
[    1.675486] thunderbolt 0000:07:00.0: 3:a:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.675487] thunderbolt 0000:07:00.0: 3:a:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.675610] thunderbolt 0000:07:00.0: 0:3:  In HopID: 8 => Out port: 6 Out HopID: 8
[    1.675611] thunderbolt 0000:07:00.0: 0:3:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[    1.675613] thunderbolt 0000:07:00.0: 0:3:    Counter enabled: 1 Counter index: 0
[    1.675614] thunderbolt 0000:07:00.0: 0:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.675615] thunderbolt 0000:07:00.0: 0:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.675617] thunderbolt 0000:07:00.0: path discovery complete
[    1.675738] thunderbolt 0000:07:00.0: 0:6 <-> 3:a (PCI): discovered
[    1.676634] thunderbolt 0000:07:00.0: discovering Video path starting from 0:12
[    1.676762] thunderbolt 0000:07:00.0: 0:c:  In HopID: 9 => Out port: 4 Out HopID: 8
[    1.676763] thunderbolt 0000:07:00.0: 0:c:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.676765] thunderbolt 0000:07:00.0: 0:c:    Counter enabled: 1 Counter index: 1
[    1.676766] thunderbolt 0000:07:00.0: 0:c:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.676767] thunderbolt 0000:07:00.0: 0:c:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.676890] thunderbolt 0000:07:00.0: 3:2:  In HopID: 8 => Out port: 11 Out HopID: 9
[    1.676891] thunderbolt 0000:07:00.0: 3:2:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.676892] thunderbolt 0000:07:00.0: 3:2:    Counter enabled: 1 Counter index: 1
[    1.676894] thunderbolt 0000:07:00.0: 3:2:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.676895] thunderbolt 0000:07:00.0: 3:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.676897] thunderbolt 0000:07:00.0: path discovery complete
[    1.677145] thunderbolt 0000:07:00.0: discovering AUX TX path starting from 0:12
[    1.677274] thunderbolt 0000:07:00.0: 0:c:  In HopID: 8 => Out port: 4 Out HopID: 9
[    1.677275] thunderbolt 0000:07:00.0: 0:c:   Weight: 1 Priority: 2 Credits: 4 Drop: 0
[    1.677276] thunderbolt 0000:07:00.0: 0:c:    Counter enabled: 1 Counter index: 0
[    1.677278] thunderbolt 0000:07:00.0: 0:c:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.677279] thunderbolt 0000:07:00.0: 0:c:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.677402] thunderbolt 0000:07:00.0: 3:2:  In HopID: 9 => Out port: 11 Out HopID: 8
[    1.677403] thunderbolt 0000:07:00.0: 3:2:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.677404] thunderbolt 0000:07:00.0: 3:2:    Counter enabled: 1 Counter index: 0
[    1.677406] thunderbolt 0000:07:00.0: 3:2:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.677407] thunderbolt 0000:07:00.0: 3:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.677408] thunderbolt 0000:07:00.0: path discovery complete
[    1.677913] thunderbolt 0000:07:00.0: discovering AUX RX path starting from 3:11
[    1.678042] thunderbolt 0000:07:00.0: 3:b:  In HopID: 8 => Out port: 2 Out HopID: 8
[    1.678043] thunderbolt 0000:07:00.0: 3:b:   Weight: 1 Priority: 2 Credits: 7 Drop: 0
[    1.678044] thunderbolt 0000:07:00.0: 3:b:    Counter enabled: 1 Counter index: 0
[    1.678046] thunderbolt 0000:07:00.0: 3:b:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.678047] thunderbolt 0000:07:00.0: 3:b:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.678170] thunderbolt 0000:07:00.0: 0:4:  In HopID: 8 => Out port: 12 Out HopID: 8
[    1.678171] thunderbolt 0000:07:00.0: 0:4:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.678172] thunderbolt 0000:07:00.0: 0:4:    Counter enabled: 1 Counter index: 0
[    1.678174] thunderbolt 0000:07:00.0: 0:4:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.678175] thunderbolt 0000:07:00.0: 0:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.678176] thunderbolt 0000:07:00.0: path discovery complete
[    1.678425] thunderbolt 0000:07:00.0: 0:c <-> 3:b (DP): discovered
[    1.678809] thunderbolt 0000:07:00.0: discovering PCIe Up path starting from 3:7
[    1.678937] thunderbolt 0000:07:00.0: 3:7:  In HopID: 8 => Out port: 3 Out HopID: 8
[    1.678939] thunderbolt 0000:07:00.0: 3:7:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.678940] thunderbolt 0000:07:00.0: 3:7:    Counter enabled: 1 Counter index: 0
[    1.678941] thunderbolt 0000:07:00.0: 3:7:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.678943] thunderbolt 0000:07:00.0: 3:7:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.679066] thunderbolt 0000:07:00.0: 303:3:  In HopID: 8 => Out port: 10 Out HopID: 8
[    1.679067] thunderbolt 0000:07:00.0: 303:3:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[    1.679068] thunderbolt 0000:07:00.0: 303:3:    Counter enabled: 1 Counter index: 0
[    1.679070] thunderbolt 0000:07:00.0: 303:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.679071] thunderbolt 0000:07:00.0: 303:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.679073] thunderbolt 0000:07:00.0: path discovery complete
[    1.679577] thunderbolt 0000:07:00.0: discovering PCIe Down path starting from 303:10
[    1.679705] thunderbolt 0000:07:00.0: 303:a:  In HopID: 8 => Out port: 3 Out HopID: 8
[    1.679707] thunderbolt 0000:07:00.0: 303:a:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.679708] thunderbolt 0000:07:00.0: 303:a:    Counter enabled: 1 Counter index: 0
[    1.679710] thunderbolt 0000:07:00.0: 303:a:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.679711] thunderbolt 0000:07:00.0: 303:a:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.679833] thunderbolt 0000:07:00.0: 3:3:  In HopID: 8 => Out port: 7 Out HopID: 8
[    1.679835] thunderbolt 0000:07:00.0: 3:3:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[    1.679836] thunderbolt 0000:07:00.0: 3:3:    Counter enabled: 1 Counter index: 0
[    1.679838] thunderbolt 0000:07:00.0: 3:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.679839] thunderbolt 0000:07:00.0: 3:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.679840] thunderbolt 0000:07:00.0: path discovery complete
[    1.679961] thunderbolt 0000:07:00.0: 3:7 <-> 303:a (PCI): discovered
[    1.680346] thunderbolt 0000:07:00.0: 0:b: DP IN resource available
[    1.680348] thunderbolt 0000:07:00.0: 0:c: DP IN resource available
[    1.680476] thunderbolt 0000:07:00.0: 303:b: DP OUT resource available
[    1.680480] thunderbolt 0000:07:00.0: looking for DP IN <-> DP OUT pairs:
[    1.680488] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
[    1.680493] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[    1.680495] RAPL PMU: hw unit of domain package 2^-14 Joules
[    1.680497] RAPL PMU: hw unit of domain dram 2^-14 Joules
[    1.680499] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[    1.680603] thunderbolt 0000:07:00.0: 0:b: DP IN available
[    1.680733] thunderbolt 0000:07:00.0: 303:b: DP OUT available
[    1.680736] thunderbolt 0000:07:00.0: 0: allocated DP resource for port 11
[    1.680740] thunderbolt 0000:07:00.0: 303:b: calculating available bandwidth
[    1.680861] thunderbolt 0000:07:00.0: 0:3: link total bandwidth 9000 Mb/s
[    1.680865] thunderbolt 0000:07:00.0: 3:1: link total bandwidth 9000 Mb/s
[    1.680990] thunderbolt 0000:07:00.0: 3:3: link total bandwidth 9000 Mb/s
[    1.680995] thunderbolt 0000:07:00.0: 303:3: link total bandwidth 9000 Mb/s
[    1.680998] thunderbolt 0000:07:00.0: available bandwidth for new DP tunnel 9000/9000 Mb/s
[    1.681007] thunderbolt 0000:07:00.0: 0:b <-> 303:b (DP): activating
[    1.681011] thunderbolt 0000:07:00.0: activating Video path from 0:11 to 303:11
[    1.681014] thunderbolt 0000:07:00.0: 303:4: adding 12 NFC credits to 0
[    1.681117] thunderbolt 0000:07:00.0: 3:2: adding 12 NFC credits to 14
[    1.681244] thunderbolt 0000:07:00.0: 0:b: adding 12 NFC credits to 0
[    1.681309] Initialise system trusted keyrings
[    1.681339] workingset: timestamp_bits=62 max_order=22 bucket_order=0
[    1.682416] thunderbolt 0000:07:00.0: 303:4: Writing hop 2
[    1.682419] thunderbolt 0000:07:00.0: 303:4:  In HopID: 8 => Out port: 11 Out HopID: 9
[    1.682421] thunderbolt 0000:07:00.0: 303:4:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.682422] thunderbolt 0000:07:00.0: 303:4:    Counter enabled: 0 Counter index: 2047
[    1.682424] thunderbolt 0000:07:00.0: 303:4:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.682426] thunderbolt 0000:07:00.0: 303:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.682468] NFS: Registering the id_resolver key type
[    1.682474] Key type id_resolver registered
[    1.682476] Key type id_legacy registered
[    1.682490] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    1.682528] Key type asymmetric registered
[    1.682530] Asymmetric key parser 'x509' registered
[    1.682670] thunderbolt 0000:07:00.0: 3:2: Writing hop 1
[    1.682671] thunderbolt 0000:07:00.0: 3:2:  In HopID: 10 => Out port: 4 Out HopID: 8
[    1.682673] thunderbolt 0000:07:00.0: 3:2:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.682674] thunderbolt 0000:07:00.0: 3:2:    Counter enabled: 0 Counter index: 2047
[    1.682676] thunderbolt 0000:07:00.0: 3:2:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.682677] thunderbolt 0000:07:00.0: 3:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.682926] thunderbolt 0000:07:00.0: 0:b: Writing hop 0
[    1.682927] thunderbolt 0000:07:00.0: 0:b:  In HopID: 9 => Out port: 4 Out HopID: 10
[    1.682929] thunderbolt 0000:07:00.0: 0:b:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.682930] thunderbolt 0000:07:00.0: 0:b:    Counter enabled: 0 Counter index: 2047
[    1.682931] thunderbolt 0000:07:00.0: 0:b:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.682933] thunderbolt 0000:07:00.0: 0:b:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.683056] thunderbolt 0000:07:00.0: path activation complete
[    1.683058] thunderbolt 0000:07:00.0: activating AUX TX path from 0:11 to 303:11
[    1.683184] thunderbolt 0000:07:00.0: 303:4: Writing hop 2
[    1.683186] thunderbolt 0000:07:00.0: 303:4:  In HopID: 9 => Out port: 11 Out HopID: 8
[    1.683187] thunderbolt 0000:07:00.0: 303:4:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.683190] thunderbolt 0000:07:00.0: 303:4:    Counter enabled: 0 Counter index: 2047
[    1.683201] thunderbolt 0000:07:00.0: 303:4:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.683204] thunderbolt 0000:07:00.0: 303:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.683441] thunderbolt 0000:07:00.0: 3:2: Writing hop 1
[    1.683444] thunderbolt 0000:07:00.0: 3:2:  In HopID: 11 => Out port: 4 Out HopID: 9
[    1.683447] thunderbolt 0000:07:00.0: 3:2:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.683449] thunderbolt 0000:07:00.0: 3:2:    Counter enabled: 0 Counter index: 2047
[    1.683451] thunderbolt 0000:07:00.0: 3:2:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.683452] thunderbolt 0000:07:00.0: 3:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.683696] thunderbolt 0000:07:00.0: 0:b: Writing hop 0
[    1.683698] thunderbolt 0000:07:00.0: 0:b:  In HopID: 8 => Out port: 4 Out HopID: 11
[    1.683699] thunderbolt 0000:07:00.0: 0:b:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.683701] thunderbolt 0000:07:00.0: 0:b:    Counter enabled: 0 Counter index: 2047
[    1.683702] thunderbolt 0000:07:00.0: 0:b:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.683704] thunderbolt 0000:07:00.0: 0:b:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.683823] thunderbolt 0000:07:00.0: path activation complete
[    1.683825] thunderbolt 0000:07:00.0: activating AUX RX path from 303:11 to 0:11
[    1.683850] pcieport 0000:06:00.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.683953] thunderbolt 0000:07:00.0: 0:4: Writing hop 2
[    1.683957] thunderbolt 0000:07:00.0: 0:4:  In HopID: 9 => Out port: 11 Out HopID: 8
[    1.683960] thunderbolt 0000:07:00.0: 0:4:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.683961] thunderbolt 0000:07:00.0: 0:4:    Counter enabled: 0 Counter index: 2047
[    1.683963] thunderbolt 0000:07:00.0: 0:4:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.683964] thunderbolt 0000:07:00.0: 0:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.684090] pcieport 0000:06:03.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.684208] thunderbolt 0000:07:00.0: 3:4: Writing hop 1
[    1.684210] thunderbolt 0000:07:00.0: 3:4:  In HopID: 8 => Out port: 2 Out HopID: 9
[    1.684211] thunderbolt 0000:07:00.0: 3:4:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.684213] thunderbolt 0000:07:00.0: 3:4:    Counter enabled: 0 Counter index: 2047
[    1.684214] thunderbolt 0000:07:00.0: 3:4:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.684216] thunderbolt 0000:07:00.0: 3:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.684328] pcieport 0000:06:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.684465] thunderbolt 0000:07:00.0: 303:b: Writing hop 0
[    1.684467] thunderbolt 0000:07:00.0: 303:b:  In HopID: 8 => Out port: 4 Out HopID: 8
[    1.684468] thunderbolt 0000:07:00.0: 303:b:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.684470] thunderbolt 0000:07:00.0: 303:b:    Counter enabled: 0 Counter index: 2047
[    1.684471] thunderbolt 0000:07:00.0: 303:b:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.684473] thunderbolt 0000:07:00.0: 303:b:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.684488] pcieport 0000:06:05.0: enabling device (0000 -> 0003)
[    1.684604] pcieport 0000:06:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.684607] thunderbolt 0000:07:00.0: path activation complete
[    1.684867] pcieport 0000:06:06.0: pciehp: Slot #6 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.687416] pcieport 0000:09:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.687739] pcieport 0000:09:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.691080] pcieport 0000:10:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.691500] pcieport 0000:10:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.692492] ACPI: AC: AC Adapter [ADP1] (off-line)
[    1.692565] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    1.692607] ACPI: button: Lid Switch [LID0]
[    1.692642] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    1.692670] ACPI: button: Power Button [PWRB]
[    1.692703] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
[    1.692729] ACPI: button: Sleep Button [SLPB]
[    1.692760] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    1.692794] ACPI: button: Power Button [PWRF]
[    1.693064] smbus_hc ACPI0001:00: SBS HC: offset = 0x20, query_bit = 0x10
[    2.093834] ACPI: Smart Battery System [SBS0]: Battery Slot [BAT0] (battery present)
[    2.103691] hpet_acpi_add: no address or irqs in _CRS
[    2.104863] loop: module loaded
[    2.105097] nvme nvme0: pci function 0000:04:00.0
[    2.105418] tun: Universal TUN/TAP device driver, 1.6
[    2.105493] mousedev: PS/2 mouse device common for all mice
[    2.105512] rtc_cmos 00:02: RTC can wake from S4
[    2.105766] rtc_cmos 00:02: registered as rtc0
[    2.105803] rtc_cmos 00:02: setting system clock to 2022-04-01T05:32:38 UTC (1648791158)
[    2.105808] rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram
[    2.105992] device-mapper: ioctl: 4.46.0-ioctl (2022-02-22) initialised: dm-devel@redhat.com
[    2.106002] intel_pstate: Intel P-state driver initializing
[    2.106105] efifb: probing for efifb
[    2.106116] efifb: framebuffer at 0xa0000000, using 16000k, total 16000k
[    2.106118] efifb: mode is 2560x1600x32, linelength=10240, pages=1
[    2.106121] efifb: scrolling: redraw
[    2.106122] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    2.109319] Console: switching to colour frame buffer device 320x100
[    2.112345] fb0: EFI VGA frame buffer device
[    2.112413] NET: Registered PF_PACKET protocol family
[    2.112433] Key type dns_resolver registered
[    2.112585] microcode: sig=0x40651, pf=0x40, revision=0x26
[    2.112621] microcode: Microcode Update Driver: v2.2.
[    2.112624] IPI shorthand broadcast: enabled
[    2.112645] AVX2 version of gcm_enc/dec engaged.
[    2.112681] AES CTR mode by8 optimization enabled
[    2.112804] sched_clock: Marking stable (2111200437, 1599381)->(2141753108, -28953290)
[    2.112863] registered taskstats version 1
[    2.112870] Loading compiled-in X.509 certificates
[    2.161001] nvme0: Identify(0x6), Invalid Field in Command (sct 0x0 / sc 0x2)
[    2.179197] nvme nvme0: 4/0/0 default/read/poll queues
[    2.184202]  nvme0n1: p1 p2 p3 p4 p5 p6 p7
[    2.351943] Freeing unused kernel image (initmem) memory: 996K
[    2.393251] Write protecting the kernel read-only data: 16384k
[    2.393605] Freeing unused kernel image (text/rodata gap) memory: 2036K
[    2.393773] Freeing unused kernel image (rodata/data gap) memory: 1356K
[    2.393789] Run /init as init process
[    2.393797]   with arguments:
[    2.393798]     /init
[    2.393799]   with environment:
[    2.393800]     HOME=/
[    2.393800]     TERM=linux
[    2.446412] udevd[940]: starting version 3.2.9
[    2.447182] udevd[941]: starting eudev-3.2.9
[    2.466582] ACPI: bus type USB registered
[    2.466703] usbcore: registered new interface driver usbfs
[    2.466729] usbcore: registered new interface driver hub
[    2.466757] usbcore: registered new device driver usb
[    2.469261] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    2.469284] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    2.470385] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x000000000004b810
[    2.470581] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
[    2.470606] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.470627] usb usb1: Product: xHCI Host Controller
[    2.470641] usb usb1: Manufacturer: Linux 5.17.0+ xhci-hcd
[    2.470655] usb usb1: SerialNumber: 0000:00:14.0
[    2.470826] hub 1-0:1.0: USB hub found
[    2.470851] hub 1-0:1.0: 9 ports detected
[    2.471466] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    2.471487] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    2.471509] xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
[    2.471700] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.17
[    2.471723] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.471743] usb usb2: Product: xHCI Host Controller
[    2.471757] usb usb2: Manufacturer: Linux 5.17.0+ xhci-hcd
[    2.471773] usb usb2: SerialNumber: 0000:00:14.0
[    2.472204] hub 2-0:1.0: USB hub found
[    2.472225] hub 2-0:1.0: 4 ports detected
[    2.474869] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[    2.475049] i2c i2c-0: 2/2 memory slots populated (from DMI)
[    2.526851] applesmc: key=571 fan=1 temp=32 index=31 acc=0 lux=2 kbd=1
[    2.526986] applesmc applesmc.768: hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[    2.546590] tg3 0000:0d:00.0 eth0: Tigon3 [partno(BCM957761) rev 57785100] (PCI Express) MAC address c8:2a:14:4f:80:3e
[    2.546630] tg3 0000:0d:00.0 eth0: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    2.546662] tg3 0000:0d:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    2.546677] tg3 0000:0d:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[    2.633876] tg3 0000:14:00.0 eth1: Tigon3 [partno(BCM957761) rev 57785100] (PCI Express) MAC address 38:c9:86:48:0c:c8
[    2.633922] tg3 0000:14:00.0 eth1: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    2.633954] tg3 0000:14:00.0 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    2.633981] tg3 0000:14:00.0 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[    2.723252] tsc: Refined TSC clocksource calibration: 2599.999 MHz
[    2.723277] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x257a3b2ad7e, max_idle_ns: 440795282337 ns
[    2.723314] clocksource: Switched to clocksource tsc
[    2.763254] usb 1-3: new full-speed USB device number 2 using xhci_hcd
[    2.946025] usb 1-3: New USB device found, idVendor=05ac, idProduct=8290, bcdDevice= 1.69
[    2.946030] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.946032] usb 1-3: Product: Bluetooth USB Host Controller
[    2.946033] usb 1-3: Manufacturer: Broadcom Corp.
[    2.952680] hid: raw HID events driver (C) Jiri Kosina
[    2.956920] usbcore: registered new interface driver usbhid
[    2.956923] usbhid: USB HID core driver
[    2.957550] input: Broadcom Corp. Bluetooth USB Host Controller as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:05AC:8290.0001/input/input4
[    3.023333] hid-generic 0003:05AC:8290.0001: input,hidraw0: USB HID v1.11 Keyboard [Broadcom Corp. Bluetooth USB Host Controller] on usb-0000:00:14.0-3/input0
[    3.023456] input: Broadcom Corp. Bluetooth USB Host Controller as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:05AC:8290.0002/input/input5
[    3.024049] hid-generic 0003:05AC:8290.0002: input,hidraw1: USB HID v1.11 Mouse [Broadcom Corp. Bluetooth USB Host Controller] on usb-0000:00:14.0-3/input1
[    3.093419] usb 2-3: new SuperSpeed USB device number 2 using xhci_hcd
[    3.125625] usb 2-3: New USB device found, idVendor=05ac, idProduct=8406, bcdDevice= 8.20
[    3.125629] usb 2-3: New USB device strings: Mfr=3, Product=4, SerialNumber=5
[    3.125631] usb 2-3: Product: Card Reader
[    3.125632] usb 2-3: Manufacturer: Apple
[    3.125633] usb 2-3: SerialNumber: 000000000820
[    3.128714] usb-storage 2-3:1.0: USB Mass Storage device detected
[    3.128796] scsi host0: usb-storage 2-3:1.0
[    3.128872] usbcore: registered new interface driver usb-storage
[    3.129081] usbcore: registered new interface driver uas
[    3.273249] usb 1-5: new full-speed USB device number 3 using xhci_hcd
[    3.459439] usb 1-5: New USB device found, idVendor=05ac, idProduct=0259, bcdDevice= 2.24
[    3.459444] usb 1-5: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.459446] usb 1-5: Product: Apple Internal Keyboard / Trackpad
[    3.459447] usb 1-5: Manufacturer: Apple Inc.
[    3.469354] input: Apple Inc. Apple Internal Keyboard / Trackpad as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/0003:05AC:0259.0003/input/input6
[    3.533315] apple 0003:05AC:0259.0003: input,hidraw2: USB HID v1.11 Keyboard [Apple Inc. Apple Internal Keyboard / Trackpad] on usb-0000:00:14.0-5/input0
[    3.533406] apple 0003:05AC:0259.0004: hidraw3: USB HID v1.11 Device [Apple Inc. Apple Internal Keyboard / Trackpad] on usb-0000:00:14.0-5/input1
[    4.165099] scsi 0:0:0:0: Direct-Access     APPLE    SD Card Reader   3.00 PQ: 0 ANSI: 6
[    4.165690] sd 0:0:0:0: [sda] Media removed, stopped polling
[    4.165806] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    4.166320] sd 0:0:0:0: [sda] Attached SCSI removable disk
[    9.227663] process '/usr/bin/fstype' started with executable stack
[    9.308337] PM: Image not found (code -22)
[    9.310377] PM: hibernation: Marking nosave pages: [mem 0x00000000-0x00000fff]
[    9.310382] PM: hibernation: Marking nosave pages: [mem 0x00058000-0x00058fff]
[    9.310384] PM: hibernation: Marking nosave pages: [mem 0x0008f000-0x0008ffff]
[    9.310385] PM: hibernation: Marking nosave pages: [mem 0x000a0000-0x000fffff]
[    9.310387] PM: hibernation: Marking nosave pages: [mem 0x73d4c000-0x73d4cfff]
[    9.310388] PM: hibernation: Marking nosave pages: [mem 0x73d5c000-0x73d5cfff]
[    9.310389] PM: hibernation: Marking nosave pages: [mem 0x73d6f000-0x73d6ffff]
[    9.310390] PM: hibernation: Marking nosave pages: [mem 0x73d6f000-0x73d6ffff]
[    9.310391] PM: hibernation: Marking nosave pages: [mem 0x8ad10000-0x8ad52fff]
[    9.310392] PM: hibernation: Marking nosave pages: [mem 0x8ad62000-0x8ad8efff]
[    9.310394] PM: hibernation: Marking nosave pages: [mem 0x8ae39000-0x8ae8efff]
[    9.310396] PM: hibernation: Marking nosave pages: [mem 0x8aed2000-0x8aefefff]
[    9.310397] PM: hibernation: Marking nosave pages: [mem 0x8af84000-0x8afeffff]
[    9.310400] PM: hibernation: Marking nosave pages: [mem 0x8b000000-0xffffffff]
[    9.311431] PM: hibernation: Basic memory bitmaps created
[    9.312044] PM: hibernation: Basic memory bitmaps freed
[    9.488487] EXT4-fs (nvme0n1p4): mounted filesystem with ordered data mode. Quota mode: disabled.
[    9.626182] udevd[1202]: starting version 3.2.9
[    9.650687] udevd[1203]: starting eudev-3.2.9
[    9.715800] Linux agpgart interface v0.103
[    9.720345] ACPI: bus type drm_connector registered
[    9.723832] tg3 0000:0d:00.0 eth2: renamed from eth0
[    9.735068] input: bcm5974 as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.2/input/input7
[    9.736818] usbcore: registered new interface driver bcm5974
[    9.759499] i915 0000:00:02.0: [drm] VT-d active for gfx access
[    9.761144] checking generic (a0000000 fa0000) vs hw (b0000000 400000)
[    9.761147] checking generic (a0000000 fa0000) vs hw (a0000000 10000000)
[    9.761149] fb0: switching to i915 from EFI VGA
[    9.763668] Console: switching to colour dummy device 80x25
[    9.763762] i915 0000:00:02.0: vgaarb: deactivate vga console
[    9.763815] i915 0000:00:02.0: [drm] Transparent Hugepage support is recommended for optimal performance when IOMMU is enabled!
[    9.763841] i915 0000:00:02.0: [drm] DMAR active, disabling use of stolen memory
[    9.765235] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    9.787412] snd_hda_codec_cirrus hdaudioC1D0: autoconfig for CS4208: line_outs=2 (0x12/0x13/0x0/0x0/0x0) type:speaker
[    9.787426] snd_hda_codec_cirrus hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    9.787432] snd_hda_codec_cirrus hdaudioC1D0:    hp_outs=1 (0x10/0x0/0x0/0x0/0x0)
[    9.787437] snd_hda_codec_cirrus hdaudioC1D0:    mono: mono_out=0x0
[    9.787440] snd_hda_codec_cirrus hdaudioC1D0:    dig-out=0x21/0x0
[    9.787444] snd_hda_codec_cirrus hdaudioC1D0:    inputs:
[    9.787448] snd_hda_codec_cirrus hdaudioC1D0:      Internal Mic=0x1c
[    9.787452] snd_hda_codec_cirrus hdaudioC1D0:      Mic=0x18
[    9.793855] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    9.796215] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input8
[    9.796273] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input9
[    9.796321] input: HDA Intel PCH SPDIF as /devices/pci0000:00/0000:00:1b.0/sound/card1/input10
[    9.840183] [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0
[    9.841031] ACPI: video: Video Device [IGPU] (multi-head: yes  rom: no  post: no)
[    9.841583] acpi device:02: registered as cooling_device4
[    9.841663] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input11
[    9.841944] snd_hda_intel 0000:00:03.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[    9.848448] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    9.848605] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    9.848613] cfg80211: failed to load regulatory.db
[    9.873457] udevd[1239]: Unable to EVIOCGABS device "/dev/input/event6"
[    9.873469] udevd[1239]: Unable to EVIOCGABS device "/dev/input/event6"
[    9.873475] udevd[1239]: Unable to EVIOCGABS device "/dev/input/event6"
[    9.873481] udevd[1239]: Unable to EVIOCGABS device "/dev/input/event6"
[   10.000001] fbcon: i915drmfb (fb0) is primary device
[   11.524322] Console: switching to colour frame buffer device 320x90
[   11.543615] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[   11.676895] Bluetooth: Core ver 2.22
[   11.676936] brcmfmac 0000:03:00.0: enabling device (0000 -> 0002)
[   11.676943] NET: Registered PF_BLUETOOTH protocol family
[   11.676977] Bluetooth: HCI device and connection manager initialized
[   11.676999] Bluetooth: HCI socket layer initialized
[   11.677025] Bluetooth: L2CAP socket layer initialized
[   11.677052] Bluetooth: SCO socket layer initialized
[   11.679532] usbcore: registered new interface driver btusb
[   11.683987] input: HDA Intel HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card0/input12
[   11.684081] input: HDA Intel HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/sound/card0/input13
[   11.684429] input: HDA Intel HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.0/sound/card0/input14
[   11.685686] input: HDA Intel HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:03.0/sound/card0/input15
[   11.685898] input: HDA Intel HDMI HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:03.0/sound/card0/input16
[   11.793460] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43602-pcie for chip BCM43602/1
[   11.793969] brcmfmac 0000:03:00.0: Direct firmware load for brcm/brcmfmac43602-pcie.Apple Inc.-MacBookPro11,1.bin failed with error -2
[   11.794817] brcmfmac 0000:03:00.0: Direct firmware load for brcm/brcmfmac43602-pcie.Apple Inc.-MacBookPro11,1.txt failed with error -2
[   11.794856] brcmfmac 0000:03:00.0: Direct firmware load for brcm/brcmfmac43602-pcie.txt failed with error -2
[   11.818432] Bluetooth: hci0: BCM: chip id 102 build 0729
[   11.819357] Bluetooth: hci0: BCM: product 05ac:8290
[   11.822359] Bluetooth: hci0: BCM: features 0x2f
[   11.838382] Bluetooth: hci0: BlueZ 5.50
[   11.915018] Adding 19528700k swap on /dev/mapper/swap.  Priority:-2 extents:1 across:19528700k SS
[   11.926745] EXT4-fs (nvme0n1p4): re-mounted. Quota mode: disabled.
[   12.314862] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43602-pcie for chip BCM43602/1
[   12.314891] brcmfmac: brcmf_c_process_clm_blob: no clm_blob available (err=-2), device may have limited channels available
[   12.315047] brcmfmac: brcmf_c_preinit_dcmds: Firmware: BCM43602/1 wl0: Nov 10 2015 06:38:10 version 7.35.177.61 (r598657) FWID 01-ea662a8c
[   28.830754] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Quota mode: disabled.
[   29.035598] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[   32.768984] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   32.768988] Bluetooth: BNEP filters: protocol multicast
[   32.768992] Bluetooth: BNEP socket layer initialized
[   33.129703] broken atomic modeset userspace detected, disabling atomic
[   47.554508] ieee80211 phy0: brcmf_cfg80211_scan: Connecting: status (3)
[   48.554854] ieee80211 phy0: brcmf_cfg80211_scan: Connecting: status (3)
[   49.556163] ieee80211 phy0: brcmf_cfg80211_scan: Connecting: status (3)
[   54.078657] irq 9: nobody cared (try booting with the "irqpoll" option)
[   54.078676] CPU: 1 PID: 0 Comm: swapper/1 Not tainted 5.17.0+ #45
[   54.078690] Hardware name: Apple Inc. MacBookPro11,1/Mac-189A3D4F975D5FFC, BIOS 432.60.3.0.0 10/27/2021
[   54.078707] Call Trace:
[   54.078716]  <IRQ>
[   54.078724]  dump_stack_lvl+0x38/0x49
[   54.078738]  dump_stack+0x10/0x12
[   54.078749]  __report_bad_irq+0x37/0xb1
[   54.078761]  note_interrupt.cold.11+0xb/0x5c
[   54.078773]  handle_irq_event_percpu+0x33/0x40
[   54.078786]  handle_irq_event+0x34/0x60
[   54.078797]  handle_fasteoi_irq+0x8b/0x130
[   54.078809]  __common_interrupt+0x39/0x90
[   54.078821]  common_interrupt+0x85/0xa0
[   54.078834]  </IRQ>
[   54.078841]  <TASK>
[   54.078849]  asm_common_interrupt+0x1e/0x40
[   54.078860] RIP: 0010:cpuidle_enter_state+0xc9/0x360
[   54.078875] Code: 89 c4 0f 1f 44 00 00 31 ff e8 23 dc b5 ff 80 7d d7 00 74 12 9c 58 f6 c4 02 0f 85 54 02 00 00 31 ff e8 1b 55 ba ff fb 45 85 ff <0f> 88 0e 01 00 00 49 63 cf 4c 2b 65 c8 48 89 c8 48 6b d1 68 48 c1
[   54.078902] RSP: 0018:ffffa0de401cfe60 EFLAGS: 00000202
[   54.078915] RAX: ffffa0e19f2a9140 RBX: 0000000000000001 RCX: 000000000000001f
[   54.078929] RDX: 0000000c975683a8 RSI: 00000000313b14ef RDI: 0000000000000000
[   54.078942] RBP: ffffa0de401cfe98 R08: 0000000000000002 R09: 0000000000028a00
[   54.078956] R10: 00000028f4f6becb R11: ffffa0e19f2a82a4 R12: 0000000c975683a8
[   54.078970] R13: ffffd9c0bfcb2d10 R14: ffffffff8b1aa760 R15: 0000000000000001
[   54.078984]  cpuidle_enter+0x29/0x40
[   54.078995]  call_cpuidle+0x1e/0x30
[   54.079006]  do_idle+0x1ed/0x210
[   54.079018]  cpu_startup_entry+0x18/0x20
[   54.079029]  start_secondary+0xed/0x110
[   54.079042]  secondary_startup_64_no_verify+0xc3/0xcb
[   54.079055]  </TASK>
[   54.079063] handlers:
[   54.079071] [<000000005d571592>] acpi_irq
[   54.079084] Disabling IRQ #9
[   55.748825] ieee80211 phy0: brcmf_inetaddr_changed: fail to get arp ip table err:-52

MacBookPro - Rear Port :
[    0.000000] Linux version 5.17.0+ (brad@bklaptop) (gcc (Debian 8.3.0-6) 8.3.0, GNU ld (GNU Binutils for Debian) 2.31.1) #45 SMP PREEMPT_DYNAMIC Fri Apr 1 13:30:02 AWST 2022
[    0.000000] Command line: ro root=UUID=c500d66c-50ec-42a2-a333-eb48d6c9d97b thunderbolt.dyndbg initrd=boot\initrd.img-5.17.0+
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    0.000000] signal: max sigframe size: 1776
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000059000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000bffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000008ad0ffff] usable
[    0.000000] BIOS-e820: [mem 0x000000008ad10000-0x000000008ad52fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000008ad53000-0x000000008ad61fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008ad62000-0x000000008ad8efff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000008ad8f000-0x000000008ae38fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008ae39000-0x000000008ae8efff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008ae8f000-0x000000008aed1fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008aed2000-0x000000008aefefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008aeff000-0x000000008af83fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008af84000-0x000000008afeffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008aff0000-0x000000008affffff] usable
[    0.000000] BIOS-e820: [mem 0x000000008b000000-0x000000008f9fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffe10000-0x00000000ffe3ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000046f5fffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0x73d4c190-0x73d5c1cf] usable ==> usable
[    0.000000] e820: update [mem 0x73d4c190-0x73d5c1cf] usable ==> usable
[    0.000000] e820: update [mem 0x73d6f190-0x73d6fd98] usable ==> usable
[    0.000000] e820: update [mem 0x73d6f190-0x73d6fd98] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x0000000000057fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000000058000-0x0000000000058fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000059000-0x000000000008efff] usable
[    0.000000] reserve setup_data: [mem 0x000000000008f000-0x000000000008ffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000000a0000-0x00000000000bffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000073d4c18f] usable
[    0.000000] reserve setup_data: [mem 0x0000000073d4c190-0x0000000073d5c1cf] usable
[    0.000000] reserve setup_data: [mem 0x0000000073d5c1d0-0x0000000073d6f18f] usable
[    0.000000] reserve setup_data: [mem 0x0000000073d6f190-0x0000000073d6fd98] usable
[    0.000000] reserve setup_data: [mem 0x0000000073d6fd99-0x000000008ad0ffff] usable
[    0.000000] reserve setup_data: [mem 0x000000008ad10000-0x000000008ad52fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000008ad53000-0x000000008ad61fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008ad62000-0x000000008ad8efff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000008ad8f000-0x000000008ae38fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008ae39000-0x000000008ae8efff] reserved
[    0.000000] reserve setup_data: [mem 0x000000008ae8f000-0x000000008aed1fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008aed2000-0x000000008aefefff] reserved
[    0.000000] reserve setup_data: [mem 0x000000008aeff000-0x000000008af83fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008af84000-0x000000008afeffff] reserved
[    0.000000] reserve setup_data: [mem 0x000000008aff0000-0x000000008affffff] usable
[    0.000000] reserve setup_data: [mem 0x000000008b000000-0x000000008f9fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ffe10000-0x00000000ffe3ffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000046f5fffff] usable
[    0.000000] efi: EFI v1.10 by Apple
[    0.000000] efi: ACPI=0x8ad8e000 ACPI 2.0=0x8ad8e014 SMBIOS=0x8ad11000
[    0.000000] SMBIOS 2.4 present.
[    0.000000] DMI: Apple Inc. MacBookPro11,1/Mac-189A3D4F975D5FFC, BIOS 432.60.3.0.0 10/27/2021
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2599.779 MHz processor
[    0.000103] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000106] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000114] last_pfn = 0x46f600 max_arch_pfn = 0x400000000
[    0.000201] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT
[    0.001081] last_pfn = 0x8b000 max_arch_pfn = 0x400000000
[    0.001127] Using GB pages for direct mapping
[    0.002100] Secure boot disabled
[    0.002101] RAMDISK: [mem 0x7076e000-0x70e90fff]
[    0.002104] ACPI: Early table checksum verification disabled
[    0.002106] ACPI: RSDP 0x000000008AD8E014 000024 (v02 APPLE )
[    0.002111] ACPI: XSDT 0x000000008AD8E1C0 0000A4 (v01 APPLE  Apple00  00000000      01000013)
[    0.002116] ACPI: FACP 0x000000008AD8C000 0000F4 (v05 APPLE  Apple00  00000000 Loki 0000005F)
[    0.002122] ACPI: DSDT 0x000000008AD7F000 007681 (v03 APPLE  MacBookP 00110001 INTL 20100915)
[    0.002125] ACPI: FACS 0x000000008AD18000 000040
[    0.002128] ACPI: FACS 0x000000008AD18000 000040
[    0.002131] ACPI: HPET 0x000000008AD8B000 000038 (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002134] ACPI: APIC 0x000000008AD8A000 0000BC (v02 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002137] ACPI: SBST 0x000000008AD88000 000030 (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002140] ACPI: ECDT 0x000000008AD87000 000053 (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002143] ACPI: SSDT 0x000000008AD7E000 00010B (v01 APPLE  SataAhci 00001000 INTL 20100915)
[    0.002146] ACPI: SSDT 0x000000008AD7D000 000024 (v01 APPLE  SmcDppt  00001000 INTL 20100915)
[    0.002149] ACPI: SSDT 0x000000008AD7A000 000FE9 (v01 APPLE  SDUsbLpt 00001000 INTL 20100915)
[    0.002152] ACPI: SSDT 0x000000008AD76000 000032 (v01 APPLE  SsdtS3   00001000 INTL 20100915)
[    0.002155] ACPI: SSDT 0x000000008AD73000 0028B2 (v01 APPLE  PcieTbt  00001000 INTL 20100915)
[    0.002158] ACPI: SSDT 0x000000008AD66000 0000B8 (v01 APPLE  Sdxc     00001000 INTL 20100915)
[    0.002161] ACPI: SSDT 0x000000008AD65000 0003E0 (v01 APPLE  SaHdaCdc 00001000 INTL 20100915)
[    0.002164] ACPI: SSDT 0x000000008AD64000 000594 (v01 PmRef  Cpu0Ist  00003000 INTL 20100915)
[    0.002167] ACPI: SSDT 0x000000008AD63000 000B83 (v01 PmRef  CpuPm    00003000 INTL 20100915)
[    0.002170] ACPI: DMAR 0x000000008AD62000 000088 (v01 APPLE  HSW      00000001 AAPL 00000001)
[    0.002173] ACPI: MCFG 0x000000008AD89000 00003C (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002176] ACPI: Reserving FACP table memory at [mem 0x8ad8c000-0x8ad8c0f3]
[    0.002178] ACPI: Reserving DSDT table memory at [mem 0x8ad7f000-0x8ad86680]
[    0.002179] ACPI: Reserving FACS table memory at [mem 0x8ad18000-0x8ad1803f]
[    0.002180] ACPI: Reserving FACS table memory at [mem 0x8ad18000-0x8ad1803f]
[    0.002181] ACPI: Reserving HPET table memory at [mem 0x8ad8b000-0x8ad8b037]
[    0.002182] ACPI: Reserving APIC table memory at [mem 0x8ad8a000-0x8ad8a0bb]
[    0.002183] ACPI: Reserving SBST table memory at [mem 0x8ad88000-0x8ad8802f]
[    0.002185] ACPI: Reserving ECDT table memory at [mem 0x8ad87000-0x8ad87052]
[    0.002186] ACPI: Reserving SSDT table memory at [mem 0x8ad7e000-0x8ad7e10a]
[    0.002187] ACPI: Reserving SSDT table memory at [mem 0x8ad7d000-0x8ad7d023]
[    0.002188] ACPI: Reserving SSDT table memory at [mem 0x8ad7a000-0x8ad7afe8]
[    0.002189] ACPI: Reserving SSDT table memory at [mem 0x8ad76000-0x8ad76031]
[    0.002190] ACPI: Reserving SSDT table memory at [mem 0x8ad73000-0x8ad758b1]
[    0.002191] ACPI: Reserving SSDT table memory at [mem 0x8ad66000-0x8ad660b7]
[    0.002193] ACPI: Reserving SSDT table memory at [mem 0x8ad65000-0x8ad653df]
[    0.002194] ACPI: Reserving SSDT table memory at [mem 0x8ad64000-0x8ad64593]
[    0.002195] ACPI: Reserving SSDT table memory at [mem 0x8ad63000-0x8ad63b82]
[    0.002196] ACPI: Reserving DMAR table memory at [mem 0x8ad62000-0x8ad62087]
[    0.002197] ACPI: Reserving MCFG table memory at [mem 0x8ad89000-0x8ad8903b]
[    0.002204] ACPI: DMI detected to setup _OSI("Darwin"): Apple hardware
[    0.002223] Zone ranges:
[    0.002224]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.002226]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.002228]   Normal   [mem 0x0000000100000000-0x000000046f5fffff]
[    0.002230] Movable zone start for each node
[    0.002231] Early memory node ranges
[    0.002232]   node   0: [mem 0x0000000000001000-0x0000000000057fff]
[    0.002234]   node   0: [mem 0x0000000000059000-0x000000000008efff]
[    0.002235]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.002236]   node   0: [mem 0x0000000000100000-0x000000008ad0ffff]
[    0.002237]   node   0: [mem 0x000000008ad53000-0x000000008ad61fff]
[    0.002238]   node   0: [mem 0x000000008ad8f000-0x000000008ae38fff]
[    0.002239]   node   0: [mem 0x000000008ae8f000-0x000000008aed1fff]
[    0.002240]   node   0: [mem 0x000000008aeff000-0x000000008af83fff]
[    0.002241]   node   0: [mem 0x000000008aff0000-0x000000008affffff]
[    0.002242]   node   0: [mem 0x0000000100000000-0x000000046f5fffff]
[    0.002244] Initmem setup node 0 [mem 0x0000000000001000-0x000000046f5fffff]
[    0.002248] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.002250] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.002251] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.002276] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.006040] On node 0, zone DMA32: 67 pages in unavailable ranges
[    0.006046] On node 0, zone DMA32: 45 pages in unavailable ranges
[    0.006048] On node 0, zone DMA32: 86 pages in unavailable ranges
[    0.006051] On node 0, zone DMA32: 45 pages in unavailable ranges
[    0.006053] On node 0, zone DMA32: 108 pages in unavailable ranges
[    0.030221] On node 0, zone Normal: 20480 pages in unavailable ranges
[    0.030252] On node 0, zone Normal: 2560 pages in unavailable ranges
[    0.030260] Reserving Intel graphics memory at [mem 0x8ba00000-0x8f9fffff]
[    0.030380] ACPI: PM-Timer IO Port: 0x1808
[    0.030387] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.030389] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.030390] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.030391] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.030392] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.030393] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.030394] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.030395] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.030405] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-39
[    0.030408] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.030411] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.030414] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.030416] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.030419] TSC deadline timer available
[    0.030420] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.030441] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.030444] PM: hibernation: Registered nosave memory: [mem 0x00058000-0x00058fff]
[    0.030446] PM: hibernation: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    0.030448] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000bffff]
[    0.030449] PM: hibernation: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[    0.030451] PM: hibernation: Registered nosave memory: [mem 0x73d4c000-0x73d4cfff]
[    0.030454] PM: hibernation: Registered nosave memory: [mem 0x73d5c000-0x73d5cfff]
[    0.030456] PM: hibernation: Registered nosave memory: [mem 0x73d6f000-0x73d6ffff]
[    0.030458] PM: hibernation: Registered nosave memory: [mem 0x73d6f000-0x73d6ffff]
[    0.030460] PM: hibernation: Registered nosave memory: [mem 0x8ad10000-0x8ad52fff]
[    0.030462] PM: hibernation: Registered nosave memory: [mem 0x8ad62000-0x8ad8efff]
[    0.030464] PM: hibernation: Registered nosave memory: [mem 0x8ae39000-0x8ae8efff]
[    0.030466] PM: hibernation: Registered nosave memory: [mem 0x8aed2000-0x8aefefff]
[    0.030468] PM: hibernation: Registered nosave memory: [mem 0x8af84000-0x8afeffff]
[    0.030470] PM: hibernation: Registered nosave memory: [mem 0x8b000000-0x8f9fffff]
[    0.030471] PM: hibernation: Registered nosave memory: [mem 0x8fa00000-0xe00f7fff]
[    0.030472] PM: hibernation: Registered nosave memory: [mem 0xe00f8000-0xe00f8fff]
[    0.030473] PM: hibernation: Registered nosave memory: [mem 0xe00f9000-0xfed1bfff]
[    0.030474] PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.030475] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xffe0ffff]
[    0.030476] PM: hibernation: Registered nosave memory: [mem 0xffe10000-0xffe3ffff]
[    0.030477] PM: hibernation: Registered nosave memory: [mem 0xffe40000-0xffffffff]
[    0.030479] [mem 0x8fa00000-0xe00f7fff] available for PCI devices
[    0.030484] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.030490] setup_percpu: NR_CPUS:4 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[    0.030670] percpu: Embedded 52 pages/cpu s173096 r8192 d31704 u524288
[    0.030679] pcpu-alloc: s173096 r8192 d31704 u524288 alloc=1*2097152
[    0.030681] pcpu-alloc: [0] 0 1 2 3
[    0.030703] Built 1 zonelists, mobility grouping on.  Total pages: 4105486
[    0.030705] Kernel command line: ro root=UUID=c500d66c-50ec-42a2-a333-eb48d6c9d97b thunderbolt.dyndbg initrd=boot\initrd.img-5.17.0+
[    0.031569] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.031982] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.032022] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.080053] Memory: 15923600K/16683256K available (10248K kernel code, 2251K rwdata, 2740K rodata, 996K init, 740K bss, 759396K reserved, 0K cma-reserved)
[    0.080085] random: get_random_u64 called from cache_random_seq_create+0x63/0x150 with crng_init=0
[    0.080154] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.080789] Dynamic Preempt: voluntary
[    0.080815] rcu: Preemptible hierarchical RCU implementation.
[    0.080817] 	Trampoline variant of Tasks RCU enabled.
[    0.080818] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[    0.081785] NR_IRQS: 4352, nr_irqs: 728, preallocated irqs: 16
[    0.082010] Console: colour dummy device 80x25
[    0.082339] printk: console [tty0] enabled
[    0.082348] ACPI: Core revision 20211217
[    0.082447] hpet: HPET dysfunctional in PC10. Force disabled.
[    0.082450] APIC: Switch to symmetric I/O mode setup
[    0.082453] DMAR: Host address width 39
[    0.082455] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[    0.082461] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap c0000020660462 ecap f0101a
[    0.082466] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[    0.082471] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008020660462 ecap f010da
[    0.082475] DMAR: RMRR base: 0x0000008b800000 end: 0x0000008f9fffff
[    0.082479] DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
[    0.082481] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[    0.083078] DMAR-IR: Enabled IRQ remapping in xapic mode
[    0.083566] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x25796b619e5, max_idle_ns: 440795290627 ns
[    0.083576] Calibrating delay loop (skipped), value calculated using timer frequency.. 5199.55 BogoMIPS (lpj=25997790)
[    0.083581] pid_max: default: 32768 minimum: 301
[    0.093573] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.093573] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.093573] CPU0: Thermal monitoring enabled (TM1)
[    0.093573] process: using mwait in idle threads
[    0.093573] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
[    0.093573] Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
[    0.093573] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.093573] Spectre V2 : Kernel not compiled with retpoline; no mitigation available!
[    0.093573] Spectre V2 : Vulnerable
[    0.093573] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.093573] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    0.093573] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.093573] Spectre V2 : User space: Mitigation: STIBP via prctl
[    0.093573] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.093573] SRBDS: Mitigation: Microcode
[    0.093573] MDS: Mitigation: Clear CPU buffers
[    0.093573] Freeing SMP alternatives memory: 28K
[    0.093573] smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 1220
[    0.093573] smpboot: CPU0: Intel(R) Core(TM) i5-4278U CPU @ 2.60GHz (family: 0x6, model: 0x45, stepping: 0x1)
[    0.093573] cblist_init_generic: Setting adjustable number of callback queues.
[    0.093573] cblist_init_generic: Setting shift to 2 and lim to 1.
[    0.093573] Performance Events: PEBS fmt2+, Haswell events, 16-deep LBR, full-width counters, Intel PMU driver.
[    0.093573] ... version:                3
[    0.093573] ... bit width:              48
[    0.093573] ... generic registers:      4
[    0.093573] ... value mask:             0000ffffffffffff
[    0.093573] ... max period:             00007fffffffffff
[    0.093573] ... fixed-purpose events:   3
[    0.093573] ... event mask:             000000070000000f
[    0.093573] rcu: Hierarchical SRCU implementation.
[    0.093573] smp: Bringing up secondary CPUs ...
[    0.093573] x86: Booting SMP configuration:
[    0.093573] .... node  #0, CPUs:      #1 #2
[    0.093573] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[    0.093573]  #3
[    0.093573] smp: Brought up 1 node, 4 CPUs
[    0.093573] smpboot: Max logical packages: 1
[    0.093573] smpboot: Total of 4 processors activated (20798.23 BogoMIPS)
[    0.093573] devtmpfs: initialized
[    0.093573] ACPI: PM: Registering ACPI NVS region [mem 0x8ad10000-0x8ad52fff] (274432 bytes)
[    0.093573] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.093573] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.093573] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.093573] thermal_sys: Registered thermal governor 'step_wise'
[    0.093573] thermal_sys: Registered thermal governor 'user_space'
[    0.093573] cpuidle: using governor ladder
[    0.093573] cpuidle: using governor menu
[    0.093573] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.093573] PCI: MMCONFIG for domain 0000 [bus 00-9b] at [mem 0xe0000000-0xe9bfffff] (base 0xe0000000)
[    0.093573] PCI: not using MMCONFIG
[    0.093573] PCI: Using configuration type 1 for base access
[    0.093573] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[    0.093573] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.093573] cryptd: max_cpu_qlen set to 1000
[    0.093573] ACPI: Disabled all _OSI OS vendors
[    0.093573] ACPI: Added _OSI(Module Device)
[    0.093573] ACPI: Added _OSI(Processor Device)
[    0.093573] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.093573] ACPI: Added _OSI(Processor Aggregator Device)
[    0.093573] ACPI: Added _OSI(Linux-Dell-Video)
[    0.093573] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.093573] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.093573] ACPI: Added _OSI(Darwin)
[    0.095353] ACPI: 10 ACPI AML tables successfully acquired and loaded
[    0.095719] ACPI: EC: EC started
[    0.095722] ACPI: EC: interrupt blocked
[    0.097059] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.097062] ACPI: EC: Boot ECDT EC used to handle transactions
[    0.097246] ACPI: BIOS _OSI(Darwin) query honored via DMI
[    0.097561] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.097598] ACPI Error: Needed type [Reference], found [Integer] 000000004953a05e (20211217/exresop-69)
[    0.097598] ACPI Error: AE_AML_OPERAND_TYPE, While resolving operands for [OpcodeName unavailable] (20211217/dswexec-434)
[    0.097598] ACPI Error: Aborting method \_PR.CPU0._PDC due to previous error (AE_AML_OPERAND_TYPE) (20211217/psparse-531)
[    0.097598] ACPI: Dynamic OEM Table Load:
[    0.097598] ACPI: SSDT 0xFFFF9195C0AF5000 00067C (v01 PmRef  ApIst    00003000 INTL 20100915)
[    0.097598] ACPI: Dynamic OEM Table Load:
[    0.097598] ACPI: SSDT 0xFFFF9195C0C8FE00 000119 (v01 PmRef  ApCst    00003000 INTL 20100915)
[    0.097598] ACPI: Interpreter enabled
[    0.097598] ACPI: PM: (supports S0 S3 S4 S5)
[    0.097598] ACPI: Using IOAPIC for interrupt routing
[    0.097598] PCI: MMCONFIG for domain 0000 [bus 00-9b] at [mem 0xe0000000-0xe9bfffff] (base 0xe0000000)
[    0.097598] PCI: MMCONFIG at [mem 0xe0000000-0xe9bfffff] reserved in ACPI motherboard resources
[    0.097598] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.097598] ACPI: Enabled 4 GPEs in block 00 to 7F
[    0.107437] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.107444] acpi PNP0A08:00: _OSC: OS assumes control of [PCIeHotplug SHPCHotplug AER PCIeCapability LTR DPC]
[    0.107450] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-9b] only partially covers this bridge
[    0.107606] PCI host bridge to bus 0000:00
[    0.107609] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.107612] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.107615] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000fffff window]
[    0.107618] pci_bus 0000:00: root bus resource [mem 0x8fa00000-0xfeafffff window]
[    0.107622] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff window]
[    0.107625] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.107636] pci 0000:00:00.0: [8086:0a04] type 00 class 0x060000
[    0.107713] pci 0000:00:02.0: [8086:0a2e] type 00 class 0x030000
[    0.107722] pci 0000:00:02.0: reg 0x10: [mem 0xb0000000-0xb03fffff 64bit]
[    0.107729] pci 0000:00:02.0: reg 0x18: [mem 0xa0000000-0xafffffff 64bit pref]
[    0.107735] pci 0000:00:02.0: reg 0x20: [io  0x2000-0x203f]
[    0.107746] pci 0000:00:02.0: BAR 2: assigned to efifb
[    0.107750] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.107839] pci 0000:00:03.0: [8086:0a0c] type 00 class 0x040300
[    0.107848] pci 0000:00:03.0: reg 0x10: [mem 0xb0c10000-0xb0c13fff 64bit]
[    0.107964] pci 0000:00:14.0: [8086:9c31] type 00 class 0x0c0330
[    0.107980] pci 0000:00:14.0: reg 0x10: [mem 0xb0c00000-0xb0c0ffff 64bit]
[    0.108030] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.108213] pci 0000:00:16.0: [8086:9c3a] type 00 class 0x078000
[    0.108231] pci 0000:00:16.0: reg 0x10: [mem 0xb0c2a100-0xb0c2a11f 64bit]
[    0.108292] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.108344] pci 0000:00:1b.0: [8086:9c20] type 00 class 0x040300
[    0.108359] pci 0000:00:1b.0: reg 0x10: [mem 0xb0c14000-0xb0c17fff 64bit]
[    0.108420] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.108479] pci 0000:00:1c.0: [8086:9c10] type 01 class 0x060400
[    0.108539] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.108555] pci 0000:00:1c.0: Enabling MPC IRBNCE
[    0.108558] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled
[    0.108648] pci 0000:00:1c.1: [8086:9c12] type 01 class 0x060400
[    0.108715] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.108731] pci 0000:00:1c.1: Enabling MPC IRBNCE
[    0.108734] pci 0000:00:1c.1: Intel PCH root port ACS workaround enabled
[    0.108824] pci 0000:00:1c.2: [8086:9c14] type 01 class 0x060400
[    0.108890] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.108906] pci 0000:00:1c.2: Enabling MPC IRBNCE
[    0.108909] pci 0000:00:1c.2: Intel PCH root port ACS workaround enabled
[    0.108997] pci 0000:00:1c.4: [8086:9c18] type 01 class 0x060400
[    0.109063] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.109078] pci 0000:00:1c.4: Enabling MPC IRBNCE
[    0.109081] pci 0000:00:1c.4: Intel PCH root port ACS workaround enabled
[    0.109175] pci 0000:00:1c.5: [8086:9c1a] type 01 class 0x060400
[    0.109242] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
[    0.109258] pci 0000:00:1c.5: Enabling MPC IRBNCE
[    0.109260] pci 0000:00:1c.5: Intel PCH root port ACS workaround enabled
[    0.109353] pci 0000:00:1f.0: [8086:9c43] type 00 class 0x060100
[    0.109503] pci 0000:00:1f.3: [8086:9c22] type 00 class 0x0c0500
[    0.109518] pci 0000:00:1f.3: reg 0x10: [mem 0xb0c2a000-0xb0c2a0ff 64bit]
[    0.109536] pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
[    0.109619] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.109679] pci 0000:02:00.0: [14e4:1570] type 00 class 0x048000
[    0.109702] pci 0000:02:00.0: reg 0x10: [mem 0xb0b00000-0xb0b0ffff 64bit]
[    0.109718] pci 0000:02:00.0: reg 0x18: [mem 0x90000000-0x9fffffff 64bit pref]
[    0.109734] pci 0000:02:00.0: reg 0x20: [mem 0xb0a00000-0xb0afffff 64bit]
[    0.109827] pci 0000:02:00.0: supports D1
[    0.109830] pci 0000:02:00.0: PME# supported from D0 D3hot
[    0.109933] pci 0000:00:1c.1: PCI bridge to [bus 02]
[    0.109939] pci 0000:00:1c.1:   bridge window [mem 0xb0a00000-0xb0bfffff]
[    0.109944] pci 0000:00:1c.1:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.110003] pci 0000:03:00.0: [14e4:43ba] type 00 class 0x028000
[    0.110027] pci 0000:03:00.0: reg 0x10: [mem 0xb0800000-0xb0807fff 64bit]
[    0.110042] pci 0000:03:00.0: reg 0x18: [mem 0xb0400000-0xb07fffff 64bit]
[    0.110164] pci 0000:03:00.0: supports D1 D2
[    0.110166] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.110308] pci 0000:00:1c.2: PCI bridge to [bus 03]
[    0.110314] pci 0000:00:1c.2:   bridge window [mem 0xb0400000-0xb08fffff]
[    0.110378] pci 0000:05:00.0: [8086:156d] type 01 class 0x060400
[    0.110432] pci 0000:05:00.0: enabling Extended Tags
[    0.110515] pci 0000:05:00.0: supports D1 D2
[    0.110517] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.133601] pci 0000:00:1c.4: PCI bridge to [bus 05-6b]
[    0.133607] pci 0000:00:1c.4:   bridge window [io  0x3000-0x5fff]
[    0.133611] pci 0000:00:1c.4:   bridge window [mem 0xb0d00000-0xbd1fffff]
[    0.133617] pci 0000:00:1c.4:   bridge window [mem 0xbd200000-0xc93fffff 64bit pref]
[    0.133721] pci 0000:06:00.0: [8086:156d] type 01 class 0x060400
[    0.133779] pci 0000:06:00.0: enabling Extended Tags
[    0.133863] pci 0000:06:00.0: supports D1 D2
[    0.133865] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.133977] pci 0000:06:03.0: [8086:156d] type 01 class 0x060400
[    0.134034] pci 0000:06:03.0: enabling Extended Tags
[    0.134118] pci 0000:06:03.0: supports D1 D2
[    0.134120] pci 0000:06:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.134228] pci 0000:06:04.0: [8086:156d] type 01 class 0x060400
[    0.134278] pci 0000:06:04.0: enabling Extended Tags
[    0.134365] pci 0000:06:04.0: supports D1 D2
[    0.134367] pci 0000:06:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.134471] pci 0000:06:05.0: [8086:156d] type 01 class 0x060400
[    0.134520] pci 0000:06:05.0: enabling Extended Tags
[    0.134607] pci 0000:06:05.0: supports D1 D2
[    0.134609] pci 0000:06:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.134713] pci 0000:06:06.0: [8086:156d] type 01 class 0x060400
[    0.134763] pci 0000:06:06.0: enabling Extended Tags
[    0.134849] pci 0000:06:06.0: supports D1 D2
[    0.134851] pci 0000:06:06.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.134961] pci 0000:05:00.0: PCI bridge to [bus 06-6b]
[    0.134968] pci 0000:05:00.0:   bridge window [io  0x3000-0x4fff]
[    0.134973] pci 0000:05:00.0:   bridge window [mem 0xb0d00000-0xb91fffff]
[    0.134981] pci 0000:05:00.0:   bridge window [mem 0xbd200000-0xc53fffff 64bit pref]
[    0.135057] pci 0000:07:00.0: [8086:156c] type 00 class 0x088000
[    0.135081] pci 0000:07:00.0: reg 0x10: [mem 0xb0d00000-0xb0d3ffff]
[    0.135094] pci 0000:07:00.0: reg 0x14: [mem 0xb0d40000-0xb0d40fff]
[    0.135161] pci 0000:07:00.0: enabling Extended Tags
[    0.135272] pci 0000:07:00.0: supports D1 D2
[    0.135274] pci 0000:07:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.163610] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.163621] pci 0000:06:00.0:   bridge window [mem 0xb0d00000-0xb0dfffff]
[    0.163739] pci 0000:08:00.0: [8086:1513] type 01 class 0x060400
[    0.163844] pci 0000:08:00.0: enabling Extended Tags
[    0.163998] pci 0000:08:00.0: supports D1 D2
[    0.164000] pci 0000:08:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.193609] pci 0000:06:03.0: PCI bridge to [bus 08-38]
[    0.193617] pci 0000:06:03.0:   bridge window [io  0x3000-0x3fff]
[    0.193622] pci 0000:06:03.0:   bridge window [mem 0xb0e00000-0xb51fffff]
[    0.193630] pci 0000:06:03.0:   bridge window [mem 0xbd200000-0xc13fffff 64bit pref]
[    0.193720] acpiphp: Slot [1] registered
[    0.193745] acpiphp: Slot [2] registered
[    0.193769] acpiphp: Slot [3] registered
[    0.193792] acpiphp: Slot [4] registered
[    0.193815] acpiphp: Slot [5] registered
[    0.193870] pci 0000:09:00.0: [8086:1513] type 01 class 0x060400
[    0.193980] pci 0000:09:00.0: enabling Extended Tags
[    0.194138] pci 0000:09:00.0: supports D1 D2
[    0.194140] pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.194313] pci 0000:09:01.0: [8086:1513] type 01 class 0x060400
[    0.194422] pci 0000:09:01.0: enabling Extended Tags
[    0.194580] pci 0000:09:01.0: supports D1 D2
[    0.194582] pci 0000:09:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.194736] pci 0000:09:02.0: [8086:1513] type 01 class 0x060400
[    0.194846] pci 0000:09:02.0: enabling Extended Tags
[    0.195003] pci 0000:09:02.0: supports D1 D2
[    0.195005] pci 0000:09:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.195165] pci 0000:09:04.0: [8086:1513] type 01 class 0x060400
[    0.195275] pci 0000:09:04.0: enabling Extended Tags
[    0.195436] pci 0000:09:04.0: supports D1 D2
[    0.195438] pci 0000:09:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.195611] pci 0000:09:05.0: [8086:1513] type 01 class 0x060400
[    0.195705] pci 0000:09:05.0: enabling Extended Tags
[    0.195866] pci 0000:09:05.0: supports D1 D2
[    0.195868] pci 0000:09:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.196057] pci 0000:08:00.0: PCI bridge to [bus 09-18]
[    0.196074] pci 0000:08:00.0:   bridge window [mem 0xb0e00000-0xb11fffff]
[    0.196087] pci 0000:08:00.0:   bridge window [mem 0xbd200000-0xbd3fffff 64bit pref]
[    0.196179] acpiphp: Slot [1-1] registered
[    0.196237] pci 0000:0a:00.0: [12d8:400c] type 01 class 0x060400
[    0.196592] pci 0000:0a:00.0: supports D1 D2
[    0.196594] pci 0000:0a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.223615] pci 0000:09:00.0: PCI bridge to [bus 0a-0c]
[    0.223634] pci 0000:09:00.0:   bridge window [mem 0xb1100000-0xb11fffff]
[    0.223806] pci 0000:0b:03.0: [12d8:400c] type 01 class 0x060400
[    0.224115] pci 0000:0b:03.0: supports D1 D2
[    0.224118] pci 0000:0b:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.224312] pci 0000:0a:00.0: PCI bridge to [bus 0b-0c]
[    0.224335] pci 0000:0a:00.0:   bridge window [mem 0xb1100000-0xb11fffff]
[    0.224493] pci 0000:0c:00.0: [12d8:400e] type 00 class 0x0c0310
[    0.224540] pci 0000:0c:00.0: reg 0x10: [mem 0xb1101000-0xb1101fff]
[    0.224828] pci 0000:0c:00.0: supports D1 D2
[    0.224830] pci 0000:0c:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.224979] pci 0000:0c:00.1: [12d8:400e] type 00 class 0x0c0310
[    0.225027] pci 0000:0c:00.1: reg 0x10: [mem 0xb1100000-0xb1100fff]
[    0.225315] pci 0000:0c:00.1: supports D1 D2
[    0.225317] pci 0000:0c:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.225441] pci 0000:0c:00.2: [12d8:400f] type 00 class 0x0c0320
[    0.225488] pci 0000:0c:00.2: reg 0x10: [mem 0xb1102000-0xb11020ff]
[    0.225775] pci 0000:0c:00.2: supports D1 D2
[    0.225777] pci 0000:0c:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.226017] pci 0000:0b:03.0: PCI bridge to [bus 0c]
[    0.226040] pci 0000:0b:03.0:   bridge window [mem 0xb1100000-0xb11fffff]
[    0.226202] pci 0000:0d:00.0: [14e4:16b0] type 00 class 0x020000
[    0.226266] pci 0000:0d:00.0: reg 0x10: [mem 0xbd300000-0xbd30ffff 64bit pref]
[    0.226308] pci 0000:0d:00.0: reg 0x18: [mem 0xbd310000-0xbd31ffff 64bit pref]
[    0.226620] pci 0000:0d:00.0: PME# supported from D0 D3hot D3cold
[    0.253630] pci 0000:09:01.0: PCI bridge to [bus 0d]
[    0.253658] pci 0000:09:01.0:   bridge window [mem 0xbd300000-0xbd3fffff 64bit pref]
[    0.253770] pci 0000:0e:00.0: [11c1:5901] type 00 class 0x0c0010
[    0.253834] pci 0000:0e:00.0: reg 0x10: [mem 0xb1000000-0xb1000fff 64bit]
[    0.254158] pci 0000:0e:00.0: supports D1 D2
[    0.254160] pci 0000:0e:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.283629] pci 0000:09:02.0: PCI bridge to [bus 0e]
[    0.283647] pci 0000:09:02.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.283822] pci 0000:0f:00.0: [8086:1513] type 01 class 0x060400
[    0.283980] pci 0000:0f:00.0: enabling Extended Tags
[    0.284217] pci 0000:0f:00.0: supports D1 D2
[    0.284219] pci 0000:0f:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.313620] pci 0000:09:04.0: PCI bridge to [bus 0f-17]
[    0.313639] pci 0000:09:04.0:   bridge window [mem 0xb0e00000-0xb0ffffff]
[    0.313651] pci 0000:09:04.0:   bridge window [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.313774] acpiphp: Slot [1-2] registered
[    0.313800] acpiphp: Slot [2-1] registered
[    0.313826] acpiphp: Slot [3-1] registered
[    0.313851] acpiphp: Slot [4-1] registered
[    0.313933] pci 0000:10:00.0: [8086:1513] type 01 class 0x060400
[    0.314098] pci 0000:10:00.0: enabling Extended Tags
[    0.314340] pci 0000:10:00.0: supports D1 D2
[    0.314342] pci 0000:10:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.314586] pci 0000:10:01.0: [8086:1513] type 01 class 0x060400
[    0.314751] pci 0000:10:01.0: enabling Extended Tags
[    0.314991] pci 0000:10:01.0: supports D1 D2
[    0.314994] pci 0000:10:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.315220] pci 0000:10:02.0: [8086:1513] type 01 class 0x060400
[    0.315385] pci 0000:10:02.0: enabling Extended Tags
[    0.315625] pci 0000:10:02.0: supports D1 D2
[    0.315627] pci 0000:10:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.315857] pci 0000:10:04.0: [8086:1513] type 01 class 0x060400
[    0.315999] pci 0000:10:04.0: enabling Extended Tags
[    0.316243] pci 0000:10:04.0: supports D1 D2
[    0.316245] pci 0000:10:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.316491] pci 0000:10:05.0: [8086:1513] type 01 class 0x060400
[    0.316634] pci 0000:10:05.0: enabling Extended Tags
[    0.316878] pci 0000:10:05.0: supports D1 D2
[    0.316880] pci 0000:10:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.317151] pci 0000:0f:00.0: PCI bridge to [bus 10-17]
[    0.317176] pci 0000:0f:00.0:   bridge window [mem 0xb0e00000-0xb0ffffff]
[    0.317194] pci 0000:0f:00.0:   bridge window [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.317311] acpiphp: Slot [1-3] registered
[    0.317390] pci 0000:11:00.0: [12d8:400c] type 01 class 0x060400
[    0.317878] pci 0000:11:00.0: supports D1 D2
[    0.317880] pci 0000:11:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.318163] pci 0000:10:00.0: PCI bridge to [bus 11-13]
[    0.318188] pci 0000:10:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.318423] pci 0000:12:03.0: [12d8:400c] type 01 class 0x060400
[    0.318845] pci 0000:12:03.0: supports D1 D2
[    0.318847] pci 0000:12:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.319103] pci 0000:11:00.0: PCI bridge to [bus 12-13]
[    0.319134] pci 0000:11:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.319347] pci 0000:13:00.0: [12d8:400e] type 00 class 0x0c0310
[    0.319411] pci 0000:13:00.0: reg 0x10: [mem 0xb0f01000-0xb0f01fff]
[    0.319805] pci 0000:13:00.0: supports D1 D2
[    0.319807] pci 0000:13:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.320009] pci 0000:13:00.1: [12d8:400e] type 00 class 0x0c0310
[    0.320073] pci 0000:13:00.1: reg 0x10: [mem 0xb0f00000-0xb0f00fff]
[    0.320467] pci 0000:13:00.1: supports D1 D2
[    0.320469] pci 0000:13:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.320630] pci 0000:13:00.2: [12d8:400f] type 00 class 0x0c0320
[    0.320693] pci 0000:13:00.2: reg 0x10: [mem 0xb0f02000-0xb0f020ff]
[    0.321087] pci 0000:13:00.2: supports D1 D2
[    0.321090] pci 0000:13:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.321425] pci 0000:12:03.0: PCI bridge to [bus 13]
[    0.321456] pci 0000:12:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.321681] pci 0000:14:00.0: [14e4:16b0] type 00 class 0x020000
[    0.321767] pci 0000:14:00.0: reg 0x10: [mem 0xbd200000-0xbd20ffff 64bit pref]
[    0.321823] pci 0000:14:00.0: reg 0x18: [mem 0xbd210000-0xbd21ffff 64bit pref]
[    0.322249] pci 0000:14:00.0: PME# supported from D0 D3hot D3cold
[    0.322565] pci 0000:10:01.0: PCI bridge to [bus 14]
[    0.322606] pci 0000:10:01.0:   bridge window [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.322761] pci 0000:15:00.0: [11c1:5901] type 00 class 0x0c0010
[    0.322847] pci 0000:15:00.0: reg 0x10: [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.323286] pci 0000:15:00.0: supports D1 D2
[    0.323288] pci 0000:15:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.323582] pci 0000:10:02.0: PCI bridge to [bus 15]
[    0.323608] pci 0000:10:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.323746] pci 0000:10:04.0: PCI bridge to [bus 16]
[    0.323880] pci 0000:10:05.0: PCI bridge to [bus 17]
[    0.324082] pci 0000:09:05.0: PCI bridge to [bus 18]
[    0.324231] pci 0000:06:04.0: PCI bridge to [bus 39]
[    0.324301] pci 0000:06:05.0: PCI bridge to [bus 3a-6a]
[    0.324309] pci 0000:06:05.0:   bridge window [io  0x4000-0x4fff]
[    0.324314] pci 0000:06:05.0:   bridge window [mem 0xb5200000-0xb91fffff]
[    0.324321] pci 0000:06:05.0:   bridge window [mem 0xc1400000-0xc53fffff 64bit pref]
[    0.324364] pci 0000:06:06.0: PCI bridge to [bus 6b]
[    0.324463] pci 0000:04:00.0: [1c5c:174a] type 00 class 0x010802
[    0.324488] pci 0000:04:00.0: reg 0x10: [mem 0xb0900000-0xb0903fff 64bit]
[    0.324499] pci 0000:04:00.0: reg 0x18: [mem 0xb0905000-0xb0905fff]
[    0.324511] pci 0000:04:00.0: reg 0x1c: [mem 0xb0904000-0xb0904fff]
[    0.324660] pci 0000:04:00.0: 16.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x4 link at 0000:00:1c.5 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
[    0.324864] pci 0000:00:1c.5: PCI bridge to [bus 04]
[    0.324870] pci 0000:00:1c.5:   bridge window [mem 0xb0900000-0xb09fffff]
[    0.324894] pci_bus 0000:00: on NUMA node 0
[    0.325634] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    0.325638] ACPI: PCI: Interrupt link LNKA disabled
[    0.325672] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    0.325674] ACPI: PCI: Interrupt link LNKB disabled
[    0.325706] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    0.325708] ACPI: PCI: Interrupt link LNKC disabled
[    0.325739] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    0.325741] ACPI: PCI: Interrupt link LNKD disabled
[    0.325772] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    0.325774] ACPI: PCI: Interrupt link LNKE disabled
[    0.325805] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    0.325808] ACPI: PCI: Interrupt link LNKF disabled
[    0.325840] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    0.325842] ACPI: PCI: Interrupt link LNKG disabled
[    0.325873] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    0.325875] ACPI: PCI: Interrupt link LNKH disabled
[    0.326024] ACPI: EC: interrupt unblocked
[    0.326027] ACPI: EC: event unblocked
[    0.326035] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.326039] ACPI: EC: GPE=0x4e
[    0.326042] ACPI: \_SB_.PCI0.LPCB.EC__: Boot ECDT EC initialization complete
[    0.326047] ACPI: \_SB_.PCI0.LPCB.EC__: EC: Used to handle transactions and events
[    0.326103] iommu: Default domain type: Translated
[    0.326105] iommu: DMA domain TLB invalidation policy: lazy mode
[    0.326147] SCSI subsystem initialized
[    0.326155] libata version 3.00 loaded.
[    0.326201] Registered efivars operations
[    0.326314] PCI: Using ACPI for IRQ routing
[    0.331503] PCI: pci_cache_line_size set to 64 bytes
[    0.331751] e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
[    0.331753] e820: reserve RAM buffer [mem 0x0008f000-0x0008ffff]
[    0.331754] e820: reserve RAM buffer [mem 0x73d4c190-0x73ffffff]
[    0.331755] e820: reserve RAM buffer [mem 0x73d6f190-0x73ffffff]
[    0.331756] e820: reserve RAM buffer [mem 0x8ad10000-0x8bffffff]
[    0.331758] e820: reserve RAM buffer [mem 0x8ad62000-0x8bffffff]
[    0.331760] e820: reserve RAM buffer [mem 0x8ae39000-0x8bffffff]
[    0.331761] e820: reserve RAM buffer [mem 0x8aed2000-0x8bffffff]
[    0.331762] e820: reserve RAM buffer [mem 0x8af84000-0x8bffffff]
[    0.331763] e820: reserve RAM buffer [mem 0x8b000000-0x8bffffff]
[    0.331764] e820: reserve RAM buffer [mem 0x46f600000-0x46fffffff]
[    0.331779] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.331779] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.331779] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.331779] vgaarb: loaded
[    0.331779] clocksource: Switched to clocksource tsc-early
[    0.331779] pnp: PnP ACPI init
[    0.331779] system 00:00: [mem 0xfed00000-0xfed03fff] has been reserved
[    0.331779] system 00:01: [io  0xffff] has been reserved
[    0.331779] system 00:01: [io  0x1800-0x187f] has been reserved
[    0.331779] system 00:01: [io  0x0800-0x087f] has been reserved
[    0.331779] system 00:03: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.331779] system 00:03: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.331779] system 00:03: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.331779] system 00:03: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.331779] system 00:03: [mem 0xe0000000-0xefffffff] could not be reserved
[    0.331779] system 00:03: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.331779] system 00:03: [mem 0xfed90000-0xfed93fff] could not be reserved
[    0.331779] system 00:03: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.331779] system 00:03: [mem 0xff000000-0xffffffff] could not be reserved
[    0.331779] system 00:03: [mem 0xfee00000-0xfeefffff] has been reserved
[    0.331779] system 00:04: [mem 0x20000000-0x201fffff] could not be reserved
[    0.331779] system 00:04: [mem 0x40000000-0x401fffff] could not be reserved
[    0.331779] pnp: PnP ACPI: found 5 devices
[    0.331779] pci 0000:00:02.0: assigning 3 device properties
[    0.331779] pci 0000:07:00.0: assigning 9 device properties
[    0.331779] pci 0000:08:00.0: assigning 3 device properties
[    0.331779] pci 0000:0f:00.0: assigning 3 device properties
[    0.331779] pci 0000:0e:00.0: assigning 2 device properties
[    0.331779] pci 0000:15:00.0: assigning 2 device properties
[    0.331779] pci 0000:00:1b.0: assigning 4 device properties
[    0.335657] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.335697] NET: Registered PF_INET protocol family
[    0.335860] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.338535] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[    0.338572] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.338796] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.338940] TCP: Hash tables configured (established 131072 bind 65536)
[    0.338971] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
[    0.339013] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
[    0.339083] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.339158] RPC: Registered named UNIX socket transport module.
[    0.339162] RPC: Registered udp transport module.
[    0.339165] RPC: Registered tcp transport module.
[    0.339169] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.339181] pci 0000:06:00.0: bridge window [io  0x1000-0x0fff] to [bus 07] add_size 1000
[    0.339189] pci 0000:06:00.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 07] add_size 200000 add_align 100000
[    0.339203] pci 0000:10:04.0: bridge window [io  0x1000-0x0fff] to [bus 16] add_size 1000
[    0.339210] pci 0000:10:04.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 16] add_size 200000 add_align 100000
[    0.339217] pci 0000:10:04.0: bridge window [mem 0x00100000-0x000fffff] to [bus 16] add_size 200000 add_align 100000
[    0.339225] pci 0000:10:05.0: bridge window [io  0x1000-0x0fff] to [bus 17] add_size 1000
[    0.339231] pci 0000:10:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 17] add_size 200000 add_align 100000
[    0.339239] pci 0000:10:05.0: bridge window [mem 0x00100000-0x000fffff] to [bus 17] add_size 200000 add_align 100000
[    0.339247] pci 0000:0f:00.0: bridge window [io  0x1000-0x0fff] to [bus 10-17] add_size 2000
[    0.339254] pci 0000:09:04.0: bridge window [io  0x1000-0x0fff] to [bus 0f-17] add_size 3000
[    0.339261] pci 0000:09:05.0: bridge window [io  0x1000-0x0fff] to [bus 18] add_size 1000
[    0.339267] pci 0000:09:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 18] add_size 200000 add_align 100000
[    0.339275] pci 0000:09:05.0: bridge window [mem 0x00100000-0x000fffff] to [bus 18] add_size 200000 add_align 100000
[    0.339284] pci 0000:08:00.0: bridge window [io  0x1000-0x0fff] to [bus 09-18] add_size 4000
[    0.339291] pci 0000:06:04.0: bridge window [io  0x1000-0x0fff] to [bus 39] add_size 1000
[    0.339297] pci 0000:06:04.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 39] add_size 200000 add_align 100000
[    0.339305] pci 0000:06:04.0: bridge window [mem 0x00100000-0x000fffff] to [bus 39] add_size 200000 add_align 100000
[    0.339312] pci 0000:06:06.0: bridge window [io  0x1000-0x0fff] to [bus 6b] add_size 1000
[    0.339318] pci 0000:06:06.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 6b] add_size 200000 add_align 100000
[    0.339326] pci 0000:06:06.0: bridge window [mem 0x00100000-0x000fffff] to [bus 6b] add_size 200000 add_align 100000
[    0.339338] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.339352] pci 0000:00:1c.1: PCI bridge to [bus 02]
[    0.339359] pci 0000:00:1c.1:   bridge window [mem 0xb0a00000-0xb0bfffff]
[    0.339365] pci 0000:00:1c.1:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.339375] pci 0000:00:1c.2: PCI bridge to [bus 03]
[    0.339381] pci 0000:00:1c.2:   bridge window [mem 0xb0400000-0xb08fffff]
[    0.339397] pci 0000:06:00.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339403] pci 0000:06:00.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339409] pci 0000:06:04.0: BAR 8: no space for [mem size 0x00200000]
[    0.339414] pci 0000:06:04.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339420] pci 0000:06:04.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339426] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339432] pci 0000:06:06.0: BAR 8: no space for [mem size 0x00200000]
[    0.339437] pci 0000:06:06.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339442] pci 0000:06:06.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339448] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339454] pci 0000:06:00.0: BAR 7: no space for [io  size 0x1000]
[    0.339459] pci 0000:06:00.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339464] pci 0000:06:04.0: BAR 7: no space for [io  size 0x1000]
[    0.339469] pci 0000:06:04.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339474] pci 0000:06:06.0: BAR 7: no space for [io  size 0x1000]
[    0.339478] pci 0000:06:06.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339484] pci 0000:06:06.0: BAR 8: no space for [mem size 0x00200000]
[    0.339489] pci 0000:06:06.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339495] pci 0000:06:06.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339501] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339507] pci 0000:06:06.0: BAR 7: no space for [io  size 0x1000]
[    0.339511] pci 0000:06:06.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339516] pci 0000:06:04.0: BAR 8: no space for [mem size 0x00200000]
[    0.339521] pci 0000:06:04.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339527] pci 0000:06:04.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339533] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339539] pci 0000:06:04.0: BAR 7: no space for [io  size 0x1000]
[    0.339543] pci 0000:06:04.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339549] pci 0000:06:00.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339555] pci 0000:06:00.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339561] pci 0000:06:00.0: BAR 7: no space for [io  size 0x1000]
[    0.339566] pci 0000:06:00.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339572] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.339580] pci 0000:06:00.0:   bridge window [mem 0xb0d00000-0xb0dfffff]
[    0.339594] pci 0000:08:00.0: BAR 7: no space for [io  size 0x4000]
[    0.339598] pci 0000:08:00.0: BAR 7: failed to assign [io  size 0x4000]
[    0.339603] pci 0000:08:00.0: BAR 7: no space for [io  size 0x4000]
[    0.339608] pci 0000:08:00.0: BAR 7: failed to assign [io  size 0x4000]
[    0.339615] pci 0000:09:05.0: BAR 8: no space for [mem size 0x00200000]
[    0.339620] pci 0000:09:05.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339626] pci 0000:09:05.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339632] pci 0000:09:05.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339637] pci 0000:09:04.0: BAR 7: no space for [io  size 0x3000]
[    0.339642] pci 0000:09:04.0: BAR 7: failed to assign [io  size 0x3000]
[    0.339647] pci 0000:09:05.0: BAR 7: no space for [io  size 0x1000]
[    0.339652] pci 0000:09:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339657] pci 0000:09:05.0: BAR 8: no space for [mem size 0x00200000]
[    0.339662] pci 0000:09:05.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339668] pci 0000:09:05.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339673] pci 0000:09:05.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339679] pci 0000:09:05.0: BAR 7: no space for [io  size 0x1000]
[    0.339684] pci 0000:09:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339689] pci 0000:09:04.0: BAR 7: no space for [io  size 0x3000]
[    0.339693] pci 0000:09:04.0: BAR 7: failed to assign [io  size 0x3000]
[    0.339699] pci 0000:0b:03.0: PCI bridge to [bus 0c]
[    0.339714] pci 0000:0b:03.0:   bridge window [mem 0xb1100000-0xb11fffff]
[    0.339740] pci 0000:0a:00.0: PCI bridge to [bus 0b-0c]
[    0.339755] pci 0000:0a:00.0:   bridge window [mem 0xb1100000-0xb11fffff]
[    0.339781] pci 0000:09:00.0: PCI bridge to [bus 0a-0c]
[    0.339793] pci 0000:09:00.0:   bridge window [mem 0xb1100000-0xb11fffff]
[    0.339814] pci 0000:09:01.0: PCI bridge to [bus 0d]
[    0.339831] pci 0000:09:01.0:   bridge window [mem 0xbd300000-0xbd3fffff 64bit pref]
[    0.339847] pci 0000:09:02.0: PCI bridge to [bus 0e]
[    0.339859] pci 0000:09:02.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.339880] pci 0000:0f:00.0: BAR 7: no space for [io  size 0x2000]
[    0.339885] pci 0000:0f:00.0: BAR 7: failed to assign [io  size 0x2000]
[    0.339890] pci 0000:0f:00.0: BAR 7: no space for [io  size 0x2000]
[    0.339895] pci 0000:0f:00.0: BAR 7: failed to assign [io  size 0x2000]
[    0.339901] pci 0000:10:04.0: BAR 8: no space for [mem size 0x00200000]
[    0.339906] pci 0000:10:04.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339913] pci 0000:10:04.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339918] pci 0000:10:04.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339924] pci 0000:10:05.0: BAR 8: no space for [mem size 0x00200000]
[    0.339929] pci 0000:10:05.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339935] pci 0000:10:05.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339941] pci 0000:10:05.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339946] pci 0000:10:04.0: BAR 7: no space for [io  size 0x1000]
[    0.339951] pci 0000:10:04.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339956] pci 0000:10:05.0: BAR 7: no space for [io  size 0x1000]
[    0.339961] pci 0000:10:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339966] pci 0000:10:05.0: BAR 8: no space for [mem size 0x00200000]
[    0.339971] pci 0000:10:05.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.339977] pci 0000:10:05.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.339982] pci 0000:10:05.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.339988] pci 0000:10:05.0: BAR 7: no space for [io  size 0x1000]
[    0.339993] pci 0000:10:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.339998] pci 0000:10:04.0: BAR 8: no space for [mem size 0x00200000]
[    0.340003] pci 0000:10:04.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.340009] pci 0000:10:04.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.340014] pci 0000:10:04.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.340020] pci 0000:10:04.0: BAR 7: no space for [io  size 0x1000]
[    0.340025] pci 0000:10:04.0: BAR 7: failed to assign [io  size 0x1000]
[    0.340031] pci 0000:12:03.0: PCI bridge to [bus 13]
[    0.340050] pci 0000:12:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.340084] pci 0000:11:00.0: PCI bridge to [bus 12-13]
[    0.340103] pci 0000:11:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.340137] pci 0000:10:00.0: PCI bridge to [bus 11-13]
[    0.340153] pci 0000:10:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.340181] pci 0000:10:01.0: PCI bridge to [bus 14]
[    0.340205] pci 0000:10:01.0:   bridge window [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.340226] pci 0000:10:02.0: PCI bridge to [bus 15]
[    0.340242] pci 0000:10:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.340270] pci 0000:10:04.0: PCI bridge to [bus 16]
[    0.340309] pci 0000:10:05.0: PCI bridge to [bus 17]
[    0.340348] pci 0000:0f:00.0: PCI bridge to [bus 10-17]
[    0.340364] pci 0000:0f:00.0:   bridge window [mem 0xb0e00000-0xb0ffffff]
[    0.340377] pci 0000:0f:00.0:   bridge window [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.340398] pci 0000:09:04.0: PCI bridge to [bus 0f-17]
[    0.340410] pci 0000:09:04.0:   bridge window [mem 0xb0e00000-0xb0ffffff]
[    0.340420] pci 0000:09:04.0:   bridge window [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.340436] pci 0000:09:05.0: PCI bridge to [bus 18]
[    0.340464] pci 0000:08:00.0: PCI bridge to [bus 09-18]
[    0.340476] pci 0000:08:00.0:   bridge window [mem 0xb0e00000-0xb11fffff]
[    0.340486] pci 0000:08:00.0:   bridge window [mem 0xbd200000-0xbd3fffff 64bit pref]
[    0.340501] pci 0000:06:03.0: PCI bridge to [bus 08-38]
[    0.340507] pci 0000:06:03.0:   bridge window [io  0x3000-0x3fff]
[    0.340516] pci 0000:06:03.0:   bridge window [mem 0xb0e00000-0xb51fffff]
[    0.340524] pci 0000:06:03.0:   bridge window [mem 0xbd200000-0xc13fffff 64bit pref]
[    0.340535] pci 0000:06:04.0: PCI bridge to [bus 39]
[    0.340551] pci 0000:06:05.0: PCI bridge to [bus 3a-6a]
[    0.340556] pci 0000:06:05.0:   bridge window [io  0x4000-0x4fff]
[    0.340565] pci 0000:06:05.0:   bridge window [mem 0xb5200000-0xb91fffff]
[    0.340572] pci 0000:06:05.0:   bridge window [mem 0xc1400000-0xc53fffff 64bit pref]
[    0.340583] pci 0000:06:06.0: PCI bridge to [bus 6b]
[    0.340600] pci 0000:05:00.0: PCI bridge to [bus 06-6b]
[    0.340605] pci 0000:05:00.0:   bridge window [io  0x3000-0x4fff]
[    0.340614] pci 0000:05:00.0:   bridge window [mem 0xb0d00000-0xb91fffff]
[    0.340621] pci 0000:05:00.0:   bridge window [mem 0xbd200000-0xc53fffff 64bit pref]
[    0.340632] pci 0000:00:1c.4: PCI bridge to [bus 05-6b]
[    0.340637] pci 0000:00:1c.4:   bridge window [io  0x3000-0x5fff]
[    0.340644] pci 0000:00:1c.4:   bridge window [mem 0xb0d00000-0xbd1fffff]
[    0.340651] pci 0000:00:1c.4:   bridge window [mem 0xbd200000-0xc93fffff 64bit pref]
[    0.340660] pci 0000:00:1c.5: PCI bridge to [bus 04]
[    0.340667] pci 0000:00:1c.5:   bridge window [mem 0xb0900000-0xb09fffff]
[    0.340677] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.340682] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.340687] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000fffff window]
[    0.340693] pci_bus 0000:00: resource 7 [mem 0x8fa00000-0xfeafffff window]
[    0.340698] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff window]
[    0.340704] pci_bus 0000:02: resource 1 [mem 0xb0a00000-0xb0bfffff]
[    0.340709] pci_bus 0000:02: resource 2 [mem 0x90000000-0x9fffffff 64bit pref]
[    0.340714] pci_bus 0000:03: resource 1 [mem 0xb0400000-0xb08fffff]
[    0.340720] pci_bus 0000:05: resource 0 [io  0x3000-0x5fff]
[    0.340724] pci_bus 0000:05: resource 1 [mem 0xb0d00000-0xbd1fffff]
[    0.340729] pci_bus 0000:05: resource 2 [mem 0xbd200000-0xc93fffff 64bit pref]
[    0.340735] pci_bus 0000:06: resource 0 [io  0x3000-0x4fff]
[    0.340740] pci_bus 0000:06: resource 1 [mem 0xb0d00000-0xb91fffff]
[    0.340744] pci_bus 0000:06: resource 2 [mem 0xbd200000-0xc53fffff 64bit pref]
[    0.340750] pci_bus 0000:07: resource 1 [mem 0xb0d00000-0xb0dfffff]
[    0.340755] pci_bus 0000:08: resource 0 [io  0x3000-0x3fff]
[    0.340760] pci_bus 0000:08: resource 1 [mem 0xb0e00000-0xb51fffff]
[    0.340765] pci_bus 0000:08: resource 2 [mem 0xbd200000-0xc13fffff 64bit pref]
[    0.340770] pci_bus 0000:09: resource 1 [mem 0xb0e00000-0xb11fffff]
[    0.340775] pci_bus 0000:09: resource 2 [mem 0xbd200000-0xbd3fffff 64bit pref]
[    0.340781] pci_bus 0000:0a: resource 1 [mem 0xb1100000-0xb11fffff]
[    0.340786] pci_bus 0000:0b: resource 1 [mem 0xb1100000-0xb11fffff]
[    0.340791] pci_bus 0000:0c: resource 1 [mem 0xb1100000-0xb11fffff]
[    0.340796] pci_bus 0000:0d: resource 2 [mem 0xbd300000-0xbd3fffff 64bit pref]
[    0.340802] pci_bus 0000:0e: resource 1 [mem 0xb1000000-0xb10fffff]
[    0.340807] pci_bus 0000:0f: resource 1 [mem 0xb0e00000-0xb0ffffff]
[    0.340812] pci_bus 0000:0f: resource 2 [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.340818] pci_bus 0000:10: resource 1 [mem 0xb0e00000-0xb0ffffff]
[    0.340822] pci_bus 0000:10: resource 2 [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.340828] pci_bus 0000:11: resource 1 [mem 0xb0f00000-0xb0ffffff]
[    0.340833] pci_bus 0000:12: resource 1 [mem 0xb0f00000-0xb0ffffff]
[    0.340838] pci_bus 0000:13: resource 1 [mem 0xb0f00000-0xb0ffffff]
[    0.340843] pci_bus 0000:14: resource 2 [mem 0xbd200000-0xbd2fffff 64bit pref]
[    0.340849] pci_bus 0000:15: resource 1 [mem 0xb0e00000-0xb0efffff]
[    0.340854] pci_bus 0000:3a: resource 0 [io  0x4000-0x4fff]
[    0.340859] pci_bus 0000:3a: resource 1 [mem 0xb5200000-0xb91fffff]
[    0.340863] pci_bus 0000:3a: resource 2 [mem 0xc1400000-0xc53fffff 64bit pref]
[    0.340869] pci_bus 0000:04: resource 1 [mem 0xb0900000-0xb09fffff]
[    0.341265] pci 0000:05:00.0: CLS mismatch (256 != 128), using 64 bytes
[    0.341293] pci 0000:0c:00.0: MSI is not implemented on this device, disabling it
[    0.341298] pci 0000:0c:00.0: PME# is unreliable, disabling it
[    0.341682] pci 0000:0c:00.1: MSI is not implemented on this device, disabling it
[    0.341688] pci 0000:0c:00.1: PME# is unreliable, disabling it
[    0.341794] pci 0000:0c:00.2: MSI is not implemented on this device, disabling it
[    0.341799] pci 0000:0c:00.2: PME# is unreliable, disabling it
[    0.341864] pci 0000:0c:00.2: EHCI: unrecognized capability 00
[    0.341921] pci 0000:13:00.0: MSI is not implemented on this device, disabling it
[    0.341926] pci 0000:13:00.0: PME# is unreliable, disabling it
[    0.342247] pci 0000:13:00.1: MSI is not implemented on this device, disabling it
[    0.342253] pci 0000:13:00.1: PME# is unreliable, disabling it
[    0.342375] pci 0000:13:00.2: MSI is not implemented on this device, disabling it
[    0.342380] pci 0000:13:00.2: PME# is unreliable, disabling it
[    0.342457] pci 0000:13:00.2: EHCI: unrecognized capability 00
[    0.342537] DMAR: No ATSR found
[    0.342541] DMAR: No SATC found
[    0.342544] DMAR: IOMMU feature pgsel_inv inconsistent
[    0.342546] DMAR: IOMMU feature sc_support inconsistent
[    0.342550] DMAR: IOMMU feature pass_through inconsistent
[    0.342553] Unpacking initramfs...
[    0.342554] DMAR: dmar0: Using Queued invalidation
[    0.342560] DMAR: dmar1: Using Queued invalidation
[    0.438762] pci 0000:00:00.0: Adding to iommu group 0
[    0.438795] pci 0000:00:02.0: Adding to iommu group 1
[    0.438815] pci 0000:00:03.0: Adding to iommu group 2
[    0.438836] pci 0000:00:14.0: Adding to iommu group 3
[    0.438868] pci 0000:00:16.0: Adding to iommu group 4
[    0.438887] pci 0000:00:1b.0: Adding to iommu group 5
[    0.438907] pci 0000:00:1c.0: Adding to iommu group 6
[    0.438927] pci 0000:00:1c.1: Adding to iommu group 7
[    0.438948] pci 0000:00:1c.2: Adding to iommu group 8
[    0.438968] pci 0000:00:1c.4: Adding to iommu group 9
[    0.438988] pci 0000:00:1c.5: Adding to iommu group 10
[    0.439025] pci 0000:00:1f.0: Adding to iommu group 11
[    0.439045] pci 0000:00:1f.3: Adding to iommu group 11
[    0.439064] pci 0000:02:00.0: Adding to iommu group 12
[    0.439083] pci 0000:03:00.0: Adding to iommu group 13
[    0.439103] pci 0000:05:00.0: Adding to iommu group 14
[    0.439123] pci 0000:06:00.0: Adding to iommu group 15
[    0.439142] pci 0000:06:03.0: Adding to iommu group 16
[    0.439163] pci 0000:06:04.0: Adding to iommu group 17
[    0.439184] pci 0000:06:05.0: Adding to iommu group 18
[    0.439204] pci 0000:06:06.0: Adding to iommu group 19
[    0.439213] pci 0000:07:00.0: Adding to iommu group 15
[    0.439222] pci 0000:08:00.0: Adding to iommu group 16
[    0.439230] pci 0000:09:00.0: Adding to iommu group 16
[    0.439239] pci 0000:09:01.0: Adding to iommu group 16
[    0.439249] pci 0000:09:02.0: Adding to iommu group 16
[    0.439258] pci 0000:09:04.0: Adding to iommu group 16
[    0.439267] pci 0000:09:05.0: Adding to iommu group 16
[    0.439276] pci 0000:0a:00.0: Adding to iommu group 16
[    0.439285] pci 0000:0b:03.0: Adding to iommu group 16
[    0.439293] pci 0000:0c:00.0: Adding to iommu group 16
[    0.439302] pci 0000:0c:00.1: Adding to iommu group 16
[    0.439310] pci 0000:0c:00.2: Adding to iommu group 16
[    0.439319] pci 0000:0d:00.0: Adding to iommu group 16
[    0.439327] pci 0000:0e:00.0: Adding to iommu group 16
[    0.439335] pci 0000:0f:00.0: Adding to iommu group 16
[    0.439345] pci 0000:10:00.0: Adding to iommu group 16
[    0.439354] pci 0000:10:01.0: Adding to iommu group 16
[    0.439362] pci 0000:10:02.0: Adding to iommu group 16
[    0.439370] pci 0000:10:04.0: Adding to iommu group 16
[    0.439379] pci 0000:10:05.0: Adding to iommu group 16
[    0.439387] pci 0000:11:00.0: Adding to iommu group 16
[    0.439396] pci 0000:12:03.0: Adding to iommu group 16
[    0.439404] pci 0000:13:00.0: Adding to iommu group 16
[    0.439413] pci 0000:13:00.1: Adding to iommu group 16
[    0.439421] pci 0000:13:00.2: Adding to iommu group 16
[    0.439430] pci 0000:14:00.0: Adding to iommu group 16
[    0.439438] pci 0000:15:00.0: Adding to iommu group 16
[    0.439458] pci 0000:04:00.0: Adding to iommu group 20
[    0.441558] DMAR: Intel(R) Virtualization Technology for Directed I/O
[    0.441563] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.441567] software IO TLB: mapped [mem 0x000000006c76e000-0x000000007076e000] (64MB)
[    0.441578] ACPI: bus type thunderbolt registered
[    0.441752] thunderbolt 0000:07:00.0: total paths: 12
[    0.442017] thunderbolt 0000:07:00.0: allocating TX ring 0 of size 10
[    0.442054] thunderbolt 0000:07:00.0: allocating RX ring 0 of size 10
[    0.442077] thunderbolt 0000:07:00.0: control channel created
[    0.442081] thunderbolt 0000:07:00.0: ICM not supported on this controller
[    0.442093] thunderbolt 0000:07:00.0: freeing RX ring 0
[    0.442103] thunderbolt 0000:07:00.0: freeing TX ring 0
[    0.442117] thunderbolt 0000:07:00.0: allocating TX ring 0 of size 10
[    0.442127] thunderbolt 0000:07:00.0: allocating RX ring 0 of size 10
[    0.442138] thunderbolt 0000:07:00.0: control channel created
[    0.442141] thunderbolt 0000:07:00.0: using software connection manager
[    0.442144] thunderbolt 0000:07:00.0: device link creation from 0000:06:00.0 failed
[    0.442191] thunderbolt 0000:07:00.0: created link from 0000:06:03.0
[    0.442208] thunderbolt 0000:07:00.0: created link from 0000:06:04.0
[    0.442225] thunderbolt 0000:07:00.0: created link from 0000:06:05.0
[    0.442241] thunderbolt 0000:07:00.0: created link from 0000:06:06.0
[    0.442378] thunderbolt 0000:07:00.0: NHI initialized, starting thunderbolt
[    0.442380] thunderbolt 0000:07:00.0: control channel starting...
[    0.442382] thunderbolt 0000:07:00.0: starting TX ring 0
[    0.442390] thunderbolt 0000:07:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[    0.442394] thunderbolt 0000:07:00.0: starting RX ring 0
[    0.442402] thunderbolt 0000:07:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[    0.442407] thunderbolt 0000:07:00.0: security level set to user
[    0.442569] thunderbolt 0000:07:00.0: current switch config:
[    0.442572] thunderbolt 0000:07:00.0:  Thunderbolt 2 Switch: 8086:156d (Revision: 0, TB Version: 2)
[    0.442575] thunderbolt 0000:07:00.0:   Max Port Number: 12
[    0.442578] thunderbolt 0000:07:00.0:   Config:
[    0.442579] thunderbolt 0000:07:00.0:    Upstream Port Number: 5 Depth: 0 Route String: 0x0 Enabled: 1, PlugEventsDelay: 255ms
[    0.442583] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[    0.444320] Freeing initrd memory: 7308K
[    0.555451] thunderbolt 0000:07:00.0: initializing Switch at 0x0 (depth: 0, up port: 5)
[    0.556090] thunderbolt 0000:07:00.0: 0: DROM version: 1
[    0.557497] thunderbolt 0000:07:00.0: 0: uid: 0x1000f0811ee60
[    0.559417] thunderbolt 0000:07:00.0:  Port 1: 8086:156d (Revision: 0, TB Version: 1, Type: Port (0x1))
[    0.559420] thunderbolt 0000:07:00.0:   Max hop id (in/out): 15/15
[    0.559422] thunderbolt 0000:07:00.0:   Max counters: 16
[    0.559423] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.559424] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.561336] thunderbolt 0000:07:00.0:  Port 2: 8086:156d (Revision: 0, TB Version: 1, Type: Port (0x1))
[    0.561338] thunderbolt 0000:07:00.0:   Max hop id (in/out): 15/15
[    0.561340] thunderbolt 0000:07:00.0:   Max counters: 16
[    0.561341] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.561342] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.563256] thunderbolt 0000:07:00.0:  Port 3: 8086:156d (Revision: 0, TB Version: 1, Type: Port (0x1))
[    0.563258] thunderbolt 0000:07:00.0:   Max hop id (in/out): 15/15
[    0.563259] thunderbolt 0000:07:00.0:   Max counters: 16
[    0.563260] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.563261] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.565176] thunderbolt 0000:07:00.0:  Port 4: 8086:156d (Revision: 0, TB Version: 1, Type: Port (0x1))
[    0.565178] thunderbolt 0000:07:00.0:   Max hop id (in/out): 15/15
[    0.565179] thunderbolt 0000:07:00.0:   Max counters: 16
[    0.565180] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.565181] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.565944] thunderbolt 0000:07:00.0:  Port 5: 8086:156d (Revision: 0, TB Version: 1, Type: NHI (0x2))
[    0.565946] thunderbolt 0000:07:00.0:   Max hop id (in/out): 11/11
[    0.565947] thunderbolt 0000:07:00.0:   Max counters: 16
[    0.565948] thunderbolt 0000:07:00.0:   NFC Credits: 0xf00000
[    0.565949] thunderbolt 0000:07:00.0:   Credits (total/control): 15/0
[    0.566200] thunderbolt 0000:07:00.0:  Port 6: 8086:156d (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[    0.566202] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.566203] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.566204] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.566205] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.566457] random: fast init done
[    0.566457] thunderbolt 0000:07:00.0:  Port 7: 8086:156d (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[    0.566462] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.566464] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.566465] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.566466] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.566712] thunderbolt 0000:07:00.0:  Port 8: 8086:156d (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[    0.566714] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.566715] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.566716] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.566717] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.566968] thunderbolt 0000:07:00.0:  Port 9: 8086:156d (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[    0.566970] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.566971] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.566972] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.566973] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.566974] thunderbolt 0000:07:00.0: 0:a: disabled by eeprom
[    0.567224] thunderbolt 0000:07:00.0:  Port 11: 8086:156d (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0101))
[    0.567226] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    0.567227] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.567228] thunderbolt 0000:07:00.0:   NFC Credits: 0xf0000b
[    0.567230] thunderbolt 0000:07:00.0:   Credits (total/control): 15/0
[    0.567480] thunderbolt 0000:07:00.0:  Port 12: 8086:156d (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0101))
[    0.567482] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    0.567483] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.567484] thunderbolt 0000:07:00.0:   NFC Credits: 0xf00000
[    0.567485] thunderbolt 0000:07:00.0:   Credits (total/control): 15/0
[    0.572473] thunderbolt 0000:07:00.0: 0: TMU: current mode: HiFi
[    0.572603] thunderbolt 0000:07:00.0: 0:1: is connected, link is up (state: 2)
[    0.572856] thunderbolt 0000:07:00.0: current switch config:
[    0.572857] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[    0.572859] thunderbolt 0000:07:00.0:   Max Port Number: 13
[    0.572861] thunderbolt 0000:07:00.0:   Config:
[    0.572862] thunderbolt 0000:07:00.0:    Upstream Port Number: 1 Depth: 1 Route String: 0x1 Enabled: 1, PlugEventsDelay: 255ms
[    0.572864] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[    0.577466] thunderbolt 0000:07:00.0: initializing Switch at 0x1 (depth: 1, up port: 1)
[    0.594873] thunderbolt 0000:07:00.0: 1: reading drom (length: 0x97)
[    1.088572] thunderbolt 0000:07:00.0: 1: DROM version: 1
[    1.089596] thunderbolt 0000:07:00.0: 1: uid: 0x1000100189170
[    1.092540] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.092542] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.092543] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.092544] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.092545] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.095483] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.095485] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.095486] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.095487] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c0000e
[    1.095488] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.098427] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.098429] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.098430] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.098431] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.098432] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.101371] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.101372] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.101373] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.101374] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.101375] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.101377] thunderbolt 0000:07:00.0: 1:5: disabled by eeprom
[    1.101378] thunderbolt 0000:07:00.0: 1:6: disabled by eeprom
[    1.102267] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.102268] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.102270] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.102271] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.102272] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.103163] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.103165] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.103166] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.103167] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.103168] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.103169] thunderbolt 0000:07:00.0: 1:9: disabled by eeprom
[    1.104059] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[    1.104061] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.104062] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.104063] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.104064] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.105212] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[    1.105214] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    1.105215] thunderbolt 0000:07:00.0:   Max counters: 2
[    1.105216] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.105217] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.105218] thunderbolt 0000:07:00.0: 1:c: disabled by eeprom
[    1.105219] thunderbolt 0000:07:00.0: 1:d: disabled by eeprom
[    1.123968] thunderbolt 0000:07:00.0: 1: TMU: current mode: bi-directional, HiFi
[    1.123985] thunderbolt 0-1: new device found, vendor=0x1 device=0x8002
[    1.123989] thunderbolt 0-1: Apple, Inc. Thunderbolt Display
[    1.124480] thunderbolt 0000:07:00.0: 1:3: is connected, link is up (state: 2)
[    1.124736] thunderbolt 0000:07:00.0: current switch config:
[    1.124737] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[    1.124739] thunderbolt 0000:07:00.0:   Max Port Number: 13
[    1.124740] thunderbolt 0000:07:00.0:   Config:
[    1.124741] thunderbolt 0000:07:00.0:    Upstream Port Number: 3 Depth: 2 Route String: 0x301 Enabled: 1, PlugEventsDelay: 255ms
[    1.124743] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[    1.129345] thunderbolt 0000:07:00.0: initializing Switch at 0x301 (depth: 2, up port: 3)
[    1.146751] thunderbolt 0000:07:00.0: 301: reading drom (length: 0x97)
[    1.622405] random: crng init done
[    1.640450] thunderbolt 0000:07:00.0: 301: DROM version: 1
[    1.641474] thunderbolt 0000:07:00.0: 301: uid: 0x100010102a740
[    1.644418] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.644420] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.644421] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.644422] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.644424] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.647362] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.647364] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.647365] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.647366] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.647367] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.650306] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.650308] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.650309] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.650310] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.650311] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.653250] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.653252] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.653253] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.653254] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.653255] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.653256] thunderbolt 0000:07:00.0: 301:5: disabled by eeprom
[    1.653257] thunderbolt 0000:07:00.0: 301:6: disabled by eeprom
[    1.654146] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.654148] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.654149] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.654150] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.654151] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.655042] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.655044] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.655045] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.655046] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.655047] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.655048] thunderbolt 0000:07:00.0: 301:9: disabled by eeprom
[    1.655938] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[    1.655940] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.655941] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.655942] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.655943] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.657090] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[    1.657092] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    1.657093] thunderbolt 0000:07:00.0:   Max counters: 2
[    1.657094] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.657095] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.657096] thunderbolt 0000:07:00.0: 301:c: disabled by eeprom
[    1.657097] thunderbolt 0000:07:00.0: 301:d: disabled by eeprom
[    1.675297] thunderbolt 0000:07:00.0: 301: TMU: current mode: bi-directional, HiFi
[    1.675312] thunderbolt 0-301: new device found, vendor=0x1 device=0x8002
[    1.675316] thunderbolt 0-301: Apple, Inc. Thunderbolt Display
[    1.675427] thunderbolt 0000:07:00.0: 301:1: is unplugged (state: 7)
[    1.675681] thunderbolt 0000:07:00.0: 301:b: DP adapter HPD set, queuing hotplug
[    1.676065] thunderbolt 0000:07:00.0: 0:3: is unplugged (state: 7)
[    1.676449] thunderbolt 0000:07:00.0: discovering PCIe Up path starting from 0:6
[    1.676578] thunderbolt 0000:07:00.0: 0:6:  In HopID: 8 => Out port: 1 Out HopID: 8
[    1.676579] thunderbolt 0000:07:00.0: 0:6:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.676581] thunderbolt 0000:07:00.0: 0:6:    Counter enabled: 1 Counter index: 0
[    1.676583] thunderbolt 0000:07:00.0: 0:6:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.676584] thunderbolt 0000:07:00.0: 0:6:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.676705] thunderbolt 0000:07:00.0: 1:1:  In HopID: 8 => Out port: 10 Out HopID: 8
[    1.676707] thunderbolt 0000:07:00.0: 1:1:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[    1.676709] thunderbolt 0000:07:00.0: 1:1:    Counter enabled: 1 Counter index: 0
[    1.676710] thunderbolt 0000:07:00.0: 1:1:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.676711] thunderbolt 0000:07:00.0: 1:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.676713] thunderbolt 0000:07:00.0: path discovery complete
[    1.677217] thunderbolt 0000:07:00.0: discovering PCIe Down path starting from 1:10
[    1.677345] thunderbolt 0000:07:00.0: 1:a:  In HopID: 8 => Out port: 1 Out HopID: 8
[    1.677347] thunderbolt 0000:07:00.0: 1:a:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.677348] thunderbolt 0000:07:00.0: 1:a:    Counter enabled: 1 Counter index: 0
[    1.677349] thunderbolt 0000:07:00.0: 1:a:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.677351] thunderbolt 0000:07:00.0: 1:a:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.677473] thunderbolt 0000:07:00.0: 0:1:  In HopID: 8 => Out port: 6 Out HopID: 8
[    1.677475] thunderbolt 0000:07:00.0: 0:1:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[    1.677476] thunderbolt 0000:07:00.0: 0:1:    Counter enabled: 1 Counter index: 0
[    1.677477] thunderbolt 0000:07:00.0: 0:1:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.677479] thunderbolt 0000:07:00.0: 0:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.677480] thunderbolt 0000:07:00.0: path discovery complete
[    1.677601] thunderbolt 0000:07:00.0: 0:6 <-> 1:a (PCI): discovered
[    1.678370] thunderbolt 0000:07:00.0: discovering Video path starting from 0:11
[    1.678497] thunderbolt 0000:07:00.0: 0:b:  In HopID: 9 => Out port: 2 Out HopID: 8
[    1.678499] thunderbolt 0000:07:00.0: 0:b:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.678500] thunderbolt 0000:07:00.0: 0:b:    Counter enabled: 1 Counter index: 1
[    1.678501] thunderbolt 0000:07:00.0: 0:b:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.678503] thunderbolt 0000:07:00.0: 0:b:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.678625] thunderbolt 0000:07:00.0: 1:2:  In HopID: 8 => Out port: 11 Out HopID: 9
[    1.678627] thunderbolt 0000:07:00.0: 1:2:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.678628] thunderbolt 0000:07:00.0: 1:2:    Counter enabled: 1 Counter index: 1
[    1.678629] thunderbolt 0000:07:00.0: 1:2:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.678631] thunderbolt 0000:07:00.0: 1:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.678632] thunderbolt 0000:07:00.0: path discovery complete
[    1.678881] thunderbolt 0000:07:00.0: discovering AUX TX path starting from 0:11
[    1.679009] thunderbolt 0000:07:00.0: 0:b:  In HopID: 8 => Out port: 2 Out HopID: 9
[    1.679011] thunderbolt 0000:07:00.0: 0:b:   Weight: 1 Priority: 2 Credits: 4 Drop: 0
[    1.679012] thunderbolt 0000:07:00.0: 0:b:    Counter enabled: 1 Counter index: 0
[    1.679013] thunderbolt 0000:07:00.0: 0:b:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.679015] thunderbolt 0000:07:00.0: 0:b:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.679137] thunderbolt 0000:07:00.0: 1:2:  In HopID: 9 => Out port: 11 Out HopID: 8
[    1.679139] thunderbolt 0000:07:00.0: 1:2:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.679140] thunderbolt 0000:07:00.0: 1:2:    Counter enabled: 1 Counter index: 0
[    1.679141] thunderbolt 0000:07:00.0: 1:2:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.679143] thunderbolt 0000:07:00.0: 1:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.679144] thunderbolt 0000:07:00.0: path discovery complete
[    1.679649] thunderbolt 0000:07:00.0: discovering AUX RX path starting from 1:11
[    1.679777] thunderbolt 0000:07:00.0: 1:b:  In HopID: 8 => Out port: 2 Out HopID: 8
[    1.679779] thunderbolt 0000:07:00.0: 1:b:   Weight: 1 Priority: 2 Credits: 7 Drop: 0
[    1.679780] thunderbolt 0000:07:00.0: 1:b:    Counter enabled: 1 Counter index: 0
[    1.679781] thunderbolt 0000:07:00.0: 1:b:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.679783] thunderbolt 0000:07:00.0: 1:b:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.679905] thunderbolt 0000:07:00.0: 0:2:  In HopID: 8 => Out port: 11 Out HopID: 8
[    1.679907] thunderbolt 0000:07:00.0: 0:2:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.679908] thunderbolt 0000:07:00.0: 0:2:    Counter enabled: 1 Counter index: 0
[    1.679909] thunderbolt 0000:07:00.0: 0:2:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.679911] thunderbolt 0000:07:00.0: 0:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.679912] thunderbolt 0000:07:00.0: path discovery complete
[    1.680161] thunderbolt 0000:07:00.0: 0:b <-> 1:b (DP): discovered
[    1.680673] thunderbolt 0000:07:00.0: discovering PCIe Up path starting from 1:7
[    1.680801] thunderbolt 0000:07:00.0: 1:7:  In HopID: 8 => Out port: 3 Out HopID: 8
[    1.680803] thunderbolt 0000:07:00.0: 1:7:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.680804] thunderbolt 0000:07:00.0: 1:7:    Counter enabled: 1 Counter index: 0
[    1.680805] thunderbolt 0000:07:00.0: 1:7:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.680807] thunderbolt 0000:07:00.0: 1:7:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.680929] thunderbolt 0000:07:00.0: 301:3:  In HopID: 8 => Out port: 10 Out HopID: 8
[    1.680931] thunderbolt 0000:07:00.0: 301:3:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[    1.680932] thunderbolt 0000:07:00.0: 301:3:    Counter enabled: 1 Counter index: 0
[    1.680934] thunderbolt 0000:07:00.0: 301:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.680935] thunderbolt 0000:07:00.0: 301:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.680936] thunderbolt 0000:07:00.0: path discovery complete
[    1.681441] thunderbolt 0000:07:00.0: discovering PCIe Down path starting from 301:10
[    1.681569] thunderbolt 0000:07:00.0: 301:a:  In HopID: 8 => Out port: 3 Out HopID: 8
[    1.681571] thunderbolt 0000:07:00.0: 301:a:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.681572] thunderbolt 0000:07:00.0: 301:a:    Counter enabled: 1 Counter index: 0
[    1.681573] thunderbolt 0000:07:00.0: 301:a:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.681575] thunderbolt 0000:07:00.0: 301:a:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.681697] thunderbolt 0000:07:00.0: 1:3:  In HopID: 8 => Out port: 7 Out HopID: 8
[    1.681699] thunderbolt 0000:07:00.0: 1:3:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[    1.681700] thunderbolt 0000:07:00.0: 1:3:    Counter enabled: 1 Counter index: 0
[    1.681701] thunderbolt 0000:07:00.0: 1:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.681703] thunderbolt 0000:07:00.0: 1:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.681704] thunderbolt 0000:07:00.0: path discovery complete
[    1.681825] thunderbolt 0000:07:00.0: 1:7 <-> 301:a (PCI): discovered
[    1.682210] thunderbolt 0000:07:00.0: 0:b: DP IN resource available
[    1.682211] thunderbolt 0000:07:00.0: 0:c: DP IN resource available
[    1.682340] thunderbolt 0000:07:00.0: 301:b: DP OUT resource available
[    1.682345] thunderbolt 0000:07:00.0: looking for DP IN <-> DP OUT pairs:
[    1.682354] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
[    1.682359] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[    1.682361] RAPL PMU: hw unit of domain package 2^-14 Joules
[    1.682363] RAPL PMU: hw unit of domain dram 2^-14 Joules
[    1.682365] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[    1.682469] thunderbolt 0000:07:00.0: 0:b: in use
[    1.682597] thunderbolt 0000:07:00.0: 0:c: DP IN available
[    1.682727] thunderbolt 0000:07:00.0: 301:b: DP OUT available
[    1.682731] thunderbolt 0000:07:00.0: 0: allocated DP resource for port 12
[    1.682734] thunderbolt 0000:07:00.0: 301:b: calculating available bandwidth
[    1.682852] thunderbolt 0000:07:00.0: 0:1: link total bandwidth 9000 Mb/s
[    1.682856] thunderbolt 0000:07:00.0: 1:1: link total bandwidth 9000 Mb/s
[    1.682981] thunderbolt 0000:07:00.0: 1:3: link total bandwidth 9000 Mb/s
[    1.682985] thunderbolt 0000:07:00.0: 301:3: link total bandwidth 9000 Mb/s
[    1.682988] thunderbolt 0000:07:00.0: available bandwidth for new DP tunnel 9000/9000 Mb/s
[    1.682996] thunderbolt 0000:07:00.0: 0:c <-> 301:b (DP): activating
[    1.683000] thunderbolt 0000:07:00.0: activating Video path from 0:12 to 301:11
[    1.683003] thunderbolt 0000:07:00.0: 301:4: adding 12 NFC credits to 0
[    1.683108] thunderbolt 0000:07:00.0: 1:2: adding 12 NFC credits to 14
[    1.683197] Initialise system trusted keyrings
[    1.683231] workingset: timestamp_bits=62 max_order=22 bucket_order=0
[    1.683234] thunderbolt 0000:07:00.0: 0:c: adding 12 NFC credits to 0
[    1.683487] thunderbolt 0000:07:00.0: 301:4: Writing hop 2
[    1.683489] thunderbolt 0000:07:00.0: 301:4:  In HopID: 8 => Out port: 11 Out HopID: 9
[    1.683490] thunderbolt 0000:07:00.0: 301:4:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.683492] thunderbolt 0000:07:00.0: 301:4:    Counter enabled: 0 Counter index: 2047
[    1.683494] thunderbolt 0000:07:00.0: 301:4:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.683495] thunderbolt 0000:07:00.0: 301:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.683743] thunderbolt 0000:07:00.0: 1:2: Writing hop 1
[    1.683745] thunderbolt 0000:07:00.0: 1:2:  In HopID: 10 => Out port: 4 Out HopID: 8
[    1.683746] thunderbolt 0000:07:00.0: 1:2:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.683748] thunderbolt 0000:07:00.0: 1:2:    Counter enabled: 0 Counter index: 2047
[    1.683749] thunderbolt 0000:07:00.0: 1:2:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.683751] thunderbolt 0000:07:00.0: 1:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.683999] thunderbolt 0000:07:00.0: 0:c: Writing hop 0
[    1.684000] thunderbolt 0000:07:00.0: 0:c:  In HopID: 9 => Out port: 2 Out HopID: 10
[    1.684002] thunderbolt 0000:07:00.0: 0:c:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.684003] thunderbolt 0000:07:00.0: 0:c:    Counter enabled: 0 Counter index: 2047
[    1.684005] thunderbolt 0000:07:00.0: 0:c:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.684006] thunderbolt 0000:07:00.0: 0:c:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.684127] thunderbolt 0000:07:00.0: path activation complete
[    1.684129] thunderbolt 0000:07:00.0: activating AUX TX path from 0:12 to 301:11
[    1.684255] thunderbolt 0000:07:00.0: 301:4: Writing hop 2
[    1.684256] thunderbolt 0000:07:00.0: 301:4:  In HopID: 9 => Out port: 11 Out HopID: 8
[    1.684258] thunderbolt 0000:07:00.0: 301:4:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.684259] thunderbolt 0000:07:00.0: 301:4:    Counter enabled: 0 Counter index: 2047
[    1.684261] thunderbolt 0000:07:00.0: 301:4:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.684262] thunderbolt 0000:07:00.0: 301:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.684383] NFS: Registering the id_resolver key type
[    1.684389] Key type id_resolver registered
[    1.684391] Key type id_legacy registered
[    1.684405] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    1.684446] Key type asymmetric registered
[    1.684449] Asymmetric key parser 'x509' registered
[    1.684512] thunderbolt 0000:07:00.0: 1:2: Writing hop 1
[    1.684513] thunderbolt 0000:07:00.0: 1:2:  In HopID: 11 => Out port: 4 Out HopID: 9
[    1.684515] thunderbolt 0000:07:00.0: 1:2:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.684516] thunderbolt 0000:07:00.0: 1:2:    Counter enabled: 0 Counter index: 2047
[    1.684518] thunderbolt 0000:07:00.0: 1:2:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.684519] thunderbolt 0000:07:00.0: 1:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.684767] thunderbolt 0000:07:00.0: 0:c: Writing hop 0
[    1.684768] thunderbolt 0000:07:00.0: 0:c:  In HopID: 8 => Out port: 2 Out HopID: 11
[    1.684770] thunderbolt 0000:07:00.0: 0:c:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.684771] thunderbolt 0000:07:00.0: 0:c:    Counter enabled: 0 Counter index: 2047
[    1.684772] thunderbolt 0000:07:00.0: 0:c:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.684774] thunderbolt 0000:07:00.0: 0:c:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.684895] thunderbolt 0000:07:00.0: path activation complete
[    1.684896] thunderbolt 0000:07:00.0: activating AUX RX path from 301:11 to 0:12
[    1.685026] thunderbolt 0000:07:00.0: 0:2: Writing hop 2
[    1.685028] thunderbolt 0000:07:00.0: 0:2:  In HopID: 9 => Out port: 12 Out HopID: 8
[    1.685030] thunderbolt 0000:07:00.0: 0:2:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.685031] thunderbolt 0000:07:00.0: 0:2:    Counter enabled: 0 Counter index: 2047
[    1.685032] thunderbolt 0000:07:00.0: 0:2:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.685034] thunderbolt 0000:07:00.0: 0:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.685281] thunderbolt 0000:07:00.0: 1:4: Writing hop 1
[    1.685283] thunderbolt 0000:07:00.0: 1:4:  In HopID: 8 => Out port: 2 Out HopID: 9
[    1.685284] thunderbolt 0000:07:00.0: 1:4:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.685286] thunderbolt 0000:07:00.0: 1:4:    Counter enabled: 0 Counter index: 2047
[    1.685287] thunderbolt 0000:07:00.0: 1:4:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.685288] thunderbolt 0000:07:00.0: 1:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.685537] thunderbolt 0000:07:00.0: 301:b: Writing hop 0
[    1.685539] thunderbolt 0000:07:00.0: 301:b:  In HopID: 8 => Out port: 4 Out HopID: 8
[    1.685540] thunderbolt 0000:07:00.0: 301:b:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.685542] thunderbolt 0000:07:00.0: 301:b:    Counter enabled: 0 Counter index: 2047
[    1.685543] thunderbolt 0000:07:00.0: 301:b:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.685545] thunderbolt 0000:07:00.0: 301:b:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.685665] thunderbolt 0000:07:00.0: path activation complete
[    1.685702] pcieport 0000:06:00.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.685935] pcieport 0000:06:03.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.686194] pcieport 0000:06:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.686351] pcieport 0000:06:05.0: enabling device (0000 -> 0003)
[    1.686462] pcieport 0000:06:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.686726] pcieport 0000:06:06.0: pciehp: Slot #6 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.689253] pcieport 0000:09:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.689585] pcieport 0000:09:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.692943] pcieport 0000:10:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.693370] pcieport 0000:10:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.694341] ACPI: AC: AC Adapter [ADP1] (off-line)
[    1.694417] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    1.694454] ACPI: button: Lid Switch [LID0]
[    1.694497] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    1.694521] ACPI: button: Power Button [PWRB]
[    1.694557] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
[    1.694577] ACPI: button: Sleep Button [SLPB]
[    1.694612] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    1.694646] ACPI: button: Power Button [PWRF]
[    1.694960] smbus_hc ACPI0001:00: SBS HC: offset = 0x20, query_bit = 0x10
[    2.094631] ACPI: Smart Battery System [SBS0]: Battery Slot [BAT0] (battery present)
[    2.104334] hpet_acpi_add: no address or irqs in _CRS
[    2.105427] loop: module loaded
[    2.105660] nvme nvme0: pci function 0000:04:00.0
[    2.105985] tun: Universal TUN/TAP device driver, 1.6
[    2.106064] mousedev: PS/2 mouse device common for all mice
[    2.106083] rtc_cmos 00:02: RTC can wake from S4
[    2.106336] rtc_cmos 00:02: registered as rtc0
[    2.106373] rtc_cmos 00:02: setting system clock to 2022-04-01T05:31:32 UTC (1648791092)
[    2.106378] rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram
[    2.106578] device-mapper: ioctl: 4.46.0-ioctl (2022-02-22) initialised: dm-devel@redhat.com
[    2.106591] intel_pstate: Intel P-state driver initializing
[    2.106694] efifb: probing for efifb
[    2.106707] efifb: framebuffer at 0xa0000000, using 16000k, total 16000k
[    2.106710] efifb: mode is 2560x1600x32, linelength=10240, pages=1
[    2.106712] efifb: scrolling: redraw
[    2.106713] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    2.109913] Console: switching to colour frame buffer device 320x100
[    2.112938] fb0: EFI VGA frame buffer device
[    2.113011] NET: Registered PF_PACKET protocol family
[    2.113032] Key type dns_resolver registered
[    2.113205] microcode: sig=0x40651, pf=0x40, revision=0x26
[    2.113247] microcode: Microcode Update Driver: v2.2.
[    2.113252] IPI shorthand broadcast: enabled
[    2.113270] AVX2 version of gcm_enc/dec engaged.
[    2.113307] AES CTR mode by8 optimization enabled
[    2.113426] sched_clock: Marking stable (2111820690, 1600950)->(2142207081, -28785441)
[    2.113489] registered taskstats version 1
[    2.113497] Loading compiled-in X.509 certificates
[    2.161557] nvme0: Identify(0x6), Invalid Field in Command (sct 0x0 / sc 0x2)
[    2.179762] nvme nvme0: 4/0/0 default/read/poll queues
[    2.184729]  nvme0n1: p1 p2 p3 p4 p5 p6 p7
[    2.352295] Freeing unused kernel image (initmem) memory: 996K
[    2.373637] Write protecting the kernel read-only data: 16384k
[    2.374003] Freeing unused kernel image (text/rodata gap) memory: 2036K
[    2.374182] Freeing unused kernel image (rodata/data gap) memory: 1356K
[    2.374199] Run /init as init process
[    2.374206]   with arguments:
[    2.374208]     /init
[    2.374209]   with environment:
[    2.374209]     HOME=/
[    2.374210]     TERM=linux
[    2.427563] udevd[941]: starting version 3.2.9
[    2.428323] udevd[942]: starting eudev-3.2.9
[    2.448558] ACPI: bus type USB registered
[    2.448594] usbcore: registered new interface driver usbfs
[    2.448619] usbcore: registered new interface driver hub
[    2.448648] usbcore: registered new device driver usb
[    2.450285] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    2.450308] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    2.451385] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x000000000004b810
[    2.451534] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
[    2.451549] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.451560] usb usb1: Product: xHCI Host Controller
[    2.451568] usb usb1: Manufacturer: Linux 5.17.0+ xhci-hcd
[    2.451580] usb usb1: SerialNumber: 0000:00:14.0
[    2.451749] hub 1-0:1.0: USB hub found
[    2.451766] hub 1-0:1.0: 9 ports detected
[    2.452146] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    2.452165] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    2.452186] xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
[    2.452232] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.17
[    2.452245] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.452257] usb usb2: Product: xHCI Host Controller
[    2.452265] usb usb2: Manufacturer: Linux 5.17.0+ xhci-hcd
[    2.452273] usb usb2: SerialNumber: 0000:00:14.0
[    2.452407] hub 2-0:1.0: USB hub found
[    2.452421] hub 2-0:1.0: 4 ports detected
[    2.456067] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[    2.456425] i2c i2c-0: 2/2 memory slots populated (from DMI)
[    2.514397] applesmc: key=571 fan=1 temp=32 index=31 acc=0 lux=2 kbd=1
[    2.514552] applesmc applesmc.768: hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[    2.523786] tg3 0000:0d:00.0 eth0: Tigon3 [partno(BCM957761) rev 57785100] (PCI Express) MAC address c8:2a:14:4f:80:3e
[    2.523826] tg3 0000:0d:00.0 eth0: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    2.523853] tg3 0000:0d:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    2.523868] tg3 0000:0d:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[    2.614260] tg3 0000:14:00.0 eth1: Tigon3 [partno(BCM957761) rev 57785100] (PCI Express) MAC address 38:c9:86:48:0c:c8
[    2.614305] tg3 0000:14:00.0 eth1: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    2.614338] tg3 0000:14:00.0 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    2.614364] tg3 0000:14:00.0 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[    2.723635] tsc: Refined TSC clocksource calibration: 2599.999 MHz
[    2.723644] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x257a3b2ad7e, max_idle_ns: 440795282337 ns
[    2.723668] clocksource: Switched to clocksource tsc
[    2.743648] usb 1-3: new full-speed USB device number 2 using xhci_hcd
[    2.926341] usb 1-3: New USB device found, idVendor=05ac, idProduct=8290, bcdDevice= 1.69
[    2.926347] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.926348] usb 1-3: Product: Bluetooth USB Host Controller
[    2.926350] usb 1-3: Manufacturer: Broadcom Corp.
[    2.932968] hid: raw HID events driver (C) Jiri Kosina
[    2.937277] usbcore: registered new interface driver usbhid
[    2.937279] usbhid: USB HID core driver
[    2.937975] input: Broadcom Corp. Bluetooth USB Host Controller as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:05AC:8290.0001/input/input4
[    3.003742] hid-generic 0003:05AC:8290.0001: input,hidraw0: USB HID v1.11 Keyboard [Broadcom Corp. Bluetooth USB Host Controller] on usb-0000:00:14.0-3/input0
[    3.003886] input: Broadcom Corp. Bluetooth USB Host Controller as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:05AC:8290.0002/input/input5
[    3.004674] hid-generic 0003:05AC:8290.0002: input,hidraw1: USB HID v1.11 Mouse [Broadcom Corp. Bluetooth USB Host Controller] on usb-0000:00:14.0-3/input1
[    3.073839] usb 2-3: new SuperSpeed USB device number 2 using xhci_hcd
[    3.106643] usb 2-3: New USB device found, idVendor=05ac, idProduct=8406, bcdDevice= 8.20
[    3.106648] usb 2-3: New USB device strings: Mfr=3, Product=4, SerialNumber=5
[    3.106650] usb 2-3: Product: Card Reader
[    3.106651] usb 2-3: Manufacturer: Apple
[    3.106653] usb 2-3: SerialNumber: 000000000820
[    3.109981] usb-storage 2-3:1.0: USB Mass Storage device detected
[    3.110062] scsi host0: usb-storage 2-3:1.0
[    3.110137] usbcore: registered new interface driver usb-storage
[    3.110359] usbcore: registered new interface driver uas
[    3.253633] usb 1-5: new full-speed USB device number 3 using xhci_hcd
[    3.439676] usb 1-5: New USB device found, idVendor=05ac, idProduct=0259, bcdDevice= 2.24
[    3.439681] usb 1-5: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.439683] usb 1-5: Product: Apple Internal Keyboard / Trackpad
[    3.439684] usb 1-5: Manufacturer: Apple Inc.
[    3.448843] input: Apple Inc. Apple Internal Keyboard / Trackpad as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/0003:05AC:0259.0003/input/input6
[    3.513771] apple 0003:05AC:0259.0003: input,hidraw2: USB HID v1.11 Keyboard [Apple Inc. Apple Internal Keyboard / Trackpad] on usb-0000:00:14.0-5/input0
[    3.513971] apple 0003:05AC:0259.0004: hidraw3: USB HID v1.11 Device [Apple Inc. Apple Internal Keyboard / Trackpad] on usb-0000:00:14.0-5/input1
[    4.165607] scsi 0:0:0:0: Direct-Access     APPLE    SD Card Reader   3.00 PQ: 0 ANSI: 6
[    4.166288] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    4.166312] sd 0:0:0:0: [sda] Media removed, stopped polling
[    4.166889] sd 0:0:0:0: [sda] Attached SCSI removable disk
[    6.497575] process '/usr/bin/fstype' started with executable stack
[    6.558496] PM: Image not found (code -22)
[    6.560499] PM: hibernation: Marking nosave pages: [mem 0x00000000-0x00000fff]
[    6.560503] PM: hibernation: Marking nosave pages: [mem 0x00058000-0x00058fff]
[    6.560505] PM: hibernation: Marking nosave pages: [mem 0x0008f000-0x0008ffff]
[    6.560506] PM: hibernation: Marking nosave pages: [mem 0x000a0000-0x000fffff]
[    6.560508] PM: hibernation: Marking nosave pages: [mem 0x73d4c000-0x73d4cfff]
[    6.560509] PM: hibernation: Marking nosave pages: [mem 0x73d5c000-0x73d5cfff]
[    6.560510] PM: hibernation: Marking nosave pages: [mem 0x73d6f000-0x73d6ffff]
[    6.560511] PM: hibernation: Marking nosave pages: [mem 0x73d6f000-0x73d6ffff]
[    6.560512] PM: hibernation: Marking nosave pages: [mem 0x8ad10000-0x8ad52fff]
[    6.560513] PM: hibernation: Marking nosave pages: [mem 0x8ad62000-0x8ad8efff]
[    6.560515] PM: hibernation: Marking nosave pages: [mem 0x8ae39000-0x8ae8efff]
[    6.560517] PM: hibernation: Marking nosave pages: [mem 0x8aed2000-0x8aefefff]
[    6.560518] PM: hibernation: Marking nosave pages: [mem 0x8af84000-0x8afeffff]
[    6.560520] PM: hibernation: Marking nosave pages: [mem 0x8b000000-0xffffffff]
[    6.561560] PM: hibernation: Basic memory bitmaps created
[    6.562140] PM: hibernation: Basic memory bitmaps freed
[    6.738550] EXT4-fs (nvme0n1p4): mounted filesystem with ordered data mode. Quota mode: disabled.
[    6.898325] udevd[1205]: starting version 3.2.9
[    6.922682] udevd[1206]: starting eudev-3.2.9
[    6.968194] Linux agpgart interface v0.103
[    6.985932] ACPI: bus type drm_connector registered
[    7.007817] tg3 0000:0d:00.0 eth2: renamed from eth0
[    7.023633] input: bcm5974 as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.2/input/input7
[    7.024851] usbcore: registered new interface driver bcm5974
[    7.029637] i915 0000:00:02.0: [drm] VT-d active for gfx access
[    7.031707] checking generic (a0000000 fa0000) vs hw (b0000000 400000)
[    7.031712] checking generic (a0000000 fa0000) vs hw (a0000000 10000000)
[    7.031714] fb0: switching to i915 from EFI VGA
[    7.043369] Console: switching to colour dummy device 80x25
[    7.043419] i915 0000:00:02.0: vgaarb: deactivate vga console
[    7.043461] i915 0000:00:02.0: [drm] Transparent Hugepage support is recommended for optimal performance when IOMMU is enabled!
[    7.043480] i915 0000:00:02.0: [drm] DMAR active, disabling use of stolen memory
[    7.043980] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    7.044269] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    7.066951] snd_hda_codec_cirrus hdaudioC1D0: autoconfig for CS4208: line_outs=2 (0x12/0x13/0x0/0x0/0x0) type:speaker
[    7.066965] snd_hda_codec_cirrus hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    7.066971] snd_hda_codec_cirrus hdaudioC1D0:    hp_outs=1 (0x10/0x0/0x0/0x0/0x0)
[    7.066976] snd_hda_codec_cirrus hdaudioC1D0:    mono: mono_out=0x0
[    7.066980] snd_hda_codec_cirrus hdaudioC1D0:    dig-out=0x21/0x0
[    7.066984] snd_hda_codec_cirrus hdaudioC1D0:    inputs:
[    7.066988] snd_hda_codec_cirrus hdaudioC1D0:      Internal Mic=0x1c
[    7.066992] snd_hda_codec_cirrus hdaudioC1D0:      Mic=0x18
[    7.083364] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input8
[    7.083453] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input9
[    7.089821] input: HDA Intel PCH SPDIF as /devices/pci0000:00/0000:00:1b.0/sound/card1/input10
[    7.123606] [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0
[    7.124421] ACPI: video: Video Device [IGPU] (multi-head: yes  rom: no  post: no)
[    7.125005] acpi device:02: registered as cooling_device4
[    7.125101] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input11
[    7.125404] snd_hda_intel 0000:00:03.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[    7.125686] Bluetooth: Core ver 2.22
[    7.125703] NET: Registered PF_BLUETOOTH protocol family
[    7.125706] Bluetooth: HCI device and connection manager initialized
[    7.125712] Bluetooth: HCI socket layer initialized
[    7.125715] Bluetooth: L2CAP socket layer initialized
[    7.125720] Bluetooth: SCO socket layer initialized
[    7.126478] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    7.126730] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    7.126739] cfg80211: failed to load regulatory.db
[    7.256360] udevd[1255]: Unable to EVIOCGABS device "/dev/input/event6"
[    7.256373] udevd[1255]: Unable to EVIOCGABS device "/dev/input/event6"
[    7.256379] udevd[1255]: Unable to EVIOCGABS device "/dev/input/event6"
[    7.256385] udevd[1255]: Unable to EVIOCGABS device "/dev/input/event6"
[    7.278017] fbcon: i915drmfb (fb0) is primary device
[    8.794719] Console: switching to colour frame buffer device 320x90
[    8.813993] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[    8.856508] brcmfmac 0000:03:00.0: enabling device (0000 -> 0002)
[    8.857209] usbcore: registered new interface driver btusb
[    8.862310] input: HDA Intel HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card0/input12
[    8.862530] input: HDA Intel HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/sound/card0/input13
[    8.862982] input: HDA Intel HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.0/sound/card0/input14
[    8.863411] input: HDA Intel HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:03.0/sound/card0/input15
[    8.864245] input: HDA Intel HDMI HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:03.0/sound/card0/input16
[    8.973844] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43602-pcie for chip BCM43602/1
[    8.974526] brcmfmac 0000:03:00.0: Direct firmware load for brcm/brcmfmac43602-pcie.Apple Inc.-MacBookPro11,1.bin failed with error -2
[    8.975409] brcmfmac 0000:03:00.0: Direct firmware load for brcm/brcmfmac43602-pcie.Apple Inc.-MacBookPro11,1.txt failed with error -2
[    8.975455] brcmfmac 0000:03:00.0: Direct firmware load for brcm/brcmfmac43602-pcie.txt failed with error -2
[    8.989701] Bluetooth: hci0: BCM: chip id 102 build 0729
[    8.990661] Bluetooth: hci0: BCM: product 05ac:8290
[    8.991662] Bluetooth: hci0: BCM: features 0x2f
[    9.009587] Bluetooth: hci0: BlueZ 5.50
[    9.103037] Adding 19528700k swap on /dev/mapper/swap.  Priority:-2 extents:1 across:19528700k SS
[    9.114617] EXT4-fs (nvme0n1p4): re-mounted. Quota mode: disabled.
[    9.495652] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43602-pcie for chip BCM43602/1
[    9.495681] brcmfmac: brcmf_c_process_clm_blob: no clm_blob available (err=-2), device may have limited channels available
[    9.496056] brcmfmac: brcmf_c_preinit_dcmds: Firmware: BCM43602/1 wl0: Nov 10 2015 06:38:10 version 7.35.177.61 (r598657) FWID 01-ea662a8c
[   15.263343] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Quota mode: disabled.
[   15.477567] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[   19.299750] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   19.299754] Bluetooth: BNEP filters: protocol multicast
[   19.299757] Bluetooth: BNEP socket layer initialized
[   19.657996] broken atomic modeset userspace detected, disabling atomic
[   33.593101] ieee80211 phy0: brcmf_cfg80211_scan: Connecting: status (3)
[   34.593467] ieee80211 phy0: brcmf_cfg80211_scan: Connecting: status (3)

iMac - Left Port :
[    0.000000] Linux version 5.17.0+ (brad@bkmac) (gcc (Debian 8.3.0-6) 8.3.0, GNU ld (GNU Binutils for Debian) 2.31.1) #51 SMP PREEMPT_DYNAMIC Fri Apr 1 13:23:13 AWST 2022
[    0.000000] Command line: ro root=UUID=de35d1a6-e0e1-40b0-b46a-3974a04adf4b libata.allow_tpm=1 netconsole=6666@192.168.2.87/eth0,6666@192.168.2.208/dc:a6:32:61:33:da oops=panic panic=10 thunderbolt.dyndbg pci=assign-busses,realloc,hpbussize=0x10,hpmmiosize=128M,hpmmioprefsize=1G initrd=boot\initrd.img-5.17.0+
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    0.000000] signal: max sigframe size: 1776
[    0.000000] reserving inaccessible SNB gfx pages
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008e000-0x000000000008ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000bffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000020200000-0x000000003fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000040000000-0x00000000401fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000040200000-0x000000008ed32fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008ed33000-0x000000008ed5efff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000008ed5f000-0x000000008ed70fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008ed71000-0x000000008ed8efff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000008ed8f000-0x000000008ee59fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008ee5a000-0x000000008ee8efff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008ee8f000-0x000000008eed6fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008eed7000-0x000000008eefefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008eeff000-0x000000008efa2fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008efa3000-0x000000008f8fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffed8000-0x00000000ffefffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000086fefffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0x89109018-0x89124c57] usable ==> usable
[    0.000000] e820: update [mem 0x89109018-0x89124c57] usable ==> usable
[    0.000000] e820: update [mem 0x891a7018-0x891b8c3d] usable ==> usable
[    0.000000] e820: update [mem 0x891a7018-0x891b8c3d] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000008dfff] usable
[    0.000000] reserve setup_data: [mem 0x000000000008e000-0x000000000008ffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000000a0000-0x00000000000bffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000020000000-0x00000000201fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000020200000-0x000000003fffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000040000000-0x00000000401fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000040200000-0x0000000089109017] usable
[    0.000000] reserve setup_data: [mem 0x0000000089109018-0x0000000089124c57] usable
[    0.000000] reserve setup_data: [mem 0x0000000089124c58-0x00000000891a7017] usable
[    0.000000] reserve setup_data: [mem 0x00000000891a7018-0x00000000891b8c3d] usable
[    0.000000] reserve setup_data: [mem 0x00000000891b8c3e-0x000000008ed32fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008ed33000-0x000000008ed5efff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000008ed5f000-0x000000008ed70fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008ed71000-0x000000008ed8efff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000008ed8f000-0x000000008ee59fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008ee5a000-0x000000008ee8efff] reserved
[    0.000000] reserve setup_data: [mem 0x000000008ee8f000-0x000000008eed6fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008eed7000-0x000000008eefefff] reserved
[    0.000000] reserve setup_data: [mem 0x000000008eeff000-0x000000008efa2fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008efa3000-0x000000008f8fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ffed8000-0x00000000ffefffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000086fefffff] usable
[    0.000000] efi: EFI v1.10 by Apple
[    0.000000] efi: ACPI=0x8ed8e000 ACPI 2.0=0x8ed8e014 SMBIOS=0x8ed3b000
[    0.000000] SMBIOS 2.4 present.
[    0.000000] DMI: Apple Inc. iMac12,2/Mac-942B59F58194171B, BIOS 87.0.0.0.0 06/14/2019
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 3400.284 MHz processor
[    0.000137] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000139] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000145] last_pfn = 0x86ff00 max_arch_pfn = 0x400000000
[    0.000796] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT
[    0.001414] last_pfn = 0x8efa3 max_arch_pfn = 0x400000000
[    0.002513] Secure boot disabled
[    0.002514] RAMDISK: [mem 0x7e4ad000-0x7fffffff]
[    0.002518] ACPI: Early table checksum verification disabled
[    0.002521] ACPI: RSDP 0x000000008ED8E014 000024 (v02 APPLE )
[    0.002525] ACPI: XSDT 0x000000008ED8E1C0 0000A4 (v01 APPLE  Apple00  0000F000      01000013)
[    0.002530] ACPI: FACP 0x000000008ED8C000 0000F4 (v04 APPLE  Apple00  0000F000 Loki 0000005F)
[    0.002534] ACPI: DSDT 0x000000008ED81000 0053FB (v01 APPLE  iMac     00210001 INTL 20061109)
[    0.002537] ACPI: FACS 0x000000008ED3E000 000040
[    0.002539] ACPI: FACS 0x000000008ED3E000 000040
[    0.002541] ACPI: HPET 0x000000008ED8B000 000038 (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002544] ACPI: APIC 0x000000008ED8A000 0000BC (v02 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002547] ACPI: SBST 0x000000008ED88000 000030 (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002549] ACPI: ECDT 0x000000008ED87000 000053 (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002552] ACPI: SSDT 0x000000008ED7E000 00020D (v01 APPLE  SataAhci 00001000 INTL 20061109)
[    0.002554] ACPI: SSDT 0x000000008ED7C000 0000B1 (v01 APPLE  SmcDppt  00001000 INTL 20061109)
[    0.002557] ACPI: SSDT 0x000000008ED7A000 000646 (v01 APPLE  UsbNoRmh 00001000 INTL 20061109)
[    0.002559] ACPI: SSDT 0x000000008ED78000 00013D (v01 APPLE  SataPrt1 00001000 INTL 20061109)
[    0.002562] ACPI: SSDT 0x000000008ED77000 0000A0 (v02 APPLE  IGHda    00001000 INTL 20061109)
[    0.002565] ACPI: SSDT 0x000000008ED75000 000032 (v01 APPLE  SsdtS3   00001000 INTL 20061109)
[    0.002567] ACPI: SSDT 0x000000008ED74000 000548 (v01 PmRef  Cpu0Ist  00003000 INTL 20061109)
[    0.002570] ACPI: SSDT 0x000000008ED73000 0009B1 (v01 PmRef  CpuPm    00003000 INTL 20061109)
[    0.002572] ACPI: SSDT 0x000000008ED72000 000315 (v01 PmRef  Cpu0Tst  00003000 INTL 20061109)
[    0.002575] ACPI: SSDT 0x000000008ED71000 00037A (v01 PmRef  ApTst    00003000 INTL 20061109)
[    0.002578] ACPI: MCFG 0x000000008ED89000 00003C (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002580] ACPI: Reserving FACP table memory at [mem 0x8ed8c000-0x8ed8c0f3]
[    0.002581] ACPI: Reserving DSDT table memory at [mem 0x8ed81000-0x8ed863fa]
[    0.002582] ACPI: Reserving FACS table memory at [mem 0x8ed3e000-0x8ed3e03f]
[    0.002584] ACPI: Reserving FACS table memory at [mem 0x8ed3e000-0x8ed3e03f]
[    0.002584] ACPI: Reserving HPET table memory at [mem 0x8ed8b000-0x8ed8b037]
[    0.002586] ACPI: Reserving APIC table memory at [mem 0x8ed8a000-0x8ed8a0bb]
[    0.002587] ACPI: Reserving SBST table memory at [mem 0x8ed88000-0x8ed8802f]
[    0.002588] ACPI: Reserving ECDT table memory at [mem 0x8ed87000-0x8ed87052]
[    0.002589] ACPI: Reserving SSDT table memory at [mem 0x8ed7e000-0x8ed7e20c]
[    0.002590] ACPI: Reserving SSDT table memory at [mem 0x8ed7c000-0x8ed7c0b0]
[    0.002591] ACPI: Reserving SSDT table memory at [mem 0x8ed7a000-0x8ed7a645]
[    0.002592] ACPI: Reserving SSDT table memory at [mem 0x8ed78000-0x8ed7813c]
[    0.002593] ACPI: Reserving SSDT table memory at [mem 0x8ed77000-0x8ed7709f]
[    0.002594] ACPI: Reserving SSDT table memory at [mem 0x8ed75000-0x8ed75031]
[    0.002595] ACPI: Reserving SSDT table memory at [mem 0x8ed74000-0x8ed74547]
[    0.002597] ACPI: Reserving SSDT table memory at [mem 0x8ed73000-0x8ed739b0]
[    0.002598] ACPI: Reserving SSDT table memory at [mem 0x8ed72000-0x8ed72314]
[    0.002599] ACPI: Reserving SSDT table memory at [mem 0x8ed71000-0x8ed71379]
[    0.002600] ACPI: Reserving MCFG table memory at [mem 0x8ed89000-0x8ed8903b]
[    0.002606] ACPI: DMI detected to setup _OSI("Darwin"): Apple hardware
[    0.002634] Zone ranges:
[    0.002635]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.002636]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.002638]   Normal   [mem 0x0000000100000000-0x000000086fefffff]
[    0.002639] Movable zone start for each node
[    0.002640] Early memory node ranges
[    0.002641]   node   0: [mem 0x0000000000001000-0x000000000008dfff]
[    0.002642]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.002643]   node   0: [mem 0x0000000000100000-0x000000001fffffff]
[    0.002644]   node   0: [mem 0x0000000020200000-0x000000003fffffff]
[    0.002645]   node   0: [mem 0x0000000040200000-0x000000008ed32fff]
[    0.002646]   node   0: [mem 0x000000008ed5f000-0x000000008ed70fff]
[    0.002647]   node   0: [mem 0x000000008ed8f000-0x000000008ee59fff]
[    0.002648]   node   0: [mem 0x000000008ee8f000-0x000000008eed6fff]
[    0.002648]   node   0: [mem 0x000000008eeff000-0x000000008efa2fff]
[    0.002649]   node   0: [mem 0x0000000100000000-0x000000086fefffff]
[    0.002652] Initmem setup node 0 [mem 0x0000000000001000-0x000000086fefffff]
[    0.002656] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.002657] On node 0, zone DMA: 2 pages in unavailable ranges
[    0.002675] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.004175] On node 0, zone DMA32: 512 pages in unavailable ranges
[    0.006413] On node 0, zone DMA32: 512 pages in unavailable ranges
[    0.006419] On node 0, zone DMA32: 44 pages in unavailable ranges
[    0.006421] On node 0, zone DMA32: 30 pages in unavailable ranges
[    0.006423] On node 0, zone DMA32: 53 pages in unavailable ranges
[    0.006425] On node 0, zone DMA32: 40 pages in unavailable ranges
[    0.060530] On node 0, zone Normal: 4189 pages in unavailable ranges
[    0.060537] On node 0, zone Normal: 256 pages in unavailable ranges
[    0.060699] ACPI: PM-Timer IO Port: 0x408
[    0.060705] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.060706] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.060707] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.060708] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.060709] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.060710] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.060711] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.060712] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.060721] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[    0.060723] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.060725] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.060728] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.060729] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.060732] TSC deadline timer available
[    0.060733] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[    0.060755] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.060757] PM: hibernation: Registered nosave memory: [mem 0x0008e000-0x0008ffff]
[    0.060759] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000bffff]
[    0.060760] PM: hibernation: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[    0.060762] PM: hibernation: Registered nosave memory: [mem 0x20000000-0x201fffff]
[    0.060764] PM: hibernation: Registered nosave memory: [mem 0x40000000-0x401fffff]
[    0.060766] PM: hibernation: Registered nosave memory: [mem 0x89109000-0x89109fff]
[    0.060767] PM: hibernation: Registered nosave memory: [mem 0x89124000-0x89124fff]
[    0.060769] PM: hibernation: Registered nosave memory: [mem 0x891a7000-0x891a7fff]
[    0.060771] PM: hibernation: Registered nosave memory: [mem 0x891b8000-0x891b8fff]
[    0.060773] PM: hibernation: Registered nosave memory: [mem 0x8ed33000-0x8ed5efff]
[    0.060775] PM: hibernation: Registered nosave memory: [mem 0x8ed71000-0x8ed8efff]
[    0.060777] PM: hibernation: Registered nosave memory: [mem 0x8ee5a000-0x8ee8efff]
[    0.060778] PM: hibernation: Registered nosave memory: [mem 0x8eed7000-0x8eefefff]
[    0.060780] PM: hibernation: Registered nosave memory: [mem 0x8efa3000-0x8f8fffff]
[    0.060781] PM: hibernation: Registered nosave memory: [mem 0x8f900000-0xe00f7fff]
[    0.060782] PM: hibernation: Registered nosave memory: [mem 0xe00f8000-0xe00f8fff]
[    0.060783] PM: hibernation: Registered nosave memory: [mem 0xe00f9000-0xfed1bfff]
[    0.060784] PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.060785] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xffed7fff]
[    0.060785] PM: hibernation: Registered nosave memory: [mem 0xffed8000-0xffefffff]
[    0.060786] PM: hibernation: Registered nosave memory: [mem 0xfff00000-0xffffffff]
[    0.060788] [mem 0x8f900000-0xe00f7fff] available for PCI devices
[    0.060792] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.063080] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[    0.063247] percpu: Embedded 44 pages/cpu s139880 r8192 d32152 u262144
[    0.063254] pcpu-alloc: s139880 r8192 d32152 u262144 alloc=1*2097152
[    0.063256] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
[    0.063277] Built 1 zonelists, mobility grouping on.  Total pages: 8251732
[    0.063279] Kernel command line: ro root=UUID=de35d1a6-e0e1-40b0-b46a-3974a04adf4b libata.allow_tpm=1 netconsole=6666@192.168.2.87/eth0,6666@192.168.2.208/dc:a6:32:61:33:da oops=panic panic=10 thunderbolt.dyndbg pci=assign-busses,realloc,hpbussize=0x10,hpmmiosize=128M,hpmmioprefsize=1G initrd=boot\initrd.img-5.17.0+
[    0.063339] Unknown kernel command line parameters "netconsole=6666@192.168.2.87/eth0,6666@192.168.2.208/dc:a6:32:61:33:da", will be passed to user space.
[    0.064959] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.065784] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.065849] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.152435] Memory: 32768252K/33531492K available (8192K kernel code, 2298K rwdata, 1860K rodata, 956K init, 2628K bss, 762984K reserved, 0K cma-reserved)
[    0.152470] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.152683] Dynamic Preempt: voluntary
[    0.152707] rcu: Preemptible hierarchical RCU implementation.
[    0.152709] 	Trampoline variant of Tasks RCU enabled.
[    0.152710] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[    0.152718] NR_IRQS: 4352, nr_irqs: 488, preallocated irqs: 16
[    0.152910] random: get_random_bytes called from start_kernel+0x443/0x5fb with crng_init=0
[    0.152935] Console: colour dummy device 80x25
[    0.153205] printk: console [tty0] enabled
[    0.153212] ACPI: Core revision 20211217
[    0.153297] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.153312] APIC: Switch to symmetric I/O mode setup
[    0.153690] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.203307] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x31035b584ad, max_idle_ns: 440795370328 ns
[    0.203312] Calibrating delay loop (skipped), value calculated using timer frequency.. 6800.56 BogoMIPS (lpj=34002840)
[    0.203316] pid_max: default: 32768 minimum: 301
[    0.207887] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.207951] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.208070] CPU0: Thermal monitoring enabled (TM1)
[    0.208074] process: using mwait in idle threads
[    0.208077] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.208079] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.208081] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.208085] Spectre V2 : Kernel not compiled with retpoline; no mitigation available!
[    0.208085] Spectre V2 : Vulnerable
[    0.208088] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.208090] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    0.208093] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.208095] Spectre V2 : User space: Mitigation: STIBP via prctl
[    0.208097] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.208100] MDS: Mitigation: Clear CPU buffers
[    0.208258] Freeing SMP alternatives memory: 24K
[    0.208524] smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 1054
[    0.208531] smpboot: CPU0: Intel(R) Core(TM) i7-2600 CPU @ 3.40GHz (family: 0x6, model: 0x2a, stepping: 0x7)
[    0.208596] cblist_init_generic: Setting adjustable number of callback queues.
[    0.208600] cblist_init_generic: Setting shift to 3 and lim to 1.
[    0.208610] Performance Events: PEBS fmt1+, SandyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
[    0.208623] ... version:                3
[    0.208625] ... bit width:              48
[    0.208626] ... generic registers:      4
[    0.208628] ... value mask:             0000ffffffffffff
[    0.208630] ... max period:             00007fffffffffff
[    0.208631] ... fixed-purpose events:   3
[    0.208633] ... event mask:             000000070000000f
[    0.208711] rcu: Hierarchical SRCU implementation.
[    0.208811] smp: Bringing up secondary CPUs ...
[    0.208856] x86: Booting SMP configuration:
[    0.208858] .... node  #0, CPUs:      #1 #2 #3 #4
[    0.216861] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[    0.216861]  #5 #6 #7
[    0.226637] smp: Brought up 1 node, 8 CPUs
[    0.226637] smpboot: Max logical packages: 1
[    0.226637] smpboot: Total of 8 processors activated (54404.54 BogoMIPS)
[    0.228822] devtmpfs: initialized
[    0.228822] ACPI: PM: Registering ACPI NVS region [mem 0x8ed33000-0x8ed5efff] (180224 bytes)
[    0.228822] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.228822] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[    0.228822] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.228822] thermal_sys: Registered thermal governor 'step_wise'
[    0.228822] thermal_sys: Registered thermal governor 'user_space'
[    0.228822] cpuidle: using governor ladder
[    0.228822] cpuidle: using governor menu
[    0.228822] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.228822] PCI: MMCONFIG for domain 0000 [bus 00-fb] at [mem 0xe0000000-0xefbfffff] (base 0xe0000000)
[    0.228822] PCI: not using MMCONFIG
[    0.228822] PCI: Using configuration type 1 for base access
[    0.228822] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[    0.233831] ACPI: Disabled all _OSI OS vendors
[    0.233831] ACPI: Added _OSI(Module Device)
[    0.233831] ACPI: Added _OSI(Processor Device)
[    0.233831] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.233831] ACPI: Added _OSI(Processor Aggregator Device)
[    0.233831] ACPI: Added _OSI(Linux-Dell-Video)
[    0.233831] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.233831] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.233831] ACPI: Added _OSI(Darwin)
[    0.235637] ACPI: 11 ACPI AML tables successfully acquired and loaded
[    0.235839] ACPI: EC: EC started
[    0.235841] ACPI: EC: interrupt blocked
[    0.236656] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.236658] ACPI: EC: Boot ECDT EC used to handle transactions
[    0.236786] ACPI: BIOS _OSI(Darwin) query honored via DMI
[    0.236918] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.237119] ACPI: Dynamic OEM Table Load:
[    0.237127] ACPI: SSDT 0xFFFF888100379800 000781 (v01 PmRef  Cpu0Cst  00003001 INTL 20061109)
[    0.237444] ACPI: Dynamic OEM Table Load:
[    0.237450] ACPI: SSDT 0xFFFF88810036E800 0003A4 (v01 PmRef  ApIst    00003000 INTL 20061109)
[    0.237681] ACPI: Dynamic OEM Table Load:
[    0.237686] ACPI: SSDT 0xFFFF8881000FA600 000119 (v01 PmRef  ApCst    00003000 INTL 20061109)
[    0.238467] ACPI: Interpreter enabled
[    0.238481] ACPI: PM: (supports S0 S3 S4 S5)
[    0.238483] ACPI: Using IOAPIC for interrupt routing
[    0.238500] PCI: MMCONFIG for domain 0000 [bus 00-fb] at [mem 0xe0000000-0xefbfffff] (base 0xe0000000)
[    0.238711] PCI: MMCONFIG at [mem 0xe0000000-0xefbfffff] reserved in ACPI motherboard resources
[    0.238724] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.238817] ACPI: Enabled 6 GPEs in block 00 to 3F
[    0.241671] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.241678] acpi PNP0A08:00: _OSC: OS assumes control of [PCIeHotplug SHPCHotplug AER PCIeCapability LTR DPC]
[    0.241683] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-fb] only partially covers this bridge
[    0.241820] PCI host bridge to bus 0000:00
[    0.241823] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.241826] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.241829] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000fffff window]
[    0.241832] pci_bus 0000:00: root bus resource [mem 0x8f900000-0xfeafffff window]
[    0.241834] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff window]
[    0.241837] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.241847] pci 0000:00:00.0: [8086:0100] type 00 class 0x060000
[    0.241909] pci 0000:00:01.0: [8086:0101] type 01 class 0x060400
[    0.241937] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.241992] pci 0000:00:02.0: [8086:0102] type 00 class 0x038000
[    0.242000] pci 0000:00:02.0: reg 0x10: [mem 0xa8000000-0xa83fffff 64bit]
[    0.242006] pci 0000:00:02.0: reg 0x18: [mem 0xa0000000-0xa7ffffff 64bit pref]
[    0.242010] pci 0000:00:02.0: reg 0x20: [io  0x3000-0x303f]
[    0.242081] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
[    0.242100] pci 0000:00:16.0: reg 0x10: [mem 0xa8907100-0xa890710f 64bit]
[    0.242167] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.242213] pci 0000:00:1a.0: [8086:1c2c] type 00 class 0x0c0300
[    0.242251] pci 0000:00:1a.0: reg 0x20: [io  0x3140-0x315f]
[    0.242334] pci 0000:00:1a.7: [8086:1c2d] type 00 class 0x0c0320
[    0.242349] pci 0000:00:1a.7: reg 0x10: [mem 0xa8906c00-0xa8906fff]
[    0.242425] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
[    0.242591] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
[    0.242606] pci 0000:00:1b.0: reg 0x10: [mem 0xa8900000-0xa8903fff 64bit]
[    0.242667] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.243350] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
[    0.243429] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.243495] pci 0000:00:1c.1: [8086:1c12] type 01 class 0x060400
[    0.243574] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.243639] pci 0000:00:1c.2: [8086:1c14] type 01 class 0x060400
[    0.243718] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.243783] pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
[    0.243861] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.243924] pci 0000:00:1d.0: [8086:1c27] type 00 class 0x0c0300
[    0.243962] pci 0000:00:1d.0: reg 0x20: [io  0x30e0-0x30ff]
[    0.244044] pci 0000:00:1d.7: [8086:1c26] type 00 class 0x0c0320
[    0.244060] pci 0000:00:1d.7: reg 0x10: [mem 0xa8906800-0xa8906bff]
[    0.244135] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.244298] pci 0000:00:1f.0: [8086:1c44] type 00 class 0x060100
[    0.244440] pci 0000:00:1f.2: [8086:1c02] type 00 class 0x010601
[    0.244452] pci 0000:00:1f.2: reg 0x10: [io  0x3168-0x316f]
[    0.244460] pci 0000:00:1f.2: reg 0x14: [io  0x317c-0x317f]
[    0.244467] pci 0000:00:1f.2: reg 0x18: [io  0x3160-0x3167]
[    0.244474] pci 0000:00:1f.2: reg 0x1c: [io  0x3178-0x317b]
[    0.244482] pci 0000:00:1f.2: reg 0x20: [io  0x3060-0x307f]
[    0.244489] pci 0000:00:1f.2: reg 0x24: [mem 0xa8906000-0xa89067ff]
[    0.244523] pci 0000:00:1f.2: PME# supported from D3hot
[    0.244570] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
[    0.244584] pci 0000:00:1f.3: reg 0x10: [mem 0xa8907000-0xa89070ff 64bit]
[    0.244599] pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
[    0.244702] pci 0000:01:00.0: [1002:6720] type 00 class 0x030000
[    0.244717] pci 0000:01:00.0: reg 0x10: [mem 0x90000000-0x9fffffff 64bit pref]
[    0.244728] pci 0000:01:00.0: reg 0x18: [mem 0xa8800000-0xa881ffff 64bit]
[    0.244736] pci 0000:01:00.0: reg 0x20: [io  0x2000-0x20ff]
[    0.244748] pci 0000:01:00.0: reg 0x30: [mem 0xa8820000-0xa883ffff pref]
[    0.244755] pci 0000:01:00.0: enabling Extended Tags
[    0.244765] pci 0000:01:00.0: BAR 0: assigned to efifb
[    0.244795] pci 0000:01:00.0: supports D1 D2
[    0.244884] pci 0000:01:00.1: [1002:aa88] type 00 class 0x040300
[    0.244898] pci 0000:01:00.1: reg 0x10: [mem 0xa8840000-0xa8843fff 64bit]
[    0.244924] pci 0000:01:00.1: enabling Extended Tags
[    0.244960] pci 0000:01:00.1: supports D1 D2
[    0.245051] pci 0000:00:01.0: PCI bridge to [bus 01-ff]
[    0.245055] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.245058] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.245062] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.245065] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
[    0.245138] pci 0000:02:00.0: [14e4:16b4] type 00 class 0x020000
[    0.245171] pci 0000:02:00.0: reg 0x10: [mem 0xa8400000-0xa840ffff 64bit pref]
[    0.245193] pci 0000:02:00.0: reg 0x18: [mem 0xa8410000-0xa841ffff 64bit pref]
[    0.245348] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[    0.245462] pci 0000:00:1c.0: PCI bridge to [bus 02-ff]
[    0.245468] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.245474] pci 0000:00:1c.0:   bridge window [mem 0xa8400000-0xa84fffff 64bit pref]
[    0.245477] pci_bus 0000:02: busn_res: [bus 02-ff] end is updated to 02
[    0.245548] pci 0000:03:00.0: [168c:0030] type 00 class 0x028000
[    0.245579] pci 0000:03:00.0: reg 0x10: [mem 0xa8600000-0xa861ffff 64bit]
[    0.245639] pci 0000:03:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    0.245730] pci 0000:03:00.0: supports D1 D2
[    0.245732] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.245832] pci 0000:00:1c.1: PCI bridge to [bus 03-ff]
[    0.245839] pci 0000:00:1c.1:   bridge window [mem 0xa8600000-0xa86fffff]
[    0.245845] pci_bus 0000:03: busn_res: [bus 03-ff] end is updated to 03
[    0.245917] pci 0000:04:00.0: [11c1:5901] type 00 class 0x0c0010
[    0.245951] pci 0000:04:00.0: reg 0x10: [mem 0xa8500000-0xa8500fff 64bit]
[    0.246113] pci 0000:04:00.0: supports D1 D2
[    0.246115] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.246309] pci 0000:00:1c.2: PCI bridge to [bus 04-ff]
[    0.246315] pci 0000:00:1c.2:   bridge window [mem 0xa8500000-0xa85fffff]
[    0.246322] pci_bus 0000:04: busn_res: [bus 04-ff] end is updated to 04
[    0.246394] pci 0000:05:00.0: [8086:1513] type 01 class 0x060400
[    0.246459] pci 0000:05:00.0: enabling Extended Tags
[    0.246554] pci 0000:05:00.0: supports D1 D2
[    0.246556] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.246685] pci 0000:00:1c.4: PCI bridge to [bus 05-ff]
[    0.246690] pci 0000:00:1c.4:   bridge window [io  0x4000-0x4fff]
[    0.246694] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xad6fffff]
[    0.246700] pci 0000:00:1c.4:   bridge window [mem 0xacf00000-0xb10fffff 64bit pref]
[    0.246785] acpiphp: Slot [3] registered
[    0.246807] acpiphp: Slot [4] registered
[    0.246848] pci 0000:06:00.0: [8086:1513] type 01 class 0x060400
[    0.246918] pci 0000:06:00.0: enabling Extended Tags
[    0.247018] pci 0000:06:00.0: supports D1 D2
[    0.247020] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.247131] pci 0000:06:03.0: [8086:1513] type 01 class 0x060400
[    0.247201] pci 0000:06:03.0: enabling Extended Tags
[    0.247302] pci 0000:06:03.0: supports D1 D2
[    0.247304] pci 0000:06:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.247409] pci 0000:06:04.0: [8086:1513] type 01 class 0x060400
[    0.247479] pci 0000:06:04.0: enabling Extended Tags
[    0.247580] pci 0000:06:04.0: supports D1 D2
[    0.247582] pci 0000:06:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.247690] pci 0000:06:05.0: [8086:1513] type 01 class 0x060400
[    0.247760] pci 0000:06:05.0: enabling Extended Tags
[    0.247861] pci 0000:06:05.0: supports D1 D2
[    0.247863] pci 0000:06:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.247972] pci 0000:06:06.0: [8086:1513] type 01 class 0x060400
[    0.248042] pci 0000:06:06.0: enabling Extended Tags
[    0.248143] pci 0000:06:06.0: supports D1 D2
[    0.248145] pci 0000:06:06.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.248261] pci 0000:05:00.0: PCI bridge to [bus 06-ff]
[    0.248273] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xa96fffff]
[    0.248281] pci 0000:05:00.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.248380] acpiphp: Slot [1] registered
[    0.248421] pci 0000:07:00.0: [8086:1513] type 00 class 0x088000
[    0.248449] pci 0000:07:00.0: reg 0x10: [mem 0xa8a00000-0xa8a3ffff]
[    0.248465] pci 0000:07:00.0: reg 0x14: [mem 0xa8a40000-0xa8a40fff]
[    0.248544] pci 0000:07:00.0: enabling Extended Tags
[    0.248668] pci 0000:07:00.0: supports D1 D2
[    0.248670] pci 0000:07:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.248812] pci 0000:06:00.0: PCI bridge to [bus 07-ff]
[    0.248824] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.248833] pci_bus 0000:07: busn_res: [bus 07-ff] end is updated to 07
[    0.248890] pci 0000:06:03.0: PCI bridge to [bus 08-ff]
[    0.248901] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xa8bfffff]
[    0.248910] pci_bus 0000:08: busn_res: [bus 08-ff] end is updated to 17
[    0.249023] pci 0000:18:00.0: [8086:1513] type 01 class 0x060400
[    0.249140] pci 0000:18:00.0: enabling Extended Tags
[    0.249316] pci 0000:18:00.0: supports D1 D2
[    0.249318] pci 0000:18:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.273371] pci 0000:06:04.0: PCI bridge to [bus 18-ff]
[    0.273389] pci 0000:06:04.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.273402] pci 0000:06:04.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.273411] pci 0000:18:00.0: bridge configuration invalid ([bus 3a-49]), reconfiguring
[    0.273577] pci 0000:19:00.0: [8086:1513] type 01 class 0x060400
[    0.273700] pci 0000:19:00.0: enabling Extended Tags
[    0.273881] pci 0000:19:00.0: supports D1 D2
[    0.273883] pci 0000:19:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.274039] pci 0000:19:01.0: [8086:1513] type 01 class 0x060400
[    0.274162] pci 0000:19:01.0: enabling Extended Tags
[    0.274341] pci 0000:19:01.0: supports D1 D2
[    0.274343] pci 0000:19:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.274497] pci 0000:19:02.0: [8086:1513] type 01 class 0x060400
[    0.274621] pci 0000:19:02.0: enabling Extended Tags
[    0.274800] pci 0000:19:02.0: supports D1 D2
[    0.274802] pci 0000:19:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.274962] pci 0000:19:04.0: [8086:1513] type 01 class 0x060400
[    0.275086] pci 0000:19:04.0: enabling Extended Tags
[    0.275268] pci 0000:19:04.0: supports D1 D2
[    0.275270] pci 0000:19:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.275430] pci 0000:19:05.0: [8086:1513] type 01 class 0x060400
[    0.275537] pci 0000:19:05.0: enabling Extended Tags
[    0.275719] pci 0000:19:05.0: supports D1 D2
[    0.275721] pci 0000:19:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.275900] pci 0000:18:00.0: PCI bridge to [bus 19-ff]
[    0.275919] pci 0000:18:00.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.275933] pci 0000:18:00.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.275939] pci 0000:19:00.0: bridge configuration invalid ([bus 3b-3d]), reconfiguring
[    0.275956] pci 0000:19:01.0: bridge configuration invalid ([bus 3e-3e]), reconfiguring
[    0.275973] pci 0000:19:02.0: bridge configuration invalid ([bus 3f-3f]), reconfiguring
[    0.275990] pci 0000:19:04.0: bridge configuration invalid ([bus 40-48]), reconfiguring
[    0.276006] pci 0000:19:05.0: bridge configuration invalid ([bus 49-49]), reconfiguring
[    0.276160] pci 0000:1a:00.0: [12d8:400c] type 01 class 0x060400
[    0.276548] pci 0000:1a:00.0: supports D1 D2
[    0.276550] pci 0000:1a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.303348] pci 0000:19:00.0: PCI bridge to [bus 1a-ff]
[    0.303373] pci 0000:19:00.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.303395] pci 0000:1a:00.0: bridge configuration invalid ([bus 3c-3d]), reconfiguring
[    0.303631] pci 0000:1b:03.0: [12d8:400c] type 01 class 0x060400
[    0.303967] pci 0000:1b:03.0: supports D1 D2
[    0.303969] pci 0000:1b:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.304170] pci 0000:1a:00.0: PCI bridge to [bus 1b-ff]
[    0.304195] pci 0000:1a:00.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.304216] pci 0000:1b:03.0: bridge configuration invalid ([bus 3d-3d]), reconfiguring
[    0.304421] pci 0000:1c:00.0: [12d8:400e] type 00 class 0x0c0310
[    0.304472] pci 0000:1c:00.0: reg 0x10: [mem 0xa9401000-0xa9401fff]
[    0.304785] pci 0000:1c:00.0: supports D1 D2
[    0.304787] pci 0000:1c:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.304942] pci 0000:1c:00.1: [12d8:400e] type 00 class 0x0c0310
[    0.304994] pci 0000:1c:00.1: reg 0x10: [mem 0xa9400000-0xa9400fff]
[    0.305306] pci 0000:1c:00.1: supports D1 D2
[    0.305308] pci 0000:1c:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.305435] pci 0000:1c:00.2: [12d8:400f] type 00 class 0x0c0320
[    0.305486] pci 0000:1c:00.2: reg 0x10: [mem 0xa9402000-0xa94020ff]
[    0.305799] pci 0000:1c:00.2: supports D1 D2
[    0.305801] pci 0000:1c:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.306058] pci 0000:1b:03.0: PCI bridge to [bus 1c-ff]
[    0.306083] pci 0000:1b:03.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.306101] pci_bus 0000:1c: busn_res: [bus 1c-ff] end is updated to 1c
[    0.306111] pci_bus 0000:1b: busn_res: [bus 1b-ff] end is updated to 1c
[    0.306122] pci_bus 0000:1a: busn_res: [bus 1a-ff] end is updated to 1c
[    0.306269] pci 0000:1d:00.0: [14e4:16b0] type 00 class 0x020000
[    0.306338] pci 0000:1d:00.0: reg 0x10: [mem 0xad000000-0xad00ffff 64bit pref]
[    0.306384] pci 0000:1d:00.0: reg 0x18: [mem 0xad010000-0xad01ffff 64bit pref]
[    0.306727] pci 0000:1d:00.0: PME# supported from D0 D3hot D3cold
[    0.333368] pci 0000:19:01.0: PCI bridge to [bus 1d-ff]
[    0.333392] pci 0000:19:01.0:   bridge window [mem 0xa9300000-0xa93fffff]
[    0.333410] pci 0000:19:01.0:   bridge window [mem 0xad000000-0xad0fffff 64bit pref]
[    0.333416] pci_bus 0000:1d: busn_res: [bus 1d-ff] end is updated to 1d
[    0.333571] pci 0000:1e:00.0: [11c1:5901] type 00 class 0x0c0010
[    0.333641] pci 0000:1e:00.0: reg 0x10: [mem 0xa9200000-0xa9200fff 64bit]
[    0.333994] pci 0000:1e:00.0: supports D1 D2
[    0.333996] pci 0000:1e:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.363367] pci 0000:19:02.0: PCI bridge to [bus 1e-ff]
[    0.363392] pci 0000:19:02.0:   bridge window [mem 0xa9200000-0xa92fffff]
[    0.363409] pci_bus 0000:1e: busn_res: [bus 1e-ff] end is updated to 1e
[    0.363591] pci 0000:1f:00.0: [8086:1513] type 01 class 0x060400
[    0.363762] pci 0000:1f:00.0: enabling Extended Tags
[    0.364021] pci 0000:1f:00.0: supports D1 D2
[    0.364023] pci 0000:1f:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.393353] pci 0000:19:04.0: PCI bridge to [bus 1f-ff]
[    0.393378] pci 0000:19:04.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.393395] pci 0000:19:04.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.393406] pci 0000:1f:00.0: bridge configuration invalid ([bus 41-48]), reconfiguring
[    0.393635] pci 0000:20:00.0: [8086:1513] type 01 class 0x060400
[    0.393814] pci 0000:20:00.0: enabling Extended Tags
[    0.394074] pci 0000:20:00.0: supports D1 D2
[    0.394076] pci 0000:20:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.394295] pci 0000:20:01.0: [8086:1513] type 01 class 0x060400
[    0.394473] pci 0000:20:01.0: enabling Extended Tags
[    0.394733] pci 0000:20:01.0: supports D1 D2
[    0.394735] pci 0000:20:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.394951] pci 0000:20:02.0: [8086:1513] type 01 class 0x060400
[    0.395130] pci 0000:20:02.0: enabling Extended Tags
[    0.395389] pci 0000:20:02.0: supports D1 D2
[    0.395391] pci 0000:20:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.395616] pci 0000:20:04.0: [8086:1513] type 01 class 0x060400
[    0.395771] pci 0000:20:04.0: enabling Extended Tags
[    0.396035] pci 0000:20:04.0: supports D1 D2
[    0.396036] pci 0000:20:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.396263] pci 0000:20:05.0: [8086:1513] type 01 class 0x060400
[    0.396417] pci 0000:20:05.0: enabling Extended Tags
[    0.396682] pci 0000:20:05.0: supports D1 D2
[    0.396684] pci 0000:20:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.396938] pci 0000:1f:00.0: PCI bridge to [bus 20-ff]
[    0.396964] pci 0000:1f:00.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.396983] pci 0000:1f:00.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.396990] pci 0000:20:00.0: bridge configuration invalid ([bus 42-44]), reconfiguring
[    0.397013] pci 0000:20:01.0: bridge configuration invalid ([bus 45-45]), reconfiguring
[    0.397037] pci 0000:20:02.0: bridge configuration invalid ([bus 46-46]), reconfiguring
[    0.397060] pci 0000:20:04.0: bridge configuration invalid ([bus 47-47]), reconfiguring
[    0.397083] pci 0000:20:05.0: bridge configuration invalid ([bus 48-48]), reconfiguring
[    0.397295] pci 0000:21:00.0: [12d8:400c] type 01 class 0x060400
[    0.397815] pci 0000:21:00.0: supports D1 D2
[    0.397817] pci 0000:21:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.398084] pci 0000:20:00.0: PCI bridge to [bus 21-ff]
[    0.398111] pci 0000:20:00.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.398135] pci 0000:21:00.0: bridge configuration invalid ([bus 43-44]), reconfiguring
[    0.398432] pci 0000:22:03.0: [12d8:400c] type 01 class 0x060400
[    0.398881] pci 0000:22:03.0: supports D1 D2
[    0.398883] pci 0000:22:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.399147] pci 0000:21:00.0: PCI bridge to [bus 22-ff]
[    0.399180] pci 0000:21:00.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.399208] pci 0000:22:03.0: bridge configuration invalid ([bus 44-44]), reconfiguring
[    0.399479] pci 0000:23:00.0: [12d8:400e] type 00 class 0x0c0310
[    0.399547] pci 0000:23:00.0: reg 0x10: [mem 0xa9101000-0xa9101fff]
[    0.399965] pci 0000:23:00.0: supports D1 D2
[    0.399967] pci 0000:23:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.400175] pci 0000:23:00.1: [12d8:400e] type 00 class 0x0c0310
[    0.400243] pci 0000:23:00.1: reg 0x10: [mem 0xa9100000-0xa9100fff]
[    0.400660] pci 0000:23:00.1: supports D1 D2
[    0.400663] pci 0000:23:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.400826] pci 0000:23:00.2: [12d8:400f] type 00 class 0x0c0320
[    0.400894] pci 0000:23:00.2: reg 0x10: [mem 0xa9102000-0xa91020ff]
[    0.401311] pci 0000:23:00.2: supports D1 D2
[    0.401313] pci 0000:23:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.401664] pci 0000:22:03.0: PCI bridge to [bus 23-ff]
[    0.401697] pci 0000:22:03.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.401720] pci_bus 0000:23: busn_res: [bus 23-ff] end is updated to 23
[    0.401733] pci_bus 0000:22: busn_res: [bus 22-ff] end is updated to 23
[    0.401745] pci_bus 0000:21: busn_res: [bus 21-ff] end is updated to 23
[    0.401947] pci 0000:24:00.0: [14e4:16b0] type 00 class 0x020000
[    0.402038] pci 0000:24:00.0: reg 0x10: [mem 0xacf00000-0xacf0ffff 64bit pref]
[    0.402098] pci 0000:24:00.0: reg 0x18: [mem 0xacf10000-0xacf1ffff 64bit pref]
[    0.402550] pci 0000:24:00.0: PME# supported from D0 D3hot D3cold
[    0.402866] pci 0000:20:01.0: PCI bridge to [bus 24-ff]
[    0.402893] pci 0000:20:01.0:   bridge window [mem 0xa9000000-0xa90fffff]
[    0.402912] pci 0000:20:01.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.402915] pci_bus 0000:24: busn_res: [bus 24-ff] end is updated to 24
[    0.403111] pci 0000:25:00.0: [11c1:5901] type 00 class 0x0c0010
[    0.403202] pci 0000:25:00.0: reg 0x10: [mem 0xa8f00000-0xa8f00fff 64bit]
[    0.403667] pci 0000:25:00.0: supports D1 D2
[    0.403669] pci 0000:25:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.403966] pci 0000:20:02.0: PCI bridge to [bus 25-ff]
[    0.403993] pci 0000:20:02.0:   bridge window [mem 0xa8f00000-0xa8ffffff]
[    0.404012] pci_bus 0000:25: busn_res: [bus 25-ff] end is updated to 25
[    0.404144] pci 0000:20:04.0: PCI bridge to [bus 26-ff]
[    0.404171] pci 0000:20:04.0:   bridge window [mem 0xa8e00000-0xa8efffff]
[    0.404190] pci_bus 0000:26: busn_res: [bus 26-ff] end is updated to 35
[    0.404321] pci 0000:20:05.0: PCI bridge to [bus 36-ff]
[    0.404348] pci 0000:20:05.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.404367] pci_bus 0000:36: busn_res: [bus 36-ff] end is updated to 45
[    0.404378] pci_bus 0000:20: busn_res: [bus 20-ff] end is updated to 45
[    0.404389] pci_bus 0000:1f: busn_res: [bus 1f-ff] end is updated to 45
[    0.404482] pci 0000:19:05.0: PCI bridge to [bus 46-ff]
[    0.404501] pci 0000:19:05.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.404515] pci_bus 0000:46: busn_res: [bus 46-ff] end is updated to 55
[    0.404523] pci_bus 0000:19: busn_res: [bus 19-ff] end is updated to 55
[    0.404531] pci_bus 0000:18: busn_res: [bus 18-ff] end is updated to 55
[    0.404593] pci 0000:06:05.0: PCI bridge to [bus 56-ff]
[    0.404605] pci 0000:06:05.0:   bridge window [mem 0xa9500000-0xa95fffff]
[    0.404614] pci_bus 0000:56: busn_res: [bus 56-ff] end is updated to 65
[    0.404670] pci 0000:06:06.0: PCI bridge to [bus 66-ff]
[    0.404682] pci 0000:06:06.0:   bridge window [mem 0xa9600000-0xa96fffff]
[    0.404691] pci_bus 0000:66: busn_res: [bus 66-ff] end is updated to 75
[    0.404697] pci_bus 0000:06: busn_res: [bus 06-ff] end is updated to 75
[    0.404702] pci_bus 0000:05: busn_res: [bus 05-ff] end is updated to 75
[    0.404707] pci_bus 0000:00: on NUMA node 0
[    0.404973] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    0.404976] ACPI: PCI: Interrupt link LNKA disabled
[    0.405007] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    0.405009] ACPI: PCI: Interrupt link LNKB disabled
[    0.405038] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    0.405041] ACPI: PCI: Interrupt link LNKC disabled
[    0.405069] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    0.405071] ACPI: PCI: Interrupt link LNKD disabled
[    0.405100] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    0.405102] ACPI: PCI: Interrupt link LNKE disabled
[    0.405130] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    0.405132] ACPI: PCI: Interrupt link LNKF disabled
[    0.405160] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    0.405162] ACPI: PCI: Interrupt link LNKG disabled
[    0.405191] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    0.405193] ACPI: PCI: Interrupt link LNKH disabled
[    0.405279] ACPI: EC: interrupt unblocked
[    0.405282] ACPI: EC: event unblocked
[    0.405286] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.405288] ACPI: EC: GPE=0x17
[    0.405290] ACPI: \_SB_.PCI0.LPCB.EC__: Boot ECDT EC initialization complete
[    0.405293] ACPI: \_SB_.PCI0.LPCB.EC__: EC: Used to handle transactions and events
[    0.405346] SCSI subsystem initialized
[    0.405353] libata version 3.00 loaded.
[    0.405353] Registered efivars operations
[    0.405353] PCI: Using ACPI for IRQ routing
[    0.415972] PCI: pci_cache_line_size set to 64 bytes
[    0.415975] pci 0000:00:1c.4: can't claim BAR 9 [mem 0xacf00000-0xb10fffff 64bit pref]: address conflict with PCI Bus 0000:05 [mem 0xa8a00000-0xad6fffff]
[    0.416254] e820: reserve RAM buffer [mem 0x0008e000-0x0008ffff]
[    0.416256] e820: reserve RAM buffer [mem 0x89109018-0x8bffffff]
[    0.416257] e820: reserve RAM buffer [mem 0x891a7018-0x8bffffff]
[    0.416258] e820: reserve RAM buffer [mem 0x8ed33000-0x8fffffff]
[    0.416259] e820: reserve RAM buffer [mem 0x8ed71000-0x8fffffff]
[    0.416261] e820: reserve RAM buffer [mem 0x8ee5a000-0x8fffffff]
[    0.416262] e820: reserve RAM buffer [mem 0x8eed7000-0x8fffffff]
[    0.416263] e820: reserve RAM buffer [mem 0x8efa3000-0x8fffffff]
[    0.416264] e820: reserve RAM buffer [mem 0x86ff00000-0x86fffffff]
[    0.416273] pci 0000:01:00.0: vgaarb: setting as boot VGA device
[    0.416273] pci 0000:01:00.0: vgaarb: bridge control possible
[    0.416273] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    0.416273] vgaarb: loaded
[    0.416273] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.416273] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.416281] clocksource: Switched to clocksource tsc-early
[    0.416319] VFS: Disk quotas dquot_6.6.0
[    0.416329] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.416361] pnp: PnP ACPI init
[    0.416469] system 00:00: [mem 0xfed00000-0xfed003ff] has been reserved
[    0.416513] system 00:01: [io  0x0680-0x069f] has been reserved
[    0.416516] system 00:01: [io  0x1000-0x100f] has been reserved
[    0.416519] system 00:01: [io  0xffff] has been reserved
[    0.416522] system 00:01: [io  0xffff] has been reserved
[    0.416524] system 00:01: [io  0x0400-0x047f] has been reserved
[    0.416526] system 00:01: [io  0x0500-0x057f] has been reserved
[    0.416529] system 00:01: [io  0x164e-0x164f] has been reserved
[    0.416681] system 00:03: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.416685] system 00:03: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.416687] system 00:03: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.416690] system 00:03: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.416693] system 00:03: [mem 0xe0000000-0xefffffff] could not be reserved
[    0.416696] system 00:03: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.416698] system 00:03: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.416701] system 00:03: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.416703] system 00:03: [mem 0xff000000-0xffffffff] could not be reserved
[    0.416706] system 00:03: [mem 0xfee00000-0xfeefffff] has been reserved
[    0.416789] pnp: PnP ACPI: found 4 devices
[    0.416804] pci 0000:01:00.0: assigning 75 device properties
[    0.416804] pci 0000:04:00.0: assigning 2 device properties
[    0.416804] pci 0000:07:00.0: assigning 5 device properties
[    0.416804] pci 0000:1e:00.0: assigning 2 device properties
[    0.416804] pci 0000:25:00.0: assigning 2 device properties
[    0.416804] pci 0000:00:1b.0: assigning 4 device properties
[    0.419125] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.419146] NET: Registered PF_INET protocol family
[    0.419306] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.421162] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    0.421200] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.421467] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.421553] TCP: Hash tables configured (established 262144 bind 65536)
[    0.421579] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.421639] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.421718] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.421726] pci 0000:03:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[    0.421734] pci_bus 0000:00: max bus depth: 9 pci_try_num: 10
[    0.421745] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.421749] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.421753] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.421756] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.421760] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.421765] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.421769] pci 0000:00:1c.0:   bridge window [mem 0xa8400000-0xa84fffff 64bit pref]
[    0.421777] pci 0000:03:00.0: BAR 6: assigned [mem 0xa8620000-0xa862ffff pref]
[    0.421781] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.421786] pci 0000:00:1c.1:   bridge window [mem 0xa8600000-0xa86fffff]
[    0.421794] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.421798] pci 0000:00:1c.2:   bridge window [mem 0xa8500000-0xa85fffff]
[    0.421807] pci 0000:05:00.0: BAR 7: no space for [io  size 0x8000]
[    0.421809] pci 0000:05:00.0: BAR 7: failed to assign [io  size 0x8000]
[    0.421814] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.421817] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.421820] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.421823] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.421826] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.421829] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.421832] pci 0000:06:03.0: BAR 7: no space for [io  size 0x1000]
[    0.421834] pci 0000:06:03.0: BAR 7: failed to assign [io  size 0x1000]
[    0.421837] pci 0000:06:04.0: BAR 7: no space for [io  size 0x5000]
[    0.421839] pci 0000:06:04.0: BAR 7: failed to assign [io  size 0x5000]
[    0.421841] pci 0000:06:05.0: BAR 7: no space for [io  size 0x1000]
[    0.421844] pci 0000:06:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.421847] pci 0000:06:06.0: BAR 7: no space for [io  size 0x1000]
[    0.421849] pci 0000:06:06.0: BAR 7: failed to assign [io  size 0x1000]
[    0.421853] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.421859] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.421871] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.421878] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xa8bfffff]
[    0.421890] pci 0000:18:00.0: BAR 7: no space for [io  size 0x4000]
[    0.421893] pci 0000:18:00.0: BAR 7: failed to assign [io  size 0x4000]
[    0.421896] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.421899] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.421902] pci 0000:19:04.0: BAR 7: no space for [io  size 0x3000]
[    0.421904] pci 0000:19:04.0: BAR 7: failed to assign [io  size 0x3000]
[    0.421907] pci 0000:19:05.0: BAR 7: no space for [io  size 0x1000]
[    0.421909] pci 0000:19:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.421912] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.421925] pci 0000:1b:03.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.421950] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.421964] pci 0000:1a:00.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.421988] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.421999] pci 0000:19:00.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.422018] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.422029] pci 0000:19:01.0:   bridge window [mem 0xa9300000-0xa93fffff]
[    0.422037] pci 0000:19:01.0:   bridge window [mem 0xad000000-0xad0fffff 64bit pref]
[    0.422051] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.422061] pci 0000:19:02.0:   bridge window [mem 0xa9200000-0xa92fffff]
[    0.422081] pci 0000:1f:00.0: BAR 7: no space for [io  size 0x2000]
[    0.422083] pci 0000:1f:00.0: BAR 7: failed to assign [io  size 0x2000]
[    0.422087] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422089] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422093] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422096] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422099] pci 0000:20:04.0: BAR 7: no space for [io  size 0x1000]
[    0.422101] pci 0000:20:04.0: BAR 7: failed to assign [io  size 0x1000]
[    0.422103] pci 0000:20:05.0: BAR 7: no space for [io  size 0x1000]
[    0.422105] pci 0000:20:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.422108] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.422125] pci 0000:22:03.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.422158] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.422175] pci 0000:21:00.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.422208] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.422222] pci 0000:20:00.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.422249] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.422263] pci 0000:20:01.0:   bridge window [mem 0xa9000000-0xa90fffff]
[    0.422274] pci 0000:20:01.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.422293] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.422308] pci 0000:20:02.0:   bridge window [mem 0xa8f00000-0xa8ffffff]
[    0.422334] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.422349] pci 0000:20:04.0:   bridge window [mem 0xa8e00000-0xa8efffff]
[    0.422375] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.422390] pci 0000:20:05.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.422416] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.422431] pci 0000:1f:00.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.422441] pci 0000:1f:00.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.422460] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.422470] pci 0000:19:04.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.422478] pci 0000:19:04.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.422492] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.422503] pci 0000:19:05.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.422522] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.422532] pci 0000:18:00.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.422540] pci 0000:18:00.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.422554] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.422561] pci 0000:06:04.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.422566] pci 0000:06:04.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.422575] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.422582] pci 0000:06:05.0:   bridge window [mem 0xa9500000-0xa95fffff]
[    0.422593] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.422600] pci 0000:06:06.0:   bridge window [mem 0xa9600000-0xa96fffff]
[    0.422612] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.422619] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xa96fffff]
[    0.422624] pci 0000:05:00.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.422633] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.422636] pci 0000:00:1c.4:   bridge window [io  0x4000-0x4fff]
[    0.422640] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xad6fffff]
[    0.422648] pci_bus 0000:00: No. 2 try to assign unassigned res
[    0.422656] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.422659] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.422662] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.422665] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.422669] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.422674] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.422678] pci 0000:00:1c.0:   bridge window [mem 0xa8400000-0xa84fffff 64bit pref]
[    0.422684] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.422689] pci 0000:00:1c.1:   bridge window [mem 0xa8600000-0xa86fffff]
[    0.422697] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.422701] pci 0000:00:1c.2:   bridge window [mem 0xa8500000-0xa85fffff]
[    0.422709] pci 0000:05:00.0: BAR 7: no space for [io  size 0x8000]
[    0.422711] pci 0000:05:00.0: BAR 7: failed to assign [io  size 0x8000]
[    0.422715] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422718] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422721] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422724] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422727] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422730] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422733] pci 0000:06:03.0: BAR 7: no space for [io  size 0x1000]
[    0.422735] pci 0000:06:03.0: BAR 7: failed to assign [io  size 0x1000]
[    0.422737] pci 0000:06:04.0: BAR 7: no space for [io  size 0x5000]
[    0.422740] pci 0000:06:04.0: BAR 7: failed to assign [io  size 0x5000]
[    0.422742] pci 0000:06:05.0: BAR 7: no space for [io  size 0x1000]
[    0.422744] pci 0000:06:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.422747] pci 0000:06:06.0: BAR 7: no space for [io  size 0x1000]
[    0.422749] pci 0000:06:06.0: BAR 7: failed to assign [io  size 0x1000]
[    0.422752] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.422758] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.422770] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.422777] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xa8bfffff]
[    0.422789] pci 0000:18:00.0: BAR 7: no space for [io  size 0x4000]
[    0.422791] pci 0000:18:00.0: BAR 7: failed to assign [io  size 0x4000]
[    0.422794] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422797] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422800] pci 0000:19:04.0: BAR 7: no space for [io  size 0x3000]
[    0.422802] pci 0000:19:04.0: BAR 7: failed to assign [io  size 0x3000]
[    0.422805] pci 0000:19:05.0: BAR 7: no space for [io  size 0x1000]
[    0.422807] pci 0000:19:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.422809] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.422823] pci 0000:1b:03.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.422848] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.422861] pci 0000:1a:00.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.422886] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.422896] pci 0000:19:00.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.422915] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.422926] pci 0000:19:01.0:   bridge window [mem 0xa9300000-0xa93fffff]
[    0.422934] pci 0000:19:01.0:   bridge window [mem 0xad000000-0xad0fffff 64bit pref]
[    0.422948] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.422958] pci 0000:19:02.0:   bridge window [mem 0xa9200000-0xa92fffff]
[    0.422977] pci 0000:1f:00.0: BAR 7: no space for [io  size 0x2000]
[    0.422980] pci 0000:1f:00.0: BAR 7: failed to assign [io  size 0x2000]
[    0.422983] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422986] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422989] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422992] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422995] pci 0000:20:04.0: BAR 7: no space for [io  size 0x1000]
[    0.422997] pci 0000:20:04.0: BAR 7: failed to assign [io  size 0x1000]
[    0.423000] pci 0000:20:05.0: BAR 7: no space for [io  size 0x1000]
[    0.423002] pci 0000:20:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.423004] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.423022] pci 0000:22:03.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.423054] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.423071] pci 0000:21:00.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.423104] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.423118] pci 0000:20:00.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.423145] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.423159] pci 0000:20:01.0:   bridge window [mem 0xa9000000-0xa90fffff]
[    0.423170] pci 0000:20:01.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.423189] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.423203] pci 0000:20:02.0:   bridge window [mem 0xa8f00000-0xa8ffffff]
[    0.423230] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.423244] pci 0000:20:04.0:   bridge window [mem 0xa8e00000-0xa8efffff]
[    0.423271] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.423285] pci 0000:20:05.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.423312] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.423326] pci 0000:1f:00.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.423337] pci 0000:1f:00.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.423355] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.423366] pci 0000:19:04.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.423374] pci 0000:19:04.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.423388] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.423398] pci 0000:19:05.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.423418] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.423428] pci 0000:18:00.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.423436] pci 0000:18:00.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.423449] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.423456] pci 0000:06:04.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.423462] pci 0000:06:04.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.423471] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.423477] pci 0000:06:05.0:   bridge window [mem 0xa9500000-0xa95fffff]
[    0.423489] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.423496] pci 0000:06:06.0:   bridge window [mem 0xa9600000-0xa96fffff]
[    0.423508] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.423514] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xa96fffff]
[    0.423519] pci 0000:05:00.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.423528] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.423531] pci 0000:00:1c.4:   bridge window [io  0x4000-0x4fff]
[    0.423536] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xad6fffff]
[    0.423544] pci_bus 0000:00: No. 3 try to assign unassigned res
[    0.423546] release child resource [mem 0xa9100000-0xa9100fff]
[    0.423547] release child resource [mem 0xa9101000-0xa9101fff]
[    0.423548] release child resource [mem 0xa9102000-0xa91020ff]
[    0.423549] pci 0000:22:03.0: resource 8 [mem 0xa9100000-0xa91fffff] released
[    0.423551] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.423563] pci 0000:21:00.0: resource 8 [mem 0xa9100000-0xa91fffff] released
[    0.423566] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.423578] pci 0000:20:00.0: resource 8 [mem 0xa9100000-0xa91fffff] released
[    0.423580] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.423591] release child resource [mem 0xacf00000-0xacf0ffff 64bit pref]
[    0.423591] release child resource [mem 0xacf10000-0xacf1ffff 64bit pref]
[    0.423592] pci 0000:20:01.0: resource 9 [mem 0xacf00000-0xacffffff 64bit pref] released
[    0.423595] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.423618] release child resource [mem 0xa8f00000-0xa8f00fff 64bit]
[    0.423618] pci 0000:20:02.0: resource 8 [mem 0xa8f00000-0xa8ffffff] released
[    0.423621] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.423631] pci 0000:20:04.0: resource 8 [mem 0xa8e00000-0xa8efffff] released
[    0.423634] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.423644] pci 0000:20:05.0: resource 8 [mem 0xa8d00000-0xa8dfffff] released
[    0.423646] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.423657] pci 0000:1f:00.0: resource 9 [mem 0xacf00000-0xacffffff 64bit pref] released
[    0.423659] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.423682] release child resource [mem 0xa9400000-0xa9400fff]
[    0.423683] release child resource [mem 0xa9401000-0xa9401fff]
[    0.423684] release child resource [mem 0xa9402000-0xa94020ff]
[    0.423685] pci 0000:1b:03.0: resource 8 [mem 0xa9400000-0xa94fffff] released
[    0.423687] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.423697] pci 0000:1a:00.0: resource 8 [mem 0xa9400000-0xa94fffff] released
[    0.423699] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.423709] pci 0000:19:00.0: resource 8 [mem 0xa9400000-0xa94fffff] released
[    0.423711] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.423719] release child resource [mem 0xad000000-0xad00ffff 64bit pref]
[    0.423720] release child resource [mem 0xad010000-0xad01ffff 64bit pref]
[    0.423720] pci 0000:19:01.0: resource 9 [mem 0xad000000-0xad0fffff 64bit pref] released
[    0.423723] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.423739] release child resource [mem 0xa9200000-0xa9200fff 64bit]
[    0.423740] pci 0000:19:02.0: resource 8 [mem 0xa9200000-0xa92fffff] released
[    0.423743] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.423750] pci 0000:19:04.0: resource 9 [mem 0xacf00000-0xacffffff 64bit pref] released
[    0.423753] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.423769] pci 0000:19:05.0: resource 8 [mem 0xa8c00000-0xa8cfffff] released
[    0.423772] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.423779] pci 0000:18:00.0: resource 9 [mem 0xacf00000-0xad0fffff 64bit pref] released
[    0.423782] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.423799] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.423800] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.423801] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.423803] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.423808] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xa8bfffff] released
[    0.423811] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.423816] pci 0000:06:04.0: resource 9 [mem 0xacf00000-0xad0fffff 64bit pref] released
[    0.423819] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.423829] pci 0000:06:05.0: resource 8 [mem 0xa9500000-0xa95fffff] released
[    0.423831] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.423837] pci 0000:06:06.0: resource 8 [mem 0xa9600000-0xa96fffff] released
[    0.423839] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.423844] pci 0000:05:00.0: resource 9 [mem 0xacf00000-0xad0fffff 64bit pref] released
[    0.423847] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.423858] pci 0000:00:1c.4: resource 7 [io  0x4000-0x4fff] released
[    0.423860] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.423875] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.423878] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.423882] pci 0000:00:1c.4: BAR 7: assigned [io  0x4000-0xbfff]
[    0.423884] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.423887] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.423890] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.423893] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.423897] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.423902] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.423906] pci 0000:00:1c.0:   bridge window [mem 0xa8400000-0xa84fffff 64bit pref]
[    0.423912] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.423917] pci 0000:00:1c.1:   bridge window [mem 0xa8600000-0xa86fffff]
[    0.423924] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.423929] pci 0000:00:1c.2:   bridge window [mem 0xa8500000-0xa85fffff]
[    0.423938] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.423940] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.423943] pci 0000:05:00.0: BAR 7: assigned [io  0x4000-0xbfff]
[    0.423947] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.423950] pci 0000:06:03.0: BAR 8: no space for [mem size 0x08000000]
[    0.423952] pci 0000:06:03.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.423955] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.423958] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.423961] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.423964] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.423967] pci 0000:06:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.423969] pci 0000:06:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.423972] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.423975] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.423978] pci 0000:06:06.0: BAR 8: no space for [mem size 0x08000000]
[    0.423980] pci 0000:06:06.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.423983] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.423986] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.423989] pci 0000:06:03.0: BAR 7: assigned [io  0x4000-0x4fff]
[    0.423991] pci 0000:06:04.0: BAR 7: assigned [io  0x5000-0x9fff]
[    0.423994] pci 0000:06:05.0: BAR 7: assigned [io  0xa000-0xafff]
[    0.423996] pci 0000:06:06.0: BAR 7: assigned [io  0xb000-0xbfff]
[    0.423999] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.424006] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.424012] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.424019] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.424030] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.424034] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.424051] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.424054] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.424057] pci 0000:18:00.0: BAR 7: assigned [io  0x5000-0x8fff]
[    0.424060] pci 0000:19:00.0: BAR 8: assigned [mem 0xa8c00000-0xa8cfffff]
[    0.424063] pci 0000:19:01.0: BAR 9: assigned [mem 0xa9200000-0xa92fffff 64bit pref]
[    0.424066] pci 0000:19:02.0: BAR 8: assigned [mem 0xa9400000-0xa94fffff]
[    0.424069] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.424071] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.424074] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.424077] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.424079] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.424082] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.424085] pci 0000:19:04.0: BAR 7: assigned [io  0x5000-0x7fff]
[    0.424087] pci 0000:19:05.0: BAR 7: assigned [io  0x8000-0x8fff]
[    0.424090] pci 0000:1a:00.0: BAR 8: assigned [mem 0xa8c00000-0xa8cfffff]
[    0.424093] pci 0000:1b:03.0: BAR 8: assigned [mem 0xa8c00000-0xa8cfffff]
[    0.424096] pci 0000:1c:00.0: BAR 0: assigned [mem 0xa8c00000-0xa8c00fff]
[    0.424106] pci 0000:1c:00.1: BAR 0: assigned [mem 0xa8c01000-0xa8c01fff]
[    0.424117] pci 0000:1c:00.2: BAR 0: assigned [mem 0xa8c02000-0xa8c020ff]
[    0.424127] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.424140] pci 0000:1b:03.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.424165] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.424178] pci 0000:1a:00.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.424203] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.424214] pci 0000:19:00.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.424233] pci 0000:1d:00.0: BAR 0: assigned [mem 0xa9200000-0xa920ffff 64bit pref]
[    0.424264] pci 0000:1d:00.0: BAR 2: assigned [mem 0xa9210000-0xa921ffff 64bit pref]
[    0.424294] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.424305] pci 0000:19:01.0:   bridge window [mem 0xa9300000-0xa93fffff]
[    0.424313] pci 0000:19:01.0:   bridge window [mem 0xa9200000-0xa92fffff 64bit pref]
[    0.424327] pci 0000:1e:00.0: BAR 0: assigned [mem 0xa9400000-0xa9400fff 64bit]
[    0.424357] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.424368] pci 0000:19:02.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.424387] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.424390] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.424393] pci 0000:1f:00.0: BAR 7: assigned [io  0x5000-0x6fff]
[    0.424396] pci 0000:20:00.0: BAR 8: assigned [mem 0xa8d00000-0xa8dfffff]
[    0.424399] pci 0000:20:01.0: BAR 9: assigned [mem 0xa8e00000-0xa8efffff 64bit pref]
[    0.424402] pci 0000:20:02.0: BAR 8: assigned [mem 0xa8f00000-0xa8ffffff]
[    0.424405] pci 0000:20:04.0: BAR 8: no space for [mem size 0x08000000]
[    0.424407] pci 0000:20:04.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.424410] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.424413] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.424416] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.424418] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.424421] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.424424] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.424427] pci 0000:20:04.0: BAR 7: assigned [io  0x5000-0x5fff]
[    0.424429] pci 0000:20:05.0: BAR 7: assigned [io  0x6000-0x6fff]
[    0.424432] pci 0000:21:00.0: BAR 8: assigned [mem 0xa8d00000-0xa8dfffff]
[    0.424435] pci 0000:22:03.0: BAR 8: assigned [mem 0xa8d00000-0xa8dfffff]
[    0.424438] pci 0000:23:00.0: BAR 0: assigned [mem 0xa8d00000-0xa8d00fff]
[    0.424450] pci 0000:23:00.1: BAR 0: assigned [mem 0xa8d01000-0xa8d01fff]
[    0.424463] pci 0000:23:00.2: BAR 0: assigned [mem 0xa8d02000-0xa8d020ff]
[    0.424475] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.424493] pci 0000:22:03.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.424525] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.424543] pci 0000:21:00.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.424575] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.424590] pci 0000:20:00.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.424617] pci 0000:24:00.0: BAR 0: assigned [mem 0xa8e00000-0xa8e0ffff 64bit pref]
[    0.424656] pci 0000:24:00.0: BAR 2: assigned [mem 0xa8e10000-0xa8e1ffff 64bit pref]
[    0.424695] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.424710] pci 0000:20:01.0:   bridge window [mem 0xa9000000-0xa90fffff]
[    0.424720] pci 0000:20:01.0:   bridge window [mem 0xa8e00000-0xa8efffff 64bit pref]
[    0.424740] pci 0000:25:00.0: BAR 0: assigned [mem 0xa8f00000-0xa8f00fff 64bit]
[    0.424779] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.424793] pci 0000:20:02.0:   bridge window [mem 0xa8f00000-0xa8ffffff]
[    0.424820] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.424826] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.424865] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.424872] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.424911] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.424917] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.424931] pci 0000:1f:00.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.424958] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.424962] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.424973] pci 0000:19:04.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.424992] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.424997] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.425025] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.425029] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.425040] pci 0000:18:00.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.425059] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.425062] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.425069] pci 0000:06:04.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.425081] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.425085] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.425101] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.425105] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.425121] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.425124] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.425131] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xa96fffff]
[    0.425142] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.425145] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.425150] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xad6fffff]
[    0.425158] pci_bus 0000:00: No. 4 try to assign unassigned res
[    0.425160] release child resource [mem 0xa8d00000-0xa8d00fff]
[    0.425161] release child resource [mem 0xa8d01000-0xa8d01fff]
[    0.425161] release child resource [mem 0xa8d02000-0xa8d020ff]
[    0.425162] pci 0000:22:03.0: resource 8 [mem 0xa8d00000-0xa8dfffff] released
[    0.425165] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.425177] pci 0000:21:00.0: resource 8 [mem 0xa8d00000-0xa8dfffff] released
[    0.425179] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.425192] pci 0000:20:00.0: resource 8 [mem 0xa8d00000-0xa8dfffff] released
[    0.425194] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.425204] release child resource [mem 0xa8e00000-0xa8e0ffff 64bit pref]
[    0.425205] release child resource [mem 0xa8e10000-0xa8e1ffff 64bit pref]
[    0.425206] pci 0000:20:01.0: resource 9 [mem 0xa8e00000-0xa8efffff 64bit pref] released
[    0.425209] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.425231] release child resource [mem 0xa8f00000-0xa8f00fff 64bit]
[    0.425232] pci 0000:20:02.0: resource 8 [mem 0xa8f00000-0xa8ffffff] released
[    0.425234] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.425244] release child resource [mem 0xa9000000-0xa90fffff]
[    0.425245] pci 0000:1f:00.0: resource 8 [mem 0xa8d00000-0xa91fffff] released
[    0.425248] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.425258] pci 0000:19:04.0: resource 8 [mem 0xa8d00000-0xa91fffff] released
[    0.425261] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.425268] release child resource [mem 0xa8c00000-0xa8c00fff]
[    0.425269] release child resource [mem 0xa8c01000-0xa8c01fff]
[    0.425270] release child resource [mem 0xa8c02000-0xa8c020ff]
[    0.425271] pci 0000:1b:03.0: resource 8 [mem 0xa8c00000-0xa8cfffff] released
[    0.425273] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.425283] pci 0000:1a:00.0: resource 8 [mem 0xa8c00000-0xa8cfffff] released
[    0.425285] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.425295] pci 0000:19:00.0: resource 8 [mem 0xa8c00000-0xa8cfffff] released
[    0.425297] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.425305] release child resource [mem 0xa9200000-0xa920ffff 64bit pref]
[    0.425305] release child resource [mem 0xa9210000-0xa921ffff 64bit pref]
[    0.425306] pci 0000:19:01.0: resource 9 [mem 0xa9200000-0xa92fffff 64bit pref] released
[    0.425309] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.425325] release child resource [mem 0xa9400000-0xa9400fff 64bit]
[    0.425326] pci 0000:19:02.0: resource 8 [mem 0xa9400000-0xa94fffff] released
[    0.425329] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.425336] release child resource [mem 0xa9300000-0xa93fffff]
[    0.425337] pci 0000:18:00.0: resource 8 [mem 0xa8c00000-0xa94fffff] released
[    0.425340] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.425348] pci 0000:06:04.0: resource 8 [mem 0xa8c00000-0xa94fffff] released
[    0.425350] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.425355] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.425356] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.425357] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.425359] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.425365] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xa96fffff] released
[    0.425367] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.425374] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xad6fffff] released
[    0.425376] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.425380] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.425381] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.425384] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.425387] release child resource [mem 0xa8400000-0xa840ffff 64bit pref]
[    0.425388] release child resource [mem 0xa8410000-0xa841ffff 64bit pref]
[    0.425389] pci 0000:00:1c.0: resource 9 [mem 0xa8400000-0xa84fffff 64bit pref] released
[    0.425392] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.425398] release child resource [mem 0xa8600000-0xa861ffff 64bit]
[    0.425399] release child resource [mem 0xa8620000-0xa862ffff pref]
[    0.425400] pci 0000:00:1c.1: resource 8 [mem 0xa8600000-0xa86fffff] released
[    0.425402] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.425406] release child resource [mem 0xa8500000-0xa8500fff 64bit]
[    0.425407] pci 0000:00:1c.2: resource 8 [mem 0xa8500000-0xa85fffff] released
[    0.425409] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.425422] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.425426] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.425430] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.425432] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.425435] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.425439] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.425442] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.425446] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.425454] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.425456] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.425459] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.425462] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.425466] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.425482] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.425497] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.425502] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.425506] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.425513] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.425527] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.425530] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.425535] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.425543] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.425559] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.425563] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.425571] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.425574] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.425577] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.425580] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.425583] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.425586] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.425589] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.425592] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.425594] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.425597] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.425600] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.425603] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.425606] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.425609] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.425611] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.425614] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.425617] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.425624] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.425630] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.425637] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.425648] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.425652] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.425659] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.425671] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.425674] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.425676] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.425680] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.425683] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.425685] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.425688] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.425691] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.425694] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.425696] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.425699] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.425702] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.425705] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.425707] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.425710] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.425713] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.425716] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.425726] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.425736] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.425746] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.425760] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.425784] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.425798] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.425823] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.425833] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.425853] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.425884] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.425914] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.425924] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.425932] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.425947] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.425977] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.425987] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.426007] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.426009] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.426012] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.426016] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.426018] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.426021] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.426024] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.426027] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.426029] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.426032] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.426035] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.426038] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.426040] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.426043] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.426046] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.426049] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.426052] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.426064] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.426077] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.426090] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.426107] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.426140] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.426157] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.426189] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.426204] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.426231] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.426270] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.426310] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.426324] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.426334] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.426354] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.426393] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.426408] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.426434] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.426441] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.426455] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.426482] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.426488] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.426527] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.426534] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.426548] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.426575] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.426579] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.426590] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.426610] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.426614] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.426642] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.426647] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.426657] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.426676] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.426680] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.426687] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.426699] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.426702] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.426709] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.426721] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.426725] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.426731] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.426743] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.426747] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.426754] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.426765] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.426768] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.426773] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.426781] pci_bus 0000:00: No. 5 try to assign unassigned res
[    0.426783] release child resource [mem 0xb0f00000-0xb0f00fff]
[    0.426783] release child resource [mem 0xb0f01000-0xb0f01fff]
[    0.426784] release child resource [mem 0xb0f02000-0xb0f020ff]
[    0.426785] pci 0000:22:03.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.426787] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.426800] pci 0000:21:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.426802] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.426814] pci 0000:20:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.426817] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.426827] release child resource [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.426828] release child resource [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.426828] pci 0000:20:01.0: resource 9 [mem 0xb1100000-0xb11fffff 64bit pref] released
[    0.426831] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.426854] release child resource [mem 0xb1200000-0xb1200fff 64bit]
[    0.426855] pci 0000:20:02.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[    0.426857] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.426867] pci 0000:20:04.0: resource 8 [mem 0xb1300000-0xb92fffff] released
[    0.426870] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.426880] release child resource [mem 0xb1000000-0xb10fffff]
[    0.426881] pci 0000:1f:00.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.426883] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.426894] pci 0000:19:04.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.426896] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.426904] release child resource [mem 0xb0b00000-0xb0b00fff]
[    0.426904] release child resource [mem 0xb0b01000-0xb0b01fff]
[    0.426905] release child resource [mem 0xb0b02000-0xb0b020ff]
[    0.426906] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.426908] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.426918] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.426920] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.426930] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.426932] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.426940] release child resource [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.426941] release child resource [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.426941] pci 0000:19:01.0: resource 9 [mem 0xb0d00000-0xb0dfffff 64bit pref] released
[    0.426944] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.426960] release child resource [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.426961] pci 0000:19:02.0: resource 8 [mem 0xb0e00000-0xb0efffff] released
[    0.426964] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.426971] release child resource [mem 0xb0c00000-0xb0cfffff]
[    0.426972] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.426975] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.426983] pci 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.426985] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.426990] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.426991] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.426992] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.426994] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.426999] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[    0.427002] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427007] pci 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[    0.427010] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427015] pci 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[    0.427017] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427022] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427025] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427031] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427033] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427037] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427038] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.427041] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427044] release child resource [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427045] release child resource [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427046] pci 0000:00:1c.0: resource 9 [mem 0x8f900000-0x8f9fffff 64bit pref] released
[    0.427049] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427055] release child resource [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427056] release child resource [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427057] pci 0000:00:1c.1: resource 8 [mem 0x8fa00000-0x8fafffff] released
[    0.427059] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427063] release child resource [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427064] pci 0000:00:1c.2: resource 8 [mem 0x8fb00000-0x8fbfffff] released
[    0.427066] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427078] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427081] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427085] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.427087] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.427090] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427094] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427097] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427100] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427108] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427110] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.427113] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.427116] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427121] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427136] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427151] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427156] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.427160] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427167] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427181] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427184] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427189] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.427197] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427212] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427217] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.427225] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427227] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427230] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427234] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.427236] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.427239] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427242] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427245] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427248] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427250] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427253] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.427256] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427259] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427262] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.427264] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427267] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427270] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.427277] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.427283] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427290] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.427302] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427305] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.427312] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.427324] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427327] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427330] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427333] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427336] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.427338] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427341] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.427344] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427347] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427349] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427352] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427355] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427357] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427360] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427363] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427366] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427369] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.427375] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.427375] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.427375] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427375] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427375] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427375] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427375] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427375] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427375] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427375] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427375] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427375] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.427375] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427375] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427375] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427375] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.427375] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427375] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427375] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427375] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427375] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.427375] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427375] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.427375] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.427375] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427375] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427375] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427375] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427375] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.427375] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.427375] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.427375] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427375] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427375] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427375] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427375] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427375] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427375] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427375] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427375] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427375] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.427375] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427375] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.427375] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427375] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.427375] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427375] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.427375] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.427375] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.427375] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.427375] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427375] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.427375] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427375] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427375] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.427375] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427375] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.427375] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.427375] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427375] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.427375] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427375] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427375] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.427375] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427375] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427375] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.427375] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.427375] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427375] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.427375] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.427375] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427375] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.427375] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.427375] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427375] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.427375] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.427375] pci_bus 0000:00: No. 6 try to assign unassigned res
[    0.427375] release child resource [mem 0xb0f00000-0xb0f00fff]
[    0.427375] release child resource [mem 0xb0f01000-0xb0f01fff]
[    0.427375] release child resource [mem 0xb0f02000-0xb0f020ff]
[    0.427375] pci 0000:22:03.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427375] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427375] pci 0000:21:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427375] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427375] pci 0000:20:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427375] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427375] release child resource [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427375] release child resource [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427375] pci 0000:20:01.0: resource 9 [mem 0xb1100000-0xb11fffff 64bit pref] released
[    0.427375] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427375] release child resource [mem 0xb1200000-0xb1200fff 64bit]
[    0.427375] pci 0000:20:02.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[    0.427375] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427375] pci 0000:20:04.0: resource 8 [mem 0xb1300000-0xb92fffff] released
[    0.427375] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427375] release child resource [mem 0xb1000000-0xb10fffff]
[    0.427375] pci 0000:1f:00.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.427375] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427375] pci 0000:19:04.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.427375] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427375] release child resource [mem 0xb0b00000-0xb0b00fff]
[    0.427375] release child resource [mem 0xb0b01000-0xb0b01fff]
[    0.427375] release child resource [mem 0xb0b02000-0xb0b020ff]
[    0.427375] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427375] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427375] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427375] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427375] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427375] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427375] release child resource [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427375] release child resource [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427375] pci 0000:19:01.0: resource 9 [mem 0xb0d00000-0xb0dfffff 64bit pref] released
[    0.427375] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427375] release child resource [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427375] pci 0000:19:02.0: resource 8 [mem 0xb0e00000-0xb0efffff] released
[    0.427375] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427375] release child resource [mem 0xb0c00000-0xb0cfffff]
[    0.427375] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427375] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427375] pci 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427375] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427375] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.427375] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.427375] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.427375] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427375] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[    0.427375] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427375] pci 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[    0.427375] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427375] pci 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[    0.427375] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427375] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427375] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427375] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427375] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427375] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427375] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.427375] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427375] release child resource [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427375] release child resource [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427375] pci 0000:00:1c.0: resource 9 [mem 0x8f900000-0x8f9fffff 64bit pref] released
[    0.427375] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427375] release child resource [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427375] release child resource [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427375] pci 0000:00:1c.1: resource 8 [mem 0x8fa00000-0x8fafffff] released
[    0.427375] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427375] release child resource [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427375] pci 0000:00:1c.2: resource 8 [mem 0x8fb00000-0x8fbfffff] released
[    0.427375] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427375] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427375] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427375] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.427375] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.427375] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427375] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427375] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427375] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427375] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427375] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.427375] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.427375] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427375] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427375] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427375] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427375] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.427375] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427375] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427375] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427375] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427375] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.427375] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427375] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427375] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.427375] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427375] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427375] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427375] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.427375] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.427375] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427375] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427375] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427375] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.427375] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.427375] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.427375] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.427375] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427375] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.427375] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427375] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.427375] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.427375] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427375] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427375] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427375] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427375] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.427375] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427375] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.427375] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427375] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427375] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427375] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427375] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427375] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427375] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427375] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.427375] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.427375] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.427375] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427375] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427375] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427375] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427375] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427375] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427375] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427375] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427375] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427375] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.427375] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427375] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427375] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427375] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.427375] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427375] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427375] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427375] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427375] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.427375] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427375] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.427375] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.427375] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427375] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427375] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427375] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427375] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.427375] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.427375] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.427375] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427375] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427375] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427375] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427375] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427375] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427375] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427375] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427375] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427375] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.427375] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427375] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.427375] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427375] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.427375] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427375] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.427375] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.427375] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.427375] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.427375] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427375] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.427375] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427375] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427375] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.427375] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427375] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.427375] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.427375] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427375] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.427375] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427375] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427375] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.427375] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427375] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427375] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.427375] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.427375] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427375] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.427375] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.427375] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427375] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.427375] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.427375] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427375] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.427375] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.427375] pci_bus 0000:00: No. 7 try to assign unassigned res
[    0.427375] release child resource [mem 0xb0f00000-0xb0f00fff]
[    0.427375] release child resource [mem 0xb0f01000-0xb0f01fff]
[    0.427375] release child resource [mem 0xb0f02000-0xb0f020ff]
[    0.427375] pci 0000:22:03.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427375] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427375] pci 0000:21:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427375] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427375] pci 0000:20:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427375] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427375] release child resource [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427375] release child resource [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427375] pci 0000:20:01.0: resource 9 [mem 0xb1100000-0xb11fffff 64bit pref] released
[    0.427375] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427375] release child resource [mem 0xb1200000-0xb1200fff 64bit]
[    0.427375] pci 0000:20:02.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[    0.427375] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427375] pci 0000:20:04.0: resource 8 [mem 0xb1300000-0xb92fffff] released
[    0.427375] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427375] release child resource [mem 0xb1000000-0xb10fffff]
[    0.427375] pci 0000:1f:00.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.427375] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427375] pci 0000:19:04.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.427375] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427375] release child resource [mem 0xb0b00000-0xb0b00fff]
[    0.427375] release child resource [mem 0xb0b01000-0xb0b01fff]
[    0.427375] release child resource [mem 0xb0b02000-0xb0b020ff]
[    0.427375] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427375] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427375] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427375] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427375] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427375] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427375] release child resource [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427375] release child resource [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427375] pci 0000:19:01.0: resource 9 [mem 0xb0d00000-0xb0dfffff 64bit pref] released
[    0.427375] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427375] release child resource [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427375] pci 0000:19:02.0: resource 8 [mem 0xb0e00000-0xb0efffff] released
[    0.427375] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427375] release child resource [mem 0xb0c00000-0xb0cfffff]
[    0.427375] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427375] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427375] pci 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427375] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427375] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.427375] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.427375] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.427375] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427375] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[    0.427375] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427375] pci 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[    0.427375] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427375] pci 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[    0.427375] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427375] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427375] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427375] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427375] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427375] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427375] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.427375] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427375] release child resource [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427375] release child resource [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427375] pci 0000:00:1c.0: resource 9 [mem 0x8f900000-0x8f9fffff 64bit pref] released
[    0.427375] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427375] release child resource [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427375] release child resource [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427375] pci 0000:00:1c.1: resource 8 [mem 0x8fa00000-0x8fafffff] released
[    0.427375] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427375] release child resource [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427375] pci 0000:00:1c.2: resource 8 [mem 0x8fb00000-0x8fbfffff] released
[    0.427375] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427375] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427375] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427375] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.427375] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.427375] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427375] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427375] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427375] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427375] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427375] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.427375] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.427375] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427375] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427375] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427375] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427375] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.427375] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427375] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427375] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427375] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427375] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.427375] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427375] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427375] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.427375] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427375] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427375] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427375] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.427375] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.427375] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427375] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427375] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427375] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.427375] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.427375] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.427375] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.427375] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427375] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.427375] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427375] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.427375] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.427375] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427375] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427375] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427375] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427375] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.427375] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427375] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.427375] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427375] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427375] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427375] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427375] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427375] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427375] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427375] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.427375] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.427375] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.427375] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427375] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427375] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427375] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427375] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427375] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427375] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427375] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427375] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427375] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.427375] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427375] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427375] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427375] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.427375] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427375] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427375] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427375] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427375] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.427375] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427375] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.427375] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.427375] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427375] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427375] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427375] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427375] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.427375] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.427375] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.427375] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427375] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427375] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427375] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427375] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427375] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427375] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427375] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427375] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427375] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.427375] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427375] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.427375] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427375] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.427375] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427375] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.427375] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.427375] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.427375] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.427375] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427375] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.427375] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427375] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427375] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.427375] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427375] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.427375] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.427375] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427375] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.427375] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427375] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427375] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.427375] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427375] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427375] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.427375] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.427375] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427375] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.427375] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.427375] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427375] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.427375] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.427375] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427375] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.427375] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.427375] pci_bus 0000:00: No. 8 try to assign unassigned res
[    0.427375] release child resource [mem 0xb0f00000-0xb0f00fff]
[    0.427375] release child resource [mem 0xb0f01000-0xb0f01fff]
[    0.427375] release child resource [mem 0xb0f02000-0xb0f020ff]
[    0.427375] pci 0000:22:03.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427375] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427375] pci 0000:21:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427375] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427375] pci 0000:20:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427375] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427375] release child resource [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427375] release child resource [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427375] pci 0000:20:01.0: resource 9 [mem 0xb1100000-0xb11fffff 64bit pref] released
[    0.427375] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427375] release child resource [mem 0xb1200000-0xb1200fff 64bit]
[    0.427375] pci 0000:20:02.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[    0.427375] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427375] pci 0000:20:04.0: resource 8 [mem 0xb1300000-0xb92fffff] released
[    0.427375] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427375] release child resource [mem 0xb1000000-0xb10fffff]
[    0.427375] pci 0000:1f:00.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.427375] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427375] pci 0000:19:04.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.427375] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427375] release child resource [mem 0xb0b00000-0xb0b00fff]
[    0.427375] release child resource [mem 0xb0b01000-0xb0b01fff]
[    0.427375] release child resource [mem 0xb0b02000-0xb0b020ff]
[    0.427375] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427375] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427375] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427375] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427375] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427375] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427375] release child resource [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427375] release child resource [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427375] pci 0000:19:01.0: resource 9 [mem 0xb0d00000-0xb0dfffff 64bit pref] released
[    0.427375] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427375] release child resource [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427375] pci 0000:19:02.0: resource 8 [mem 0xb0e00000-0xb0efffff] released
[    0.427375] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427375] release child resource [mem 0xb0c00000-0xb0cfffff]
[    0.427375] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427375] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427375] pci 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427375] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427375] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.427375] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.427375] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.427375] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427375] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[    0.427375] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427375] pci 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[    0.427375] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427375] pci 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[    0.427375] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427375] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427375] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427375] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427375] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427375] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427375] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.427375] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427375] release child resource [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427375] release child resource [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427375] pci 0000:00:1c.0: resource 9 [mem 0x8f900000-0x8f9fffff 64bit pref] released
[    0.427375] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427375] release child resource [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427375] release child resource [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427375] pci 0000:00:1c.1: resource 8 [mem 0x8fa00000-0x8fafffff] released
[    0.427375] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427375] release child resource [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427375] pci 0000:00:1c.2: resource 8 [mem 0x8fb00000-0x8fbfffff] released
[    0.427375] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427375] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427375] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427375] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.427375] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.427375] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427375] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427375] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427375] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427375] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427375] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.427375] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.427375] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427375] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427375] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427375] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427375] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.427375] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427375] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427375] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427375] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427375] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.427375] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427375] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427375] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.427375] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427375] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427375] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427375] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.427375] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.427375] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427375] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427375] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427375] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.427375] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.427375] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.427375] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.427375] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427375] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.427375] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427375] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.427375] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.427375] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427375] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427375] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427375] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427375] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.427375] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427375] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.427375] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427375] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427375] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427375] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427375] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427375] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427375] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427375] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.427375] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.427375] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.427375] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427375] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427375] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427375] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427375] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427375] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427375] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427375] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427375] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427375] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.427375] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427375] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427375] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427375] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.427375] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427375] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427375] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427375] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427375] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.427375] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427375] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.427375] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.427375] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427375] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427375] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427375] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427375] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427375] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.427375] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.427375] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.427375] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427375] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427375] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427375] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427375] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427375] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427375] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427375] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427375] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427375] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.427375] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427375] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.427375] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427375] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.427375] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427375] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.427375] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.427375] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.427375] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.427375] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427375] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.427375] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427375] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427375] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.427375] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427375] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.427375] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.427375] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427375] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.427375] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427375] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427375] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.427375] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427375] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427375] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.427375] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.433326] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.433330] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.433337] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.433349] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.433352] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.433359] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.433370] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.433373] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.433378] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.433386] pci_bus 0000:00: No. 9 try to assign unassigned res
[    0.433388] release child resource [mem 0xb0f00000-0xb0f00fff]
[    0.433389] release child resource [mem 0xb0f01000-0xb0f01fff]
[    0.433390] release child resource [mem 0xb0f02000-0xb0f020ff]
[    0.433391] pci 0000:22:03.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.433393] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.433405] pci 0000:21:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.433408] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.433420] pci 0000:20:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.433422] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.433433] release child resource [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.433433] release child resource [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.433434] pci 0000:20:01.0: resource 9 [mem 0xb1100000-0xb11fffff 64bit pref] released
[    0.433437] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.433459] release child resource [mem 0xb1200000-0xb1200fff 64bit]
[    0.433460] pci 0000:20:02.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[    0.433463] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.433473] pci 0000:20:04.0: resource 8 [mem 0xb1300000-0xb92fffff] released
[    0.433475] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.433486] release child resource [mem 0xb1000000-0xb10fffff]
[    0.433486] pci 0000:1f:00.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.433489] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.433499] pci 0000:19:04.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.433502] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.433509] release child resource [mem 0xb0b00000-0xb0b00fff]
[    0.433510] release child resource [mem 0xb0b01000-0xb0b01fff]
[    0.433511] release child resource [mem 0xb0b02000-0xb0b020ff]
[    0.433512] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.433514] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.433524] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.433526] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.433535] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.433538] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.433545] release child resource [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.433546] release child resource [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.433547] pci 0000:19:01.0: resource 9 [mem 0xb0d00000-0xb0dfffff 64bit pref] released
[    0.433550] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.433566] release child resource [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.433567] pci 0000:19:02.0: resource 8 [mem 0xb0e00000-0xb0efffff] released
[    0.433569] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.433577] release child resource [mem 0xb0c00000-0xb0cfffff]
[    0.433578] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.433580] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.433588] pci 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.433591] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.433596] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.433597] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.433598] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.433600] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.433605] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[    0.433608] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.433613] pci 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[    0.433615] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.433621] pci 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[    0.433623] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.433628] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.433631] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.433637] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.433639] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.433643] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.433644] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.433647] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.433650] release child resource [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.433651] release child resource [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.433652] pci 0000:00:1c.0: resource 9 [mem 0x8f900000-0x8f9fffff 64bit pref] released
[    0.433655] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.433661] release child resource [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.433662] release child resource [mem 0x8fa20000-0x8fa2ffff pref]
[    0.433663] pci 0000:00:1c.1: resource 8 [mem 0x8fa00000-0x8fafffff] released
[    0.433665] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.433669] release child resource [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.433670] pci 0000:00:1c.2: resource 8 [mem 0x8fb00000-0x8fbfffff] released
[    0.433672] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.433691] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.433697] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.433702] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.433706] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.433712] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.433717] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.433720] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.433729] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.433738] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.433740] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.433743] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.433746] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.433751] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.433766] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.433781] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.433786] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.433790] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.433797] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.433811] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.433814] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.433819] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.433827] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.433842] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.433847] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.433855] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.433858] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.433861] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.433864] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.433867] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.433870] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.433872] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.433875] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.433878] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.433881] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.433884] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.433887] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.433889] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.433892] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.433895] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.433898] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.433901] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.433907] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.433914] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.433920] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.433932] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.433936] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.433943] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.433955] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.433958] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.433960] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.433964] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.433966] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.433969] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.433972] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.433975] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.433977] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.433980] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.433983] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.433986] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.433988] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.433991] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.433994] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.433997] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.434000] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.434010] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.434020] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.434030] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.434043] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.434068] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.434081] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.434106] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.434117] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.434136] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.434167] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.434197] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.434208] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.434216] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.434230] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.434260] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.434271] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.434291] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.434293] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.434296] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.434299] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.434302] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.434305] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.434308] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.434310] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.434313] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.434316] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.434319] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.434321] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.434324] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.434327] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.434330] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.434332] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.434335] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.434348] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.434361] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.434373] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.434390] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.434423] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.434440] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.434473] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.434488] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.434515] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.434554] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.434593] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.434608] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.434618] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.434638] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.434677] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.434692] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.434719] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.434725] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.434739] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.434766] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.434773] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.434812] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.434818] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.434832] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.434859] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.434864] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.434874] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.434894] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.434899] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.434926] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.434931] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.434942] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.434961] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.434964] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.434971] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.434983] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.434986] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.434993] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.435005] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.435009] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.435016] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.435027] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.435031] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.435038] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.435049] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.435052] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.435057] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.435065] pci_bus 0000:00: No. 10 try to assign unassigned res
[    0.435067] release child resource [mem 0xb0f00000-0xb0f00fff]
[    0.435067] release child resource [mem 0xb0f01000-0xb0f01fff]
[    0.435068] release child resource [mem 0xb0f02000-0xb0f020ff]
[    0.435069] pci 0000:22:03.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.435071] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.435084] pci 0000:21:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.435086] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.435098] pci 0000:20:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.435101] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.435111] release child resource [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.435112] release child resource [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.435113] pci 0000:20:01.0: resource 9 [mem 0xb1100000-0xb11fffff 64bit pref] released
[    0.435115] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.435138] release child resource [mem 0xb1200000-0xb1200fff 64bit]
[    0.435139] pci 0000:20:02.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[    0.435141] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.435151] pci 0000:20:04.0: resource 8 [mem 0xb1300000-0xb92fffff] released
[    0.435154] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.435164] release child resource [mem 0xb1000000-0xb10fffff]
[    0.435165] pci 0000:1f:00.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.435167] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.435178] pci 0000:19:04.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.435180] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.435188] release child resource [mem 0xb0b00000-0xb0b00fff]
[    0.435188] release child resource [mem 0xb0b01000-0xb0b01fff]
[    0.435189] release child resource [mem 0xb0b02000-0xb0b020ff]
[    0.435190] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.435192] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.435202] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.435204] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.435214] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.435216] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.435224] release child resource [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.435225] release child resource [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.435226] pci 0000:19:01.0: resource 9 [mem 0xb0d00000-0xb0dfffff 64bit pref] released
[    0.435228] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.435244] release child resource [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.435245] pci 0000:19:02.0: resource 8 [mem 0xb0e00000-0xb0efffff] released
[    0.435248] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.435255] release child resource [mem 0xb0c00000-0xb0cfffff]
[    0.435256] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.435259] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.435267] pci 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.435269] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.435274] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.435275] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.435276] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.435278] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.435283] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[    0.435286] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.435291] pci 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[    0.435293] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.435299] pci 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[    0.435301] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.435306] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.435309] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.435315] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.435317] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.435321] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.435322] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.435325] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.435328] release child resource [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.435329] release child resource [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.435330] pci 0000:00:1c.0: resource 9 [mem 0x8f900000-0x8f9fffff 64bit pref] released
[    0.435333] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.435339] release child resource [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.435340] release child resource [mem 0x8fa20000-0x8fa2ffff pref]
[    0.435341] pci 0000:00:1c.1: resource 8 [mem 0x8fa00000-0x8fafffff] released
[    0.435343] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.435347] release child resource [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.435348] pci 0000:00:1c.2: resource 8 [mem 0x8fb00000-0x8fbfffff] released
[    0.435350] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.435363] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.435366] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.435370] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.435372] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.435375] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.435379] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.435382] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.435385] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.435393] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.435396] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.435399] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.435402] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.435406] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.435421] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.435436] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.435441] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.435445] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.435452] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.435466] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.435469] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.435474] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.435482] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.435497] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.435502] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.435510] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.435513] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.435515] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.435519] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.435522] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.435524] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.435527] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.435530] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.435533] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.435536] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.435539] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.435541] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.435544] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.435547] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.435550] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.435553] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.435556] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.435562] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.435568] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.435575] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.435587] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.435591] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.435597] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.435609] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.435612] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.435615] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.435618] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.435621] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.435624] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.435627] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.435629] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.435632] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.435635] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.435638] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.435640] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.435643] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.435645] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.435649] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.435651] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.435654] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.435664] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.435674] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.435684] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.435698] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.435723] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.435736] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.435761] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.435771] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.435791] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.435821] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.435851] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.435862] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.435870] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.435884] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.435915] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.435925] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.435944] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.435947] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.435950] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.435953] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.435956] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.435959] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.435962] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.435964] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.435967] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.435970] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.435973] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.435975] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.435978] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.435981] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.435984] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.435987] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.435989] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.436002] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.436015] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.436027] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.436044] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.436077] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.436094] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.436126] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.436141] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.436168] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.436207] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.436247] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.436261] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.436271] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.436291] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.436330] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.436344] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.436371] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.436377] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.436392] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.436419] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.436425] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.436464] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.436470] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.436484] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.436511] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.436516] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.436526] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.436545] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.436550] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.436578] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.436583] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.436593] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.436612] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.436616] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.436622] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.436634] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.436638] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.436645] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.436657] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.436660] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.436667] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.436679] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.436682] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.436689] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.436700] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.436703] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.436708] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.436716] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.436719] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.436721] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000fffff window]
[    0.436724] pci_bus 0000:00: resource 7 [mem 0x8f900000-0xfeafffff window]
[    0.436726] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff window]
[    0.436729] pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
[    0.436731] pci_bus 0000:01: resource 1 [mem 0xa8800000-0xa88fffff]
[    0.436734] pci_bus 0000:01: resource 2 [mem 0x90000000-0x9fffffff 64bit pref]
[    0.436736] pci_bus 0000:02: resource 1 [mem 0xa8700000-0xa87fffff]
[    0.436739] pci_bus 0000:02: resource 2 [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.436741] pci_bus 0000:03: resource 1 [mem 0x8fa00000-0x8fafffff]
[    0.436744] pci_bus 0000:04: resource 1 [mem 0x8fb00000-0x8fbfffff]
[    0.436746] pci_bus 0000:05: resource 0 [io  0x4000-0xbfff]
[    0.436748] pci_bus 0000:05: resource 1 [mem 0xa8a00000-0xd90fffff]
[    0.436751] pci_bus 0000:06: resource 0 [io  0x4000-0xbfff]
[    0.436753] pci_bus 0000:06: resource 1 [mem 0xa8a00000-0xd90fffff]
[    0.436755] pci_bus 0000:07: resource 1 [mem 0xa8a00000-0xa8afffff]
[    0.436757] pci_bus 0000:08: resource 0 [io  0x4000-0x4fff]
[    0.436760] pci_bus 0000:08: resource 1 [mem 0xa8b00000-0xb0afffff]
[    0.436762] pci_bus 0000:18: resource 0 [io  0x5000-0x9fff]
[    0.436764] pci_bus 0000:18: resource 1 [mem 0xb0b00000-0xc90fffff]
[    0.436766] pci_bus 0000:19: resource 0 [io  0x5000-0x8fff]
[    0.436769] pci_bus 0000:19: resource 1 [mem 0xb0b00000-0xc90fffff]
[    0.436771] pci_bus 0000:1a: resource 1 [mem 0xb0b00000-0xb0bfffff]
[    0.436773] pci_bus 0000:1b: resource 1 [mem 0xb0b00000-0xb0bfffff]
[    0.436776] pci_bus 0000:1c: resource 1 [mem 0xb0b00000-0xb0bfffff]
[    0.436778] pci_bus 0000:1d: resource 1 [mem 0xb0c00000-0xb0cfffff]
[    0.436780] pci_bus 0000:1d: resource 2 [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.436783] pci_bus 0000:1e: resource 1 [mem 0xb0e00000-0xb0efffff]
[    0.436785] pci_bus 0000:1f: resource 0 [io  0x5000-0x7fff]
[    0.436788] pci_bus 0000:1f: resource 1 [mem 0xb0f00000-0xc11fffff]
[    0.436790] pci_bus 0000:20: resource 0 [io  0x5000-0x6fff]
[    0.436792] pci_bus 0000:20: resource 1 [mem 0xb0f00000-0xc11fffff]
[    0.436794] pci_bus 0000:21: resource 1 [mem 0xb0f00000-0xb0ffffff]
[    0.436797] pci_bus 0000:22: resource 1 [mem 0xb0f00000-0xb0ffffff]
[    0.436799] pci_bus 0000:23: resource 1 [mem 0xb0f00000-0xb0ffffff]
[    0.436801] pci_bus 0000:24: resource 1 [mem 0xb1000000-0xb10fffff]
[    0.436804] pci_bus 0000:24: resource 2 [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.436806] pci_bus 0000:25: resource 1 [mem 0xb1200000-0xb12fffff]
[    0.436809] pci_bus 0000:26: resource 0 [io  0x5000-0x5fff]
[    0.436811] pci_bus 0000:26: resource 1 [mem 0xb1300000-0xb92fffff]
[    0.436813] pci_bus 0000:36: resource 0 [io  0x6000-0x6fff]
[    0.436815] pci_bus 0000:46: resource 0 [io  0x8000-0x8fff]
[    0.436818] pci_bus 0000:56: resource 0 [io  0xa000-0xafff]
[    0.436820] pci_bus 0000:56: resource 1 [mem 0xc9100000-0xd10fffff]
[    0.436822] pci_bus 0000:66: resource 0 [io  0xb000-0xbfff]
[    0.436824] pci_bus 0000:66: resource 1 [mem 0xd1100000-0xd90fffff]
[    0.437258] pci 0000:01:00.1: D0 power state depends on 0000:01:00.0
[    0.437275] pci 0000:05:00.0: CLS mismatch (256 != 128), using 64 bytes
[    0.437289] pci 0000:1c:00.0: MSI is not implemented on this device, disabling it
[    0.437291] pci 0000:1c:00.0: PME# is unreliable, disabling it
[    0.437587] pci 0000:1c:00.1: MSI is not implemented on this device, disabling it
[    0.437590] pci 0000:1c:00.1: PME# is unreliable, disabling it
[    0.437669] pci 0000:1c:00.2: MSI is not implemented on this device, disabling it
[    0.437672] pci 0000:1c:00.2: PME# is unreliable, disabling it
[    0.437727] pci 0000:1c:00.2: EHCI: unrecognized capability 00
[    0.437765] pci 0000:23:00.0: MSI is not implemented on this device, disabling it
[    0.437768] pci 0000:23:00.0: PME# is unreliable, disabling it
[    0.438020] pci 0000:23:00.1: MSI is not implemented on this device, disabling it
[    0.438023] pci 0000:23:00.1: PME# is unreliable, disabling it
[    0.438117] pci 0000:23:00.2: MSI is not implemented on this device, disabling it
[    0.438120] pci 0000:23:00.2: PME# is unreliable, disabling it
[    0.438187] pci 0000:23:00.2: EHCI: unrecognized capability 00
[    0.438226] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.438229] software IO TLB: mapped [mem 0x0000000083000000-0x0000000087000000] (64MB)
[    0.438238] ACPI: bus type thunderbolt registered
[    0.438263] Trying to unpack rootfs image as initramfs...
[    0.438322] thunderbolt 0000:07:00.0: total paths: 32
[    0.438496] thunderbolt 0000:07:00.0: allocating TX ring 0 of size 10
[    0.438515] thunderbolt 0000:07:00.0: allocating RX ring 0 of size 10
[    0.438528] thunderbolt 0000:07:00.0: control channel created
[    0.438530] thunderbolt 0000:07:00.0: ICM not supported on this controller
[    0.438539] thunderbolt 0000:07:00.0: freeing RX ring 0
[    0.438546] thunderbolt 0000:07:00.0: freeing TX ring 0
[    0.438556] thunderbolt 0000:07:00.0: allocating TX ring 0 of size 10
[    0.438564] thunderbolt 0000:07:00.0: allocating RX ring 0 of size 10
[    0.438572] thunderbolt 0000:07:00.0: control channel created
[    0.438573] thunderbolt 0000:07:00.0: using software connection manager
[    0.438589] thunderbolt 0000:07:00.0: created link from 0000:06:03.0
[    0.438614] thunderbolt 0000:07:00.0: created link from 0000:06:04.0
[    0.438627] thunderbolt 0000:07:00.0: created link from 0000:06:05.0
[    0.438640] thunderbolt 0000:07:00.0: created link from 0000:06:06.0
[    0.438695] thunderbolt 0000:07:00.0: NHI initialized, starting thunderbolt
[    0.438696] thunderbolt 0000:07:00.0: control channel starting...
[    0.438697] thunderbolt 0000:07:00.0: starting TX ring 0
[    0.438705] thunderbolt 0000:07:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[    0.438708] thunderbolt 0000:07:00.0: starting RX ring 0
[    0.438715] thunderbolt 0000:07:00.0: enabling interrupt at register 0x38204 bit 0 (0x0 -> 0x1)
[    0.438719] thunderbolt 0000:07:00.0: security level set to user
[    0.438873] thunderbolt 0000:07:00.0: current switch config:
[    0.438875] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[    0.438877] thunderbolt 0000:07:00.0:   Max Port Number: 13
[    0.438878] thunderbolt 0000:07:00.0:   Config:
[    0.438879] thunderbolt 0000:07:00.0:    Upstream Port Number: 6 Depth: 0 Route String: 0x0 Enabled: 1, PlugEventsDelay: 255ms
[    0.438881] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[    0.465779] thunderbolt 0000:07:00.0: initializing Switch at 0x0 (depth: 0, up port: 6)
[    0.466290] thunderbolt 0000:07:00.0: 0: DROM version: 1
[    0.467824] thunderbolt 0000:07:00.0: 0: uid: 0x1000a13f2da20
[    0.470767] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    0.470770] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    0.470771] thunderbolt 0000:07:00.0:   Max counters: 32
[    0.470772] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.470773] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.473711] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    0.473713] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    0.473714] thunderbolt 0000:07:00.0:   Max counters: 32
[    0.473715] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.473716] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.476655] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    0.476656] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    0.476657] thunderbolt 0000:07:00.0:   Max counters: 32
[    0.476658] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.476659] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.477294] random: fast init done
[    0.479598] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    0.479600] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    0.479601] thunderbolt 0000:07:00.0:   Max counters: 32
[    0.479602] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.479603] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.479604] thunderbolt 0000:07:00.0: 0:5: disabled by eeprom
[    0.480494] thunderbolt 0000:07:00.0:  Port 6: 8086:1513 (Revision: 2, TB Version: 1, Type: NHI (0x2))
[    0.480496] thunderbolt 0000:07:00.0:   Max hop id (in/out): 31/31
[    0.480497] thunderbolt 0000:07:00.0:   Max counters: 32
[    0.480498] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.480499] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.481390] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    0.481392] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.481393] thunderbolt 0000:07:00.0:   Max counters: 1
[    0.481394] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.481395] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.482286] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    0.482288] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.482289] thunderbolt 0000:07:00.0:   Max counters: 1
[    0.482290] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.482291] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.483182] thunderbolt 0000:07:00.0:  Port 9: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    0.483184] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.483185] thunderbolt 0000:07:00.0:   Max counters: 1
[    0.483186] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.483187] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.484078] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    0.484080] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.484081] thunderbolt 0000:07:00.0:   Max counters: 1
[    0.484082] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.484083] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.485230] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[    0.485232] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    0.485233] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.485234] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.485235] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.486126] thunderbolt 0000:07:00.0:  Port 12: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0101))
[    0.486128] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    0.486129] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.486130] thunderbolt 0000:07:00.0:   NFC Credits: 0x700005
[    0.486131] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.487022] thunderbolt 0000:07:00.0:  Port 13: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0101))
[    0.487023] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    0.487024] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.487025] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.487026] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.503099] thunderbolt 0000:07:00.0: 0: TMU: current mode: HiFi
[    0.503227] thunderbolt 0000:07:00.0: 0:1: is unplugged (state: 7)
[    0.503354] thunderbolt 0000:07:00.0: 0:3: is connected, link is up (state: 2)
[    0.503610] thunderbolt 0000:07:00.0: current switch config:
[    0.503611] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[    0.503613] thunderbolt 0000:07:00.0:   Max Port Number: 13
[    0.503614] thunderbolt 0000:07:00.0:   Config:
[    0.503615] thunderbolt 0000:07:00.0:    Upstream Port Number: 1 Depth: 1 Route String: 0x3 Enabled: 1, PlugEventsDelay: 255ms
[    0.503616] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[    0.508218] thunderbolt 0000:07:00.0: initializing Switch at 0x3 (depth: 1, up port: 1)
[    0.525625] thunderbolt 0000:07:00.0: 3: reading drom (length: 0x97)
[    0.705946] Freeing initrd memory: 27980K
[    1.019283] thunderbolt 0000:07:00.0: 3: DROM version: 1
[    1.020307] thunderbolt 0000:07:00.0: 3: uid: 0x1000100189170
[    1.023249] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.023254] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.023257] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.023259] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.023261] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.026193] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.026197] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.026199] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.026201] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c0000e
[    1.026203] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.029136] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.029140] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.029142] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.029144] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.029146] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.032080] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.032084] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.032086] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.032088] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.032090] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.032092] thunderbolt 0000:07:00.0: 3:5: disabled by eeprom
[    1.032094] thunderbolt 0000:07:00.0: 3:6: disabled by eeprom
[    1.032976] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.032980] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.032982] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.032984] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.032986] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.033872] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.033876] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.033878] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.033880] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.033882] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.033884] thunderbolt 0000:07:00.0: 3:9: disabled by eeprom
[    1.034768] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[    1.034772] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.034774] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.034776] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.034778] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.035920] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[    1.035924] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    1.035926] thunderbolt 0000:07:00.0:   Max counters: 2
[    1.035928] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.035930] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.035932] thunderbolt 0000:07:00.0: 3:c: disabled by eeprom
[    1.035934] thunderbolt 0000:07:00.0: 3:d: disabled by eeprom
[    1.054413] thunderbolt 0000:07:00.0: 3: TMU: current mode: bi-directional, HiFi
[    1.054442] thunderbolt 0-3: new device found, vendor=0x1 device=0x8002
[    1.054450] thunderbolt 0-3: Apple, Inc. Thunderbolt Display
[    1.054548] thunderbolt 0000:07:00.0: 3:3: is connected, link is up (state: 2)
[    1.054806] thunderbolt 0000:07:00.0: current switch config:
[    1.054808] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[    1.054812] thunderbolt 0000:07:00.0:   Max Port Number: 13
[    1.054814] thunderbolt 0000:07:00.0:   Config:
[    1.054816] thunderbolt 0000:07:00.0:    Upstream Port Number: 3 Depth: 2 Route String: 0x303 Enabled: 1, PlugEventsDelay: 255ms
[    1.054819] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[    1.059415] thunderbolt 0000:07:00.0: initializing Switch at 0x303 (depth: 2, up port: 3)
[    1.076820] thunderbolt 0000:07:00.0: 303: reading drom (length: 0x97)
[    1.536561] random: crng init done
[    1.570477] thunderbolt 0000:07:00.0: 303: DROM version: 1
[    1.571501] thunderbolt 0000:07:00.0: 303: uid: 0x100010102a740
[    1.574444] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.574448] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.574450] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.574452] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.574454] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.577387] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.577391] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.577393] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.577395] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.577397] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.580331] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.580335] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.580337] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.580339] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.580341] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.583275] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.583278] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.583281] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.583283] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.583285] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.583287] thunderbolt 0000:07:00.0: 303:5: disabled by eeprom
[    1.583289] thunderbolt 0000:07:00.0: 303:6: disabled by eeprom
[    1.584171] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.584174] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.584177] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.584179] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.584181] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.585067] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.585070] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.585073] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.585074] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.585076] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.585079] thunderbolt 0000:07:00.0: 303:9: disabled by eeprom
[    1.585963] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[    1.585967] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.585969] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.585971] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.585972] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.587114] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[    1.587118] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    1.587120] thunderbolt 0000:07:00.0:   Max counters: 2
[    1.587122] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.587124] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.587126] thunderbolt 0000:07:00.0: 303:c: disabled by eeprom
[    1.587129] thunderbolt 0000:07:00.0: 303:d: disabled by eeprom
[    1.605357] thunderbolt 0000:07:00.0: 303: TMU: current mode: bi-directional, HiFi
[    1.605378] thunderbolt 0-303: new device found, vendor=0x1 device=0x8002
[    1.605386] thunderbolt 0-303: Apple, Inc. Thunderbolt Display
[    1.605482] thunderbolt 0000:07:00.0: 303:1: is unplugged (state: 7)
[    1.605741] thunderbolt 0000:07:00.0: 303:b: DP adapter HPD set, queuing hotplug
[    1.606509] thunderbolt 0000:07:00.0: discovering PCIe Up path starting from 0:7
[    1.606638] thunderbolt 0000:07:00.0: 0:7:  In HopID: 8 => Out port: 3 Out HopID: 8
[    1.606641] thunderbolt 0000:07:00.0: 0:7:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.606644] thunderbolt 0000:07:00.0: 0:7:    Counter enabled: 1 Counter index: 0
[    1.606647] thunderbolt 0000:07:00.0: 0:7:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.606650] thunderbolt 0000:07:00.0: 0:7:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.606765] thunderbolt 0000:07:00.0: 3:1:  In HopID: 8 => Out port: 10 Out HopID: 8
[    1.606769] thunderbolt 0000:07:00.0: 3:1:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.606772] thunderbolt 0000:07:00.0: 3:1:    Counter enabled: 1 Counter index: 0
[    1.606774] thunderbolt 0000:07:00.0: 3:1:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.606777] thunderbolt 0000:07:00.0: 3:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.606780] thunderbolt 0000:07:00.0: path discovery complete
[    1.607277] thunderbolt 0000:07:00.0: discovering PCIe Down path starting from 3:10
[    1.607405] thunderbolt 0000:07:00.0: 3:a:  In HopID: 8 => Out port: 1 Out HopID: 8
[    1.607408] thunderbolt 0000:07:00.0: 3:a:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.607411] thunderbolt 0000:07:00.0: 3:a:    Counter enabled: 1 Counter index: 0
[    1.607414] thunderbolt 0000:07:00.0: 3:a:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.607416] thunderbolt 0000:07:00.0: 3:a:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.607533] thunderbolt 0000:07:00.0: 0:3:  In HopID: 8 => Out port: 7 Out HopID: 8
[    1.607536] thunderbolt 0000:07:00.0: 0:3:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.607539] thunderbolt 0000:07:00.0: 0:3:    Counter enabled: 1 Counter index: 0
[    1.607542] thunderbolt 0000:07:00.0: 0:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.607545] thunderbolt 0000:07:00.0: 0:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.607547] thunderbolt 0000:07:00.0: path discovery complete
[    1.607661] thunderbolt 0000:07:00.0: 0:7 <-> 3:a (PCI): discovered
[    1.608429] thunderbolt 0000:07:00.0: discovering Video path starting from 0:12
[    1.608557] thunderbolt 0000:07:00.0: 0:c:  In HopID: 9 => Out port: 4 Out HopID: 9
[    1.608560] thunderbolt 0000:07:00.0: 0:c:   Weight: 1 Priority: 2 Credits: 2 Drop: 0
[    1.608563] thunderbolt 0000:07:00.0: 0:c:    Counter enabled: 1 Counter index: 0
[    1.608566] thunderbolt 0000:07:00.0: 0:c:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.608568] thunderbolt 0000:07:00.0: 0:c:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.608685] thunderbolt 0000:07:00.0: 3:2:  In HopID: 9 => Out port: 11 Out HopID: 9
[    1.608688] thunderbolt 0000:07:00.0: 3:2:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.608691] thunderbolt 0000:07:00.0: 3:2:    Counter enabled: 1 Counter index: 0
[    1.608693] thunderbolt 0000:07:00.0: 3:2:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.608696] thunderbolt 0000:07:00.0: 3:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.608699] thunderbolt 0000:07:00.0: path discovery complete
[    1.608942] thunderbolt 0000:07:00.0: discovering AUX TX path starting from 0:12
[    1.609069] thunderbolt 0000:07:00.0: 0:c:  In HopID: 8 => Out port: 4 Out HopID: 8
[    1.609072] thunderbolt 0000:07:00.0: 0:c:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.609075] thunderbolt 0000:07:00.0: 0:c:    Counter enabled: 1 Counter index: 1
[    1.609077] thunderbolt 0000:07:00.0: 0:c:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.609080] thunderbolt 0000:07:00.0: 0:c:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.609197] thunderbolt 0000:07:00.0: 3:2:  In HopID: 8 => Out port: 11 Out HopID: 8
[    1.609200] thunderbolt 0000:07:00.0: 3:2:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.609203] thunderbolt 0000:07:00.0: 3:2:    Counter enabled: 1 Counter index: 1
[    1.609205] thunderbolt 0000:07:00.0: 3:2:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.609208] thunderbolt 0000:07:00.0: 3:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.609211] thunderbolt 0000:07:00.0: path discovery complete
[    1.609709] thunderbolt 0000:07:00.0: discovering AUX RX path starting from 3:11
[    1.609837] thunderbolt 0000:07:00.0: 3:b:  In HopID: 8 => Out port: 2 Out HopID: 8
[    1.609840] thunderbolt 0000:07:00.0: 3:b:   Weight: 1 Priority: 2 Credits: 7 Drop: 0
[    1.609843] thunderbolt 0000:07:00.0: 3:b:    Counter enabled: 1 Counter index: 0
[    1.609845] thunderbolt 0000:07:00.0: 3:b:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.609848] thunderbolt 0000:07:00.0: 3:b:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.609965] thunderbolt 0000:07:00.0: 0:4:  In HopID: 8 => Out port: 12 Out HopID: 8
[    1.609968] thunderbolt 0000:07:00.0: 0:4:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.609971] thunderbolt 0000:07:00.0: 0:4:    Counter enabled: 1 Counter index: 0
[    1.609973] thunderbolt 0000:07:00.0: 0:4:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.609976] thunderbolt 0000:07:00.0: 0:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.609979] thunderbolt 0000:07:00.0: path discovery complete
[    1.610220] thunderbolt 0000:07:00.0: 0:c <-> 3:b (DP): discovered
[    1.610733] thunderbolt 0000:07:00.0: discovering PCIe Up path starting from 3:7
[    1.610861] thunderbolt 0000:07:00.0: 3:7:  In HopID: 8 => Out port: 3 Out HopID: 8
[    1.610864] thunderbolt 0000:07:00.0: 3:7:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.610867] thunderbolt 0000:07:00.0: 3:7:    Counter enabled: 1 Counter index: 0
[    1.610869] thunderbolt 0000:07:00.0: 3:7:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.610872] thunderbolt 0000:07:00.0: 3:7:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.610989] thunderbolt 0000:07:00.0: 303:3:  In HopID: 8 => Out port: 10 Out HopID: 8
[    1.610992] thunderbolt 0000:07:00.0: 303:3:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.610995] thunderbolt 0000:07:00.0: 303:3:    Counter enabled: 1 Counter index: 0
[    1.610997] thunderbolt 0000:07:00.0: 303:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.611000] thunderbolt 0000:07:00.0: 303:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.611003] thunderbolt 0000:07:00.0: path discovery complete
[    1.611500] thunderbolt 0000:07:00.0: discovering PCIe Down path starting from 303:10
[    1.611629] thunderbolt 0000:07:00.0: 303:a:  In HopID: 8 => Out port: 3 Out HopID: 8
[    1.611632] thunderbolt 0000:07:00.0: 303:a:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.611635] thunderbolt 0000:07:00.0: 303:a:    Counter enabled: 1 Counter index: 0
[    1.611637] thunderbolt 0000:07:00.0: 303:a:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.611640] thunderbolt 0000:07:00.0: 303:a:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.611757] thunderbolt 0000:07:00.0: 3:3:  In HopID: 8 => Out port: 7 Out HopID: 8
[    1.611760] thunderbolt 0000:07:00.0: 3:3:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.611763] thunderbolt 0000:07:00.0: 3:3:    Counter enabled: 1 Counter index: 0
[    1.611765] thunderbolt 0000:07:00.0: 3:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.611768] thunderbolt 0000:07:00.0: 3:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.611771] thunderbolt 0000:07:00.0: path discovery complete
[    1.611884] thunderbolt 0000:07:00.0: 3:7 <-> 303:a (PCI): discovered
[    1.612271] thunderbolt 0000:07:00.0: 0:c: DP IN resource available
[    1.612273] thunderbolt 0000:07:00.0: 0:d: DP IN resource available
[    1.612400] thunderbolt 0000:07:00.0: 303:b: DP OUT resource available
[    1.612405] thunderbolt 0000:07:00.0: looking for DP IN <-> DP OUT pairs:
[    1.612445] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer
[    1.612449] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[    1.612451] RAPL PMU: hw unit of domain package 2^-16 Joules
[    1.612452] RAPL PMU: hw unit of domain pp1-gpu 2^-16 Joules
[    1.612522] thunderbolt 0000:07:00.0: 0:c: in use
[    1.612652] thunderbolt 0000:07:00.0: 0:d: DP IN available
[    1.612780] thunderbolt 0000:07:00.0: 303:b: DP OUT available
[    1.612782] thunderbolt 0000:07:00.0: 0: allocated DP resource for port 13
[    1.612784] thunderbolt 0000:07:00.0: 303:b: calculating available bandwidth
[    1.612848] Initialise system trusted keyrings
[    1.612869] workingset: timestamp_bits=62 max_order=23 bucket_order=0
[    1.612905] thunderbolt 0000:07:00.0: 0:3: link total bandwidth 9000 Mb/s
[    1.612907] thunderbolt 0000:07:00.0: 3:1: link total bandwidth 9000 Mb/s
[    1.613032] thunderbolt 0000:07:00.0: 3:3: link total bandwidth 9000 Mb/s
[    1.613033] thunderbolt 0000:07:00.0: 303:3: link total bandwidth 9000 Mb/s
[    1.613035] thunderbolt 0000:07:00.0: available bandwidth for new DP tunnel 9000/9000 Mb/s
[    1.613039] thunderbolt 0000:07:00.0: 0:d <-> 303:b (DP): activating
[    1.613041] thunderbolt 0000:07:00.0: activating Video path from 0:13 to 303:11
[    1.613043] thunderbolt 0000:07:00.0: 303:4: adding 12 NFC credits to 0
[    1.613160] thunderbolt 0000:07:00.0: 3:2: adding 12 NFC credits to 14
[    1.613288] thunderbolt 0000:07:00.0: 0:d: adding 5 NFC credits to 0
[    1.613544] thunderbolt 0000:07:00.0: 303:4: Writing hop 2
[    1.613546] thunderbolt 0000:07:00.0: 303:4:  In HopID: 8 => Out port: 11 Out HopID: 9
[    1.613547] thunderbolt 0000:07:00.0: 303:4:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.613549] thunderbolt 0000:07:00.0: 303:4:    Counter enabled: 0 Counter index: 2047
[    1.613550] thunderbolt 0000:07:00.0: 303:4:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.613552] thunderbolt 0000:07:00.0: 303:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.613581] Key type asymmetric registered
[    1.613584] Asymmetric key parser 'x509' registered
[    1.613595] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
[    1.613801] thunderbolt 0000:07:00.0: 3:2: Writing hop 1
[    1.613802] thunderbolt 0000:07:00.0: 3:2:  In HopID: 10 => Out port: 4 Out HopID: 8
[    1.613804] thunderbolt 0000:07:00.0: 3:2:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.613805] thunderbolt 0000:07:00.0: 3:2:    Counter enabled: 0 Counter index: 2047
[    1.613806] thunderbolt 0000:07:00.0: 3:2:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.613808] thunderbolt 0000:07:00.0: 3:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.614056] thunderbolt 0000:07:00.0: 0:d: Writing hop 0
[    1.614058] thunderbolt 0000:07:00.0: 0:d:  In HopID: 9 => Out port: 4 Out HopID: 10
[    1.614059] thunderbolt 0000:07:00.0: 0:d:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.614060] thunderbolt 0000:07:00.0: 0:d:    Counter enabled: 0 Counter index: 2047
[    1.614062] thunderbolt 0000:07:00.0: 0:d:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.614063] thunderbolt 0000:07:00.0: 0:d:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.614184] thunderbolt 0000:07:00.0: path activation complete
[    1.614185] thunderbolt 0000:07:00.0: activating AUX TX path from 0:13 to 303:11
[    1.614312] thunderbolt 0000:07:00.0: 303:4: Writing hop 2
[    1.614314] thunderbolt 0000:07:00.0: 303:4:  In HopID: 9 => Out port: 11 Out HopID: 8
[    1.614315] thunderbolt 0000:07:00.0: 303:4:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.614316] thunderbolt 0000:07:00.0: 303:4:    Counter enabled: 0 Counter index: 2047
[    1.614318] thunderbolt 0000:07:00.0: 303:4:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.614319] thunderbolt 0000:07:00.0: 303:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.614442] pcieport 0000:06:03.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.614569] thunderbolt 0000:07:00.0: 3:2: Writing hop 1
[    1.614570] thunderbolt 0000:07:00.0: 3:2:  In HopID: 11 => Out port: 4 Out HopID: 9
[    1.614572] thunderbolt 0000:07:00.0: 3:2:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.614573] thunderbolt 0000:07:00.0: 3:2:    Counter enabled: 0 Counter index: 2047
[    1.614574] thunderbolt 0000:07:00.0: 3:2:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.614576] thunderbolt 0000:07:00.0: 3:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.614633] pcieport 0000:06:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.614824] thunderbolt 0000:07:00.0: 0:d: Writing hop 0
[    1.614826] thunderbolt 0000:07:00.0: 0:d:  In HopID: 8 => Out port: 4 Out HopID: 11
[    1.614827] thunderbolt 0000:07:00.0: 0:d:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.614829] thunderbolt 0000:07:00.0: 0:d:    Counter enabled: 0 Counter index: 2047
[    1.614830] thunderbolt 0000:07:00.0: 0:d:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.614831] thunderbolt 0000:07:00.0: 0:d:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.614835] pcieport 0000:06:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.614953] thunderbolt 0000:07:00.0: path activation complete
[    1.614954] thunderbolt 0000:07:00.0: activating AUX RX path from 303:11 to 0:13
[    1.615039] pcieport 0000:06:06.0: pciehp: Slot #6 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.615082] thunderbolt 0000:07:00.0: 0:4: Writing hop 2
[    1.615085] thunderbolt 0000:07:00.0: 0:4:  In HopID: 9 => Out port: 13 Out HopID: 8
[    1.615087] thunderbolt 0000:07:00.0: 0:4:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.615089] thunderbolt 0000:07:00.0: 0:4:    Counter enabled: 0 Counter index: 2047
[    1.615091] thunderbolt 0000:07:00.0: 0:4:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.615092] thunderbolt 0000:07:00.0: 0:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.615336] thunderbolt 0000:07:00.0: 3:4: Writing hop 1
[    1.615338] thunderbolt 0000:07:00.0: 3:4:  In HopID: 8 => Out port: 2 Out HopID: 9
[    1.615339] thunderbolt 0000:07:00.0: 3:4:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.615340] thunderbolt 0000:07:00.0: 3:4:    Counter enabled: 0 Counter index: 2047
[    1.615342] thunderbolt 0000:07:00.0: 3:4:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.615343] thunderbolt 0000:07:00.0: 3:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.615593] thunderbolt 0000:07:00.0: 303:b: Writing hop 0
[    1.615594] thunderbolt 0000:07:00.0: 303:b:  In HopID: 8 => Out port: 4 Out HopID: 8
[    1.615595] thunderbolt 0000:07:00.0: 303:b:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.615597] thunderbolt 0000:07:00.0: 303:b:    Counter enabled: 0 Counter index: 2047
[    1.615598] thunderbolt 0000:07:00.0: 303:b:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.615599] thunderbolt 0000:07:00.0: 303:b:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.615720] thunderbolt 0000:07:00.0: path activation complete
[    1.616318] pcieport 0000:19:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.616528] pcieport 0000:19:05.0: enabling device (0000 -> 0001)
[    1.616625] pcieport 0000:19:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.618511] pcieport 0000:20:04.0: enabling device (0000 -> 0003)
[    1.618632] pcieport 0000:20:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.618926] pcieport 0000:20:05.0: enabling device (0000 -> 0001)
[    1.619046] pcieport 0000:20:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.627945] brd: module loaded
[    1.628218] Intel(R) 2.5G Ethernet Linux Driver
[    1.628222] Copyright(c) 2018 Intel Corporation.
[    1.628272] i8042: PNP: No PS/2 controller found.
[    1.628312] mousedev: PS/2 mouse device common for all mice
[    1.628374] intel_pstate: Intel P-state driver initializing
[    1.628491] efifb: probing for efifb
[    1.628506] efifb: framebuffer at 0x90010000, using 14400k, total 14400k
[    1.628509] efifb: mode is 2560x1440x32, linelength=10240, pages=1
[    1.628511] efifb: scrolling: redraw
[    1.628512] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    1.638027] Console: switching to colour frame buffer device 320x90
[    1.647094] fb0: EFI VGA frame buffer device
[    1.647177] Key type dns_resolver registered
[    1.647232] microcode: sig=0x206a7, pf=0x2, revision=0x2f
[    1.647377] microcode: Microcode Update Driver: v2.2.
[    1.647379] IPI shorthand broadcast: enabled
[    1.647427] sched_clock: Marking stable (1646962658, 410898)->(1659159648, -11786092)
[    1.647501] registered taskstats version 1
[    1.647518] Loading compiled-in X.509 certificates
[    1.648242] Freeing unused kernel image (initmem) memory: 956K
[    1.733654] Write protecting the kernel read-only data: 12288k
[    1.734303] Freeing unused kernel image (text/rodata gap) memory: 2044K
[    1.734364] Freeing unused kernel image (rodata/data gap) memory: 188K
[    1.734394] Run /init as init process
[    1.734409]   with arguments:
[    1.734410]     /init
[    1.734411]   with environment:
[    1.734412]     HOME=/
[    1.734412]     TERM=linux
[    1.734413]     netconsole=6666@192.168.2.87/eth0,6666@192.168.2.208/dc:a6:32:61:33:da
[    1.777890] udevd[875]: starting version 3.2.9
[    1.778597] udevd[876]: starting eudev-3.2.9
[    1.793563] ACPI: bus type USB registered
[    1.793611] usbcore: registered new interface driver usbfs
[    1.793644] usbcore: registered new interface driver hub
[    1.793677] usbcore: registered new device driver usb
[    1.795344] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.795382] ACPI: bus type drm_connector registered
[    1.795607] ehci-pci: EHCI PCI platform driver
[    1.795799] ehci-pci 0000:00:1a.7: EHCI Host Controller
[    1.795833] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 1
[    1.795877] ehci-pci 0000:00:1a.7: debug port 2
[    1.796028] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.796396] uhci_hcd: USB Universal Host Controller Interface driver
[    1.798871] ahci 0000:00:1f.2: version 3.0
[    1.799273] cryptd: max_cpu_qlen set to 1000
[    1.799831] ehci-pci 0000:00:1a.7: irq 23, io mem 0xa8906c00
[    1.800300] AVX version of gcm_enc/dec engaged.
[    1.800355] AES CTR mode by8 optimization enabled
[    1.808571] radeon: unknown parameter 'pm' ignored
[    1.808676] [drm] radeon kernel modesetting enabled.
[    1.808739] checking generic (90010000 e10000) vs hw (90000000 10000000)
[    1.808742] fb0: switching to radeon from EFI VGA
[    1.808835] Console: switching to colour dummy device 80x25
[    1.808917] radeon 0000:01:00.0: vgaarb: deactivate vga console
[    1.809084] [drm] initializing kernel modesetting (BARTS 0x1002:0x6720 0x106B:0x0B00 0x00).
[    1.809089] radeon 0000:01:00.0: vram limit (0) must be a power of 2
[    1.809092] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x7 impl SATA mode
[    1.809101] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst
[    1.823360] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[    1.823614] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
[    1.823620] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.823623] usb usb1: Product: EHCI Host Controller
[    1.823626] usb usb1: Manufacturer: Linux 5.17.0+ ehci_hcd
[    1.823628] usb usb1: SerialNumber: 0000:00:1a.7
[    1.823787] hub 1-0:1.0: USB hub found
[    1.823797] hub 1-0:1.0: 6 ports detected
[    1.824050] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[    1.824059] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 2
[    1.824105] uhci_hcd 0000:00:1a.0: detected 2 ports
[    1.824317] uhci_hcd 0000:00:1a.0: irq 21, io port 0x00003140
[    1.824455] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17
[    1.824465] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.824502] usb usb2: Product: UHCI Host Controller
[    1.824505] usb usb2: Manufacturer: Linux 5.17.0+ uhci_hcd
[    1.824508] usb usb2: SerialNumber: 0000:00:1a.0
[    1.824629] hub 2-0:1.0: USB hub found
[    1.824634] hub 2-0:1.0: 2 ports detected
[    1.824775] ehci-pci 0000:00:1d.7: EHCI Host Controller
[    1.824782] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 3
[    1.824912] ehci-pci 0000:00:1d.7: debug port 2
[    1.828979] ehci-pci 0000:00:1d.7: irq 22, io mem 0xa8906800
[    1.833550] tg3 0000:02:00.0 eth0: Tigon3 [partno(BCM957765) rev 57785100] (PCI Express) MAC address 3c:07:54:14:b2:08
[    1.833557] tg3 0000:02:00.0 eth0: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    1.833561] tg3 0000:02:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    1.833564] tg3 0000:02:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[    1.853356] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    1.853402] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
[    1.853406] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.853409] usb usb3: Product: EHCI Host Controller
[    1.853431] usb usb3: Manufacturer: Linux 5.17.0+ ehci_hcd
[    1.853433] usb usb3: SerialNumber: 0000:00:1d.7
[    1.853511] hub 3-0:1.0: USB hub found
[    1.853516] hub 3-0:1.0: 8 ports detected
[    1.853769] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    1.853777] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
[    1.853810] uhci_hcd 0000:00:1d.0: detected 2 ports
[    1.853953] uhci_hcd 0000:00:1d.0: irq 19, io port 0x000030e0
[    1.854087] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17
[    1.854093] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.854097] usb usb4: Product: UHCI Host Controller
[    1.854099] usb usb4: Manufacturer: Linux 5.17.0+ uhci_hcd
[    1.854101] usb usb4: SerialNumber: 0000:00:1d.0
[    1.854277] hub 4-0:1.0: USB hub found
[    1.854285] hub 4-0:1.0: 2 ports detected
[    1.854426] ehci-pci 0000:1c:00.2: EHCI Host Controller
[    1.854434] ehci-pci 0000:1c:00.2: new USB bus registered, assigned bus number 5
[    1.854762] ehci-pci 0000:1c:00.2: irq 17, io mem 0xb0b02000
[    1.863613] firewire_ohci 0000:04:00.0: added OHCI v1.10 device as card 0, 8 IR + 8 IT contexts, quirks 0x0, physUB
[    1.864671] scsi host0: ahci
[    1.864946] scsi host1: ahci
[    1.865144] scsi host2: ahci
[    1.865270] scsi host3: ahci
[    1.865406] scsi host4: ahci
[    1.865604] scsi host5: ahci
[    1.865685] ata1: SATA max UDMA/133 abar m2048@0xa8906000 port 0xa8906100 irq 52
[    1.865734] ata2: SATA max UDMA/133 abar m2048@0xa8906000 port 0xa8906180 irq 52
[    1.865764] ata3: SATA max UDMA/133 abar m2048@0xa8906000 port 0xa8906200 irq 52
[    1.865786] ata4: DUMMY
[    1.865788] ata5: DUMMY
[    1.865790] ata6: DUMMY
[    1.893357] ehci-pci 0000:1c:00.2: USB 2.0 started, EHCI 1.00
[    1.893388] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
[    1.893392] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.893395] usb usb5: Product: EHCI Host Controller
[    1.893397] usb usb5: Manufacturer: Linux 5.17.0+ ehci_hcd
[    1.893399] usb usb5: SerialNumber: 0000:1c:00.2
[    1.893467] hub 5-0:1.0: USB hub found
[    1.893472] hub 5-0:1.0: 4 ports detected
[    1.894201] ehci-pci 0000:23:00.2: EHCI Host Controller
[    1.894206] ehci-pci 0000:23:00.2: new USB bus registered, assigned bus number 6
[    1.894562] ehci-pci 0000:23:00.2: irq 17, io mem 0xb0f02000
[    1.916478] tg3 0000:1d:00.0 eth1: Tigon3 [partno(BCM957761) rev 57785100] (PCI Express) MAC address c8:2a:14:4f:80:3e
[    1.916487] tg3 0000:1d:00.0 eth1: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    1.916494] tg3 0000:1d:00.0 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    1.916500] tg3 0000:1d:00.0 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[    1.923362] ehci-pci 0000:23:00.2: USB 2.0 started, EHCI 1.00
[    1.923387] usb usb6: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
[    1.923391] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.923394] usb usb6: Product: EHCI Host Controller
[    1.923396] usb usb6: Manufacturer: Linux 5.17.0+ ehci_hcd
[    1.923398] usb usb6: SerialNumber: 0000:23:00.2
[    1.923538] hub 6-0:1.0: USB hub found
[    1.923542] hub 6-0:1.0: 4 ports detected
[    1.943630] firewire_ohci 0000:1e:00.0: added OHCI v1.10 device as card 1, 8 IR + 8 IT contexts, quirks 0x0, physUB
[    2.002803] tg3 0000:24:00.0 eth2: Tigon3 [partno(BCM957761) rev 57785100] (PCI Express) MAC address 38:c9:86:48:0c:c8
[    2.002878] tg3 0000:24:00.0 eth2: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    2.002941] tg3 0000:24:00.0 eth2: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    2.002994] tg3 0000:24:00.0 eth2: dma_rwctrl[00000001] dma_mask[64-bit]
[    2.023608] firewire_ohci 0000:25:00.0: added OHCI v1.10 device as card 2, 8 IR + 8 IT contexts, quirks 0x0, physUB
[    2.113336] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    2.138714] ATOM BIOS: Apple
[    2.138869] radeon 0000:01:00.0: VRAM: 1024M 0x0000000000000000 - 0x000000003FFFFFFF (1024M used)
[    2.138873] radeon 0000:01:00.0: GTT: 1024M 0x0000000040000000 - 0x000000007FFFFFFF
[    2.138879] [drm] Detected VRAM RAM=1024M, BAR=256M
[    2.138881] [drm] RAM width 256bits DDR
[    2.138899] [drm] radeon: 1024M of VRAM memory ready
[    2.138901] [drm] radeon: 1024M of GTT memory ready.
[    2.138905] [drm] Loading BARTS Microcode
[    2.138957] [drm] External GPIO thermal controller with fan control
[    2.138971] == power state 0 ==
[    2.138973] 	ui class: none
[    2.138975] 	internal class: boot
[    2.138977] 	caps:
[    2.138978] 	uvd    vclk: 0 dclk: 0
[    2.138980] 		power level 0    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    2.138982] 		power level 1    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    2.138984] 		power level 2    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    2.138986] 	status: c r b
[    2.138988] == power state 1 ==
[    2.138989] 	ui class: performance
[    2.138991] 	internal class: none
[    2.138993] 	caps:
[    2.138994] 	uvd    vclk: 0 dclk: 0
[    2.138995] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    2.138997] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    2.138999] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    2.139001] 	status:
[    2.139002] == power state 2 ==
[    2.139003] 	ui class: none
[    2.139005] 	internal class: uvd
[    2.139006] 	caps: video
[    2.139008] 	uvd    vclk: 54000 dclk: 40000
[    2.139009] 		power level 0    sclk: 29800 mclk: 90000 vddc: 950 vddci: 1100
[    2.139011] 		power level 1    sclk: 29800 mclk: 90000 vddc: 950 vddci: 1100
[    2.139013] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    2.139015] 	status:
[    2.139016] == power state 3 ==
[    2.139018] 	ui class: none
[    2.139019] 	internal class: uvd_mvc
[    2.139020] 	caps: video
[    2.139022] 	uvd    vclk: 70000 dclk: 56000
[    2.139023] 		power level 0    sclk: 50200 mclk: 90000 vddc: 1050 vddci: 1100
[    2.139025] 		power level 1    sclk: 50200 mclk: 90000 vddc: 1050 vddci: 1100
[    2.139027] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    2.139029] 	status:
[    2.139030] == power state 4 ==
[    2.139031] 	ui class: battery
[    2.139033] 	internal class: none
[    2.139034] 	caps:
[    2.139035] 	uvd    vclk: 0 dclk: 0
[    2.139037] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    2.139039] 		power level 1    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    2.139041] 		power level 2    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    2.139042] 	status:
[    2.143934] [drm] radeon: dpm initialized
[    2.144001] [drm] GART: num cpu pages 262144, num gpu pages 262144
[    2.144411] [drm] enabling PCIE gen 2 link speeds, disable with radeon.pcie_gen2=0
[    2.152182] [drm] PCIE GART of 1024M enabled (table at 0x0000000000162000).
[    2.152286] radeon 0000:01:00.0: WB enabled
[    2.152289] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000040000c00
[    2.152292] radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000040000c0c
[    2.153039] radeon 0000:01:00.0: fence driver on ring 5 use gpu addr 0x0000000000072118
[    2.153173] radeon 0000:01:00.0: radeon: MSI limited to 32-bit
[    2.153206] radeon 0000:01:00.0: radeon: using MSI.
[    2.153234] [drm] radeon: irq initialized.
[    2.153321] usb 3-1: new high-speed USB device number 2 using ehci-pci
[    2.169583] [drm] ring test on 0 succeeded in 3 usecs
[    2.169596] [drm] ring test on 3 succeeded in 7 usecs
[    2.193327] usb 5-1: new high-speed USB device number 2 using ehci-pci
[    2.194691] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    2.194711] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    2.195057] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    2.196283] ata2.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    2.196345] ata2.00: supports DRM functions and may not be fully accessible
[    2.196349] ata2.00: ATA-9: Samsung SSD 850 EVO 500GB, EMT02B6Q, max UDMA/133
[    2.196532] ata3.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    2.196538] ata3.00: ATAPI: OPTIARC DVD RW AD-5690H, 4AH5, max UDMA/100
[    2.196633] ata1.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    2.196695] ata1.00: supports DRM functions and may not be fully accessible
[    2.196699] ata1.00: ATA-9: Samsung SSD 850 PRO 256GB, EXM03B6Q, max UDMA/133
[    2.196963] ata2.00: 976773168 sectors, multi 1: LBA48 NCQ (depth 32), AA
[    2.197305] ata1.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 32), AA
[    2.198580] ata3.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    2.198590] ata3.00: configured for UDMA/100
[    2.198940] ata2.00: Features: Trust Dev-Sleep NCQ-sndrcv
[    2.199242] ata2.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    2.199297] ata2.00: supports DRM functions and may not be fully accessible
[    2.199324] ata1.00: Features: Trust Dev-Sleep NCQ-sndrcv
[    2.199624] ata1.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    2.199696] ata1.00: supports DRM functions and may not be fully accessible
[    2.202064] ata2.00: configured for UDMA/133
[    2.202463] ata1.00: configured for UDMA/133
[    2.202591] scsi 0:0:0:0: Direct-Access     ATA      Samsung SSD 850  3B6Q PQ: 0 ANSI: 5
[    2.202860] scsi 1:0:0:0: Direct-Access     ATA      Samsung SSD 850  2B6Q PQ: 0 ANSI: 5
[    2.204342] scsi 2:0:0:0: CD-ROM            OPTIARC  DVD RW AD-5690H  4AH5 PQ: 0 ANSI: 5
[    2.213326] usb 6-1: new high-speed USB device number 2 using ehci-pci
[    2.323637] usb 1-1: New USB device found, idVendor=0424, idProduct=2514, bcdDevice= 0.03
[    2.323651] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.323922] hub 1-1:1.0: USB hub found
[    2.324015] hub 1-1:1.0: 3 ports detected
[    2.346749] [drm] ring test on 5 succeeded in 2 usecs
[    2.346769] [drm] UVD initialized successfully.
[    2.346884] [drm] ib test on ring 0 succeeded in 0 usecs
[    2.346997] [drm] ib test on ring 3 succeeded in 0 usecs
[    2.353633] usb 3-1: New USB device found, idVendor=0424, idProduct=2514, bcdDevice= 0.03
[    2.353639] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.353913] hub 3-1:1.0: USB hub found
[    2.354011] hub 3-1:1.0: 4 ports detected
[    2.394038] usb 5-1: New USB device found, idVendor=05ac, idProduct=9127, bcdDevice= 1.00
[    2.394044] usb 5-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.394438] hub 5-1:1.0: USB hub found
[    2.394645] hub 5-1:1.0: 7 ports detected
[    2.424059] usb 6-1: New USB device found, idVendor=05ac, idProduct=9127, bcdDevice= 1.00
[    2.424065] usb 6-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.424465] hub 6-1:1.0: USB hub found
[    2.424683] hub 6-1:1.0: 7 ports detected
[    2.453419] firewire_core 0000:1e:00.0: created device fw0: GUID 000a27020040c4ba, S800
[    2.453436] firewire_core 0000:1e:00.0: phy config: new root=ffc0, gap_count=63
[    2.473321] usb 1-2: new high-speed USB device number 3 using ehci-pci
[    2.498457] firewire_core 0000:04:00.0: created device fw1: GUID a4b197fffe3f2da2, S800
[    2.498465] firewire_core 0000:04:00.0: phy config: new root=ffc0, gap_count=63
[    2.514927] ohci-pci: OHCI PCI platform driver
[    2.515021] ohci-pci 0000:1c:00.0: OHCI PCI host controller
[    2.515027] ohci-pci 0000:1c:00.0: new USB bus registered, assigned bus number 7
[    2.515053] ohci-pci 0000:1c:00.0: irq 19, io mem 0xb0b00000
[    2.517519] sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[    2.517529] sd 1:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[    2.517538] sd 0:0:0:0: [sda] Write Protect is off
[    2.517545] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.517545] sd 1:0:0:0: [sdb] Write Protect is off
[    2.517548] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    2.517566] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.517567] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.521397]  sda: sda1 sda2 sda3 sda4 sda5 sda6
[    2.521437] sd 1:0:0:0: [sdb] supports TCG Opal
[    2.521441] sd 1:0:0:0: [sdb] Attached SCSI disk
[    2.522243] sd 0:0:0:0: [sda] supports TCG Opal
[    2.522247] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.522713] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    2.522740] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    2.522764] sr 2:0:0:0: Attached scsi generic sg2 type 5
[    2.533434] firewire_core 0000:25:00.0: created device fw2: GUID 000a2702006cfdfb, S800
[    2.533447] firewire_core 0000:25:00.0: phy config: new root=ffc0, gap_count=63
[    2.587511] usb usb7: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17
[    2.587520] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.587523] usb usb7: Product: OHCI PCI host controller
[    2.587525] usb usb7: Manufacturer: Linux 5.17.0+ ohci_hcd
[    2.587526] usb usb7: SerialNumber: 0000:1c:00.0
[    2.587618] hub 7-0:1.0: USB hub found
[    2.587632] hub 7-0:1.0: 2 ports detected
[    2.587844] ohci-pci 0000:1c:00.1: OHCI PCI host controller
[    2.587850] ohci-pci 0000:1c:00.1: new USB bus registered, assigned bus number 8
[    2.587875] ohci-pci 0000:1c:00.1: irq 16, io mem 0xb0b01000
[    2.633350] tsc: Refined TSC clocksource calibration: 3400.022 MHz
[    2.633371] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x310263dce6e, max_idle_ns: 440795334146 ns
[    2.633475] clocksource: Switched to clocksource tsc
[    2.635607] sr 2:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda caddy
[    2.635623] cdrom: Uniform CD-ROM driver Revision: 3.20
[    2.657454] usb usb8: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17
[    2.657460] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.657463] usb usb8: Product: OHCI PCI host controller
[    2.657465] usb usb8: Manufacturer: Linux 5.17.0+ ohci_hcd
[    2.657467] usb usb8: SerialNumber: 0000:1c:00.1
[    2.657553] hub 8-0:1.0: USB hub found
[    2.657566] hub 8-0:1.0: 2 ports detected
[    2.657748] ohci-pci 0000:23:00.0: OHCI PCI host controller
[    2.657753] ohci-pci 0000:23:00.0: new USB bus registered, assigned bus number 9
[    2.657787] ohci-pci 0000:23:00.0: irq 19, io mem 0xb0f00000
[    2.673359] usb 3-1.1: new high-speed USB device number 3 using ehci-pci
[    2.688860] usb 1-2: New USB device found, idVendor=05ac, idProduct=850b, bcdDevice= 7.55
[    2.688866] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.688869] usb 1-2: Product: FaceTime HD Camera (Built-in)
[    2.688871] usb 1-2: Manufacturer: Apple Inc.
[    2.688873] usb 1-2: SerialNumber: CCGB8K062WDDJRLX
[    2.713367] usb 5-1.4: new full-speed USB device number 3 using ehci-pci
[    2.727483] usb usb9: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17
[    2.727489] usb usb9: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.727492] usb usb9: Product: OHCI PCI host controller
[    2.727494] usb usb9: Manufacturer: Linux 5.17.0+ ohci_hcd
[    2.727496] usb usb9: SerialNumber: 0000:23:00.0
[    2.727568] hub 9-0:1.0: USB hub found
[    2.727583] hub 9-0:1.0: 2 ports detected
[    2.727763] ohci-pci 0000:23:00.1: OHCI PCI host controller
[    2.727768] ohci-pci 0000:23:00.1: new USB bus registered, assigned bus number 10
[    2.727801] ohci-pci 0000:23:00.1: irq 16, io mem 0xb0f01000
[    2.743361] usb 6-1.4: new full-speed USB device number 3 using ehci-pci
[    2.744469] sr 2:0:0:0: Attached scsi CD-ROM sr0
[    2.773355] usb 1-1.1: new full-speed USB device number 4 using ehci-pci
[    2.807485] usb usb10: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17
[    2.807491] usb usb10: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.807494] usb usb10: Product: OHCI PCI host controller
[    2.807496] usb usb10: Manufacturer: Linux 5.17.0+ ohci_hcd
[    2.807498] usb usb10: SerialNumber: 0000:23:00.1
[    2.807562] hub 10-0:1.0: USB hub found
[    2.807577] hub 10-0:1.0: 2 ports detected
[    2.848501] usb 3-1.1: New USB device found, idVendor=05ac, idProduct=8403, bcdDevice=98.33
[    2.848515] usb 3-1.1: New USB device strings: Mfr=3, Product=4, SerialNumber=2
[    2.848522] usb 3-1.1: Product: Card Reader
[    2.848527] usb 3-1.1: Manufacturer: Apple
[    2.848531] usb 3-1.1: SerialNumber: 000000009833
[    2.850453] usb-storage 3-1.1:1.0: USB Mass Storage device detected
[    2.850528] scsi host6: usb-storage 3-1.1:1.0
[    2.850571] usbcore: registered new interface driver usb-storage
[    2.850821] usbcore: registered new interface driver uas
[    2.883181] usb 5-1.4: New USB device found, idVendor=05ac, idProduct=1107, bcdDevice= 2.09
[    2.883195] usb 5-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.883201] usb 5-1.4: Product: Display Audio
[    2.883206] usb 5-1.4: Manufacturer: Apple Inc.
[    2.883210] usb 5-1.4: SerialNumber: 152303D9
[    2.884899] hid: raw HID events driver (C) Jiri Kosina
[    2.895739] usbcore: registered new interface driver usbhid
[    2.895744] usbhid: USB HID core driver
[    2.896612] input: Apple Inc. Display Audio as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:04.0/0000:18:00.0/0000:19:00.0/0000:1a:00.0/0000:1b:03.0/0000:1c:00.2/usb5/5-1/5-1.4/5-1.4:1.3/0003:05AC:1107.0001/input/input0
[    2.896689] hid-generic 0003:05AC:1107.0001: input,hidraw0: USB HID v1.11 Device [Apple Inc. Display Audio] on usb-0000:1c:00.2-1.4/input3
[    2.903801] usb 6-1.4: New USB device found, idVendor=05ac, idProduct=1107, bcdDevice= 2.09
[    2.903807] usb 6-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.903811] usb 6-1.4: Product: Display Audio
[    2.903813] usb 6-1.4: Manufacturer: Apple Inc.
[    2.903815] usb 6-1.4: SerialNumber: 1A0E0738
[    2.915035] input: Apple Inc. Display Audio as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:04.0/0000:18:00.0/0000:19:04.0/0000:1f:00.0/0000:20:00.0/0000:21:00.0/0000:22:03.0/0000:23:00.2/usb6/6-1/6-1.4/6-1.4:1.3/0003:05AC:1107.0002/input/input1
[    2.915059] hid-generic 0003:05AC:1107.0002: input,hidraw1: USB HID v1.11 Device [Apple Inc. Display Audio] on usb-0000:23:00.2-1.4/input3
[    2.925990] usb 1-1.1: New USB device found, idVendor=0a5c, idProduct=4500, bcdDevice= 1.00
[    2.926004] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.926011] usb 1-1.1: Product: BRCM2046 Hub
[    2.926015] usb 1-1.1: Manufacturer: Apple Inc.
[    2.926304] hub 1-1.1:1.0: USB hub found
[    2.926484] hub 1-1.1:1.0: 3 ports detected
[    2.943356] usb 3-1.2: new low-speed USB device number 4 using ehci-pci
[    2.983365] usb 5-1.5: new high-speed USB device number 4 using ehci-pci
[    3.003396] [drm] ib test on ring 5 succeeded
[    3.013348] usb 6-1.5: new high-speed USB device number 4 using ehci-pci
[    3.023357] usb 1-1.2: new high-speed USB device number 5 using ehci-pci
[    3.073355] [drm] radeon atom DIG backlight initialized
[    3.073366] [drm] Radeon Display Connectors
[    3.073370] [drm] Connector 0:
[    3.073373] [drm]   eDP-1
[    3.073376] [drm]   HPD3
[    3.073379] [drm]   DDC: 0x6450 0x6450 0x6454 0x6454 0x6458 0x6458 0x645c 0x645c
[    3.073386] [drm]   Encoders:
[    3.073388] [drm]     LCD1: INTERNAL_UNIPHY2
[    3.073392] [drm] Connector 1:
[    3.073395] [drm]   DP-1
[    3.073397] [drm]   HPD1
[    3.073400] [drm]   DDC: 0x6430 0x6430 0x6434 0x6434 0x6438 0x6438 0x643c 0x643c
[    3.073406] [drm]   Encoders:
[    3.073408] [drm]     DFP1: INTERNAL_UNIPHY1
[    3.073411] [drm] Connector 2:
[    3.073414] [drm]   DP-2
[    3.073416] [drm]   HPD2
[    3.073419] [drm]   DDC: 0x6440 0x6440 0x6444 0x6444 0x6448 0x6448 0x644c 0x644c
[    3.073425] [drm]   Encoders:
[    3.073427] [drm]     DFP2: INTERNAL_UNIPHY1
[    3.073430] [drm] Connector 3:
[    3.073433] [drm]   DP-3
[    3.073435] [drm]   HPD4
[    3.073438] [drm]   DDC: 0x6460 0x6460 0x6464 0x6464 0x6468 0x6468 0x646c 0x646c
[    3.073451] [drm]   Encoders:
[    3.073452] [drm]     DFP3: INTERNAL_UNIPHY2
[    3.073453] [drm] Connector 4:
[    3.073454] [drm]   DP-4
[    3.073455] [drm]   HPD5
[    3.073456] [drm]   DDC: 0x6470 0x6470 0x6474 0x6474 0x6478 0x6478 0x647c 0x647c
[    3.073459] [drm]   Encoders:
[    3.073460] [drm]     DFP4: INTERNAL_UNIPHY
[    3.073461] [drm] Connector 5:
[    3.073462] [drm]   VGA-1
[    3.073463] [drm]   DDC: 0x64d8 0x64d8 0x64dc 0x64dc 0x64e0 0x64e0 0x64e4 0x64e4
[    3.073466] [drm]   Encoders:
[    3.073467] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[    3.099248] usb 3-1.2: New USB device found, idVendor=05ac, idProduct=8242, bcdDevice= 0.16
[    3.099262] usb 3-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.099269] usb 3-1.2: Product: IR Receiver
[    3.099274] usb 3-1.2: Manufacturer: Apple Computer, Inc.
[    3.103814] switching from power state:
[    3.103818] 	ui class: none
[    3.103820] 	internal class: boot
[    3.103822] 	caps:
[    3.103824] 	uvd    vclk: 0 dclk: 0
[    3.103825] 		power level 0    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    3.103835] 		power level 1    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    3.103837] 		power level 2    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    3.103839] 	status: c b
[    3.103842] switching to power state:
[    3.103843] 	ui class: performance
[    3.103844] 	internal class: none
[    3.103846] 	caps:
[    3.103847] 	uvd    vclk: 0 dclk: 0
[    3.103849] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    3.103851] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    3.103853] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    3.103855] 	status: r
[    3.104580] input: Apple Computer, Inc. IR Receiver as /devices/pci0000:00/0000:00:1d.7/usb3/3-1/3-1.2/3-1.2:1.0/0003:05AC:8242.0003/input/input2
[    3.149857] usb 5-1.5: New USB device found, idVendor=05ac, idProduct=1112, bcdDevice=71.60
[    3.149863] usb 5-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.149866] usb 5-1.5: Product: FaceTime HD Camera (Display)
[    3.149868] usb 5-1.5: Manufacturer: Apple Inc.
[    3.149870] usb 5-1.5: SerialNumber: CCGB690CKUDJ9DFX
[    3.173517] appleir 0003:05AC:8242.0003: input,hiddev96,hidraw2: USB HID v1.11 Device [Apple Computer, Inc. IR Receiver] on usb-0000:00:1d.7-1.2/input0
[    3.179248] usb 6-1.5: New USB device found, idVendor=05ac, idProduct=1112, bcdDevice=71.60
[    3.179255] usb 6-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.179258] usb 6-1.5: Product: FaceTime HD Camera (Display)
[    3.179260] usb 6-1.5: Manufacturer: Apple Inc.
[    3.179262] usb 6-1.5: SerialNumber: CC2G3101FFDJ9FLP
[    3.182251] usb 1-1.2: New USB device found, idVendor=05ac, idProduct=1006, bcdDevice=96.15
[    3.182258] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.182261] usb 1-1.2: Product: Keyboard Hub
[    3.182263] usb 1-1.2: Manufacturer: Apple, Inc.
[    3.182265] usb 1-1.2: SerialNumber: 000000000000
[    3.182479] hub 1-1.2:1.0: USB hub found
[    3.182605] hub 1-1.2:1.0: 3 ports detected
[    3.203329] usb 3-1.4: new low-speed USB device number 5 using ehci-pci
[    3.243328] usb 5-1.7: new full-speed USB device number 5 using ehci-pci
[    3.273328] usb 1-1.1.1: new full-speed USB device number 6 using ehci-pci
[    3.273328] usb 6-1.7: new full-speed USB device number 5 using ehci-pci
[    3.358982] usb 3-1.4: New USB device found, idVendor=047d, idProduct=1020, bcdDevice= 1.06
[    3.358989] usb 3-1.4: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    3.358992] usb 3-1.4: Product: Kensington Expert Mouse
[    3.361995] input: Kensington Expert Mouse as /devices/pci0000:00/0000:00:1d.7/usb3/3-1/3-1.4/3-1.4:1.0/0003:047D:1020.0004/input/input3
[    3.362140] hid-generic 0003:047D:1020.0004: input,hidraw3: USB HID v1.11 Mouse [Kensington Expert Mouse] on usb-0000:00:1d.7-1.4/input0
[    3.395753] usb 5-1.7: New USB device found, idVendor=05ac, idProduct=9227, bcdDevice= 1.37
[    3.395759] usb 5-1.7: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.395762] usb 5-1.7: Product: Apple Thunderbolt Display
[    3.395764] usb 5-1.7: Manufacturer: Apple Inc.
[    3.395766] usb 5-1.7: SerialNumber: 152303D9
[    3.397837] hid-generic 0003:05AC:9227.0005: hiddev97,hidraw4: USB HID v1.11 Device [Apple Inc. Apple Thunderbolt Display] on usb-0000:1c:00.2-1.7/input0
[    3.425669] usb 6-1.7: New USB device found, idVendor=05ac, idProduct=9227, bcdDevice= 1.39
[    3.425675] usb 6-1.7: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.425678] usb 6-1.7: Product: Apple Thunderbolt Display
[    3.425680] usb 6-1.7: Manufacturer: Apple Inc.
[    3.425682] usb 6-1.7: SerialNumber: 1A0E0738
[    3.427761] hid-generic 0003:05AC:9227.0006: hiddev98,hidraw5: USB HID v1.11 Device [Apple Inc. Apple Thunderbolt Display] on usb-0000:23:00.2-1.7/input0
[    3.428112] usb 1-1.1.1: New USB device found, idVendor=05ac, idProduct=8215, bcdDevice= 2.08
[    3.428118] usb 1-1.1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.428121] usb 1-1.1.1: Product: Bluetooth USB Host Controller
[    3.428124] usb 1-1.1.1: Manufacturer: Apple Inc.
[    3.428126] usb 1-1.1.1: SerialNumber: 3451C9ED7F9B
[    3.523323] usb 1-1.2.2: new low-speed USB device number 7 using ehci-pci
[    3.680251] usb 1-1.2.2: New USB device found, idVendor=05ac, idProduct=0220, bcdDevice= 0.71
[    3.680257] usb 1-1.2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.680260] usb 1-1.2.2: Product: Apple Keyboard
[    3.680262] usb 1-1.2.2: Manufacturer: Apple, Inc
[    3.687920] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/0003:05AC:0220.0007/input/input4
[    3.753423] apple 0003:05AC:0220.0007: input,hidraw6: USB HID v1.11 Keyboard [Apple, Inc Apple Keyboard] on usb-0000:00:1a.7-1.2.2/input0
[    3.753493] apple 0003:05AC:0220.0008: Fn key not found (Apple Wireless Keyboard clone?), disabling Fn key handling
[    3.753517] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.1/0003:05AC:0220.0008/input/input5
[    3.773324] usb 1-1.1.2: new full-speed USB device number 8 using ehci-pci
[    3.823347] apple 0003:05AC:0220.0008: input,hidraw7: USB HID v1.11 Device [Apple, Inc Apple Keyboard] on usb-0000:00:1a.7-1.2.2/input1
[    3.926874] usb 1-1.1.2: New USB device found, idVendor=05ac, idProduct=820a, bcdDevice= 1.00
[    3.926880] usb 1-1.1.2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.928761] input: HID 05ac:820a as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.1/1-1.1.2/1-1.1.2:1.0/0003:05AC:820A.0009/input/input6
[    3.993371] hid-generic 0003:05AC:820A.0009: input,hidraw8: USB HID v1.11 Keyboard [HID 05ac:820a] on usb-0000:00:1a.7-1.1.2/input0
[    4.093323] usb 1-1.1.3: new full-speed USB device number 9 using ehci-pci
[    4.150719] scsi 6:0:0:0: Direct-Access     APPLE    SD Card Reader   1.00 PQ: 0 ANSI: 0
[    4.150907] sd 6:0:0:0: Attached scsi generic sg3 type 0
[    4.151653] sd 6:0:0:0: [sdc] Media removed, stopped polling
[    4.152495] sd 6:0:0:0: [sdc] Attached SCSI removable disk
[    4.247616] usb 1-1.1.3: New USB device found, idVendor=05ac, idProduct=820b, bcdDevice= 1.00
[    4.247632] usb 1-1.1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.249734] input: HID 05ac:820b as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.1/1-1.1.3/1-1.1.3:1.0/0003:05AC:820B.000A/input/input7
[    4.249780] hid-generic 0003:05AC:820B.000A: input,hidraw9: USB HID v1.11 Mouse [HID 05ac:820b] on usb-0000:00:1a.7-1.1.3/input0
[    4.496801] [drm] fb mappable at 0x90363000
[    4.496805] [drm] vram apper at 0x90000000
[    4.496806] [drm] size 14745600
[    4.496807] [drm] fb depth is 24
[    4.496809] [drm]    pitch is 10240
[    4.496899] fbcon: radeondrmfb (fb0) is primary device
[    5.188942] switching from power state:
[    5.188943] 	ui class: performance
[    5.188944] 	internal class: none
[    5.188945] 	caps:
[    5.188946] 	uvd    vclk: 0 dclk: 0
[    5.188947] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    5.188948] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    5.188949] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    5.188949] 	status: c r
[    5.188950] switching to power state:
[    5.188951] 	ui class: performance
[    5.188951] 	internal class: none
[    5.188952] 	caps:
[    5.188952] 	uvd    vclk: 0 dclk: 0
[    5.188953] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    5.188953] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    5.188954] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    5.188955] 	status: c r
[    6.303805] switching from power state:
[    6.303806] 	ui class: performance
[    6.303807] 	internal class: none
[    6.303808] 	caps:
[    6.303808] 	uvd    vclk: 0 dclk: 0
[    6.303809] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    6.303810] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    6.303811] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    6.303812] 	status: c r
[    6.303813] switching to power state:
[    6.303813] 	ui class: performance
[    6.303813] 	internal class: none
[    6.303814] 	caps:
[    6.303814] 	uvd    vclk: 0 dclk: 0
[    6.303815] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    6.303815] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    6.303816] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    6.303817] 	status: c r
[    6.415432] Console: switching to colour frame buffer device 320x90
[    6.419824] radeon 0000:01:00.0: [drm] fb0: radeondrmfb frame buffer device
[    6.453392] [drm] Initialized radeon 2.50.0 20080528 for 0000:01:00.0 on minor 0
[    6.479978] [drm] amdgpu kernel modesetting enabled.
[    6.595321] netpoll: netconsole: local port 6666
[    6.595338] netpoll: netconsole: local IPv4 address 192.168.2.87
[    6.595352] netpoll: netconsole: interface 'eth0'
[    6.595362] netpoll: netconsole: remote port 6666
[    6.595372] netpoll: netconsole: remote IPv4 address 192.168.2.208
[    6.595384] netpoll: netconsole: remote ethernet address dc:a6:32:61:33:da
[    6.595402] netpoll: netconsole: device eth0 not up yet, forcing it
[   10.137635] tg3 0000:02:00.0 eth0: Link is up at 1000 Mbps, full duplex
[   10.137653] tg3 0000:02:00.0 eth0: Flow control is off for TX and off for RX
[   10.137667] tg3 0000:02:00.0 eth0: EEE is enabled
[   10.174647] printk: console [netcon0] enabled
[   10.174659] netconsole: network logging started
[   17.214245]  sdb: sdb1
[   17.264517] process '/usr/bin/fstype' started with executable stack
[   17.289903] EXT4-fs (sda6): mounted filesystem with ordered data mode. Quota mode: none.
[   17.467629] udevd[1276]: starting version 3.2.9
[   17.491485] udevd[1277]: starting eudev-3.2.9
[   17.523410] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input8
[   17.526292] ACPI: button: Power Button [PWRB]
[   17.528103] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input9
[   17.529165] ACPI: button: Sleep Button [SLPB]
[   17.531061] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input10
[   17.538805] udevd[1310]: Error changing net interface name eth1 to eth2: File exists
[   17.539805] udevd[1310]: could not rename interface '3' from 'eth1' to 'eth2': File exists
[   17.552596] udevd[1330]: Error changing net interface name eth2 to eth1: File exists
[   17.553632] udevd[1330]: could not rename interface '4' from 'eth2' to 'eth1': File exists
[   17.555956] mc: Linux media interface: v0.10
[   17.562492] videodev: Linux video capture interface: v2.00
[   17.563888] ACPI: button: Power Button [PWRF]
[   17.568693] snd_hda_intel 0000:00:1b.0: enabling device (0000 -> 0002)
[   17.569891] snd_hda_intel 0000:01:00.1: enabling device (0000 -> 0002)
[   17.576667] usb 1-2: Found UVC 1.00 device FaceTime HD Camera (Built-in) (05ac:850b)
[   17.584048] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input11
[   17.587597] snd_hda_codec_cirrus hdaudioC0D0: autoconfig for CS4206: line_outs=2 (0x9/0xb/0x0/0x0/0x0) type:speaker
[   17.588634] snd_hda_codec_cirrus hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   17.589642] snd_hda_codec_cirrus hdaudioC0D0:    hp_outs=1 (0xa/0x0/0x0/0x0/0x0)
[   17.590667] snd_hda_codec_cirrus hdaudioC0D0:    mono: mono_out=0x0
[   17.591701] snd_hda_codec_cirrus hdaudioC0D0:    dig-out=0x10/0x0
[   17.592723] snd_hda_codec_cirrus hdaudioC0D0:    inputs:
[   17.593745] snd_hda_codec_cirrus hdaudioC0D0:      Mic=0xd
[   17.593752] usb 5-1.4: 1:1: cannot get freq at ep 0x4
[   17.594764] snd_hda_codec_cirrus hdaudioC0D0:      Line=0xc
[   17.596899] snd_hda_codec_cirrus hdaudioC0D0:    dig-in=0xf
[   17.602127] input: FaceTime HD Camera (Built-in):  as /devices/pci0000:00/0000:00:1a.7/usb1/1-2/1-2:1.0/input/input12
[   17.604843] usb 5-1.5: Found UVC 1.00 device FaceTime HD Camera (Display) (05ac:1112)
[   17.607387] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
[   17.608621] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
[   17.609766] input: HDA Intel PCH SPDIF In as /devices/pci0000:00/0000:00:1b.0/sound/card0/input15
[   17.612153] Bluetooth: Core ver 2.22
[   17.613258] NET: Registered PF_BLUETOOTH protocol family
[   17.614254] Bluetooth: HCI device and connection manager initialized
[   17.615345] Bluetooth: HCI socket layer initialized
[   17.616259] Bluetooth: L2CAP socket layer initialized
[   17.617129] Bluetooth: SCO socket layer initialized
[   17.622363] usbcore: registered new interface driver btusb
[   17.658466] applesmc: key=332 fan=3 temp=50 index=49 acc=0 lux=2 kbd=0
[   17.658628] applesmc applesmc.768: hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[   17.674265] usb 1-1.1.2: USB disconnect, device number 8
[   17.745146] Bluetooth: hci0: BCM: chip id 254 build 0518
[   17.747137] Bluetooth: hci0: BCM: product 05ac:8215
[   17.749146] Bluetooth: hci0: BCM: features 0x00
[   17.763994] usb 5-1.4: 1:2: cannot get freq at ep 0x4
[   17.767149] Bluetooth: hci0: Bluetooth USB Host Controller
[   17.768408] input: FaceTime HD Camera (Display): F as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:04.0/0000:18:00.0/0000:19:00.0/0000:1a:00.0/0000:1b:03.0/0000:1c:00.2/usb5/5-1/5-1.5/5-1.5:1.0/input/input16
[   17.773140] usb 5-1.4: 2:1: cannot get freq at ep 0x84
[   17.812084] usb 5-1.4: Warning! Unlikely big volume range (=16384), cval->res is probably wrong.
[   17.812994] usb 5-1.4: [2] FU [PCM Playback Volume] ch = 2, val = -16384/0/1
[   17.848069] usb 5-1.4: Warning! Unlikely big volume range (=15872), cval->res is probably wrong.
[   17.848992] usb 5-1.4: [5] FU [Mic Capture Volume] ch = 1, val = -11264/4608/1
[   17.863168] usb 6-1.4: 1:1: cannot get freq at ep 0x4
[   17.964646] usb 6-1.5: Found UVC 1.00 device FaceTime HD Camera (Display) (05ac:1112)
[   18.032194] usb 6-1.4: 1:2: cannot get freq at ep 0x4
[   18.036669] input: FaceTime HD Camera (Display): F as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:04.0/0000:18:00.0/0000:19:04.0/0000:1f:00.0/0000:20:00.0/0000:21:00.0/0000:22:03.0/0000:23:00.2/usb6/6-1/6-1.5/6-1.5:1.0/input/input17
[   18.037694] usbcore: registered new interface driver uvcvideo
[   18.041297] usb 6-1.4: 2:1: cannot get freq at ep 0x84
[   18.080294] usb 6-1.4: Warning! Unlikely big volume range (=16384), cval->res is probably wrong.
[   18.081293] usb 6-1.4: [2] FU [PCM Playback Volume] ch = 2, val = -16384/0/1
[   18.116409] usb 6-1.4: Warning! Unlikely big volume range (=15872), cval->res is probably wrong.
[   18.117355] usb 6-1.4: [5] FU [Mic Capture Volume] ch = 1, val = -11264/4608/1
[   18.118765] usbcore: registered new interface driver snd-usb-audio
[   18.173885] usb 1-1.1.3: USB disconnect, device number 9
[   19.226204] Adding 16777212k swap on /dev/sda5.  Priority:-2 extents:1 across:16777212k SS
[   19.239012] EXT4-fs (sda6): re-mounted. Quota mode: none.
[   19.324569] device-mapper: ioctl: 4.46.0-ioctl (2022-02-22) initialised: dm-devel@redhat.com
[   22.585669] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Quota mode: none.
[   23.104392] NET: Registered PF_PACKET protocol family
[   25.890900] tg3 0000:02:00.0 eth0: Link is up at 1000 Mbps, full duplex
[   25.891903] tg3 0000:02:00.0 eth0: Flow control is off for TX and off for RX
[   25.892898] tg3 0000:02:00.0 eth0: EEE is enabled
[   32.525008] FS-Cache: Loaded
[   32.530608] RPC: Registered named UNIX socket transport module.
[   32.531442] RPC: Registered udp transport module.
[   32.532264] RPC: Registered tcp transport module.
[   32.533093] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   32.545034] NFS: Registering the id_resolver key type
[   32.545905] Key type id_resolver registered
[   32.546738] Key type id_legacy registered
[   33.844664] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[   34.262438] elogind-daemon[3137]: New seat seat0.
[   35.761481] switching from power state:
[   35.761489] 	ui class: performance
[   35.761491] 	internal class: none
[   35.761493] 	caps:
[   35.761495] 	uvd    vclk: 0 dclk: 0
[   35.761496] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   35.761498] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[   35.761500] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[   35.761502] 	status: c
[   35.761503] switching to power state:
[   35.761504] 	ui class: battery
[   35.761505] 	internal class: none
[   35.761506] 	caps:
[   35.761508] 	uvd    vclk: 0 dclk: 0
[   35.761509] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   35.761511] 		power level 1    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   35.761512] 		power level 2    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   35.761513] 	status: r
[   42.485854] elogind-daemon[3137]: New session c1 of user brad.

iMac - Right Port
[    0.000000] Linux version 5.17.0+ (brad@bkmac) (gcc (Debian 8.3.0-6) 8.3.0, GNU ld (GNU Binutils for Debian) 2.31.1) #51 SMP PREEMPT_DYNAMIC Fri Apr 1 13:23:13 AWST 2022
[    0.000000] Command line: ro root=UUID=de35d1a6-e0e1-40b0-b46a-3974a04adf4b libata.allow_tpm=1 netconsole=6666@192.168.2.87/eth0,6666@192.168.2.208/dc:a6:32:61:33:da oops=panic panic=10 thunderbolt.dyndbg pci=assign-busses,realloc,hpbussize=0x10,hpmmiosize=128M,hpmmioprefsize=1G initrd=boot\initrd.img-5.17.0+
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    0.000000] signal: max sigframe size: 1776
[    0.000000] reserving inaccessible SNB gfx pages
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008e000-0x000000000008ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000bffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000020200000-0x000000003fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000040000000-0x00000000401fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000040200000-0x000000008ed32fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008ed33000-0x000000008ed5efff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000008ed5f000-0x000000008ed70fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008ed71000-0x000000008ed8efff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000008ed8f000-0x000000008ee59fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008ee5a000-0x000000008ee8efff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008ee8f000-0x000000008eed6fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008eed7000-0x000000008eefefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008eeff000-0x000000008efa2fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008efa3000-0x000000008f8fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffed8000-0x00000000ffefffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000086fefffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0x89109018-0x89124c57] usable ==> usable
[    0.000000] e820: update [mem 0x89109018-0x89124c57] usable ==> usable
[    0.000000] e820: update [mem 0x891a7018-0x891b8c3d] usable ==> usable
[    0.000000] e820: update [mem 0x891a7018-0x891b8c3d] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000008dfff] usable
[    0.000000] reserve setup_data: [mem 0x000000000008e000-0x000000000008ffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000000a0000-0x00000000000bffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000020000000-0x00000000201fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000020200000-0x000000003fffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000040000000-0x00000000401fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000040200000-0x0000000089109017] usable
[    0.000000] reserve setup_data: [mem 0x0000000089109018-0x0000000089124c57] usable
[    0.000000] reserve setup_data: [mem 0x0000000089124c58-0x00000000891a7017] usable
[    0.000000] reserve setup_data: [mem 0x00000000891a7018-0x00000000891b8c3d] usable
[    0.000000] reserve setup_data: [mem 0x00000000891b8c3e-0x000000008ed32fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008ed33000-0x000000008ed5efff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000008ed5f000-0x000000008ed70fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008ed71000-0x000000008ed8efff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000008ed8f000-0x000000008ee59fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008ee5a000-0x000000008ee8efff] reserved
[    0.000000] reserve setup_data: [mem 0x000000008ee8f000-0x000000008eed6fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008eed7000-0x000000008eefefff] reserved
[    0.000000] reserve setup_data: [mem 0x000000008eeff000-0x000000008efa2fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008efa3000-0x000000008f8fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ffed8000-0x00000000ffefffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000086fefffff] usable
[    0.000000] efi: EFI v1.10 by Apple
[    0.000000] efi: ACPI=0x8ed8e000 ACPI 2.0=0x8ed8e014 SMBIOS=0x8ed3b000
[    0.000000] SMBIOS 2.4 present.
[    0.000000] DMI: Apple Inc. iMac12,2/Mac-942B59F58194171B, BIOS 87.0.0.0.0 06/14/2019
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 3400.077 MHz processor
[    0.000095] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000097] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000103] last_pfn = 0x86ff00 max_arch_pfn = 0x400000000
[    0.000755] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT
[    0.001371] last_pfn = 0x8efa3 max_arch_pfn = 0x400000000
[    0.002473] Secure boot disabled
[    0.002474] RAMDISK: [mem 0x7e4ad000-0x7fffffff]
[    0.002478] ACPI: Early table checksum verification disabled
[    0.002481] ACPI: RSDP 0x000000008ED8E014 000024 (v02 APPLE )
[    0.002485] ACPI: XSDT 0x000000008ED8E1C0 0000A4 (v01 APPLE  Apple00  0000F000      01000013)
[    0.002490] ACPI: FACP 0x000000008ED8C000 0000F4 (v04 APPLE  Apple00  0000F000 Loki 0000005F)
[    0.002494] ACPI: DSDT 0x000000008ED81000 0053FB (v01 APPLE  iMac     00210001 INTL 20061109)
[    0.002497] ACPI: FACS 0x000000008ED3E000 000040
[    0.002499] ACPI: FACS 0x000000008ED3E000 000040
[    0.002502] ACPI: HPET 0x000000008ED8B000 000038 (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002504] ACPI: APIC 0x000000008ED8A000 0000BC (v02 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002507] ACPI: SBST 0x000000008ED88000 000030 (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002509] ACPI: ECDT 0x000000008ED87000 000053 (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002512] ACPI: SSDT 0x000000008ED7E000 00020D (v01 APPLE  SataAhci 00001000 INTL 20061109)
[    0.002514] ACPI: SSDT 0x000000008ED7C000 0000B1 (v01 APPLE  SmcDppt  00001000 INTL 20061109)
[    0.002517] ACPI: SSDT 0x000000008ED7A000 000646 (v01 APPLE  UsbNoRmh 00001000 INTL 20061109)
[    0.002519] ACPI: SSDT 0x000000008ED78000 00013D (v01 APPLE  SataPrt1 00001000 INTL 20061109)
[    0.002522] ACPI: SSDT 0x000000008ED77000 0000A0 (v02 APPLE  IGHda    00001000 INTL 20061109)
[    0.002524] ACPI: SSDT 0x000000008ED75000 000032 (v01 APPLE  SsdtS3   00001000 INTL 20061109)
[    0.002527] ACPI: SSDT 0x000000008ED74000 000548 (v01 PmRef  Cpu0Ist  00003000 INTL 20061109)
[    0.002530] ACPI: SSDT 0x000000008ED73000 0009B1 (v01 PmRef  CpuPm    00003000 INTL 20061109)
[    0.002532] ACPI: SSDT 0x000000008ED72000 000315 (v01 PmRef  Cpu0Tst  00003000 INTL 20061109)
[    0.002535] ACPI: SSDT 0x000000008ED71000 00037A (v01 PmRef  ApTst    00003000 INTL 20061109)
[    0.002537] ACPI: MCFG 0x000000008ED89000 00003C (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002539] ACPI: Reserving FACP table memory at [mem 0x8ed8c000-0x8ed8c0f3]
[    0.002541] ACPI: Reserving DSDT table memory at [mem 0x8ed81000-0x8ed863fa]
[    0.002542] ACPI: Reserving FACS table memory at [mem 0x8ed3e000-0x8ed3e03f]
[    0.002543] ACPI: Reserving FACS table memory at [mem 0x8ed3e000-0x8ed3e03f]
[    0.002544] ACPI: Reserving HPET table memory at [mem 0x8ed8b000-0x8ed8b037]
[    0.002545] ACPI: Reserving APIC table memory at [mem 0x8ed8a000-0x8ed8a0bb]
[    0.002546] ACPI: Reserving SBST table memory at [mem 0x8ed88000-0x8ed8802f]
[    0.002547] ACPI: Reserving ECDT table memory at [mem 0x8ed87000-0x8ed87052]
[    0.002549] ACPI: Reserving SSDT table memory at [mem 0x8ed7e000-0x8ed7e20c]
[    0.002550] ACPI: Reserving SSDT table memory at [mem 0x8ed7c000-0x8ed7c0b0]
[    0.002551] ACPI: Reserving SSDT table memory at [mem 0x8ed7a000-0x8ed7a645]
[    0.002552] ACPI: Reserving SSDT table memory at [mem 0x8ed78000-0x8ed7813c]
[    0.002553] ACPI: Reserving SSDT table memory at [mem 0x8ed77000-0x8ed7709f]
[    0.002554] ACPI: Reserving SSDT table memory at [mem 0x8ed75000-0x8ed75031]
[    0.002555] ACPI: Reserving SSDT table memory at [mem 0x8ed74000-0x8ed74547]
[    0.002556] ACPI: Reserving SSDT table memory at [mem 0x8ed73000-0x8ed739b0]
[    0.002557] ACPI: Reserving SSDT table memory at [mem 0x8ed72000-0x8ed72314]
[    0.002558] ACPI: Reserving SSDT table memory at [mem 0x8ed71000-0x8ed71379]
[    0.002560] ACPI: Reserving MCFG table memory at [mem 0x8ed89000-0x8ed8903b]
[    0.002566] ACPI: DMI detected to setup _OSI("Darwin"): Apple hardware
[    0.002593] Zone ranges:
[    0.002594]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.002596]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.002597]   Normal   [mem 0x0000000100000000-0x000000086fefffff]
[    0.002599] Movable zone start for each node
[    0.002599] Early memory node ranges
[    0.002600]   node   0: [mem 0x0000000000001000-0x000000000008dfff]
[    0.002601]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.002602]   node   0: [mem 0x0000000000100000-0x000000001fffffff]
[    0.002603]   node   0: [mem 0x0000000020200000-0x000000003fffffff]
[    0.002604]   node   0: [mem 0x0000000040200000-0x000000008ed32fff]
[    0.002605]   node   0: [mem 0x000000008ed5f000-0x000000008ed70fff]
[    0.002606]   node   0: [mem 0x000000008ed8f000-0x000000008ee59fff]
[    0.002607]   node   0: [mem 0x000000008ee8f000-0x000000008eed6fff]
[    0.002608]   node   0: [mem 0x000000008eeff000-0x000000008efa2fff]
[    0.002609]   node   0: [mem 0x0000000100000000-0x000000086fefffff]
[    0.002612] Initmem setup node 0 [mem 0x0000000000001000-0x000000086fefffff]
[    0.002615] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.002617] On node 0, zone DMA: 2 pages in unavailable ranges
[    0.002635] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.004131] On node 0, zone DMA32: 512 pages in unavailable ranges
[    0.006373] On node 0, zone DMA32: 512 pages in unavailable ranges
[    0.006378] On node 0, zone DMA32: 44 pages in unavailable ranges
[    0.006381] On node 0, zone DMA32: 30 pages in unavailable ranges
[    0.006383] On node 0, zone DMA32: 53 pages in unavailable ranges
[    0.006385] On node 0, zone DMA32: 40 pages in unavailable ranges
[    0.060508] On node 0, zone Normal: 4189 pages in unavailable ranges
[    0.060515] On node 0, zone Normal: 256 pages in unavailable ranges
[    0.060677] ACPI: PM-Timer IO Port: 0x408
[    0.060683] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.060685] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.060686] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.060687] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.060687] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.060688] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.060689] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.060690] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.060699] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[    0.060702] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.060703] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.060707] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.060708] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.060711] TSC deadline timer available
[    0.060712] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[    0.060734] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.060736] PM: hibernation: Registered nosave memory: [mem 0x0008e000-0x0008ffff]
[    0.060738] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000bffff]
[    0.060739] PM: hibernation: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[    0.060741] PM: hibernation: Registered nosave memory: [mem 0x20000000-0x201fffff]
[    0.060743] PM: hibernation: Registered nosave memory: [mem 0x40000000-0x401fffff]
[    0.060744] PM: hibernation: Registered nosave memory: [mem 0x89109000-0x89109fff]
[    0.060746] PM: hibernation: Registered nosave memory: [mem 0x89124000-0x89124fff]
[    0.060748] PM: hibernation: Registered nosave memory: [mem 0x891a7000-0x891a7fff]
[    0.060750] PM: hibernation: Registered nosave memory: [mem 0x891b8000-0x891b8fff]
[    0.060752] PM: hibernation: Registered nosave memory: [mem 0x8ed33000-0x8ed5efff]
[    0.060754] PM: hibernation: Registered nosave memory: [mem 0x8ed71000-0x8ed8efff]
[    0.060755] PM: hibernation: Registered nosave memory: [mem 0x8ee5a000-0x8ee8efff]
[    0.060757] PM: hibernation: Registered nosave memory: [mem 0x8eed7000-0x8eefefff]
[    0.060759] PM: hibernation: Registered nosave memory: [mem 0x8efa3000-0x8f8fffff]
[    0.060760] PM: hibernation: Registered nosave memory: [mem 0x8f900000-0xe00f7fff]
[    0.060761] PM: hibernation: Registered nosave memory: [mem 0xe00f8000-0xe00f8fff]
[    0.060762] PM: hibernation: Registered nosave memory: [mem 0xe00f9000-0xfed1bfff]
[    0.060763] PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.060763] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xffed7fff]
[    0.060764] PM: hibernation: Registered nosave memory: [mem 0xffed8000-0xffefffff]
[    0.060765] PM: hibernation: Registered nosave memory: [mem 0xfff00000-0xffffffff]
[    0.060767] [mem 0x8f900000-0xe00f7fff] available for PCI devices
[    0.060771] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.063061] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[    0.063229] percpu: Embedded 44 pages/cpu s139880 r8192 d32152 u262144
[    0.063235] pcpu-alloc: s139880 r8192 d32152 u262144 alloc=1*2097152
[    0.063237] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
[    0.063258] Built 1 zonelists, mobility grouping on.  Total pages: 8251732
[    0.063261] Kernel command line: ro root=UUID=de35d1a6-e0e1-40b0-b46a-3974a04adf4b libata.allow_tpm=1 netconsole=6666@192.168.2.87/eth0,6666@192.168.2.208/dc:a6:32:61:33:da oops=panic panic=10 thunderbolt.dyndbg pci=assign-busses,realloc,hpbussize=0x10,hpmmiosize=128M,hpmmioprefsize=1G initrd=boot\initrd.img-5.17.0+
[    0.063321] Unknown kernel command line parameters "netconsole=6666@192.168.2.87/eth0,6666@192.168.2.208/dc:a6:32:61:33:da", will be passed to user space.
[    0.064944] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.065768] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.065833] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.152443] Memory: 32768252K/33531492K available (8192K kernel code, 2298K rwdata, 1860K rodata, 956K init, 2628K bss, 762984K reserved, 0K cma-reserved)
[    0.152478] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.152692] Dynamic Preempt: voluntary
[    0.152716] rcu: Preemptible hierarchical RCU implementation.
[    0.152718] 	Trampoline variant of Tasks RCU enabled.
[    0.152719] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[    0.152727] NR_IRQS: 4352, nr_irqs: 488, preallocated irqs: 16
[    0.152920] random: get_random_bytes called from start_kernel+0x443/0x5fb with crng_init=0
[    0.152944] Console: colour dummy device 80x25
[    0.153213] printk: console [tty0] enabled
[    0.153221] ACPI: Core revision 20211217
[    0.153305] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.153319] APIC: Switch to symmetric I/O mode setup
[    0.153698] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.203318] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x310296e185b, max_idle_ns: 440795209360 ns
[    0.203323] Calibrating delay loop (skipped), value calculated using timer frequency.. 6800.15 BogoMIPS (lpj=34000770)
[    0.203327] pid_max: default: 32768 minimum: 301
[    0.208028] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.208092] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.208213] CPU0: Thermal monitoring enabled (TM1)
[    0.208217] process: using mwait in idle threads
[    0.208219] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.208221] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.208224] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.208228] Spectre V2 : Kernel not compiled with retpoline; no mitigation available!
[    0.208228] Spectre V2 : Vulnerable
[    0.208231] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.208233] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    0.208236] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.208238] Spectre V2 : User space: Mitigation: STIBP via prctl
[    0.208240] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.208243] MDS: Mitigation: Clear CPU buffers
[    0.208401] Freeing SMP alternatives memory: 24K
[    0.208668] smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 1054
[    0.208674] smpboot: CPU0: Intel(R) Core(TM) i7-2600 CPU @ 3.40GHz (family: 0x6, model: 0x2a, stepping: 0x7)
[    0.208739] cblist_init_generic: Setting adjustable number of callback queues.
[    0.208743] cblist_init_generic: Setting shift to 3 and lim to 1.
[    0.208754] Performance Events: PEBS fmt1+, SandyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
[    0.208766] ... version:                3
[    0.208768] ... bit width:              48
[    0.208769] ... generic registers:      4
[    0.208771] ... value mask:             0000ffffffffffff
[    0.208773] ... max period:             00007fffffffffff
[    0.208774] ... fixed-purpose events:   3
[    0.208776] ... event mask:             000000070000000f
[    0.208853] rcu: Hierarchical SRCU implementation.
[    0.208952] smp: Bringing up secondary CPUs ...
[    0.208996] x86: Booting SMP configuration:
[    0.208999] .... node  #0, CPUs:      #1 #2 #3 #4
[    0.216870] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[    0.216870]  #5 #6 #7
[    0.226649] smp: Brought up 1 node, 8 CPUs
[    0.226649] smpboot: Max logical packages: 1
[    0.226649] smpboot: Total of 8 processors activated (54401.23 BogoMIPS)
[    0.228849] devtmpfs: initialized
[    0.228849] ACPI: PM: Registering ACPI NVS region [mem 0x8ed33000-0x8ed5efff] (180224 bytes)
[    0.228849] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.228849] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[    0.228849] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.228849] thermal_sys: Registered thermal governor 'step_wise'
[    0.228849] thermal_sys: Registered thermal governor 'user_space'
[    0.228849] cpuidle: using governor ladder
[    0.228849] cpuidle: using governor menu
[    0.228849] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.228849] PCI: MMCONFIG for domain 0000 [bus 00-fb] at [mem 0xe0000000-0xefbfffff] (base 0xe0000000)
[    0.228849] PCI: not using MMCONFIG
[    0.228849] PCI: Using configuration type 1 for base access
[    0.228849] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[    0.233851] ACPI: Disabled all _OSI OS vendors
[    0.233851] ACPI: Added _OSI(Module Device)
[    0.233851] ACPI: Added _OSI(Processor Device)
[    0.233851] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.233851] ACPI: Added _OSI(Processor Aggregator Device)
[    0.233851] ACPI: Added _OSI(Linux-Dell-Video)
[    0.233851] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.233851] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.233851] ACPI: Added _OSI(Darwin)
[    0.235647] ACPI: 11 ACPI AML tables successfully acquired and loaded
[    0.235849] ACPI: EC: EC started
[    0.235851] ACPI: EC: interrupt blocked
[    0.236666] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.236669] ACPI: EC: Boot ECDT EC used to handle transactions
[    0.236797] ACPI: BIOS _OSI(Darwin) query honored via DMI
[    0.236930] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.237131] ACPI: Dynamic OEM Table Load:
[    0.237138] ACPI: SSDT 0xFFFF888100379800 000781 (v01 PmRef  Cpu0Cst  00003001 INTL 20061109)
[    0.237455] ACPI: Dynamic OEM Table Load:
[    0.237461] ACPI: SSDT 0xFFFF88810036E800 0003A4 (v01 PmRef  ApIst    00003000 INTL 20061109)
[    0.237693] ACPI: Dynamic OEM Table Load:
[    0.237698] ACPI: SSDT 0xFFFF8881000FA600 000119 (v01 PmRef  ApCst    00003000 INTL 20061109)
[    0.238479] ACPI: Interpreter enabled
[    0.238493] ACPI: PM: (supports S0 S3 S4 S5)
[    0.238495] ACPI: Using IOAPIC for interrupt routing
[    0.238513] PCI: MMCONFIG for domain 0000 [bus 00-fb] at [mem 0xe0000000-0xefbfffff] (base 0xe0000000)
[    0.238725] PCI: MMCONFIG at [mem 0xe0000000-0xefbfffff] reserved in ACPI motherboard resources
[    0.238737] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.238831] ACPI: Enabled 6 GPEs in block 00 to 3F
[    0.241687] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.241694] acpi PNP0A08:00: _OSC: OS assumes control of [PCIeHotplug SHPCHotplug AER PCIeCapability LTR DPC]
[    0.241698] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-fb] only partially covers this bridge
[    0.241835] PCI host bridge to bus 0000:00
[    0.241838] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.241841] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.241844] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000fffff window]
[    0.241847] pci_bus 0000:00: root bus resource [mem 0x8f900000-0xfeafffff window]
[    0.241850] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff window]
[    0.241853] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.241863] pci 0000:00:00.0: [8086:0100] type 00 class 0x060000
[    0.241924] pci 0000:00:01.0: [8086:0101] type 01 class 0x060400
[    0.241953] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.242008] pci 0000:00:02.0: [8086:0102] type 00 class 0x038000
[    0.242015] pci 0000:00:02.0: reg 0x10: [mem 0xa8000000-0xa83fffff 64bit]
[    0.242021] pci 0000:00:02.0: reg 0x18: [mem 0xa0000000-0xa7ffffff 64bit pref]
[    0.242026] pci 0000:00:02.0: reg 0x20: [io  0x3000-0x303f]
[    0.242097] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
[    0.242116] pci 0000:00:16.0: reg 0x10: [mem 0xa8907100-0xa890710f 64bit]
[    0.242182] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.242228] pci 0000:00:1a.0: [8086:1c2c] type 00 class 0x0c0300
[    0.242266] pci 0000:00:1a.0: reg 0x20: [io  0x3140-0x315f]
[    0.242349] pci 0000:00:1a.7: [8086:1c2d] type 00 class 0x0c0320
[    0.242365] pci 0000:00:1a.7: reg 0x10: [mem 0xa8906c00-0xa8906fff]
[    0.242440] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
[    0.242606] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
[    0.242621] pci 0000:00:1b.0: reg 0x10: [mem 0xa8900000-0xa8903fff 64bit]
[    0.242683] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.243376] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
[    0.243456] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.243523] pci 0000:00:1c.1: [8086:1c12] type 01 class 0x060400
[    0.243602] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.243667] pci 0000:00:1c.2: [8086:1c14] type 01 class 0x060400
[    0.243746] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.243811] pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
[    0.243890] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.243954] pci 0000:00:1d.0: [8086:1c27] type 00 class 0x0c0300
[    0.243992] pci 0000:00:1d.0: reg 0x20: [io  0x30e0-0x30ff]
[    0.244074] pci 0000:00:1d.7: [8086:1c26] type 00 class 0x0c0320
[    0.244090] pci 0000:00:1d.7: reg 0x10: [mem 0xa8906800-0xa8906bff]
[    0.244165] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.244328] pci 0000:00:1f.0: [8086:1c44] type 00 class 0x060100
[    0.244470] pci 0000:00:1f.2: [8086:1c02] type 00 class 0x010601
[    0.244483] pci 0000:00:1f.2: reg 0x10: [io  0x3168-0x316f]
[    0.244490] pci 0000:00:1f.2: reg 0x14: [io  0x317c-0x317f]
[    0.244497] pci 0000:00:1f.2: reg 0x18: [io  0x3160-0x3167]
[    0.244505] pci 0000:00:1f.2: reg 0x1c: [io  0x3178-0x317b]
[    0.244512] pci 0000:00:1f.2: reg 0x20: [io  0x3060-0x307f]
[    0.244519] pci 0000:00:1f.2: reg 0x24: [mem 0xa8906000-0xa89067ff]
[    0.244554] pci 0000:00:1f.2: PME# supported from D3hot
[    0.244600] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
[    0.244615] pci 0000:00:1f.3: reg 0x10: [mem 0xa8907000-0xa89070ff 64bit]
[    0.244629] pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
[    0.244732] pci 0000:01:00.0: [1002:6720] type 00 class 0x030000
[    0.244747] pci 0000:01:00.0: reg 0x10: [mem 0x90000000-0x9fffffff 64bit pref]
[    0.244758] pci 0000:01:00.0: reg 0x18: [mem 0xa8800000-0xa881ffff 64bit]
[    0.244766] pci 0000:01:00.0: reg 0x20: [io  0x2000-0x20ff]
[    0.244778] pci 0000:01:00.0: reg 0x30: [mem 0xa8820000-0xa883ffff pref]
[    0.244785] pci 0000:01:00.0: enabling Extended Tags
[    0.244795] pci 0000:01:00.0: BAR 0: assigned to efifb
[    0.244824] pci 0000:01:00.0: supports D1 D2
[    0.244913] pci 0000:01:00.1: [1002:aa88] type 00 class 0x040300
[    0.244927] pci 0000:01:00.1: reg 0x10: [mem 0xa8840000-0xa8843fff 64bit]
[    0.244952] pci 0000:01:00.1: enabling Extended Tags
[    0.244987] pci 0000:01:00.1: supports D1 D2
[    0.245079] pci 0000:00:01.0: PCI bridge to [bus 01-ff]
[    0.245083] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.245086] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.245090] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.245093] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
[    0.245166] pci 0000:02:00.0: [14e4:16b4] type 00 class 0x020000
[    0.245200] pci 0000:02:00.0: reg 0x10: [mem 0xa8400000-0xa840ffff 64bit pref]
[    0.245223] pci 0000:02:00.0: reg 0x18: [mem 0xa8410000-0xa841ffff 64bit pref]
[    0.245379] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[    0.245494] pci 0000:00:1c.0: PCI bridge to [bus 02-ff]
[    0.245501] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.245507] pci 0000:00:1c.0:   bridge window [mem 0xa8400000-0xa84fffff 64bit pref]
[    0.245510] pci_bus 0000:02: busn_res: [bus 02-ff] end is updated to 02
[    0.245580] pci 0000:03:00.0: [168c:0030] type 00 class 0x028000
[    0.245611] pci 0000:03:00.0: reg 0x10: [mem 0xa8600000-0xa861ffff 64bit]
[    0.245671] pci 0000:03:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    0.245762] pci 0000:03:00.0: supports D1 D2
[    0.245764] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.245863] pci 0000:00:1c.1: PCI bridge to [bus 03-ff]
[    0.245869] pci 0000:00:1c.1:   bridge window [mem 0xa8600000-0xa86fffff]
[    0.245876] pci_bus 0000:03: busn_res: [bus 03-ff] end is updated to 03
[    0.245948] pci 0000:04:00.0: [11c1:5901] type 00 class 0x0c0010
[    0.245981] pci 0000:04:00.0: reg 0x10: [mem 0xa8500000-0xa8500fff 64bit]
[    0.246144] pci 0000:04:00.0: supports D1 D2
[    0.246146] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.246341] pci 0000:00:1c.2: PCI bridge to [bus 04-ff]
[    0.246348] pci 0000:00:1c.2:   bridge window [mem 0xa8500000-0xa85fffff]
[    0.246354] pci_bus 0000:04: busn_res: [bus 04-ff] end is updated to 04
[    0.246426] pci 0000:05:00.0: [8086:1513] type 01 class 0x060400
[    0.246491] pci 0000:05:00.0: enabling Extended Tags
[    0.246586] pci 0000:05:00.0: supports D1 D2
[    0.246588] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.246716] pci 0000:00:1c.4: PCI bridge to [bus 05-ff]
[    0.246721] pci 0000:00:1c.4:   bridge window [io  0x4000-0x4fff]
[    0.246725] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xad6fffff]
[    0.246731] pci 0000:00:1c.4:   bridge window [mem 0xacf00000-0xb10fffff 64bit pref]
[    0.246815] acpiphp: Slot [3] registered
[    0.246837] acpiphp: Slot [4] registered
[    0.246879] pci 0000:06:00.0: [8086:1513] type 01 class 0x060400
[    0.246949] pci 0000:06:00.0: enabling Extended Tags
[    0.247049] pci 0000:06:00.0: supports D1 D2
[    0.247051] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.247162] pci 0000:06:03.0: [8086:1513] type 01 class 0x060400
[    0.247232] pci 0000:06:03.0: enabling Extended Tags
[    0.247333] pci 0000:06:03.0: supports D1 D2
[    0.247335] pci 0000:06:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.247440] pci 0000:06:04.0: [8086:1513] type 01 class 0x060400
[    0.247510] pci 0000:06:04.0: enabling Extended Tags
[    0.247611] pci 0000:06:04.0: supports D1 D2
[    0.247613] pci 0000:06:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.247720] pci 0000:06:05.0: [8086:1513] type 01 class 0x060400
[    0.247790] pci 0000:06:05.0: enabling Extended Tags
[    0.247891] pci 0000:06:05.0: supports D1 D2
[    0.247893] pci 0000:06:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.248003] pci 0000:06:06.0: [8086:1513] type 01 class 0x060400
[    0.248072] pci 0000:06:06.0: enabling Extended Tags
[    0.248173] pci 0000:06:06.0: supports D1 D2
[    0.248175] pci 0000:06:06.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.248292] pci 0000:05:00.0: PCI bridge to [bus 06-ff]
[    0.248304] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xa96fffff]
[    0.248313] pci 0000:05:00.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.248411] acpiphp: Slot [1] registered
[    0.248453] pci 0000:07:00.0: [8086:1513] type 00 class 0x088000
[    0.248480] pci 0000:07:00.0: reg 0x10: [mem 0xa8a00000-0xa8a3ffff]
[    0.248496] pci 0000:07:00.0: reg 0x14: [mem 0xa8a40000-0xa8a40fff]
[    0.248576] pci 0000:07:00.0: enabling Extended Tags
[    0.248701] pci 0000:07:00.0: supports D1 D2
[    0.248703] pci 0000:07:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.248845] pci 0000:06:00.0: PCI bridge to [bus 07-ff]
[    0.248857] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.248866] pci_bus 0000:07: busn_res: [bus 07-ff] end is updated to 07
[    0.248922] pci 0000:06:03.0: PCI bridge to [bus 08-ff]
[    0.248934] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xa8bfffff]
[    0.248943] pci_bus 0000:08: busn_res: [bus 08-ff] end is updated to 17
[    0.249055] pci 0000:18:00.0: [8086:1513] type 01 class 0x060400
[    0.249172] pci 0000:18:00.0: enabling Extended Tags
[    0.249348] pci 0000:18:00.0: supports D1 D2
[    0.249350] pci 0000:18:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.273383] pci 0000:06:04.0: PCI bridge to [bus 18-ff]
[    0.273401] pci 0000:06:04.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.273413] pci 0000:06:04.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.273422] pci 0000:18:00.0: bridge configuration invalid ([bus 3a-49]), reconfiguring
[    0.273588] pci 0000:19:00.0: [8086:1513] type 01 class 0x060400
[    0.273712] pci 0000:19:00.0: enabling Extended Tags
[    0.273893] pci 0000:19:00.0: supports D1 D2
[    0.273895] pci 0000:19:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.274052] pci 0000:19:01.0: [8086:1513] type 01 class 0x060400
[    0.274176] pci 0000:19:01.0: enabling Extended Tags
[    0.274356] pci 0000:19:01.0: supports D1 D2
[    0.274358] pci 0000:19:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.274513] pci 0000:19:02.0: [8086:1513] type 01 class 0x060400
[    0.274637] pci 0000:19:02.0: enabling Extended Tags
[    0.274817] pci 0000:19:02.0: supports D1 D2
[    0.274819] pci 0000:19:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.274980] pci 0000:19:04.0: [8086:1513] type 01 class 0x060400
[    0.275104] pci 0000:19:04.0: enabling Extended Tags
[    0.275286] pci 0000:19:04.0: supports D1 D2
[    0.275288] pci 0000:19:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.275449] pci 0000:19:05.0: [8086:1513] type 01 class 0x060400
[    0.275556] pci 0000:19:05.0: enabling Extended Tags
[    0.275739] pci 0000:19:05.0: supports D1 D2
[    0.275741] pci 0000:19:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.275920] pci 0000:18:00.0: PCI bridge to [bus 19-ff]
[    0.275939] pci 0000:18:00.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.275953] pci 0000:18:00.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.275959] pci 0000:19:00.0: bridge configuration invalid ([bus 3b-3d]), reconfiguring
[    0.275976] pci 0000:19:01.0: bridge configuration invalid ([bus 3e-3e]), reconfiguring
[    0.275993] pci 0000:19:02.0: bridge configuration invalid ([bus 3f-3f]), reconfiguring
[    0.276009] pci 0000:19:04.0: bridge configuration invalid ([bus 40-48]), reconfiguring
[    0.276026] pci 0000:19:05.0: bridge configuration invalid ([bus 49-49]), reconfiguring
[    0.276180] pci 0000:1a:00.0: [12d8:400c] type 01 class 0x060400
[    0.276569] pci 0000:1a:00.0: supports D1 D2
[    0.276571] pci 0000:1a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.303359] pci 0000:19:00.0: PCI bridge to [bus 1a-ff]
[    0.303384] pci 0000:19:00.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.303406] pci 0000:1a:00.0: bridge configuration invalid ([bus 3c-3d]), reconfiguring
[    0.303643] pci 0000:1b:03.0: [12d8:400c] type 01 class 0x060400
[    0.303979] pci 0000:1b:03.0: supports D1 D2
[    0.303981] pci 0000:1b:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.304183] pci 0000:1a:00.0: PCI bridge to [bus 1b-ff]
[    0.304208] pci 0000:1a:00.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.304229] pci 0000:1b:03.0: bridge configuration invalid ([bus 3d-3d]), reconfiguring
[    0.304433] pci 0000:1c:00.0: [12d8:400e] type 00 class 0x0c0310
[    0.304484] pci 0000:1c:00.0: reg 0x10: [mem 0xa9401000-0xa9401fff]
[    0.304797] pci 0000:1c:00.0: supports D1 D2
[    0.304799] pci 0000:1c:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.304954] pci 0000:1c:00.1: [12d8:400e] type 00 class 0x0c0310
[    0.305006] pci 0000:1c:00.1: reg 0x10: [mem 0xa9400000-0xa9400fff]
[    0.305318] pci 0000:1c:00.1: supports D1 D2
[    0.305321] pci 0000:1c:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.305447] pci 0000:1c:00.2: [12d8:400f] type 00 class 0x0c0320
[    0.305498] pci 0000:1c:00.2: reg 0x10: [mem 0xa9402000-0xa94020ff]
[    0.305810] pci 0000:1c:00.2: supports D1 D2
[    0.305812] pci 0000:1c:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.306068] pci 0000:1b:03.0: PCI bridge to [bus 1c-ff]
[    0.306093] pci 0000:1b:03.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.306110] pci_bus 0000:1c: busn_res: [bus 1c-ff] end is updated to 1c
[    0.306121] pci_bus 0000:1b: busn_res: [bus 1b-ff] end is updated to 1c
[    0.306131] pci_bus 0000:1a: busn_res: [bus 1a-ff] end is updated to 1c
[    0.306278] pci 0000:1d:00.0: [14e4:16b0] type 00 class 0x020000
[    0.306346] pci 0000:1d:00.0: reg 0x10: [mem 0xad000000-0xad00ffff 64bit pref]
[    0.306392] pci 0000:1d:00.0: reg 0x18: [mem 0xad010000-0xad01ffff 64bit pref]
[    0.306733] pci 0000:1d:00.0: PME# supported from D0 D3hot D3cold
[    0.333379] pci 0000:19:01.0: PCI bridge to [bus 1d-ff]
[    0.333403] pci 0000:19:01.0:   bridge window [mem 0xa9300000-0xa93fffff]
[    0.333421] pci 0000:19:01.0:   bridge window [mem 0xad000000-0xad0fffff 64bit pref]
[    0.333427] pci_bus 0000:1d: busn_res: [bus 1d-ff] end is updated to 1d
[    0.333581] pci 0000:1e:00.0: [11c1:5901] type 00 class 0x0c0010
[    0.333651] pci 0000:1e:00.0: reg 0x10: [mem 0xa9200000-0xa9200fff 64bit]
[    0.334004] pci 0000:1e:00.0: supports D1 D2
[    0.334006] pci 0000:1e:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.363378] pci 0000:19:02.0: PCI bridge to [bus 1e-ff]
[    0.363403] pci 0000:19:02.0:   bridge window [mem 0xa9200000-0xa92fffff]
[    0.363420] pci_bus 0000:1e: busn_res: [bus 1e-ff] end is updated to 1e
[    0.363601] pci 0000:1f:00.0: [8086:1513] type 01 class 0x060400
[    0.363773] pci 0000:1f:00.0: enabling Extended Tags
[    0.364031] pci 0000:1f:00.0: supports D1 D2
[    0.364033] pci 0000:1f:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.393365] pci 0000:19:04.0: PCI bridge to [bus 1f-ff]
[    0.393389] pci 0000:19:04.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.393407] pci 0000:19:04.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.393417] pci 0000:1f:00.0: bridge configuration invalid ([bus 41-48]), reconfiguring
[    0.393646] pci 0000:20:00.0: [8086:1513] type 01 class 0x060400
[    0.393825] pci 0000:20:00.0: enabling Extended Tags
[    0.394087] pci 0000:20:00.0: supports D1 D2
[    0.394089] pci 0000:20:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.394308] pci 0000:20:01.0: [8086:1513] type 01 class 0x060400
[    0.394488] pci 0000:20:01.0: enabling Extended Tags
[    0.394749] pci 0000:20:01.0: supports D1 D2
[    0.394751] pci 0000:20:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.394968] pci 0000:20:02.0: [8086:1513] type 01 class 0x060400
[    0.395147] pci 0000:20:02.0: enabling Extended Tags
[    0.395408] pci 0000:20:02.0: supports D1 D2
[    0.395410] pci 0000:20:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.395636] pci 0000:20:04.0: [8086:1513] type 01 class 0x060400
[    0.395791] pci 0000:20:04.0: enabling Extended Tags
[    0.396056] pci 0000:20:04.0: supports D1 D2
[    0.396058] pci 0000:20:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.396285] pci 0000:20:05.0: [8086:1513] type 01 class 0x060400
[    0.396440] pci 0000:20:05.0: enabling Extended Tags
[    0.396706] pci 0000:20:05.0: supports D1 D2
[    0.396708] pci 0000:20:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.396962] pci 0000:1f:00.0: PCI bridge to [bus 20-ff]
[    0.396989] pci 0000:1f:00.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.397007] pci 0000:1f:00.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.397015] pci 0000:20:00.0: bridge configuration invalid ([bus 42-44]), reconfiguring
[    0.397038] pci 0000:20:01.0: bridge configuration invalid ([bus 45-45]), reconfiguring
[    0.397061] pci 0000:20:02.0: bridge configuration invalid ([bus 46-46]), reconfiguring
[    0.397084] pci 0000:20:04.0: bridge configuration invalid ([bus 47-47]), reconfiguring
[    0.397108] pci 0000:20:05.0: bridge configuration invalid ([bus 48-48]), reconfiguring
[    0.397321] pci 0000:21:00.0: [12d8:400c] type 01 class 0x060400
[    0.397842] pci 0000:21:00.0: supports D1 D2
[    0.397844] pci 0000:21:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.398111] pci 0000:20:00.0: PCI bridge to [bus 21-ff]
[    0.398138] pci 0000:20:00.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.398162] pci 0000:21:00.0: bridge configuration invalid ([bus 43-44]), reconfiguring
[    0.398459] pci 0000:22:03.0: [12d8:400c] type 01 class 0x060400
[    0.398908] pci 0000:22:03.0: supports D1 D2
[    0.398910] pci 0000:22:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.399176] pci 0000:21:00.0: PCI bridge to [bus 22-ff]
[    0.399208] pci 0000:21:00.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.399236] pci 0000:22:03.0: bridge configuration invalid ([bus 44-44]), reconfiguring
[    0.399508] pci 0000:23:00.0: [12d8:400e] type 00 class 0x0c0310
[    0.399576] pci 0000:23:00.0: reg 0x10: [mem 0xa9101000-0xa9101fff]
[    0.399995] pci 0000:23:00.0: supports D1 D2
[    0.399997] pci 0000:23:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.400205] pci 0000:23:00.1: [12d8:400e] type 00 class 0x0c0310
[    0.400273] pci 0000:23:00.1: reg 0x10: [mem 0xa9100000-0xa9100fff]
[    0.400692] pci 0000:23:00.1: supports D1 D2
[    0.400694] pci 0000:23:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.400858] pci 0000:23:00.2: [12d8:400f] type 00 class 0x0c0320
[    0.400926] pci 0000:23:00.2: reg 0x10: [mem 0xa9102000-0xa91020ff]
[    0.401345] pci 0000:23:00.2: supports D1 D2
[    0.401347] pci 0000:23:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.401701] pci 0000:22:03.0: PCI bridge to [bus 23-ff]
[    0.401733] pci 0000:22:03.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.401756] pci_bus 0000:23: busn_res: [bus 23-ff] end is updated to 23
[    0.401769] pci_bus 0000:22: busn_res: [bus 22-ff] end is updated to 23
[    0.401782] pci_bus 0000:21: busn_res: [bus 21-ff] end is updated to 23
[    0.401984] pci 0000:24:00.0: [14e4:16b0] type 00 class 0x020000
[    0.402076] pci 0000:24:00.0: reg 0x10: [mem 0xacf00000-0xacf0ffff 64bit pref]
[    0.402136] pci 0000:24:00.0: reg 0x18: [mem 0xacf10000-0xacf1ffff 64bit pref]
[    0.402589] pci 0000:24:00.0: PME# supported from D0 D3hot D3cold
[    0.402906] pci 0000:20:01.0: PCI bridge to [bus 24-ff]
[    0.402933] pci 0000:20:01.0:   bridge window [mem 0xa9000000-0xa90fffff]
[    0.402952] pci 0000:20:01.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.402955] pci_bus 0000:24: busn_res: [bus 24-ff] end is updated to 24
[    0.403152] pci 0000:25:00.0: [11c1:5901] type 00 class 0x0c0010
[    0.403243] pci 0000:25:00.0: reg 0x10: [mem 0xa8f00000-0xa8f00fff 64bit]
[    0.403711] pci 0000:25:00.0: supports D1 D2
[    0.403713] pci 0000:25:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.404010] pci 0000:20:02.0: PCI bridge to [bus 25-ff]
[    0.404038] pci 0000:20:02.0:   bridge window [mem 0xa8f00000-0xa8ffffff]
[    0.404057] pci_bus 0000:25: busn_res: [bus 25-ff] end is updated to 25
[    0.404189] pci 0000:20:04.0: PCI bridge to [bus 26-ff]
[    0.404216] pci 0000:20:04.0:   bridge window [mem 0xa8e00000-0xa8efffff]
[    0.404235] pci_bus 0000:26: busn_res: [bus 26-ff] end is updated to 35
[    0.404368] pci 0000:20:05.0: PCI bridge to [bus 36-ff]
[    0.404395] pci 0000:20:05.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.404414] pci_bus 0000:36: busn_res: [bus 36-ff] end is updated to 45
[    0.404425] pci_bus 0000:20: busn_res: [bus 20-ff] end is updated to 45
[    0.404435] pci_bus 0000:1f: busn_res: [bus 1f-ff] end is updated to 45
[    0.404529] pci 0000:19:05.0: PCI bridge to [bus 46-ff]
[    0.404548] pci 0000:19:05.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.404562] pci_bus 0000:46: busn_res: [bus 46-ff] end is updated to 55
[    0.404570] pci_bus 0000:19: busn_res: [bus 19-ff] end is updated to 55
[    0.404578] pci_bus 0000:18: busn_res: [bus 18-ff] end is updated to 55
[    0.404640] pci 0000:06:05.0: PCI bridge to [bus 56-ff]
[    0.404652] pci 0000:06:05.0:   bridge window [mem 0xa9500000-0xa95fffff]
[    0.404661] pci_bus 0000:56: busn_res: [bus 56-ff] end is updated to 65
[    0.404717] pci 0000:06:06.0: PCI bridge to [bus 66-ff]
[    0.404729] pci 0000:06:06.0:   bridge window [mem 0xa9600000-0xa96fffff]
[    0.404737] pci_bus 0000:66: busn_res: [bus 66-ff] end is updated to 75
[    0.404743] pci_bus 0000:06: busn_res: [bus 06-ff] end is updated to 75
[    0.404749] pci_bus 0000:05: busn_res: [bus 05-ff] end is updated to 75
[    0.404754] pci_bus 0000:00: on NUMA node 0
[    0.405019] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    0.405022] ACPI: PCI: Interrupt link LNKA disabled
[    0.405053] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    0.405055] ACPI: PCI: Interrupt link LNKB disabled
[    0.405084] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    0.405086] ACPI: PCI: Interrupt link LNKC disabled
[    0.405114] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    0.405117] ACPI: PCI: Interrupt link LNKD disabled
[    0.405145] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    0.405147] ACPI: PCI: Interrupt link LNKE disabled
[    0.405175] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    0.405178] ACPI: PCI: Interrupt link LNKF disabled
[    0.405206] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    0.405208] ACPI: PCI: Interrupt link LNKG disabled
[    0.405236] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    0.405238] ACPI: PCI: Interrupt link LNKH disabled
[    0.405325] ACPI: EC: interrupt unblocked
[    0.405327] ACPI: EC: event unblocked
[    0.405331] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.405333] ACPI: EC: GPE=0x17
[    0.405335] ACPI: \_SB_.PCI0.LPCB.EC__: Boot ECDT EC initialization complete
[    0.405338] ACPI: \_SB_.PCI0.LPCB.EC__: EC: Used to handle transactions and events
[    0.405391] SCSI subsystem initialized
[    0.405398] libata version 3.00 loaded.
[    0.405398] Registered efivars operations
[    0.405398] PCI: Using ACPI for IRQ routing
[    0.416036] PCI: pci_cache_line_size set to 64 bytes
[    0.416040] pci 0000:00:1c.4: can't claim BAR 9 [mem 0xacf00000-0xb10fffff 64bit pref]: address conflict with PCI Bus 0000:05 [mem 0xa8a00000-0xad6fffff]
[    0.416320] e820: reserve RAM buffer [mem 0x0008e000-0x0008ffff]
[    0.416322] e820: reserve RAM buffer [mem 0x89109018-0x8bffffff]
[    0.416323] e820: reserve RAM buffer [mem 0x891a7018-0x8bffffff]
[    0.416324] e820: reserve RAM buffer [mem 0x8ed33000-0x8fffffff]
[    0.416325] e820: reserve RAM buffer [mem 0x8ed71000-0x8fffffff]
[    0.416326] e820: reserve RAM buffer [mem 0x8ee5a000-0x8fffffff]
[    0.416328] e820: reserve RAM buffer [mem 0x8eed7000-0x8fffffff]
[    0.416329] e820: reserve RAM buffer [mem 0x8efa3000-0x8fffffff]
[    0.416330] e820: reserve RAM buffer [mem 0x86ff00000-0x86fffffff]
[    0.416338] pci 0000:01:00.0: vgaarb: setting as boot VGA device
[    0.416338] pci 0000:01:00.0: vgaarb: bridge control possible
[    0.416338] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    0.416338] vgaarb: loaded
[    0.416338] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.416338] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.416338] clocksource: Switched to clocksource tsc-early
[    0.416338] VFS: Disk quotas dquot_6.6.0
[    0.416338] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.416369] pnp: PnP ACPI init
[    0.416480] system 00:00: [mem 0xfed00000-0xfed003ff] has been reserved
[    0.416524] system 00:01: [io  0x0680-0x069f] has been reserved
[    0.416528] system 00:01: [io  0x1000-0x100f] has been reserved
[    0.416530] system 00:01: [io  0xffff] has been reserved
[    0.416533] system 00:01: [io  0xffff] has been reserved
[    0.416535] system 00:01: [io  0x0400-0x047f] has been reserved
[    0.416538] system 00:01: [io  0x0500-0x057f] has been reserved
[    0.416540] system 00:01: [io  0x164e-0x164f] has been reserved
[    0.416692] system 00:03: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.416696] system 00:03: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.416699] system 00:03: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.416701] system 00:03: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.416704] system 00:03: [mem 0xe0000000-0xefffffff] could not be reserved
[    0.416707] system 00:03: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.416709] system 00:03: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.416712] system 00:03: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.416714] system 00:03: [mem 0xff000000-0xffffffff] could not be reserved
[    0.416717] system 00:03: [mem 0xfee00000-0xfeefffff] has been reserved
[    0.416800] pnp: PnP ACPI: found 4 devices
[    0.416815] pci 0000:01:00.0: assigning 75 device properties
[    0.416815] pci 0000:04:00.0: assigning 2 device properties
[    0.416815] pci 0000:07:00.0: assigning 5 device properties
[    0.416815] pci 0000:1e:00.0: assigning 2 device properties
[    0.416815] pci 0000:25:00.0: assigning 2 device properties
[    0.416815] pci 0000:00:1b.0: assigning 4 device properties
[    0.419135] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.419156] NET: Registered PF_INET protocol family
[    0.419313] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.421170] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    0.421207] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.421472] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.421559] TCP: Hash tables configured (established 262144 bind 65536)
[    0.421585] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.421644] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.421722] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.421730] pci 0000:03:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[    0.421738] pci_bus 0000:00: max bus depth: 9 pci_try_num: 10
[    0.421750] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.421753] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.421757] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.421760] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.421764] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.421769] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.421773] pci 0000:00:1c.0:   bridge window [mem 0xa8400000-0xa84fffff 64bit pref]
[    0.421782] pci 0000:03:00.0: BAR 6: assigned [mem 0xa8620000-0xa862ffff pref]
[    0.421785] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.421790] pci 0000:00:1c.1:   bridge window [mem 0xa8600000-0xa86fffff]
[    0.421798] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.421802] pci 0000:00:1c.2:   bridge window [mem 0xa8500000-0xa85fffff]
[    0.421811] pci 0000:05:00.0: BAR 7: no space for [io  size 0x8000]
[    0.421813] pci 0000:05:00.0: BAR 7: failed to assign [io  size 0x8000]
[    0.421818] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.421821] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.421824] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.421827] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.421830] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.421833] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.421836] pci 0000:06:03.0: BAR 7: no space for [io  size 0x1000]
[    0.421838] pci 0000:06:03.0: BAR 7: failed to assign [io  size 0x1000]
[    0.421841] pci 0000:06:04.0: BAR 7: no space for [io  size 0x5000]
[    0.421843] pci 0000:06:04.0: BAR 7: failed to assign [io  size 0x5000]
[    0.421846] pci 0000:06:05.0: BAR 7: no space for [io  size 0x1000]
[    0.421848] pci 0000:06:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.421851] pci 0000:06:06.0: BAR 7: no space for [io  size 0x1000]
[    0.421854] pci 0000:06:06.0: BAR 7: failed to assign [io  size 0x1000]
[    0.421857] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.421864] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.421876] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.421883] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xa8bfffff]
[    0.421895] pci 0000:18:00.0: BAR 7: no space for [io  size 0x4000]
[    0.421897] pci 0000:18:00.0: BAR 7: failed to assign [io  size 0x4000]
[    0.421901] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.421903] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.421906] pci 0000:19:04.0: BAR 7: no space for [io  size 0x3000]
[    0.421909] pci 0000:19:04.0: BAR 7: failed to assign [io  size 0x3000]
[    0.421911] pci 0000:19:05.0: BAR 7: no space for [io  size 0x1000]
[    0.421913] pci 0000:19:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.421916] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.421930] pci 0000:1b:03.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.421955] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.421968] pci 0000:1a:00.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.421993] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.422004] pci 0000:19:00.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.422023] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.422034] pci 0000:19:01.0:   bridge window [mem 0xa9300000-0xa93fffff]
[    0.422042] pci 0000:19:01.0:   bridge window [mem 0xad000000-0xad0fffff 64bit pref]
[    0.422056] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.422066] pci 0000:19:02.0:   bridge window [mem 0xa9200000-0xa92fffff]
[    0.422086] pci 0000:1f:00.0: BAR 7: no space for [io  size 0x2000]
[    0.422088] pci 0000:1f:00.0: BAR 7: failed to assign [io  size 0x2000]
[    0.422092] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422095] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422098] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422101] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422104] pci 0000:20:04.0: BAR 7: no space for [io  size 0x1000]
[    0.422106] pci 0000:20:04.0: BAR 7: failed to assign [io  size 0x1000]
[    0.422109] pci 0000:20:05.0: BAR 7: no space for [io  size 0x1000]
[    0.422111] pci 0000:20:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.422114] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.422131] pci 0000:22:03.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.422164] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.422181] pci 0000:21:00.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.422213] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.422228] pci 0000:20:00.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.422255] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.422269] pci 0000:20:01.0:   bridge window [mem 0xa9000000-0xa90fffff]
[    0.422280] pci 0000:20:01.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.422299] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.422314] pci 0000:20:02.0:   bridge window [mem 0xa8f00000-0xa8ffffff]
[    0.422341] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.422355] pci 0000:20:04.0:   bridge window [mem 0xa8e00000-0xa8efffff]
[    0.422382] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.422397] pci 0000:20:05.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.422423] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.422438] pci 0000:1f:00.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.422448] pci 0000:1f:00.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.422467] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.422478] pci 0000:19:04.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.422486] pci 0000:19:04.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.422500] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.422510] pci 0000:19:05.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.422530] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.422540] pci 0000:18:00.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.422548] pci 0000:18:00.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.422561] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.422568] pci 0000:06:04.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.422574] pci 0000:06:04.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.422582] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.422589] pci 0000:06:05.0:   bridge window [mem 0xa9500000-0xa95fffff]
[    0.422601] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.422608] pci 0000:06:06.0:   bridge window [mem 0xa9600000-0xa96fffff]
[    0.422620] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.422626] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xa96fffff]
[    0.422631] pci 0000:05:00.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.422640] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.422643] pci 0000:00:1c.4:   bridge window [io  0x4000-0x4fff]
[    0.422648] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xad6fffff]
[    0.422656] pci_bus 0000:00: No. 2 try to assign unassigned res
[    0.422664] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.422666] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.422669] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.422672] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.422676] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.422681] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.422685] pci 0000:00:1c.0:   bridge window [mem 0xa8400000-0xa84fffff 64bit pref]
[    0.422691] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.422696] pci 0000:00:1c.1:   bridge window [mem 0xa8600000-0xa86fffff]
[    0.422704] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.422709] pci 0000:00:1c.2:   bridge window [mem 0xa8500000-0xa85fffff]
[    0.422717] pci 0000:05:00.0: BAR 7: no space for [io  size 0x8000]
[    0.422719] pci 0000:05:00.0: BAR 7: failed to assign [io  size 0x8000]
[    0.422722] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422725] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422728] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422731] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422734] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422737] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422740] pci 0000:06:03.0: BAR 7: no space for [io  size 0x1000]
[    0.422742] pci 0000:06:03.0: BAR 7: failed to assign [io  size 0x1000]
[    0.422745] pci 0000:06:04.0: BAR 7: no space for [io  size 0x5000]
[    0.422747] pci 0000:06:04.0: BAR 7: failed to assign [io  size 0x5000]
[    0.422749] pci 0000:06:05.0: BAR 7: no space for [io  size 0x1000]
[    0.422752] pci 0000:06:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.422754] pci 0000:06:06.0: BAR 7: no space for [io  size 0x1000]
[    0.422756] pci 0000:06:06.0: BAR 7: failed to assign [io  size 0x1000]
[    0.422759] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.422766] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.422777] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.422784] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xa8bfffff]
[    0.422796] pci 0000:18:00.0: BAR 7: no space for [io  size 0x4000]
[    0.422798] pci 0000:18:00.0: BAR 7: failed to assign [io  size 0x4000]
[    0.422802] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422804] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422807] pci 0000:19:04.0: BAR 7: no space for [io  size 0x3000]
[    0.422809] pci 0000:19:04.0: BAR 7: failed to assign [io  size 0x3000]
[    0.422812] pci 0000:19:05.0: BAR 7: no space for [io  size 0x1000]
[    0.422814] pci 0000:19:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.422817] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.422830] pci 0000:1b:03.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.422855] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.422868] pci 0000:1a:00.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.422893] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.422904] pci 0000:19:00.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.422923] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.422933] pci 0000:19:01.0:   bridge window [mem 0xa9300000-0xa93fffff]
[    0.422941] pci 0000:19:01.0:   bridge window [mem 0xad000000-0xad0fffff 64bit pref]
[    0.422955] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.422966] pci 0000:19:02.0:   bridge window [mem 0xa9200000-0xa92fffff]
[    0.422985] pci 0000:1f:00.0: BAR 7: no space for [io  size 0x2000]
[    0.422987] pci 0000:1f:00.0: BAR 7: failed to assign [io  size 0x2000]
[    0.422991] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422993] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422997] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.423000] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.423002] pci 0000:20:04.0: BAR 7: no space for [io  size 0x1000]
[    0.423005] pci 0000:20:04.0: BAR 7: failed to assign [io  size 0x1000]
[    0.423007] pci 0000:20:05.0: BAR 7: no space for [io  size 0x1000]
[    0.423009] pci 0000:20:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.423012] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.423029] pci 0000:22:03.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.423062] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.423079] pci 0000:21:00.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.423112] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.423126] pci 0000:20:00.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.423153] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.423168] pci 0000:20:01.0:   bridge window [mem 0xa9000000-0xa90fffff]
[    0.423178] pci 0000:20:01.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.423197] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.423212] pci 0000:20:02.0:   bridge window [mem 0xa8f00000-0xa8ffffff]
[    0.423239] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.423253] pci 0000:20:04.0:   bridge window [mem 0xa8e00000-0xa8efffff]
[    0.423280] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.423294] pci 0000:20:05.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.423321] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.423336] pci 0000:1f:00.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.423346] pci 0000:1f:00.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.423365] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.423375] pci 0000:19:04.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.423383] pci 0000:19:04.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.423397] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.423408] pci 0000:19:05.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.423427] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.423437] pci 0000:18:00.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.423445] pci 0000:18:00.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.423459] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.423466] pci 0000:06:04.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.423471] pci 0000:06:04.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.423480] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.423487] pci 0000:06:05.0:   bridge window [mem 0xa9500000-0xa95fffff]
[    0.423498] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.423505] pci 0000:06:06.0:   bridge window [mem 0xa9600000-0xa96fffff]
[    0.423517] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.423523] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xa96fffff]
[    0.423529] pci 0000:05:00.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.423537] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.423540] pci 0000:00:1c.4:   bridge window [io  0x4000-0x4fff]
[    0.423545] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xad6fffff]
[    0.423553] pci_bus 0000:00: No. 3 try to assign unassigned res
[    0.423556] release child resource [mem 0xa9100000-0xa9100fff]
[    0.423557] release child resource [mem 0xa9101000-0xa9101fff]
[    0.423557] release child resource [mem 0xa9102000-0xa91020ff]
[    0.423558] pci 0000:22:03.0: resource 8 [mem 0xa9100000-0xa91fffff] released
[    0.423561] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.423573] pci 0000:21:00.0: resource 8 [mem 0xa9100000-0xa91fffff] released
[    0.423575] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.423588] pci 0000:20:00.0: resource 8 [mem 0xa9100000-0xa91fffff] released
[    0.423590] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.423600] release child resource [mem 0xacf00000-0xacf0ffff 64bit pref]
[    0.423601] release child resource [mem 0xacf10000-0xacf1ffff 64bit pref]
[    0.423602] pci 0000:20:01.0: resource 9 [mem 0xacf00000-0xacffffff 64bit pref] released
[    0.423605] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.423627] release child resource [mem 0xa8f00000-0xa8f00fff 64bit]
[    0.423628] pci 0000:20:02.0: resource 8 [mem 0xa8f00000-0xa8ffffff] released
[    0.423631] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.423641] pci 0000:20:04.0: resource 8 [mem 0xa8e00000-0xa8efffff] released
[    0.423643] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.423654] pci 0000:20:05.0: resource 8 [mem 0xa8d00000-0xa8dfffff] released
[    0.423656] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.423666] pci 0000:1f:00.0: resource 9 [mem 0xacf00000-0xacffffff 64bit pref] released
[    0.423669] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.423692] release child resource [mem 0xa9400000-0xa9400fff]
[    0.423693] release child resource [mem 0xa9401000-0xa9401fff]
[    0.423694] release child resource [mem 0xa9402000-0xa94020ff]
[    0.423694] pci 0000:1b:03.0: resource 8 [mem 0xa9400000-0xa94fffff] released
[    0.423697] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.423706] pci 0000:1a:00.0: resource 8 [mem 0xa9400000-0xa94fffff] released
[    0.423709] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.423718] pci 0000:19:00.0: resource 8 [mem 0xa9400000-0xa94fffff] released
[    0.423721] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.423728] release child resource [mem 0xad000000-0xad00ffff 64bit pref]
[    0.423729] release child resource [mem 0xad010000-0xad01ffff 64bit pref]
[    0.423730] pci 0000:19:01.0: resource 9 [mem 0xad000000-0xad0fffff 64bit pref] released
[    0.423733] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.423749] release child resource [mem 0xa9200000-0xa9200fff 64bit]
[    0.423750] pci 0000:19:02.0: resource 8 [mem 0xa9200000-0xa92fffff] released
[    0.423752] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.423760] pci 0000:19:04.0: resource 9 [mem 0xacf00000-0xacffffff 64bit pref] released
[    0.423763] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.423779] pci 0000:19:05.0: resource 8 [mem 0xa8c00000-0xa8cfffff] released
[    0.423782] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.423789] pci 0000:18:00.0: resource 9 [mem 0xacf00000-0xad0fffff 64bit pref] released
[    0.423792] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.423809] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.423810] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.423810] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.423813] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.423818] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xa8bfffff] released
[    0.423820] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.423826] pci 0000:06:04.0: resource 9 [mem 0xacf00000-0xad0fffff 64bit pref] released
[    0.423829] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.423839] pci 0000:06:05.0: resource 8 [mem 0xa9500000-0xa95fffff] released
[    0.423841] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.423846] pci 0000:06:06.0: resource 8 [mem 0xa9600000-0xa96fffff] released
[    0.423849] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.423854] pci 0000:05:00.0: resource 9 [mem 0xacf00000-0xad0fffff 64bit pref] released
[    0.423857] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.423868] pci 0000:00:1c.4: resource 7 [io  0x4000-0x4fff] released
[    0.423870] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.423885] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.423888] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.423891] pci 0000:00:1c.4: BAR 7: assigned [io  0x4000-0xbfff]
[    0.423894] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.423896] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.423899] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.423902] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.423906] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.423911] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.423915] pci 0000:00:1c.0:   bridge window [mem 0xa8400000-0xa84fffff 64bit pref]
[    0.423922] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.423926] pci 0000:00:1c.1:   bridge window [mem 0xa8600000-0xa86fffff]
[    0.423934] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.423939] pci 0000:00:1c.2:   bridge window [mem 0xa8500000-0xa85fffff]
[    0.423948] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.423951] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.423954] pci 0000:05:00.0: BAR 7: assigned [io  0x4000-0xbfff]
[    0.423957] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.423960] pci 0000:06:03.0: BAR 8: no space for [mem size 0x08000000]
[    0.423962] pci 0000:06:03.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.423965] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.423968] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.423971] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.423974] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.423977] pci 0000:06:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.423979] pci 0000:06:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.423982] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.423985] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.423988] pci 0000:06:06.0: BAR 8: no space for [mem size 0x08000000]
[    0.423990] pci 0000:06:06.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.423993] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.423996] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.423999] pci 0000:06:03.0: BAR 7: assigned [io  0x4000-0x4fff]
[    0.424001] pci 0000:06:04.0: BAR 7: assigned [io  0x5000-0x9fff]
[    0.424004] pci 0000:06:05.0: BAR 7: assigned [io  0xa000-0xafff]
[    0.424006] pci 0000:06:06.0: BAR 7: assigned [io  0xb000-0xbfff]
[    0.424009] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.424015] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.424022] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.424029] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.424041] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.424044] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.424061] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.424064] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.424067] pci 0000:18:00.0: BAR 7: assigned [io  0x5000-0x8fff]
[    0.424070] pci 0000:19:00.0: BAR 8: assigned [mem 0xa8c00000-0xa8cfffff]
[    0.424073] pci 0000:19:01.0: BAR 9: assigned [mem 0xa9200000-0xa92fffff 64bit pref]
[    0.424076] pci 0000:19:02.0: BAR 8: assigned [mem 0xa9400000-0xa94fffff]
[    0.424079] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.424082] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.424085] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.424087] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.424090] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.424093] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.424096] pci 0000:19:04.0: BAR 7: assigned [io  0x5000-0x7fff]
[    0.424098] pci 0000:19:05.0: BAR 7: assigned [io  0x8000-0x8fff]
[    0.424101] pci 0000:1a:00.0: BAR 8: assigned [mem 0xa8c00000-0xa8cfffff]
[    0.424104] pci 0000:1b:03.0: BAR 8: assigned [mem 0xa8c00000-0xa8cfffff]
[    0.424107] pci 0000:1c:00.0: BAR 0: assigned [mem 0xa8c00000-0xa8c00fff]
[    0.424117] pci 0000:1c:00.1: BAR 0: assigned [mem 0xa8c01000-0xa8c01fff]
[    0.424127] pci 0000:1c:00.2: BAR 0: assigned [mem 0xa8c02000-0xa8c020ff]
[    0.424137] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.424150] pci 0000:1b:03.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.424175] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.424189] pci 0000:1a:00.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.424213] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.424224] pci 0000:19:00.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.424244] pci 0000:1d:00.0: BAR 0: assigned [mem 0xa9200000-0xa920ffff 64bit pref]
[    0.424274] pci 0000:1d:00.0: BAR 2: assigned [mem 0xa9210000-0xa921ffff 64bit pref]
[    0.424304] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.424315] pci 0000:19:01.0:   bridge window [mem 0xa9300000-0xa93fffff]
[    0.424323] pci 0000:19:01.0:   bridge window [mem 0xa9200000-0xa92fffff 64bit pref]
[    0.424337] pci 0000:1e:00.0: BAR 0: assigned [mem 0xa9400000-0xa9400fff 64bit]
[    0.424368] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.424378] pci 0000:19:02.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.424398] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.424400] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.424403] pci 0000:1f:00.0: BAR 7: assigned [io  0x5000-0x6fff]
[    0.424407] pci 0000:20:00.0: BAR 8: assigned [mem 0xa8d00000-0xa8dfffff]
[    0.424410] pci 0000:20:01.0: BAR 9: assigned [mem 0xa8e00000-0xa8efffff 64bit pref]
[    0.424413] pci 0000:20:02.0: BAR 8: assigned [mem 0xa8f00000-0xa8ffffff]
[    0.424415] pci 0000:20:04.0: BAR 8: no space for [mem size 0x08000000]
[    0.424418] pci 0000:20:04.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.424420] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.424423] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.424426] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.424428] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.424431] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.424434] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.424437] pci 0000:20:04.0: BAR 7: assigned [io  0x5000-0x5fff]
[    0.424439] pci 0000:20:05.0: BAR 7: assigned [io  0x6000-0x6fff]
[    0.424442] pci 0000:21:00.0: BAR 8: assigned [mem 0xa8d00000-0xa8dfffff]
[    0.424445] pci 0000:22:03.0: BAR 8: assigned [mem 0xa8d00000-0xa8dfffff]
[    0.424448] pci 0000:23:00.0: BAR 0: assigned [mem 0xa8d00000-0xa8d00fff]
[    0.424461] pci 0000:23:00.1: BAR 0: assigned [mem 0xa8d01000-0xa8d01fff]
[    0.424473] pci 0000:23:00.2: BAR 0: assigned [mem 0xa8d02000-0xa8d020ff]
[    0.424486] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.424503] pci 0000:22:03.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.424536] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.424553] pci 0000:21:00.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.424586] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.424600] pci 0000:20:00.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.424627] pci 0000:24:00.0: BAR 0: assigned [mem 0xa8e00000-0xa8e0ffff 64bit pref]
[    0.424667] pci 0000:24:00.0: BAR 2: assigned [mem 0xa8e10000-0xa8e1ffff 64bit pref]
[    0.424706] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.424721] pci 0000:20:01.0:   bridge window [mem 0xa9000000-0xa90fffff]
[    0.424731] pci 0000:20:01.0:   bridge window [mem 0xa8e00000-0xa8efffff 64bit pref]
[    0.424751] pci 0000:25:00.0: BAR 0: assigned [mem 0xa8f00000-0xa8f00fff 64bit]
[    0.424790] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.424804] pci 0000:20:02.0:   bridge window [mem 0xa8f00000-0xa8ffffff]
[    0.424831] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.424838] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.424877] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.424883] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.424922] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.424928] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.424942] pci 0000:1f:00.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.424969] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.424974] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.424985] pci 0000:19:04.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.425004] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.425009] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.425036] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.425041] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.425052] pci 0000:18:00.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.425071] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.425074] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.425081] pci 0000:06:04.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.425093] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.425096] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.425113] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.425116] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.425133] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.425136] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.425143] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xa96fffff]
[    0.425154] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.425157] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.425162] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xad6fffff]
[    0.425170] pci_bus 0000:00: No. 4 try to assign unassigned res
[    0.425172] release child resource [mem 0xa8d00000-0xa8d00fff]
[    0.425173] release child resource [mem 0xa8d01000-0xa8d01fff]
[    0.425173] release child resource [mem 0xa8d02000-0xa8d020ff]
[    0.425174] pci 0000:22:03.0: resource 8 [mem 0xa8d00000-0xa8dfffff] released
[    0.425177] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.425189] pci 0000:21:00.0: resource 8 [mem 0xa8d00000-0xa8dfffff] released
[    0.425191] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.425204] pci 0000:20:00.0: resource 8 [mem 0xa8d00000-0xa8dfffff] released
[    0.425206] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.425216] release child resource [mem 0xa8e00000-0xa8e0ffff 64bit pref]
[    0.425217] release child resource [mem 0xa8e10000-0xa8e1ffff 64bit pref]
[    0.425218] pci 0000:20:01.0: resource 9 [mem 0xa8e00000-0xa8efffff 64bit pref] released
[    0.425221] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.425243] release child resource [mem 0xa8f00000-0xa8f00fff 64bit]
[    0.425244] pci 0000:20:02.0: resource 8 [mem 0xa8f00000-0xa8ffffff] released
[    0.425246] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.425257] release child resource [mem 0xa9000000-0xa90fffff]
[    0.425257] pci 0000:1f:00.0: resource 8 [mem 0xa8d00000-0xa91fffff] released
[    0.425260] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.425271] pci 0000:19:04.0: resource 8 [mem 0xa8d00000-0xa91fffff] released
[    0.425273] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.425281] release child resource [mem 0xa8c00000-0xa8c00fff]
[    0.425281] release child resource [mem 0xa8c01000-0xa8c01fff]
[    0.425282] release child resource [mem 0xa8c02000-0xa8c020ff]
[    0.425283] pci 0000:1b:03.0: resource 8 [mem 0xa8c00000-0xa8cfffff] released
[    0.425285] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.425295] pci 0000:1a:00.0: resource 8 [mem 0xa8c00000-0xa8cfffff] released
[    0.425297] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.425306] pci 0000:19:00.0: resource 8 [mem 0xa8c00000-0xa8cfffff] released
[    0.425309] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.425316] release child resource [mem 0xa9200000-0xa920ffff 64bit pref]
[    0.425317] release child resource [mem 0xa9210000-0xa921ffff 64bit pref]
[    0.425318] pci 0000:19:01.0: resource 9 [mem 0xa9200000-0xa92fffff 64bit pref] released
[    0.425321] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.425337] release child resource [mem 0xa9400000-0xa9400fff 64bit]
[    0.425338] pci 0000:19:02.0: resource 8 [mem 0xa9400000-0xa94fffff] released
[    0.425340] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.425348] release child resource [mem 0xa9300000-0xa93fffff]
[    0.425349] pci 0000:18:00.0: resource 8 [mem 0xa8c00000-0xa94fffff] released
[    0.425351] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.425359] pci 0000:06:04.0: resource 8 [mem 0xa8c00000-0xa94fffff] released
[    0.425362] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.425367] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.425368] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.425368] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.425371] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.425376] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xa96fffff] released
[    0.425379] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.425386] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xad6fffff] released
[    0.425388] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.425392] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.425393] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.425396] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.425399] release child resource [mem 0xa8400000-0xa840ffff 64bit pref]
[    0.425400] release child resource [mem 0xa8410000-0xa841ffff 64bit pref]
[    0.425401] pci 0000:00:1c.0: resource 9 [mem 0xa8400000-0xa84fffff 64bit pref] released
[    0.425404] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.425410] release child resource [mem 0xa8600000-0xa861ffff 64bit]
[    0.425411] release child resource [mem 0xa8620000-0xa862ffff pref]
[    0.425412] pci 0000:00:1c.1: resource 8 [mem 0xa8600000-0xa86fffff] released
[    0.425414] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.425418] release child resource [mem 0xa8500000-0xa8500fff 64bit]
[    0.425419] pci 0000:00:1c.2: resource 8 [mem 0xa8500000-0xa85fffff] released
[    0.425421] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.425434] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.425438] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.425441] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.425444] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.425447] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.425451] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.425453] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.425457] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.425465] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.425467] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.425470] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.425473] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.425478] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.425493] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.425509] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.425514] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.425518] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.425525] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.425539] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.425542] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.425547] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.425555] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.425570] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.425575] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.425583] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.425586] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.425589] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.425592] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.425595] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.425598] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.425601] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.425604] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.425606] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.425609] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.425612] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.425615] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.425618] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.425621] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.425623] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.425626] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.425629] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.425636] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.425642] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.425649] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.425661] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.425665] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.425672] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.425683] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.425686] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.425689] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.425693] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.425695] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.425698] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.425701] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.425703] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.425706] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.425709] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.425712] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.425714] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.425717] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.425720] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.425723] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.425726] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.425729] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.425739] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.425749] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.425759] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.425772] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.425797] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.425810] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.425835] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.425846] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.425865] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.425896] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.425926] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.425936] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.425944] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.425959] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.425989] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.426000] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.426019] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.426022] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.426025] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.426028] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.426031] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.426033] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.426036] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.426039] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.426042] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.426044] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.426047] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.426050] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.426052] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.426055] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.426058] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.426061] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.426064] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.426076] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.426089] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.426102] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.426119] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.426152] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.426169] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.426201] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.426216] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.426243] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.426283] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.426322] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.426336] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.426347] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.426366] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.426406] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.426420] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.426447] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.426453] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.426468] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.426495] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.426501] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.426540] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.426546] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.426561] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.426587] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.426592] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.426603] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.426622] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.426627] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.426654] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.426659] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.426670] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.426689] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.426692] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.426699] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.426711] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.426714] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.426721] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.426733] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.426737] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.426744] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.426755] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.426759] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.426766] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.426777] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.426780] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.426785] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.426793] pci_bus 0000:00: No. 5 try to assign unassigned res
[    0.426795] release child resource [mem 0xb0f00000-0xb0f00fff]
[    0.426795] release child resource [mem 0xb0f01000-0xb0f01fff]
[    0.426796] release child resource [mem 0xb0f02000-0xb0f020ff]
[    0.426797] pci 0000:22:03.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.426799] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.426811] pci 0000:21:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.426814] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.426826] pci 0000:20:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.426828] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.426839] release child resource [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.426839] release child resource [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.426840] pci 0000:20:01.0: resource 9 [mem 0xb1100000-0xb11fffff 64bit pref] released
[    0.426843] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.426866] release child resource [mem 0xb1200000-0xb1200fff 64bit]
[    0.426867] pci 0000:20:02.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[    0.426869] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.426879] pci 0000:20:04.0: resource 8 [mem 0xb1300000-0xb92fffff] released
[    0.426882] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.426892] release child resource [mem 0xb1000000-0xb10fffff]
[    0.426893] pci 0000:1f:00.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.426895] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.426906] pci 0000:19:04.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.426908] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.426916] release child resource [mem 0xb0b00000-0xb0b00fff]
[    0.426916] release child resource [mem 0xb0b01000-0xb0b01fff]
[    0.426917] release child resource [mem 0xb0b02000-0xb0b020ff]
[    0.426918] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.426920] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.426930] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.426932] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.426942] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.426944] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.426952] release child resource [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.426952] release child resource [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.426953] pci 0000:19:01.0: resource 9 [mem 0xb0d00000-0xb0dfffff 64bit pref] released
[    0.426956] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.426972] release child resource [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.426973] pci 0000:19:02.0: resource 8 [mem 0xb0e00000-0xb0efffff] released
[    0.426976] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.426983] release child resource [mem 0xb0c00000-0xb0cfffff]
[    0.426984] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.426986] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.426995] pci 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.426997] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427002] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.427003] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.427004] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.427006] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427011] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[    0.427013] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427019] pci 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[    0.427021] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427027] pci 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[    0.427029] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427034] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427037] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427043] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427045] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427049] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427050] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.427053] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427056] release child resource [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427057] release child resource [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427058] pci 0000:00:1c.0: resource 9 [mem 0x8f900000-0x8f9fffff 64bit pref] released
[    0.427061] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427067] release child resource [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427068] release child resource [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427069] pci 0000:00:1c.1: resource 8 [mem 0x8fa00000-0x8fafffff] released
[    0.427071] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427075] release child resource [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427076] pci 0000:00:1c.2: resource 8 [mem 0x8fb00000-0x8fbfffff] released
[    0.427078] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427090] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427094] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427097] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.427099] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.427102] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427106] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427109] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427112] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427120] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427122] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.427125] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.427128] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427133] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427148] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427164] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427168] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.427173] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427179] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427194] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427197] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427201] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.427209] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427225] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427229] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.427237] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427240] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427243] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427246] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.427249] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.427252] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427254] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427257] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427260] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427263] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427266] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.427269] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427271] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427274] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.427277] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427280] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427283] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.427289] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.427296] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427302] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.427314] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427318] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.427325] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.427332] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427332] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427332] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427332] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427332] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.427332] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427332] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.427332] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427332] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427332] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427332] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427332] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427332] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427332] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427332] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.427332] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.427332] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.427332] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427332] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427332] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427332] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427332] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427332] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427332] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427332] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427332] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427332] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.427332] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427332] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427332] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427332] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.427332] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427332] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427332] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427332] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427332] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.427332] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427332] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.427332] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.427332] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427332] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427332] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427332] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427332] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.427332] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.427332] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.427332] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427332] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427332] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427332] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427332] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427332] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427332] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427332] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427332] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427332] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.427332] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427332] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.427332] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427332] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.427332] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427332] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.427332] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.427332] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.427332] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.427332] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427332] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.427332] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427332] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427332] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.427332] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427332] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.427332] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.427332] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427332] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.427332] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427332] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427332] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.427332] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427332] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427332] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.427332] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.427332] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427332] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.427332] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.427332] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427332] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.427332] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.427332] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427332] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.427332] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.427332] pci_bus 0000:00: No. 6 try to assign unassigned res
[    0.427332] release child resource [mem 0xb0f00000-0xb0f00fff]
[    0.427332] release child resource [mem 0xb0f01000-0xb0f01fff]
[    0.427332] release child resource [mem 0xb0f02000-0xb0f020ff]
[    0.427332] pci 0000:22:03.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427332] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427332] pci 0000:21:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427332] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427332] pci 0000:20:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427332] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427332] release child resource [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427332] release child resource [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427332] pci 0000:20:01.0: resource 9 [mem 0xb1100000-0xb11fffff 64bit pref] released
[    0.427332] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427332] release child resource [mem 0xb1200000-0xb1200fff 64bit]
[    0.427332] pci 0000:20:02.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[    0.427332] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427332] pci 0000:20:04.0: resource 8 [mem 0xb1300000-0xb92fffff] released
[    0.427332] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427332] release child resource [mem 0xb1000000-0xb10fffff]
[    0.427332] pci 0000:1f:00.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.427332] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427332] pci 0000:19:04.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.427332] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427332] release child resource [mem 0xb0b00000-0xb0b00fff]
[    0.427332] release child resource [mem 0xb0b01000-0xb0b01fff]
[    0.427332] release child resource [mem 0xb0b02000-0xb0b020ff]
[    0.427332] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427332] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427332] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427332] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427332] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427332] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427332] release child resource [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427332] release child resource [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427332] pci 0000:19:01.0: resource 9 [mem 0xb0d00000-0xb0dfffff 64bit pref] released
[    0.427332] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427332] release child resource [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427332] pci 0000:19:02.0: resource 8 [mem 0xb0e00000-0xb0efffff] released
[    0.427332] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427332] release child resource [mem 0xb0c00000-0xb0cfffff]
[    0.427332] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427332] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427332] pci 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427332] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427332] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.427332] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.427332] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.427332] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427332] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[    0.427332] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427332] pci 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[    0.427332] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427332] pci 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[    0.427332] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427332] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427332] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427332] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427332] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427332] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427332] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.427332] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427332] release child resource [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427332] release child resource [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427332] pci 0000:00:1c.0: resource 9 [mem 0x8f900000-0x8f9fffff 64bit pref] released
[    0.427332] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427332] release child resource [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427332] release child resource [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427332] pci 0000:00:1c.1: resource 8 [mem 0x8fa00000-0x8fafffff] released
[    0.427332] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427332] release child resource [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427332] pci 0000:00:1c.2: resource 8 [mem 0x8fb00000-0x8fbfffff] released
[    0.427332] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427332] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427332] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427332] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.427332] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.427332] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427332] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427332] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427332] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427332] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427332] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.427332] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.427332] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427332] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427332] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427332] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427332] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.427332] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427332] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427332] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427332] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427332] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.427332] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427332] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427332] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.427332] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427332] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427332] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427332] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.427332] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.427332] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427332] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427332] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427332] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.427332] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.427332] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.427332] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.427332] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427332] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.427332] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427332] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.427332] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.427332] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427332] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427332] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427332] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427332] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.427332] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427332] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.427332] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427332] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427332] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427332] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427332] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427332] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427332] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427332] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.427332] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.427332] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.427332] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427332] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427332] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427332] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427332] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427332] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427332] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427332] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427332] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427332] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.427332] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427332] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427332] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427332] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.427332] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427332] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427332] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427332] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427332] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.427332] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427332] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.427332] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.427332] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427332] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427332] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427332] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427332] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.427332] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.427332] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.427332] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427332] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427332] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427332] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427332] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427332] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427332] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427332] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427332] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427332] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.427332] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427332] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.427332] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427332] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.427332] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427332] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.427332] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.427332] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.427332] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.427332] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427332] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.427332] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427332] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427332] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.427332] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427332] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.427332] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.427332] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427332] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.427332] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427332] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427332] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.427332] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427332] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427332] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.427332] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.427332] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427332] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.427332] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.427332] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427332] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.427332] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.427332] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427332] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.427332] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.427332] pci_bus 0000:00: No. 7 try to assign unassigned res
[    0.427332] release child resource [mem 0xb0f00000-0xb0f00fff]
[    0.427332] release child resource [mem 0xb0f01000-0xb0f01fff]
[    0.427332] release child resource [mem 0xb0f02000-0xb0f020ff]
[    0.427332] pci 0000:22:03.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427332] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427332] pci 0000:21:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427332] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427332] pci 0000:20:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427332] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427332] release child resource [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427332] release child resource [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427332] pci 0000:20:01.0: resource 9 [mem 0xb1100000-0xb11fffff 64bit pref] released
[    0.427332] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427332] release child resource [mem 0xb1200000-0xb1200fff 64bit]
[    0.427332] pci 0000:20:02.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[    0.427332] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427332] pci 0000:20:04.0: resource 8 [mem 0xb1300000-0xb92fffff] released
[    0.427332] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427332] release child resource [mem 0xb1000000-0xb10fffff]
[    0.427332] pci 0000:1f:00.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.427332] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427332] pci 0000:19:04.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.427332] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427332] release child resource [mem 0xb0b00000-0xb0b00fff]
[    0.427332] release child resource [mem 0xb0b01000-0xb0b01fff]
[    0.427332] release child resource [mem 0xb0b02000-0xb0b020ff]
[    0.427332] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427332] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427332] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427332] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427332] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427332] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427332] release child resource [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427332] release child resource [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427332] pci 0000:19:01.0: resource 9 [mem 0xb0d00000-0xb0dfffff 64bit pref] released
[    0.427332] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427332] release child resource [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427332] pci 0000:19:02.0: resource 8 [mem 0xb0e00000-0xb0efffff] released
[    0.427332] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427332] release child resource [mem 0xb0c00000-0xb0cfffff]
[    0.427332] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427332] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427332] pci 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427332] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427332] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.427332] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.427332] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.427332] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427332] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[    0.427332] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427332] pci 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[    0.427332] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427332] pci 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[    0.427332] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427332] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427332] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427332] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427332] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427332] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427332] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.427332] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427332] release child resource [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427332] release child resource [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427332] pci 0000:00:1c.0: resource 9 [mem 0x8f900000-0x8f9fffff 64bit pref] released
[    0.427332] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427332] release child resource [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427332] release child resource [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427332] pci 0000:00:1c.1: resource 8 [mem 0x8fa00000-0x8fafffff] released
[    0.427332] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427332] release child resource [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427332] pci 0000:00:1c.2: resource 8 [mem 0x8fb00000-0x8fbfffff] released
[    0.427332] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427332] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427332] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427332] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.427332] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.427332] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427332] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427332] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427332] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427332] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427332] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.427332] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.427332] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427332] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427332] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427332] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427332] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.427332] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427332] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427332] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427332] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427332] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.427332] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427332] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427332] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.427332] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427332] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427332] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427332] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.427332] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.427332] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427332] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427332] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427332] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.427332] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.427332] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.427332] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.427332] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427332] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.427332] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427332] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.427332] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.427332] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427332] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427332] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427332] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427332] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.427332] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427332] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.427332] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427332] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427332] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427332] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427332] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427332] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427332] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427332] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.427332] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.427332] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.427332] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427332] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427332] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427332] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427332] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427332] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427332] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427332] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427332] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427332] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.427332] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427332] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427332] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427332] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.427332] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427332] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427332] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427332] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427332] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.427332] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427332] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.427332] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.427332] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427332] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427332] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427332] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427332] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.427332] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.427332] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.427332] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427332] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427332] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427332] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427332] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427332] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427332] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427332] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427332] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427332] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.427332] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427332] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.427332] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427332] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.427332] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427332] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.427332] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.427332] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.427332] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.427332] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427332] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.427332] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427332] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427332] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.427332] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427332] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.427332] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.427332] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427332] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.427332] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427332] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427332] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.427332] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427332] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427332] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.427332] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.427332] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427332] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.427332] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.427332] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427332] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.427332] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.427332] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427332] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.427332] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.427332] pci_bus 0000:00: No. 8 try to assign unassigned res
[    0.427332] release child resource [mem 0xb0f00000-0xb0f00fff]
[    0.427332] release child resource [mem 0xb0f01000-0xb0f01fff]
[    0.427332] release child resource [mem 0xb0f02000-0xb0f020ff]
[    0.427332] pci 0000:22:03.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427332] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427332] pci 0000:21:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427332] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427332] pci 0000:20:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427332] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427332] release child resource [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427332] release child resource [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427332] pci 0000:20:01.0: resource 9 [mem 0xb1100000-0xb11fffff 64bit pref] released
[    0.427332] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427332] release child resource [mem 0xb1200000-0xb1200fff 64bit]
[    0.427332] pci 0000:20:02.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[    0.427332] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427332] pci 0000:20:04.0: resource 8 [mem 0xb1300000-0xb92fffff] released
[    0.427332] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427332] release child resource [mem 0xb1000000-0xb10fffff]
[    0.427332] pci 0000:1f:00.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.427332] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427332] pci 0000:19:04.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.427332] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427332] release child resource [mem 0xb0b00000-0xb0b00fff]
[    0.427332] release child resource [mem 0xb0b01000-0xb0b01fff]
[    0.427332] release child resource [mem 0xb0b02000-0xb0b020ff]
[    0.427332] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427332] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427332] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427332] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427332] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427332] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427332] release child resource [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427332] release child resource [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427332] pci 0000:19:01.0: resource 9 [mem 0xb0d00000-0xb0dfffff 64bit pref] released
[    0.427332] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427332] release child resource [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427332] pci 0000:19:02.0: resource 8 [mem 0xb0e00000-0xb0efffff] released
[    0.427332] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427332] release child resource [mem 0xb0c00000-0xb0cfffff]
[    0.427332] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427332] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427332] pci 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427332] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427332] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.427332] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.427332] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.427332] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427332] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[    0.427332] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427332] pci 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[    0.427332] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427332] pci 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[    0.427332] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427332] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427332] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427332] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427332] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427332] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427332] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.427332] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427332] release child resource [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427332] release child resource [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427332] pci 0000:00:1c.0: resource 9 [mem 0x8f900000-0x8f9fffff 64bit pref] released
[    0.427332] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427332] release child resource [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427332] release child resource [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427332] pci 0000:00:1c.1: resource 8 [mem 0x8fa00000-0x8fafffff] released
[    0.427332] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427332] release child resource [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427332] pci 0000:00:1c.2: resource 8 [mem 0x8fb00000-0x8fbfffff] released
[    0.427332] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427332] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427332] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427332] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.427332] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.427332] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427332] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427332] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427332] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427332] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427332] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.427332] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.427332] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427332] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427332] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427332] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427332] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.427332] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427332] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427332] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427332] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427332] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.427332] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427332] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427332] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.427332] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427332] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427332] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427332] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.427332] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.427332] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427332] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427332] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427332] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.427332] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.427332] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.427332] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.427332] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427332] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.427332] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427332] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.427332] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.427332] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427332] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427332] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427332] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427332] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.427332] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427332] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.427332] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427332] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427332] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427332] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427332] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427332] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427332] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427332] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.427332] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.427332] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.427332] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427332] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427332] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427332] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427332] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427332] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427332] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427332] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427332] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427332] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.427332] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427332] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427332] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427332] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.427332] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427332] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427332] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427332] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427332] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.427332] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427332] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.427332] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.427332] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427332] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427332] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427332] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427332] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.427332] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.427332] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.427332] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427332] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427332] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427332] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427332] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427332] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427332] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427332] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427332] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427332] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.427332] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427332] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.427332] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427332] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.427332] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427332] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.427332] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.427332] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.427332] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.427332] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427332] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.427332] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427332] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427332] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.427332] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427332] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.427332] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.427332] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427332] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.427332] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427332] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427332] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.427332] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427332] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427332] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.433337] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.433350] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.433353] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.433360] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.433372] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.433376] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.433382] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.433394] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.433397] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.433402] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.433409] pci_bus 0000:00: No. 9 try to assign unassigned res
[    0.433412] release child resource [mem 0xb0f00000-0xb0f00fff]
[    0.433412] release child resource [mem 0xb0f01000-0xb0f01fff]
[    0.433413] release child resource [mem 0xb0f02000-0xb0f020ff]
[    0.433414] pci 0000:22:03.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.433416] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.433428] pci 0000:21:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.433431] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.433443] pci 0000:20:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.433446] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.433456] release child resource [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.433457] release child resource [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.433458] pci 0000:20:01.0: resource 9 [mem 0xb1100000-0xb11fffff 64bit pref] released
[    0.433460] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.433483] release child resource [mem 0xb1200000-0xb1200fff 64bit]
[    0.433484] pci 0000:20:02.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[    0.433486] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.433497] pci 0000:20:04.0: resource 8 [mem 0xb1300000-0xb92fffff] released
[    0.433499] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.433509] release child resource [mem 0xb1000000-0xb10fffff]
[    0.433510] pci 0000:1f:00.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.433512] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.433523] pci 0000:19:04.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.433525] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.433533] release child resource [mem 0xb0b00000-0xb0b00fff]
[    0.433534] release child resource [mem 0xb0b01000-0xb0b01fff]
[    0.433534] release child resource [mem 0xb0b02000-0xb0b020ff]
[    0.433535] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.433537] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.433547] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.433549] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.433559] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.433561] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.433569] release child resource [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.433570] release child resource [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.433571] pci 0000:19:01.0: resource 9 [mem 0xb0d00000-0xb0dfffff 64bit pref] released
[    0.433573] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.433589] release child resource [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.433590] pci 0000:19:02.0: resource 8 [mem 0xb0e00000-0xb0efffff] released
[    0.433593] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.433600] release child resource [mem 0xb0c00000-0xb0cfffff]
[    0.433601] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.433604] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.433612] pci 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.433614] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.433619] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.433620] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.433621] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.433623] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.433628] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[    0.433631] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.433636] pci 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[    0.433639] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.433644] pci 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[    0.433646] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.433651] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.433654] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.433660] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.433662] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.433666] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.433667] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.433670] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.433673] release child resource [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.433674] release child resource [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.433675] pci 0000:00:1c.0: resource 9 [mem 0x8f900000-0x8f9fffff 64bit pref] released
[    0.433678] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.433684] release child resource [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.433685] release child resource [mem 0x8fa20000-0x8fa2ffff pref]
[    0.433686] pci 0000:00:1c.1: resource 8 [mem 0x8fa00000-0x8fafffff] released
[    0.433688] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.433692] release child resource [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.433693] pci 0000:00:1c.2: resource 8 [mem 0x8fb00000-0x8fbfffff] released
[    0.433695] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.433715] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.433721] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.433726] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.433730] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.433736] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.433740] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.433743] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.433752] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.433760] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.433763] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.433766] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.433769] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.433773] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.433789] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.433804] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.433809] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.433813] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.433820] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.433834] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.433837] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.433842] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.433850] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.433865] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.433870] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.433878] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.433881] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.433884] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.433887] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.433890] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.433893] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.433895] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.433898] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.433901] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.433904] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.433907] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.433910] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.433912] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.433915] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.433918] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.433921] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.433924] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.433931] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.433937] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.433944] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.433955] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.433959] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.433966] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.433978] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.433981] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.433983] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.433987] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.433989] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.433992] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.433995] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.433998] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.434000] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.434003] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.434006] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.434009] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.434011] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.434014] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.434017] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.434020] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.434023] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.434033] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.434043] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.434053] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.434066] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.434091] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.434104] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.434129] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.434140] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.434160] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.434190] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.434220] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.434231] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.434238] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.434253] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.434283] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.434294] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.434313] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.434316] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.434319] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.434322] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.434325] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.434327] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.434330] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.434333] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.434336] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.434338] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.434341] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.434344] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.434346] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.434349] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.434352] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.434355] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.434358] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.434370] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.434383] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.434396] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.434413] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.434446] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.434463] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.434496] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.434510] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.434537] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.434577] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.434616] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.434631] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.434641] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.434661] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.434700] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.434715] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.434741] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.434748] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.434762] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.434789] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.434795] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.434834] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.434841] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.434855] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.434882] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.434886] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.434897] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.434916] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.434921] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.434949] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.434954] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.434964] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.434983] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.434987] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.434994] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.435005] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.435009] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.435016] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.435028] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.435031] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.435038] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.435050] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.435054] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.435060] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.435072] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.435075] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.435080] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.435088] pci_bus 0000:00: No. 10 try to assign unassigned res
[    0.435090] release child resource [mem 0xb0f00000-0xb0f00fff]
[    0.435090] release child resource [mem 0xb0f01000-0xb0f01fff]
[    0.435091] release child resource [mem 0xb0f02000-0xb0f020ff]
[    0.435092] pci 0000:22:03.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.435094] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.435107] pci 0000:21:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.435109] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.435121] pci 0000:20:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.435124] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.435134] release child resource [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.435135] release child resource [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.435136] pci 0000:20:01.0: resource 9 [mem 0xb1100000-0xb11fffff 64bit pref] released
[    0.435138] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.435161] release child resource [mem 0xb1200000-0xb1200fff 64bit]
[    0.435162] pci 0000:20:02.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[    0.435164] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.435174] pci 0000:20:04.0: resource 8 [mem 0xb1300000-0xb92fffff] released
[    0.435177] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.435187] release child resource [mem 0xb1000000-0xb10fffff]
[    0.435188] pci 0000:1f:00.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.435190] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.435201] pci 0000:19:04.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.435203] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.435211] release child resource [mem 0xb0b00000-0xb0b00fff]
[    0.435211] release child resource [mem 0xb0b01000-0xb0b01fff]
[    0.435212] release child resource [mem 0xb0b02000-0xb0b020ff]
[    0.435213] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.435215] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.435225] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.435227] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.435237] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.435239] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.435247] release child resource [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.435247] release child resource [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.435248] pci 0000:19:01.0: resource 9 [mem 0xb0d00000-0xb0dfffff 64bit pref] released
[    0.435251] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.435267] release child resource [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.435268] pci 0000:19:02.0: resource 8 [mem 0xb0e00000-0xb0efffff] released
[    0.435270] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.435278] release child resource [mem 0xb0c00000-0xb0cfffff]
[    0.435279] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.435281] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.435290] pci 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.435292] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.435297] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.435298] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.435298] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.435301] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.435306] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[    0.435308] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.435314] pci 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[    0.435316] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.435322] pci 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[    0.435324] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.435329] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.435331] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.435338] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.435340] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.435344] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.435345] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.435347] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.435351] release child resource [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.435352] release child resource [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.435353] pci 0000:00:1c.0: resource 9 [mem 0x8f900000-0x8f9fffff 64bit pref] released
[    0.435355] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.435362] release child resource [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.435362] release child resource [mem 0x8fa20000-0x8fa2ffff pref]
[    0.435363] pci 0000:00:1c.1: resource 8 [mem 0x8fa00000-0x8fafffff] released
[    0.435366] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.435369] release child resource [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.435370] pci 0000:00:1c.2: resource 8 [mem 0x8fb00000-0x8fbfffff] released
[    0.435373] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.435385] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.435389] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.435392] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.435395] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.435398] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.435401] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.435404] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.435408] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.435416] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.435418] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.435421] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.435424] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.435428] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.435444] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.435459] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.435464] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.435468] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.435475] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.435489] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.435492] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.435497] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.435505] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.435520] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.435525] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.435533] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.435536] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.435538] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.435542] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.435545] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.435547] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.435550] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.435553] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.435556] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.435559] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.435562] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.435564] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.435567] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.435570] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.435573] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.435576] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.435579] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.435586] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.435592] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.435599] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.435610] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.435614] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.435621] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.435633] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.435636] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.435639] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.435642] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.435645] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.435648] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.435651] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.435653] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.435656] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.435659] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.435662] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.435664] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.435667] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.435670] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.435673] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.435675] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.435678] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.435688] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.435698] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.435708] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.435722] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.435746] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.435760] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.435785] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.435795] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.435815] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.435845] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.435875] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.435886] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.435894] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.435908] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.435939] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.435949] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.435969] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.435971] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.435974] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.435977] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.435980] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.435983] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.435986] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.435988] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.435991] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.435994] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.435997] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.435999] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.436002] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.436005] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.436008] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.436011] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.436013] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.436026] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.436039] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.436051] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.436069] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.436101] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.436119] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.436151] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.436166] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.436193] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.436232] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.436272] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.436286] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.436297] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.436316] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.436356] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.436370] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.436397] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.436403] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.436417] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.436444] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.436450] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.436490] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.436496] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.436510] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.436537] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.436542] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.436552] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.436572] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.436577] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.436604] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.436609] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.436619] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.436638] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.436642] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.436649] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.436661] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.436664] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.436671] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.436683] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.436686] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.436693] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.436705] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.436709] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.436715] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.436726] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.436729] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.436734] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.436742] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.436745] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.436747] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000fffff window]
[    0.436750] pci_bus 0000:00: resource 7 [mem 0x8f900000-0xfeafffff window]
[    0.436752] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff window]
[    0.436755] pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
[    0.436757] pci_bus 0000:01: resource 1 [mem 0xa8800000-0xa88fffff]
[    0.436759] pci_bus 0000:01: resource 2 [mem 0x90000000-0x9fffffff 64bit pref]
[    0.436762] pci_bus 0000:02: resource 1 [mem 0xa8700000-0xa87fffff]
[    0.436765] pci_bus 0000:02: resource 2 [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.436767] pci_bus 0000:03: resource 1 [mem 0x8fa00000-0x8fafffff]
[    0.436770] pci_bus 0000:04: resource 1 [mem 0x8fb00000-0x8fbfffff]
[    0.436772] pci_bus 0000:05: resource 0 [io  0x4000-0xbfff]
[    0.436774] pci_bus 0000:05: resource 1 [mem 0xa8a00000-0xd90fffff]
[    0.436777] pci_bus 0000:06: resource 0 [io  0x4000-0xbfff]
[    0.436779] pci_bus 0000:06: resource 1 [mem 0xa8a00000-0xd90fffff]
[    0.436781] pci_bus 0000:07: resource 1 [mem 0xa8a00000-0xa8afffff]
[    0.436784] pci_bus 0000:08: resource 0 [io  0x4000-0x4fff]
[    0.436786] pci_bus 0000:08: resource 1 [mem 0xa8b00000-0xb0afffff]
[    0.436788] pci_bus 0000:18: resource 0 [io  0x5000-0x9fff]
[    0.436790] pci_bus 0000:18: resource 1 [mem 0xb0b00000-0xc90fffff]
[    0.436793] pci_bus 0000:19: resource 0 [io  0x5000-0x8fff]
[    0.436795] pci_bus 0000:19: resource 1 [mem 0xb0b00000-0xc90fffff]
[    0.436797] pci_bus 0000:1a: resource 1 [mem 0xb0b00000-0xb0bfffff]
[    0.436799] pci_bus 0000:1b: resource 1 [mem 0xb0b00000-0xb0bfffff]
[    0.436802] pci_bus 0000:1c: resource 1 [mem 0xb0b00000-0xb0bfffff]
[    0.436804] pci_bus 0000:1d: resource 1 [mem 0xb0c00000-0xb0cfffff]
[    0.436806] pci_bus 0000:1d: resource 2 [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.436809] pci_bus 0000:1e: resource 1 [mem 0xb0e00000-0xb0efffff]
[    0.436812] pci_bus 0000:1f: resource 0 [io  0x5000-0x7fff]
[    0.436814] pci_bus 0000:1f: resource 1 [mem 0xb0f00000-0xc11fffff]
[    0.436816] pci_bus 0000:20: resource 0 [io  0x5000-0x6fff]
[    0.436818] pci_bus 0000:20: resource 1 [mem 0xb0f00000-0xc11fffff]
[    0.436821] pci_bus 0000:21: resource 1 [mem 0xb0f00000-0xb0ffffff]
[    0.436823] pci_bus 0000:22: resource 1 [mem 0xb0f00000-0xb0ffffff]
[    0.436825] pci_bus 0000:23: resource 1 [mem 0xb0f00000-0xb0ffffff]
[    0.436827] pci_bus 0000:24: resource 1 [mem 0xb1000000-0xb10fffff]
[    0.436830] pci_bus 0000:24: resource 2 [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.436833] pci_bus 0000:25: resource 1 [mem 0xb1200000-0xb12fffff]
[    0.436835] pci_bus 0000:26: resource 0 [io  0x5000-0x5fff]
[    0.436837] pci_bus 0000:26: resource 1 [mem 0xb1300000-0xb92fffff]
[    0.436839] pci_bus 0000:36: resource 0 [io  0x6000-0x6fff]
[    0.436842] pci_bus 0000:46: resource 0 [io  0x8000-0x8fff]
[    0.436844] pci_bus 0000:56: resource 0 [io  0xa000-0xafff]
[    0.436846] pci_bus 0000:56: resource 1 [mem 0xc9100000-0xd10fffff]
[    0.436848] pci_bus 0000:66: resource 0 [io  0xb000-0xbfff]
[    0.436851] pci_bus 0000:66: resource 1 [mem 0xd1100000-0xd90fffff]
[    0.437285] pci 0000:01:00.1: D0 power state depends on 0000:01:00.0
[    0.437301] pci 0000:05:00.0: CLS mismatch (256 != 128), using 64 bytes
[    0.437316] pci 0000:1c:00.0: MSI is not implemented on this device, disabling it
[    0.437318] pci 0000:1c:00.0: PME# is unreliable, disabling it
[    0.437613] pci 0000:1c:00.1: MSI is not implemented on this device, disabling it
[    0.437617] pci 0000:1c:00.1: PME# is unreliable, disabling it
[    0.437695] pci 0000:1c:00.2: MSI is not implemented on this device, disabling it
[    0.437698] pci 0000:1c:00.2: PME# is unreliable, disabling it
[    0.437753] pci 0000:1c:00.2: EHCI: unrecognized capability 00
[    0.437792] pci 0000:23:00.0: MSI is not implemented on this device, disabling it
[    0.437795] pci 0000:23:00.0: PME# is unreliable, disabling it
[    0.438049] pci 0000:23:00.1: MSI is not implemented on this device, disabling it
[    0.438052] pci 0000:23:00.1: PME# is unreliable, disabling it
[    0.438146] pci 0000:23:00.2: MSI is not implemented on this device, disabling it
[    0.438149] pci 0000:23:00.2: PME# is unreliable, disabling it
[    0.438216] pci 0000:23:00.2: EHCI: unrecognized capability 00
[    0.438255] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.438258] software IO TLB: mapped [mem 0x0000000083000000-0x0000000087000000] (64MB)
[    0.438266] ACPI: bus type thunderbolt registered
[    0.438294] Trying to unpack rootfs image as initramfs...
[    0.438349] thunderbolt 0000:07:00.0: total paths: 32
[    0.438524] thunderbolt 0000:07:00.0: allocating TX ring 0 of size 10
[    0.438544] thunderbolt 0000:07:00.0: allocating RX ring 0 of size 10
[    0.438556] thunderbolt 0000:07:00.0: control channel created
[    0.438559] thunderbolt 0000:07:00.0: ICM not supported on this controller
[    0.438568] thunderbolt 0000:07:00.0: freeing RX ring 0
[    0.438575] thunderbolt 0000:07:00.0: freeing TX ring 0
[    0.438585] thunderbolt 0000:07:00.0: allocating TX ring 0 of size 10
[    0.438593] thunderbolt 0000:07:00.0: allocating RX ring 0 of size 10
[    0.438601] thunderbolt 0000:07:00.0: control channel created
[    0.438603] thunderbolt 0000:07:00.0: using software connection manager
[    0.438618] thunderbolt 0000:07:00.0: created link from 0000:06:03.0
[    0.438643] thunderbolt 0000:07:00.0: created link from 0000:06:04.0
[    0.438656] thunderbolt 0000:07:00.0: created link from 0000:06:05.0
[    0.438669] thunderbolt 0000:07:00.0: created link from 0000:06:06.0
[    0.438723] thunderbolt 0000:07:00.0: NHI initialized, starting thunderbolt
[    0.438724] thunderbolt 0000:07:00.0: control channel starting...
[    0.438726] thunderbolt 0000:07:00.0: starting TX ring 0
[    0.438734] thunderbolt 0000:07:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[    0.438736] thunderbolt 0000:07:00.0: starting RX ring 0
[    0.438744] thunderbolt 0000:07:00.0: enabling interrupt at register 0x38204 bit 0 (0x0 -> 0x1)
[    0.438747] thunderbolt 0000:07:00.0: security level set to user
[    0.438901] thunderbolt 0000:07:00.0: current switch config:
[    0.438903] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[    0.438905] thunderbolt 0000:07:00.0:   Max Port Number: 13
[    0.438906] thunderbolt 0000:07:00.0:   Config:
[    0.438907] thunderbolt 0000:07:00.0:    Upstream Port Number: 6 Depth: 0 Route String: 0x0 Enabled: 1, PlugEventsDelay: 255ms
[    0.438909] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[    0.465828] thunderbolt 0000:07:00.0: initializing Switch at 0x0 (depth: 0, up port: 6)
[    0.466338] thunderbolt 0000:07:00.0: 0: DROM version: 1
[    0.467873] thunderbolt 0000:07:00.0: 0: uid: 0x1000a13f2da20
[    0.470817] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    0.470819] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    0.470820] thunderbolt 0000:07:00.0:   Max counters: 32
[    0.470821] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.470822] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.473760] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    0.473762] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    0.473763] thunderbolt 0000:07:00.0:   Max counters: 32
[    0.473764] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.473765] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.476704] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    0.476706] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    0.476707] thunderbolt 0000:07:00.0:   Max counters: 32
[    0.476708] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.476709] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.477344] random: fast init done
[    0.479648] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    0.479650] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    0.479651] thunderbolt 0000:07:00.0:   Max counters: 32
[    0.479652] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.479653] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.479654] thunderbolt 0000:07:00.0: 0:5: disabled by eeprom
[    0.480544] thunderbolt 0000:07:00.0:  Port 6: 8086:1513 (Revision: 2, TB Version: 1, Type: NHI (0x2))
[    0.480546] thunderbolt 0000:07:00.0:   Max hop id (in/out): 31/31
[    0.480547] thunderbolt 0000:07:00.0:   Max counters: 32
[    0.480548] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.480549] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.481440] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    0.481442] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.481443] thunderbolt 0000:07:00.0:   Max counters: 1
[    0.481444] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.481445] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.482336] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    0.482338] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.482339] thunderbolt 0000:07:00.0:   Max counters: 1
[    0.482340] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.482341] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.483232] thunderbolt 0000:07:00.0:  Port 9: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    0.483234] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.483235] thunderbolt 0000:07:00.0:   Max counters: 1
[    0.483236] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.483237] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.484128] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    0.484130] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.484131] thunderbolt 0000:07:00.0:   Max counters: 1
[    0.484132] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.484133] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.485280] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[    0.485283] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    0.485284] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.485284] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.485285] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.486176] thunderbolt 0000:07:00.0:  Port 12: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0101))
[    0.486178] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    0.486179] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.486180] thunderbolt 0000:07:00.0:   NFC Credits: 0x700005
[    0.486181] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.487072] thunderbolt 0000:07:00.0:  Port 13: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0101))
[    0.487074] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    0.487075] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.487076] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.487076] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.502670] thunderbolt 0000:07:00.0: 0: TMU: current mode: HiFi
[    0.502798] thunderbolt 0000:07:00.0: 0:1: is connected, link is up (state: 2)
[    0.503053] thunderbolt 0000:07:00.0: current switch config:
[    0.503054] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[    0.503056] thunderbolt 0000:07:00.0:   Max Port Number: 13
[    0.503057] thunderbolt 0000:07:00.0:   Config:
[    0.503058] thunderbolt 0000:07:00.0:    Upstream Port Number: 1 Depth: 1 Route String: 0x1 Enabled: 1, PlugEventsDelay: 255ms
[    0.503059] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[    0.507661] thunderbolt 0000:07:00.0: initializing Switch at 0x1 (depth: 1, up port: 1)
[    0.525070] thunderbolt 0000:07:00.0: 1: reading drom (length: 0x97)
[    0.706007] Freeing initrd memory: 27980K
[    1.036514] thunderbolt 0000:07:00.0: 1: DROM version: 1
[    1.037538] thunderbolt 0000:07:00.0: 1: uid: 0x1000100189170
[    1.040481] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.040485] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.040488] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.040490] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.040492] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.043425] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.043429] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.043431] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.043433] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c0000e
[    1.043435] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.046368] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.046372] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.046374] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.046376] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.046378] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.049312] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.049316] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.049318] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.049320] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.049322] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.049324] thunderbolt 0000:07:00.0: 1:5: disabled by eeprom
[    1.049326] thunderbolt 0000:07:00.0: 1:6: disabled by eeprom
[    1.050208] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.050212] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.050214] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.050216] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.050218] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.051104] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.051108] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.051110] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.051112] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.051114] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.051116] thunderbolt 0000:07:00.0: 1:9: disabled by eeprom
[    1.052000] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[    1.052004] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.052006] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.052008] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.052010] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.053152] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[    1.053156] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    1.053158] thunderbolt 0000:07:00.0:   Max counters: 2
[    1.053160] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.053162] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.053164] thunderbolt 0000:07:00.0: 1:c: disabled by eeprom
[    1.053166] thunderbolt 0000:07:00.0: 1:d: disabled by eeprom
[    1.071082] thunderbolt 0000:07:00.0: 1: TMU: current mode: bi-directional, HiFi
[    1.071113] thunderbolt 0-1: new device found, vendor=0x1 device=0x8002
[    1.071120] thunderbolt 0-1: Apple, Inc. Thunderbolt Display
[    1.071218] thunderbolt 0000:07:00.0: 1:3: is connected, link is up (state: 2)
[    1.071477] thunderbolt 0000:07:00.0: current switch config:
[    1.071479] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[    1.071483] thunderbolt 0000:07:00.0:   Max Port Number: 13
[    1.071485] thunderbolt 0000:07:00.0:   Config:
[    1.071487] thunderbolt 0000:07:00.0:    Upstream Port Number: 3 Depth: 2 Route String: 0x301 Enabled: 1, PlugEventsDelay: 255ms
[    1.071490] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[    1.076086] thunderbolt 0000:07:00.0: initializing Switch at 0x301 (depth: 2, up port: 3)
[    1.093492] thunderbolt 0000:07:00.0: 301: reading drom (length: 0x97)
[    1.553515] random: crng init done
[    1.587179] thunderbolt 0000:07:00.0: 301: DROM version: 1
[    1.588203] thunderbolt 0000:07:00.0: 301: uid: 0x100010102a740
[    1.591146] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.591150] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.591153] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.591155] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.591157] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.594090] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.594094] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.594096] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.594098] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.594100] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.597034] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.597038] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.597040] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.597042] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.597044] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.599978] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.599981] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.599984] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.599985] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.599987] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.599989] thunderbolt 0000:07:00.0: 301:5: disabled by eeprom
[    1.599992] thunderbolt 0000:07:00.0: 301:6: disabled by eeprom
[    1.600874] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.600878] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.600880] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.600882] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.600884] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.601770] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.601773] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.601776] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.601777] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.601779] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.601781] thunderbolt 0000:07:00.0: 301:9: disabled by eeprom
[    1.602666] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[    1.602670] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.602672] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.602674] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.602676] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.603818] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[    1.603822] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    1.603824] thunderbolt 0000:07:00.0:   Max counters: 2
[    1.603826] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.603828] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.603830] thunderbolt 0000:07:00.0: 301:c: disabled by eeprom
[    1.603832] thunderbolt 0000:07:00.0: 301:d: disabled by eeprom
[    1.622089] thunderbolt 0000:07:00.0: 301: TMU: current mode: bi-directional, HiFi
[    1.622110] thunderbolt 0-301: new device found, vendor=0x1 device=0x8002
[    1.622118] thunderbolt 0-301: Apple, Inc. Thunderbolt Display
[    1.622214] thunderbolt 0000:07:00.0: 301:1: is unplugged (state: 7)
[    1.622472] thunderbolt 0000:07:00.0: 301:b: DP adapter HPD set, queuing hotplug
[    1.622856] thunderbolt 0000:07:00.0: 0:3: is unplugged (state: 7)
[    1.623369] thunderbolt 0000:07:00.0: discovering PCIe Up path starting from 0:7
[    1.623497] thunderbolt 0000:07:00.0: 0:7:  In HopID: 8 => Out port: 1 Out HopID: 8
[    1.623501] thunderbolt 0000:07:00.0: 0:7:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.623504] thunderbolt 0000:07:00.0: 0:7:    Counter enabled: 1 Counter index: 0
[    1.623507] thunderbolt 0000:07:00.0: 0:7:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.623510] thunderbolt 0000:07:00.0: 0:7:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.623625] thunderbolt 0000:07:00.0: 1:1:  In HopID: 8 => Out port: 10 Out HopID: 8
[    1.623628] thunderbolt 0000:07:00.0: 1:1:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.623631] thunderbolt 0000:07:00.0: 1:1:    Counter enabled: 1 Counter index: 0
[    1.623633] thunderbolt 0000:07:00.0: 1:1:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.623636] thunderbolt 0000:07:00.0: 1:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.623639] thunderbolt 0000:07:00.0: path discovery complete
[    1.624136] thunderbolt 0000:07:00.0: discovering PCIe Down path starting from 1:10
[    1.624265] thunderbolt 0000:07:00.0: 1:a:  In HopID: 8 => Out port: 1 Out HopID: 8
[    1.624268] thunderbolt 0000:07:00.0: 1:a:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.624271] thunderbolt 0000:07:00.0: 1:a:    Counter enabled: 1 Counter index: 0
[    1.624273] thunderbolt 0000:07:00.0: 1:a:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.624276] thunderbolt 0000:07:00.0: 1:a:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.624393] thunderbolt 0000:07:00.0: 0:1:  In HopID: 8 => Out port: 7 Out HopID: 8
[    1.624396] thunderbolt 0000:07:00.0: 0:1:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.624398] thunderbolt 0000:07:00.0: 0:1:    Counter enabled: 1 Counter index: 0
[    1.624401] thunderbolt 0000:07:00.0: 0:1:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.624404] thunderbolt 0000:07:00.0: 0:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.624407] thunderbolt 0000:07:00.0: path discovery complete
[    1.624520] thunderbolt 0000:07:00.0: 0:7 <-> 1:a (PCI): discovered
[    1.625288] thunderbolt 0000:07:00.0: discovering Video path starting from 0:12
[    1.625417] thunderbolt 0000:07:00.0: 0:c:  In HopID: 9 => Out port: 2 Out HopID: 9
[    1.625420] thunderbolt 0000:07:00.0: 0:c:   Weight: 1 Priority: 2 Credits: 2 Drop: 0
[    1.625423] thunderbolt 0000:07:00.0: 0:c:    Counter enabled: 1 Counter index: 0
[    1.625425] thunderbolt 0000:07:00.0: 0:c:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.625428] thunderbolt 0000:07:00.0: 0:c:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.625545] thunderbolt 0000:07:00.0: 1:2:  In HopID: 9 => Out port: 11 Out HopID: 9
[    1.625548] thunderbolt 0000:07:00.0: 1:2:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.625550] thunderbolt 0000:07:00.0: 1:2:    Counter enabled: 1 Counter index: 0
[    1.625553] thunderbolt 0000:07:00.0: 1:2:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.625556] thunderbolt 0000:07:00.0: 1:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.625558] thunderbolt 0000:07:00.0: path discovery complete
[    1.625803] thunderbolt 0000:07:00.0: discovering AUX TX path starting from 0:12
[    1.625929] thunderbolt 0000:07:00.0: 0:c:  In HopID: 8 => Out port: 2 Out HopID: 8
[    1.625932] thunderbolt 0000:07:00.0: 0:c:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.625935] thunderbolt 0000:07:00.0: 0:c:    Counter enabled: 1 Counter index: 1
[    1.625937] thunderbolt 0000:07:00.0: 0:c:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.625940] thunderbolt 0000:07:00.0: 0:c:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.626057] thunderbolt 0000:07:00.0: 1:2:  In HopID: 8 => Out port: 11 Out HopID: 8
[    1.626060] thunderbolt 0000:07:00.0: 1:2:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.626062] thunderbolt 0000:07:00.0: 1:2:    Counter enabled: 1 Counter index: 1
[    1.626065] thunderbolt 0000:07:00.0: 1:2:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.626068] thunderbolt 0000:07:00.0: 1:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.626070] thunderbolt 0000:07:00.0: path discovery complete
[    1.626568] thunderbolt 0000:07:00.0: discovering AUX RX path starting from 1:11
[    1.626697] thunderbolt 0000:07:00.0: 1:b:  In HopID: 8 => Out port: 2 Out HopID: 8
[    1.626700] thunderbolt 0000:07:00.0: 1:b:   Weight: 1 Priority: 2 Credits: 7 Drop: 0
[    1.626702] thunderbolt 0000:07:00.0: 1:b:    Counter enabled: 1 Counter index: 0
[    1.626705] thunderbolt 0000:07:00.0: 1:b:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.626708] thunderbolt 0000:07:00.0: 1:b:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.626824] thunderbolt 0000:07:00.0: 0:2:  In HopID: 8 => Out port: 12 Out HopID: 8
[    1.626827] thunderbolt 0000:07:00.0: 0:2:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.626830] thunderbolt 0000:07:00.0: 0:2:    Counter enabled: 1 Counter index: 0
[    1.626833] thunderbolt 0000:07:00.0: 0:2:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.626836] thunderbolt 0000:07:00.0: 0:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.626838] thunderbolt 0000:07:00.0: path discovery complete
[    1.627080] thunderbolt 0000:07:00.0: 0:c <-> 1:b (DP): discovered
[    1.627592] thunderbolt 0000:07:00.0: discovering PCIe Up path starting from 1:7
[    1.627720] thunderbolt 0000:07:00.0: 1:7:  In HopID: 8 => Out port: 3 Out HopID: 8
[    1.627723] thunderbolt 0000:07:00.0: 1:7:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.627726] thunderbolt 0000:07:00.0: 1:7:    Counter enabled: 1 Counter index: 0
[    1.627729] thunderbolt 0000:07:00.0: 1:7:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.627732] thunderbolt 0000:07:00.0: 1:7:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.627848] thunderbolt 0000:07:00.0: 301:3:  In HopID: 8 => Out port: 10 Out HopID: 8
[    1.627851] thunderbolt 0000:07:00.0: 301:3:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.627854] thunderbolt 0000:07:00.0: 301:3:    Counter enabled: 1 Counter index: 0
[    1.627857] thunderbolt 0000:07:00.0: 301:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.627860] thunderbolt 0000:07:00.0: 301:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.627863] thunderbolt 0000:07:00.0: path discovery complete
[    1.628360] thunderbolt 0000:07:00.0: discovering PCIe Down path starting from 301:10
[    1.628488] thunderbolt 0000:07:00.0: 301:a:  In HopID: 8 => Out port: 3 Out HopID: 8
[    1.628491] thunderbolt 0000:07:00.0: 301:a:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.628494] thunderbolt 0000:07:00.0: 301:a:    Counter enabled: 1 Counter index: 0
[    1.628497] thunderbolt 0000:07:00.0: 301:a:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.628500] thunderbolt 0000:07:00.0: 301:a:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.628616] thunderbolt 0000:07:00.0: 1:3:  In HopID: 8 => Out port: 7 Out HopID: 8
[    1.628619] thunderbolt 0000:07:00.0: 1:3:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.628622] thunderbolt 0000:07:00.0: 1:3:    Counter enabled: 1 Counter index: 0
[    1.628625] thunderbolt 0000:07:00.0: 1:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.628628] thunderbolt 0000:07:00.0: 1:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.628630] thunderbolt 0000:07:00.0: path discovery complete
[    1.628744] thunderbolt 0000:07:00.0: 1:7 <-> 301:a (PCI): discovered
[    1.629131] thunderbolt 0000:07:00.0: 0:c: DP IN resource available
[    1.629133] thunderbolt 0000:07:00.0: 0:d: DP IN resource available
[    1.629255] thunderbolt 0000:07:00.0: 301:b: DP OUT resource available
[    1.629258] thunderbolt 0000:07:00.0: looking for DP IN <-> DP OUT pairs:
[    1.629316] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer
[    1.629320] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[    1.629322] RAPL PMU: hw unit of domain package 2^-16 Joules
[    1.629324] RAPL PMU: hw unit of domain pp1-gpu 2^-16 Joules
[    1.629387] thunderbolt 0000:07:00.0: 0:c: in use
[    1.629513] thunderbolt 0000:07:00.0: 0:d: DP IN available
[    1.629640] thunderbolt 0000:07:00.0: 301:b: DP OUT available
[    1.629644] thunderbolt 0000:07:00.0: 0: allocated DP resource for port 13
[    1.629646] thunderbolt 0000:07:00.0: 301:b: calculating available bandwidth
[    1.629708] Initialise system trusted keyrings
[    1.629730] workingset: timestamp_bits=62 max_order=23 bucket_order=0
[    1.629766] thunderbolt 0000:07:00.0: 0:1: link total bandwidth 9000 Mb/s
[    1.629768] thunderbolt 0000:07:00.0: 1:1: link total bandwidth 9000 Mb/s
[    1.629892] thunderbolt 0000:07:00.0: 1:3: link total bandwidth 9000 Mb/s
[    1.629894] thunderbolt 0000:07:00.0: 301:3: link total bandwidth 9000 Mb/s
[    1.629895] thunderbolt 0000:07:00.0: available bandwidth for new DP tunnel 9000/9000 Mb/s
[    1.629900] thunderbolt 0000:07:00.0: 0:d <-> 301:b (DP): activating
[    1.629901] thunderbolt 0000:07:00.0: activating Video path from 0:13 to 301:11
[    1.629903] thunderbolt 0000:07:00.0: 301:4: adding 12 NFC credits to 0
[    1.630021] thunderbolt 0000:07:00.0: 1:2: adding 12 NFC credits to 14
[    1.630148] thunderbolt 0000:07:00.0: 0:d: adding 5 NFC credits to 0
[    1.630404] thunderbolt 0000:07:00.0: 301:4: Writing hop 2
[    1.630406] thunderbolt 0000:07:00.0: 301:4:  In HopID: 8 => Out port: 11 Out HopID: 9
[    1.630407] thunderbolt 0000:07:00.0: 301:4:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.630409] thunderbolt 0000:07:00.0: 301:4:    Counter enabled: 0 Counter index: 2047
[    1.630411] thunderbolt 0000:07:00.0: 301:4:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.630412] thunderbolt 0000:07:00.0: 301:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.630436] Key type asymmetric registered
[    1.630439] Asymmetric key parser 'x509' registered
[    1.630450] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
[    1.630662] thunderbolt 0000:07:00.0: 1:2: Writing hop 1
[    1.630663] thunderbolt 0000:07:00.0: 1:2:  In HopID: 10 => Out port: 4 Out HopID: 8
[    1.630665] thunderbolt 0000:07:00.0: 1:2:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.630666] thunderbolt 0000:07:00.0: 1:2:    Counter enabled: 0 Counter index: 2047
[    1.630667] thunderbolt 0000:07:00.0: 1:2:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.630669] thunderbolt 0000:07:00.0: 1:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.630917] thunderbolt 0000:07:00.0: 0:d: Writing hop 0
[    1.630919] thunderbolt 0000:07:00.0: 0:d:  In HopID: 9 => Out port: 2 Out HopID: 10
[    1.630920] thunderbolt 0000:07:00.0: 0:d:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.630921] thunderbolt 0000:07:00.0: 0:d:    Counter enabled: 0 Counter index: 2047
[    1.630923] thunderbolt 0000:07:00.0: 0:d:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.630924] thunderbolt 0000:07:00.0: 0:d:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.631045] thunderbolt 0000:07:00.0: path activation complete
[    1.631046] thunderbolt 0000:07:00.0: activating AUX TX path from 0:13 to 301:11
[    1.631173] thunderbolt 0000:07:00.0: 301:4: Writing hop 2
[    1.631175] thunderbolt 0000:07:00.0: 301:4:  In HopID: 9 => Out port: 11 Out HopID: 8
[    1.631176] thunderbolt 0000:07:00.0: 301:4:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.631177] thunderbolt 0000:07:00.0: 301:4:    Counter enabled: 0 Counter index: 2047
[    1.631179] thunderbolt 0000:07:00.0: 301:4:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.631180] thunderbolt 0000:07:00.0: 301:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.631247] pcieport 0000:06:03.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.631429] thunderbolt 0000:07:00.0: 1:2: Writing hop 1
[    1.631431] thunderbolt 0000:07:00.0: 1:2:  In HopID: 11 => Out port: 4 Out HopID: 9
[    1.631432] thunderbolt 0000:07:00.0: 1:2:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.631434] thunderbolt 0000:07:00.0: 1:2:    Counter enabled: 0 Counter index: 2047
[    1.631435] thunderbolt 0000:07:00.0: 1:2:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.631436] thunderbolt 0000:07:00.0: 1:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.631459] pcieport 0000:06:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.631685] thunderbolt 0000:07:00.0: 0:d: Writing hop 0
[    1.631685] pcieport 0000:06:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.631686] thunderbolt 0000:07:00.0: 0:d:  In HopID: 8 => Out port: 2 Out HopID: 11
[    1.631688] thunderbolt 0000:07:00.0: 0:d:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.631692] thunderbolt 0000:07:00.0: 0:d:    Counter enabled: 0 Counter index: 2047
[    1.631693] thunderbolt 0000:07:00.0: 0:d:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.631695] thunderbolt 0000:07:00.0: 0:d:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.631813] thunderbolt 0000:07:00.0: path activation complete
[    1.631814] thunderbolt 0000:07:00.0: activating AUX RX path from 301:11 to 0:13
[    1.631902] pcieport 0000:06:06.0: pciehp: Slot #6 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.631941] thunderbolt 0000:07:00.0: 0:2: Writing hop 2
[    1.631943] thunderbolt 0000:07:00.0: 0:2:  In HopID: 9 => Out port: 13 Out HopID: 8
[    1.631944] thunderbolt 0000:07:00.0: 0:2:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.631945] thunderbolt 0000:07:00.0: 0:2:    Counter enabled: 0 Counter index: 2047
[    1.631947] thunderbolt 0000:07:00.0: 0:2:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.631948] thunderbolt 0000:07:00.0: 0:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.632197] thunderbolt 0000:07:00.0: 1:4: Writing hop 1
[    1.632198] thunderbolt 0000:07:00.0: 1:4:  In HopID: 8 => Out port: 2 Out HopID: 9
[    1.632199] thunderbolt 0000:07:00.0: 1:4:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.632201] thunderbolt 0000:07:00.0: 1:4:    Counter enabled: 0 Counter index: 2047
[    1.632202] thunderbolt 0000:07:00.0: 1:4:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.632203] thunderbolt 0000:07:00.0: 1:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.632452] thunderbolt 0000:07:00.0: 301:b: Writing hop 0
[    1.632454] thunderbolt 0000:07:00.0: 301:b:  In HopID: 8 => Out port: 4 Out HopID: 8
[    1.632455] thunderbolt 0000:07:00.0: 301:b:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.632456] thunderbolt 0000:07:00.0: 301:b:    Counter enabled: 0 Counter index: 2047
[    1.632458] thunderbolt 0000:07:00.0: 301:b:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.632459] thunderbolt 0000:07:00.0: 301:b:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.632580] thunderbolt 0000:07:00.0: path activation complete
[    1.633249] pcieport 0000:19:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.633469] pcieport 0000:19:05.0: enabling device (0000 -> 0001)
[    1.633567] pcieport 0000:19:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.635468] pcieport 0000:20:04.0: enabling device (0000 -> 0003)
[    1.635591] pcieport 0000:20:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.635886] pcieport 0000:20:05.0: enabling device (0000 -> 0001)
[    1.636009] pcieport 0000:20:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.645047] brd: module loaded
[    1.645327] Intel(R) 2.5G Ethernet Linux Driver
[    1.645333] Copyright(c) 2018 Intel Corporation.
[    1.645377] i8042: PNP: No PS/2 controller found.
[    1.645418] mousedev: PS/2 mouse device common for all mice
[    1.645486] intel_pstate: Intel P-state driver initializing
[    1.645605] efifb: probing for efifb
[    1.645621] efifb: framebuffer at 0x90010000, using 14400k, total 14400k
[    1.645623] efifb: mode is 2560x1440x32, linelength=10240, pages=1
[    1.645626] efifb: scrolling: redraw
[    1.645627] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    1.655131] Console: switching to colour frame buffer device 320x90
[    1.664219] fb0: EFI VGA frame buffer device
[    1.664309] Key type dns_resolver registered
[    1.664365] microcode: sig=0x206a7, pf=0x2, revision=0x2f
[    1.664536] microcode: Microcode Update Driver: v2.2.
[    1.664538] IPI shorthand broadcast: enabled
[    1.664583] sched_clock: Marking stable (1664120354, 412859)->(1676496884, -11963671)
[    1.664678] registered taskstats version 1
[    1.664695] Loading compiled-in X.509 certificates
[    1.665188] Freeing unused kernel image (initmem) memory: 956K
[    1.803496] Write protecting the kernel read-only data: 12288k
[    1.804128] Freeing unused kernel image (text/rodata gap) memory: 2044K
[    1.804258] Freeing unused kernel image (rodata/data gap) memory: 188K
[    1.804288] Run /init as init process
[    1.804303]   with arguments:
[    1.804304]     /init
[    1.804305]   with environment:
[    1.804305]     HOME=/
[    1.804306]     TERM=linux
[    1.804307]     netconsole=6666@192.168.2.87/eth0,6666@192.168.2.208/dc:a6:32:61:33:da
[    1.847610] udevd[875]: starting version 3.2.9
[    1.848303] udevd[876]: starting eudev-3.2.9
[    1.862905] ACPI: bus type USB registered
[    1.862968] usbcore: registered new interface driver usbfs
[    1.863001] usbcore: registered new interface driver hub
[    1.863035] usbcore: registered new device driver usb
[    1.864655] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.864685] ACPI: bus type drm_connector registered
[    1.864940] ehci-pci: EHCI PCI platform driver
[    1.865152] ehci-pci 0000:00:1a.7: EHCI Host Controller
[    1.865184] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 1
[    1.865236] ehci-pci 0000:00:1a.7: debug port 2
[    1.865341] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.865679] uhci_hcd: USB Universal Host Controller Interface driver
[    1.869197] ehci-pci 0000:00:1a.7: irq 23, io mem 0xa8906c00
[    1.869371] ahci 0000:00:1f.2: version 3.0
[    1.870459] cryptd: max_cpu_qlen set to 1000
[    1.871703] AVX version of gcm_enc/dec engaged.
[    1.871738] AES CTR mode by8 optimization enabled
[    1.876635] radeon: unknown parameter 'pm' ignored
[    1.876745] [drm] radeon kernel modesetting enabled.
[    1.876797] checking generic (90010000 e10000) vs hw (90000000 10000000)
[    1.876798] fb0: switching to radeon from EFI VGA
[    1.876891] Console: switching to colour dummy device 80x25
[    1.876951] radeon 0000:01:00.0: vgaarb: deactivate vga console
[    1.877179] [drm] initializing kernel modesetting (BARTS 0x1002:0x6720 0x106B:0x0B00 0x00).
[    1.877184] radeon 0000:01:00.0: vram limit (0) must be a power of 2
[    1.879877] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x7 impl SATA mode
[    1.879885] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst
[    1.893409] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[    1.893634] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
[    1.893642] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.893648] usb usb1: Product: EHCI Host Controller
[    1.893652] usb usb1: Manufacturer: Linux 5.17.0+ ehci_hcd
[    1.893656] usb usb1: SerialNumber: 0000:00:1a.7
[    1.893871] hub 1-0:1.0: USB hub found
[    1.893887] hub 1-0:1.0: 6 ports detected
[    1.894216] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[    1.894227] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 2
[    1.894270] uhci_hcd 0000:00:1a.0: detected 2 ports
[    1.894434] uhci_hcd 0000:00:1a.0: irq 21, io port 0x00003140
[    1.894587] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17
[    1.894603] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.894642] usb usb2: Product: UHCI Host Controller
[    1.894646] usb usb2: Manufacturer: Linux 5.17.0+ uhci_hcd
[    1.894649] usb usb2: SerialNumber: 0000:00:1a.0
[    1.894743] hub 2-0:1.0: USB hub found
[    1.894754] hub 2-0:1.0: 2 ports detected
[    1.894922] ehci-pci 0000:00:1d.7: EHCI Host Controller
[    1.894934] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 3
[    1.895050] ehci-pci 0000:00:1d.7: debug port 2
[    1.899106] ehci-pci 0000:00:1d.7: irq 22, io mem 0xa8906800
[    1.903586] tg3 0000:02:00.0 eth0: Tigon3 [partno(BCM957765) rev 57785100] (PCI Express) MAC address 3c:07:54:14:b2:08
[    1.903593] tg3 0000:02:00.0 eth0: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    1.903597] tg3 0000:02:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    1.903600] tg3 0000:02:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[    1.923502] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    1.923525] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
[    1.923528] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.923531] usb usb3: Product: EHCI Host Controller
[    1.923533] usb usb3: Manufacturer: Linux 5.17.0+ ehci_hcd
[    1.923535] usb usb3: SerialNumber: 0000:00:1d.7
[    1.923541] firewire_ohci 0000:04:00.0: added OHCI v1.10 device as card 0, 8 IR + 8 IT contexts, quirks 0x0, physUB
[    1.923668] hub 3-0:1.0: USB hub found
[    1.923764] hub 3-0:1.0: 8 ports detected
[    1.924114] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    1.924127] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
[    1.924170] uhci_hcd 0000:00:1d.0: detected 2 ports
[    1.924373] uhci_hcd 0000:00:1d.0: irq 19, io port 0x000030e0
[    1.924501] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17
[    1.924507] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.924510] usb usb4: Product: UHCI Host Controller
[    1.924512] usb usb4: Manufacturer: Linux 5.17.0+ uhci_hcd
[    1.924514] usb usb4: SerialNumber: 0000:00:1d.0
[    1.924612] hub 4-0:1.0: USB hub found
[    1.924621] hub 4-0:1.0: 2 ports detected
[    1.925214] ehci-pci 0000:1c:00.2: EHCI Host Controller
[    1.925219] ehci-pci 0000:1c:00.2: new USB bus registered, assigned bus number 5
[    1.925529] ehci-pci 0000:1c:00.2: irq 17, io mem 0xb0b02000
[    1.933815] scsi host0: ahci
[    1.933924] scsi host1: ahci
[    1.934027] scsi host2: ahci
[    1.934123] scsi host3: ahci
[    1.934202] scsi host4: ahci
[    1.934277] scsi host5: ahci
[    1.934325] ata1: SATA max UDMA/133 abar m2048@0xa8906000 port 0xa8906100 irq 52
[    1.934346] ata2: SATA max UDMA/133 abar m2048@0xa8906000 port 0xa8906180 irq 52
[    1.934366] ata3: SATA max UDMA/133 abar m2048@0xa8906000 port 0xa8906200 irq 52
[    1.934371] ata4: DUMMY
[    1.934374] ata5: DUMMY
[    1.934376] ata6: DUMMY
[    1.963497] ehci-pci 0000:1c:00.2: USB 2.0 started, EHCI 1.00
[    1.963576] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
[    1.963580] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.963583] usb usb5: Product: EHCI Host Controller
[    1.963585] usb usb5: Manufacturer: Linux 5.17.0+ ehci_hcd
[    1.963587] usb usb5: SerialNumber: 0000:1c:00.2
[    1.963754] hub 5-0:1.0: USB hub found
[    1.963801] hub 5-0:1.0: 4 ports detected
[    1.964734] ehci-pci 0000:23:00.2: EHCI Host Controller
[    1.964741] ehci-pci 0000:23:00.2: new USB bus registered, assigned bus number 6
[    1.965082] ehci-pci 0000:23:00.2: irq 17, io mem 0xb0f02000
[    1.986368] tg3 0000:1d:00.0 eth1: Tigon3 [partno(BCM957761) rev 57785100] (PCI Express) MAC address c8:2a:14:4f:80:3e
[    1.986375] tg3 0000:1d:00.0 eth1: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    1.986378] tg3 0000:1d:00.0 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    1.986381] tg3 0000:1d:00.0 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[    1.993555] firewire_ohci 0000:1e:00.0: added OHCI v1.10 device as card 1, 8 IR + 8 IT contexts, quirks 0x0, physUB
[    2.003369] ehci-pci 0000:23:00.2: USB 2.0 started, EHCI 1.00
[    2.003419] usb usb6: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
[    2.003424] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.003427] usb usb6: Product: EHCI Host Controller
[    2.003448] usb usb6: Manufacturer: Linux 5.17.0+ ehci_hcd
[    2.003450] usb usb6: SerialNumber: 0000:23:00.2
[    2.003569] hub 6-0:1.0: USB hub found
[    2.003615] hub 6-0:1.0: 4 ports detected
[    2.063663] firewire_ohci 0000:25:00.0: added OHCI v1.10 device as card 2, 8 IR + 8 IT contexts, quirks 0x0, physUB
[    2.077627] tg3 0000:24:00.0 eth2: Tigon3 [partno(BCM957761) rev 57785100] (PCI Express) MAC address 38:c9:86:48:0c:c8
[    2.077633] tg3 0000:24:00.0 eth2: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    2.077637] tg3 0000:24:00.0 eth2: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    2.077640] tg3 0000:24:00.0 eth2: dma_rwctrl[00000001] dma_mask[64-bit]
[    2.208240] ATOM BIOS: Apple
[    2.208373] radeon 0000:01:00.0: VRAM: 1024M 0x0000000000000000 - 0x000000003FFFFFFF (1024M used)
[    2.208377] radeon 0000:01:00.0: GTT: 1024M 0x0000000040000000 - 0x000000007FFFFFFF
[    2.208384] [drm] Detected VRAM RAM=1024M, BAR=256M
[    2.208386] [drm] RAM width 256bits DDR
[    2.208401] [drm] radeon: 1024M of VRAM memory ready
[    2.208403] [drm] radeon: 1024M of GTT memory ready.
[    2.208409] [drm] Loading BARTS Microcode
[    2.208460] [drm] External GPIO thermal controller with fan control
[    2.208475] == power state 0 ==
[    2.208476] 	ui class: none
[    2.208478] 	internal class: boot
[    2.208480] 	caps:
[    2.208481] 	uvd    vclk: 0 dclk: 0
[    2.208483] 		power level 0    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    2.208485] 		power level 1    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    2.208487] 		power level 2    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    2.208489] 	status: c r b
[    2.208492] == power state 1 ==
[    2.208493] 	ui class: performance
[    2.208494] 	internal class: none
[    2.208496] 	caps:
[    2.208497] 	uvd    vclk: 0 dclk: 0
[    2.208498] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    2.208500] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    2.208502] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    2.208504] 	status:
[    2.208505] == power state 2 ==
[    2.208507] 	ui class: none
[    2.208508] 	internal class: uvd
[    2.208509] 	caps: video
[    2.208511] 	uvd    vclk: 54000 dclk: 40000
[    2.208512] 		power level 0    sclk: 29800 mclk: 90000 vddc: 950 vddci: 1100
[    2.208514] 		power level 1    sclk: 29800 mclk: 90000 vddc: 950 vddci: 1100
[    2.208516] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    2.208518] 	status:
[    2.208519] == power state 3 ==
[    2.208521] 	ui class: none
[    2.208522] 	internal class: uvd_mvc
[    2.208523] 	caps: video
[    2.208525] 	uvd    vclk: 70000 dclk: 56000
[    2.208526] 		power level 0    sclk: 50200 mclk: 90000 vddc: 1050 vddci: 1100
[    2.208528] 		power level 1    sclk: 50200 mclk: 90000 vddc: 1050 vddci: 1100
[    2.208530] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    2.208532] 	status:
[    2.208533] == power state 4 ==
[    2.208534] 	ui class: battery
[    2.208535] 	internal class: none
[    2.208537] 	caps:
[    2.208538] 	uvd    vclk: 0 dclk: 0
[    2.208539] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    2.208541] 		power level 1    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    2.208543] 		power level 2    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    2.208545] 	status:
[    2.213589] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    2.213594] [drm] radeon: dpm initialized
[    2.213672] [drm] GART: num cpu pages 262144, num gpu pages 262144
[    2.214040] [drm] enabling PCIE gen 2 link speeds, disable with radeon.pcie_gen2=0
[    2.219201] [drm] PCIE GART of 1024M enabled (table at 0x0000000000162000).
[    2.219301] radeon 0000:01:00.0: WB enabled
[    2.219304] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000040000c00
[    2.219307] radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000040000c0c
[    2.220053] radeon 0000:01:00.0: fence driver on ring 5 use gpu addr 0x0000000000072118
[    2.220387] radeon 0000:01:00.0: radeon: MSI limited to 32-bit
[    2.220417] radeon 0000:01:00.0: radeon: using MSI.
[    2.220443] [drm] radeon: irq initialized.
[    2.233340] usb 3-1: new high-speed USB device number 2 using ehci-pci
[    2.236791] [drm] ring test on 0 succeeded in 3 usecs
[    2.236804] [drm] ring test on 3 succeeded in 7 usecs
[    2.264681] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    2.266552] ata3.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    2.266559] ata3.00: ATAPI: OPTIARC DVD RW AD-5690H, 4AH5, max UDMA/100
[    2.268702] ata3.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    2.268710] ata3.00: configured for UDMA/100
[    2.274653] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    2.274727] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    2.276215] ata2.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    2.276330] ata1.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    2.276339] ata2.00: supports DRM functions and may not be fully accessible
[    2.276343] ata2.00: ATA-9: Samsung SSD 850 EVO 500GB, EMT02B6Q, max UDMA/133
[    2.276434] ata1.00: supports DRM functions and may not be fully accessible
[    2.276438] ata1.00: ATA-9: Samsung SSD 850 PRO 256GB, EXM03B6Q, max UDMA/133
[    2.276958] ata2.00: 976773168 sectors, multi 1: LBA48 NCQ (depth 32), AA
[    2.277052] ata1.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 32), AA
[    2.278896] ata2.00: Features: Trust Dev-Sleep NCQ-sndrcv
[    2.279081] ata1.00: Features: Trust Dev-Sleep NCQ-sndrcv
[    2.279164] ata2.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    2.279207] ata2.00: supports DRM functions and may not be fully accessible
[    2.279383] ata1.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    2.279443] ata1.00: supports DRM functions and may not be fully accessible
[    2.281768] ata2.00: configured for UDMA/133
[    2.282248] ata1.00: configured for UDMA/133
[    2.282379] scsi 0:0:0:0: Direct-Access     ATA      Samsung SSD 850  3B6Q PQ: 0 ANSI: 5
[    2.282626] scsi 1:0:0:0: Direct-Access     ATA      Samsung SSD 850  2B6Q PQ: 0 ANSI: 5
[    2.283331] usb 5-1: new high-speed USB device number 2 using ehci-pci
[    2.284107] scsi 2:0:0:0: CD-ROM            OPTIARC  DVD RW AD-5690H  4AH5 PQ: 0 ANSI: 5
[    2.313339] usb 6-1: new high-speed USB device number 2 using ehci-pci
[    2.413953] [drm] ring test on 5 succeeded in 2 usecs
[    2.413976] [drm] UVD initialized successfully.
[    2.414088] [drm] ib test on ring 0 succeeded in 0 usecs
[    2.414182] [drm] ib test on ring 3 succeeded in 0 usecs
[    2.423669] usb 1-1: New USB device found, idVendor=0424, idProduct=2514, bcdDevice= 0.03
[    2.423675] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.423947] hub 1-1:1.0: USB hub found
[    2.424048] hub 1-1:1.0: 3 ports detected
[    2.453663] usb 3-1: New USB device found, idVendor=0424, idProduct=2514, bcdDevice= 0.03
[    2.453669] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.453813] hub 3-1:1.0: USB hub found
[    2.453911] hub 3-1:1.0: 4 ports detected
[    2.494059] usb 5-1: New USB device found, idVendor=05ac, idProduct=9127, bcdDevice= 1.00
[    2.494065] usb 5-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.494339] hub 5-1:1.0: USB hub found
[    2.494557] hub 5-1:1.0: 7 ports detected
[    2.503665] firewire_core 0000:1e:00.0: created device fw0: GUID 000a27020040c4ba, S800
[    2.503673] firewire_core 0000:1e:00.0: phy config: new root=ffc0, gap_count=63
[    2.514094] usb 6-1: New USB device found, idVendor=05ac, idProduct=9127, bcdDevice= 1.00
[    2.514108] usb 6-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.514382] hub 6-1:1.0: USB hub found
[    2.514594] hub 6-1:1.0: 7 ports detected
[    2.565352] firewire_core 0000:04:00.0: created device fw1: GUID a4b197fffe3f2da2, S800
[    2.565369] firewire_core 0000:04:00.0: phy config: new root=ffc0, gap_count=63
[    2.583351] usb 1-2: new high-speed USB device number 3 using ehci-pci
[    2.583425] firewire_core 0000:25:00.0: created device fw2: GUID 000a2702006cfdfb, S800
[    2.583451] firewire_core 0000:25:00.0: phy config: new root=ffc0, gap_count=63
[    2.584780] ohci-pci: OHCI PCI platform driver
[    2.584875] ohci-pci 0000:1c:00.0: OHCI PCI host controller
[    2.584888] ohci-pci 0000:1c:00.0: new USB bus registered, assigned bus number 7
[    2.584917] ohci-pci 0000:1c:00.0: irq 19, io mem 0xb0b00000
[    2.587303] sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[    2.587320] sd 0:0:0:0: [sda] Write Protect is off
[    2.587326] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.587330] sd 1:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[    2.587345] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.587345] sd 1:0:0:0: [sdb] Write Protect is off
[    2.587354] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    2.587370] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.589814] sd 1:0:0:0: [sdb] supports TCG Opal
[    2.589818] sd 1:0:0:0: [sdb] Attached SCSI disk
[    2.589955]  sda: sda1 sda2 sda3 sda4 sda5 sda6
[    2.590810] sd 0:0:0:0: [sda] supports TCG Opal
[    2.590814] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.591241] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    2.591259] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    2.591276] sr 2:0:0:0: Attached scsi generic sg2 type 5
[    2.643339] tsc: Refined TSC clocksource calibration: 3400.022 MHz
[    2.643358] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x310263dce6e, max_idle_ns: 440795334146 ns
[    2.643475] clocksource: Switched to clocksource tsc
[    2.667477] usb usb7: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17
[    2.667483] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.667486] usb usb7: Product: OHCI PCI host controller
[    2.667489] usb usb7: Manufacturer: Linux 5.17.0+ ohci_hcd
[    2.667491] usb usb7: SerialNumber: 0000:1c:00.0
[    2.667631] hub 7-0:1.0: USB hub found
[    2.667647] hub 7-0:1.0: 2 ports detected
[    2.667837] ohci-pci 0000:1c:00.1: OHCI PCI host controller
[    2.667843] ohci-pci 0000:1c:00.1: new USB bus registered, assigned bus number 8
[    2.667869] ohci-pci 0000:1c:00.1: irq 16, io mem 0xb0b01000
[    2.725583] sr 2:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda caddy
[    2.725596] cdrom: Uniform CD-ROM driver Revision: 3.20
[    2.747469] usb usb8: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17
[    2.747474] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.747477] usb usb8: Product: OHCI PCI host controller
[    2.747479] usb usb8: Manufacturer: Linux 5.17.0+ ohci_hcd
[    2.747481] usb usb8: SerialNumber: 0000:1c:00.1
[    2.747600] hub 8-0:1.0: USB hub found
[    2.747615] hub 8-0:1.0: 2 ports detected
[    2.747799] ohci-pci 0000:23:00.0: OHCI PCI host controller
[    2.747805] ohci-pci 0000:23:00.0: new USB bus registered, assigned bus number 9
[    2.747833] ohci-pci 0000:23:00.0: irq 19, io mem 0xb0f00000
[    2.783371] usb 3-1.1: new high-speed USB device number 3 using ehci-pci
[    2.817500] usb usb9: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17
[    2.817506] usb usb9: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.817508] usb usb9: Product: OHCI PCI host controller
[    2.817510] usb usb9: Manufacturer: Linux 5.17.0+ ohci_hcd
[    2.817512] usb usb9: SerialNumber: 0000:23:00.0
[    2.817630] hub 9-0:1.0: USB hub found
[    2.817647] hub 9-0:1.0: 2 ports detected
[    2.817825] ohci-pci 0000:23:00.1: OHCI PCI host controller
[    2.817830] ohci-pci 0000:23:00.1: new USB bus registered, assigned bus number 10
[    2.817857] ohci-pci 0000:23:00.1: irq 16, io mem 0xb0f01000
[    2.828674] usb 1-2: New USB device found, idVendor=05ac, idProduct=850b, bcdDevice= 7.55
[    2.828688] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.828694] usb 1-2: Product: FaceTime HD Camera (Built-in)
[    2.828699] usb 1-2: Manufacturer: Apple Inc.
[    2.828703] usb 1-2: SerialNumber: CCGB8K062WDDJRLX
[    2.833334] usb 5-1.4: new full-speed USB device number 3 using ehci-pci
[    2.853374] usb 6-1.4: new full-speed USB device number 3 using ehci-pci
[    2.864512] sr 2:0:0:0: Attached scsi CD-ROM sr0
[    2.887500] usb usb10: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17
[    2.887506] usb usb10: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.887509] usb usb10: Product: OHCI PCI host controller
[    2.887511] usb usb10: Manufacturer: Linux 5.17.0+ ohci_hcd
[    2.887513] usb usb10: SerialNumber: 0000:23:00.1
[    2.887672] hub 10-0:1.0: USB hub found
[    2.887693] hub 10-0:1.0: 2 ports detected
[    2.923365] usb 1-1.1: new full-speed USB device number 4 using ehci-pci
[    2.958792] usb 3-1.1: New USB device found, idVendor=05ac, idProduct=8403, bcdDevice=98.33
[    2.958806] usb 3-1.1: New USB device strings: Mfr=3, Product=4, SerialNumber=2
[    2.958812] usb 3-1.1: Product: Card Reader
[    2.958817] usb 3-1.1: Manufacturer: Apple
[    2.958821] usb 3-1.1: SerialNumber: 000000009833
[    2.960712] usb-storage 3-1.1:1.0: USB Mass Storage device detected
[    2.960785] scsi host6: usb-storage 3-1.1:1.0
[    2.960830] usbcore: registered new interface driver usb-storage
[    2.961140] usbcore: registered new interface driver uas
[    3.023591] usb 5-1.4: New USB device found, idVendor=05ac, idProduct=1107, bcdDevice= 2.09
[    3.023597] usb 5-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.023600] usb 5-1.4: Product: Display Audio
[    3.023602] usb 5-1.4: Manufacturer: Apple Inc.
[    3.023603] usb 5-1.4: SerialNumber: 152303D9
[    3.026760] hid: raw HID events driver (C) Jiri Kosina
[    3.038254] usbcore: registered new interface driver usbhid
[    3.038258] usbhid: USB HID core driver
[    3.038922] input: Apple Inc. Display Audio as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:04.0/0000:18:00.0/0000:19:00.0/0000:1a:00.0/0000:1b:03.0/0000:1c:00.2/usb5/5-1/5-1.4/5-1.4:1.3/0003:05AC:1107.0001/input/input0
[    3.038956] hid-generic 0003:05AC:1107.0001: input,hidraw0: USB HID v1.11 Device [Apple Inc. Display Audio] on usb-0000:1c:00.2-1.4/input3
[    3.043125] usb 6-1.4: New USB device found, idVendor=05ac, idProduct=1107, bcdDevice= 2.09
[    3.043131] usb 6-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.043134] usb 6-1.4: Product: Display Audio
[    3.043136] usb 6-1.4: Manufacturer: Apple Inc.
[    3.043138] usb 6-1.4: SerialNumber: 1A0E0738
[    3.054339] input: Apple Inc. Display Audio as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:04.0/0000:18:00.0/0000:19:04.0/0000:1f:00.0/0000:20:00.0/0000:21:00.0/0000:22:03.0/0000:23:00.2/usb6/6-1/6-1.4/6-1.4:1.3/0003:05AC:1107.0002/input/input1
[    3.054379] hid-generic 0003:05AC:1107.0002: input,hidraw1: USB HID v1.11 Device [Apple Inc. Display Audio] on usb-0000:23:00.2-1.4/input3
[    3.063371] usb 3-1.2: new low-speed USB device number 4 using ehci-pci
[    3.073408] [drm] ib test on ring 5 succeeded
[    3.095380] usb 1-1.1: New USB device found, idVendor=0a5c, idProduct=4500, bcdDevice= 1.00
[    3.095394] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.095401] usb 1-1.1: Product: BRCM2046 Hub
[    3.095405] usb 1-1.1: Manufacturer: Apple Inc.
[    3.095730] hub 1-1.1:1.0: USB hub found
[    3.095892] hub 1-1.1:1.0: 3 ports detected
[    3.143382] usb 5-1.5: new high-speed USB device number 4 using ehci-pci
[    3.153365] [drm] radeon atom DIG backlight initialized
[    3.153376] [drm] Radeon Display Connectors
[    3.153380] [drm] Connector 0:
[    3.153383] [drm]   eDP-1
[    3.153386] [drm]   HPD3
[    3.153389] [drm]   DDC: 0x6450 0x6450 0x6454 0x6454 0x6458 0x6458 0x645c 0x645c
[    3.153396] [drm]   Encoders:
[    3.153398] [drm]     LCD1: INTERNAL_UNIPHY2
[    3.153402] [drm] Connector 1:
[    3.153404] [drm]   DP-1
[    3.153407] [drm]   HPD1
[    3.153410] [drm]   DDC: 0x6430 0x6430 0x6434 0x6434 0x6438 0x6438 0x643c 0x643c
[    3.153416] [drm]   Encoders:
[    3.153418] [drm]     DFP1: INTERNAL_UNIPHY1
[    3.153421] [drm] Connector 2:
[    3.153424] [drm]   DP-2
[    3.153426] [drm]   HPD2
[    3.153429] [drm]   DDC: 0x6440 0x6440 0x6444 0x6444 0x6448 0x6448 0x644c 0x644c
[    3.153434] [drm]   Encoders:
[    3.153437] [drm]     DFP2: INTERNAL_UNIPHY1
[    3.153440] [drm] Connector 3:
[    3.153442] [drm]   DP-3
[    3.153445] [drm]   HPD4
[    3.153447] [drm]   DDC: 0x6460 0x6460 0x6464 0x6464 0x6468 0x6468 0x646c 0x646c
[    3.153453] [drm]   Encoders:
[    3.153463] [drm]     DFP3: INTERNAL_UNIPHY2
[    3.153464] [drm] Connector 4:
[    3.153465] [drm]   DP-4
[    3.153466] [drm]   HPD5
[    3.153467] [drm]   DDC: 0x6470 0x6470 0x6474 0x6474 0x6478 0x6478 0x647c 0x647c
[    3.153470] [drm]   Encoders:
[    3.153471] [drm]     DFP4: INTERNAL_UNIPHY
[    3.153472] [drm] Connector 5:
[    3.153473] [drm]   VGA-1
[    3.153474] [drm]   DDC: 0x64d8 0x64d8 0x64dc 0x64dc 0x64e0 0x64e0 0x64e4 0x64e4
[    3.153477] [drm]   Encoders:
[    3.153478] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[    3.163374] usb 6-1.5: new high-speed USB device number 4 using ehci-pci
[    3.183802] switching from power state:
[    3.183806] 	ui class: none
[    3.183807] 	internal class: boot
[    3.183809] 	caps:
[    3.183811] 	uvd    vclk: 0 dclk: 0
[    3.183812] 		power level 0    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    3.183815] 		power level 1    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    3.183817] 		power level 2    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    3.183818] 	status: c b
[    3.183820] switching to power state:
[    3.183821] 	ui class: performance
[    3.183823] 	internal class: none
[    3.183824] 	caps:
[    3.183826] 	uvd    vclk: 0 dclk: 0
[    3.183827] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    3.183829] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    3.183831] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    3.183833] 	status: r
[    3.193355] usb 1-1.2: new high-speed USB device number 5 using ehci-pci
[    3.219789] usb 3-1.2: New USB device found, idVendor=05ac, idProduct=8242, bcdDevice= 0.16
[    3.219795] usb 3-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.219798] usb 3-1.2: Product: IR Receiver
[    3.219800] usb 3-1.2: Manufacturer: Apple Computer, Inc.
[    3.225225] input: Apple Computer, Inc. IR Receiver as /devices/pci0000:00/0000:00:1d.7/usb3/3-1/3-1.2/3-1.2:1.0/0003:05AC:8242.0003/input/input2
[    3.293560] appleir 0003:05AC:8242.0003: input,hiddev96,hidraw2: USB HID v1.11 Device [Apple Computer, Inc. IR Receiver] on usb-0000:00:1d.7-1.2/input0
[    3.310915] usb 5-1.5: New USB device found, idVendor=05ac, idProduct=1112, bcdDevice=71.60
[    3.310921] usb 5-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.310924] usb 5-1.5: Product: FaceTime HD Camera (Display)
[    3.310926] usb 5-1.5: Manufacturer: Apple Inc.
[    3.310928] usb 5-1.5: SerialNumber: CCGB690CKUDJ9DFX
[    3.323335] usb 3-1.4: new low-speed USB device number 5 using ehci-pci
[    3.330345] usb 6-1.5: New USB device found, idVendor=05ac, idProduct=1112, bcdDevice=71.60
[    3.330351] usb 6-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.330354] usb 6-1.5: Product: FaceTime HD Camera (Display)
[    3.330356] usb 6-1.5: Manufacturer: Apple Inc.
[    3.330358] usb 6-1.5: SerialNumber: CC2G3101FFDJ9FLP
[    3.352158] usb 1-1.2: New USB device found, idVendor=05ac, idProduct=1006, bcdDevice=96.15
[    3.352164] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.352167] usb 1-1.2: Product: Keyboard Hub
[    3.352169] usb 1-1.2: Manufacturer: Apple, Inc.
[    3.352171] usb 1-1.2: SerialNumber: 000000000000
[    3.352289] hub 1-1.2:1.0: USB hub found
[    3.352376] hub 1-1.2:1.0: 3 ports detected
[    3.413336] usb 5-1.7: new full-speed USB device number 5 using ehci-pci
[    3.433338] usb 6-1.7: new full-speed USB device number 5 using ehci-pci
[    3.443338] usb 1-1.1.1: new full-speed USB device number 6 using ehci-pci
[    3.478902] usb 3-1.4: New USB device found, idVendor=047d, idProduct=1020, bcdDevice= 1.06
[    3.478908] usb 3-1.4: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    3.478911] usb 3-1.4: Product: Kensington Expert Mouse
[    3.481792] input: Kensington Expert Mouse as /devices/pci0000:00/0000:00:1d.7/usb3/3-1/3-1.4/3-1.4:1.0/0003:047D:1020.0004/input/input3
[    3.481844] hid-generic 0003:047D:1020.0004: input,hidraw3: USB HID v1.11 Mouse [Kensington Expert Mouse] on usb-0000:00:1d.7-1.4/input0
[    3.565692] usb 5-1.7: New USB device found, idVendor=05ac, idProduct=9227, bcdDevice= 1.37
[    3.565698] usb 5-1.7: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.565701] usb 5-1.7: Product: Apple Thunderbolt Display
[    3.565703] usb 5-1.7: Manufacturer: Apple Inc.
[    3.565705] usb 5-1.7: SerialNumber: 152303D9
[    3.567711] hid-generic 0003:05AC:9227.0005: hiddev97,hidraw4: USB HID v1.11 Device [Apple Inc. Apple Thunderbolt Display] on usb-0000:1c:00.2-1.7/input0
[    3.585870] usb 6-1.7: New USB device found, idVendor=05ac, idProduct=9227, bcdDevice= 1.39
[    3.585876] usb 6-1.7: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.585880] usb 6-1.7: Product: Apple Thunderbolt Display
[    3.585882] usb 6-1.7: Manufacturer: Apple Inc.
[    3.585884] usb 6-1.7: SerialNumber: 1A0E0738
[    3.587896] hid-generic 0003:05AC:9227.0006: hiddev98,hidraw5: USB HID v1.11 Device [Apple Inc. Apple Thunderbolt Display] on usb-0000:23:00.2-1.7/input0
[    3.597780] usb 1-1.1.1: New USB device found, idVendor=05ac, idProduct=8215, bcdDevice= 2.08
[    3.597786] usb 1-1.1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.597789] usb 1-1.1.1: Product: Bluetooth USB Host Controller
[    3.597791] usb 1-1.1.1: Manufacturer: Apple Inc.
[    3.597793] usb 1-1.1.1: SerialNumber: 3451C9ED7F9B
[    3.693327] usb 1-1.2.2: new low-speed USB device number 7 using ehci-pci
[    3.849903] usb 1-1.2.2: New USB device found, idVendor=05ac, idProduct=0220, bcdDevice= 0.71
[    3.849908] usb 1-1.2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.849919] usb 1-1.2.2: Product: Apple Keyboard
[    3.849922] usb 1-1.2.2: Manufacturer: Apple, Inc
[    3.857119] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/0003:05AC:0220.0007/input/input4
[    3.923430] apple 0003:05AC:0220.0007: input,hidraw6: USB HID v1.11 Keyboard [Apple, Inc Apple Keyboard] on usb-0000:00:1a.7-1.2.2/input0
[    3.923519] apple 0003:05AC:0220.0008: Fn key not found (Apple Wireless Keyboard clone?), disabling Fn key handling
[    3.923549] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.1/0003:05AC:0220.0008/input/input5
[    3.943333] usb 1-1.1.2: new full-speed USB device number 8 using ehci-pci
[    3.993373] apple 0003:05AC:0220.0008: input,hidraw7: USB HID v1.11 Device [Apple, Inc Apple Keyboard] on usb-0000:00:1a.7-1.2.2/input1
[    3.995094] scsi 6:0:0:0: Direct-Access     APPLE    SD Card Reader   1.00 PQ: 0 ANSI: 0
[    3.995361] sd 6:0:0:0: Attached scsi generic sg3 type 0
[    3.995905] sd 6:0:0:0: [sdc] Media removed, stopped polling
[    3.996625] sd 6:0:0:0: [sdc] Attached SCSI removable disk
[    4.097175] usb 1-1.1.2: New USB device found, idVendor=05ac, idProduct=820a, bcdDevice= 1.00
[    4.097182] usb 1-1.1.2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.098975] input: HID 05ac:820a as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.1/1-1.1.2/1-1.1.2:1.0/0003:05AC:820A.0009/input/input6
[    4.163450] hid-generic 0003:05AC:820A.0009: input,hidraw8: USB HID v1.11 Keyboard [HID 05ac:820a] on usb-0000:00:1a.7-1.1.2/input0
[    4.263367] usb 1-1.1.3: new full-speed USB device number 9 using ehci-pci
[    4.416910] usb 1-1.1.3: New USB device found, idVendor=05ac, idProduct=820b, bcdDevice= 1.00
[    4.416924] usb 1-1.1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.418721] input: HID 05ac:820b as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.1/1-1.1.3/1-1.1.3:1.0/0003:05AC:820B.000A/input/input7
[    4.418756] hid-generic 0003:05AC:820B.000A: input,hidraw9: USB HID v1.11 Mouse [HID 05ac:820b] on usb-0000:00:1a.7-1.1.3/input0
[    4.586817] [drm] fb mappable at 0x90363000
[    4.586821] [drm] vram apper at 0x90000000
[    4.586822] [drm] size 14745600
[    4.586824] [drm] fb depth is 24
[    4.586825] [drm]    pitch is 10240
[    4.586917] fbcon: radeondrmfb (fb0) is primary device
[    5.267032] switching from power state:
[    5.267033] 	ui class: performance
[    5.267034] 	internal class: none
[    5.267036] 	caps:
[    5.267036] 	uvd    vclk: 0 dclk: 0
[    5.267037] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    5.267038] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    5.267039] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    5.267039] 	status: c r
[    5.267040] switching to power state:
[    5.267041] 	ui class: performance
[    5.267041] 	internal class: none
[    5.267042] 	caps:
[    5.267042] 	uvd    vclk: 0 dclk: 0
[    5.267043] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    5.267043] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    5.267044] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    5.267045] 	status: c r
[    6.383790] switching from power state:
[    6.383791] 	ui class: performance
[    6.383791] 	internal class: none
[    6.383793] 	caps:
[    6.383793] 	uvd    vclk: 0 dclk: 0
[    6.383794] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    6.383795] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    6.383795] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    6.383796] 	status: c r
[    6.383797] switching to power state:
[    6.383797] 	ui class: performance
[    6.383798] 	internal class: none
[    6.383798] 	caps:
[    6.383799] 	uvd    vclk: 0 dclk: 0
[    6.383799] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    6.383800] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    6.383801] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    6.383801] 	status: c r
[    6.492628] Console: switching to colour frame buffer device 320x90
[    6.497082] radeon 0000:01:00.0: [drm] fb0: radeondrmfb frame buffer device
[    6.533472] [drm] Initialized radeon 2.50.0 20080528 for 0000:01:00.0 on minor 0
[    6.559724] [drm] amdgpu kernel modesetting enabled.
[    6.645483] netpoll: netconsole: local port 6666
[    6.645499] netpoll: netconsole: local IPv4 address 192.168.2.87
[    6.645513] netpoll: netconsole: interface 'eth0'
[    6.645523] netpoll: netconsole: remote port 6666
[    6.645533] netpoll: netconsole: remote IPv4 address 192.168.2.208
[    6.645546] netpoll: netconsole: remote ethernet address dc:a6:32:61:33:da
[    6.645562] netpoll: netconsole: device eth0 not up yet, forcing it
[   10.315613] tg3 0000:02:00.0 eth0: Link is up at 1000 Mbps, full duplex
[   10.315631] tg3 0000:02:00.0 eth0: Flow control is off for TX and off for RX
[   10.315645] tg3 0000:02:00.0 eth0: EEE is enabled
[   10.335794] printk: console [netcon0] enabled
[   10.335807] netconsole: network logging started
[   17.413258]  sdb: sdb1
[   17.484448] process '/usr/bin/fstype' started with executable stack
[   17.509027] EXT4-fs (sda6): mounted filesystem with ordered data mode. Quota mode: none.
[   17.707306] udevd[1275]: starting version 3.2.9
[   17.731045] udevd[1276]: starting eudev-3.2.9
[   17.763564] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input8
[   17.766857] ACPI: button: Power Button [PWRB]
[   17.769613] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input9
[   17.771373] ACPI: button: Sleep Button [SLPB]
[   17.772933] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input10
[   17.780099] udevd[1335]: Error changing net interface name eth1 to eth2: File exists
[   17.781163] udevd[1335]: could not rename interface '3' from 'eth1' to 'eth2': File exists
[   17.792778] udevd[1328]: Error changing net interface name eth2 to eth1: File exists
[   17.793868] udevd[1328]: could not rename interface '4' from 'eth2' to 'eth1': File exists
[   17.797367] mc: Linux media interface: v0.10
[   17.802396] videodev: Linux video capture interface: v2.00
[   17.806969] snd_hda_intel 0000:00:1b.0: enabling device (0000 -> 0002)
[   17.808853] snd_hda_intel 0000:01:00.1: enabling device (0000 -> 0002)
[   17.814156] ACPI: button: Power Button [PWRF]
[   17.816275] usb 1-2: Found UVC 1.00 device FaceTime HD Camera (Built-in) (05ac:850b)
[   17.820576] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input11
[   17.825874] Bluetooth: Core ver 2.22
[   17.826502] usb 5-1.4: 1:1: cannot get freq at ep 0x4
[   17.826789] NET: Registered PF_BLUETOOTH protocol family
[   17.828669] Bluetooth: HCI device and connection manager initialized
[   17.829522] Bluetooth: HCI socket layer initialized
[   17.830352] Bluetooth: L2CAP socket layer initialized
[   17.831177] Bluetooth: SCO socket layer initialized
[   17.835268] usbcore: registered new interface driver btusb
[   17.839657] snd_hda_codec_cirrus hdaudioC0D0: autoconfig for CS4206: line_outs=2 (0x9/0xb/0x0/0x0/0x0) type:speaker
[   17.840688] snd_hda_codec_cirrus hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   17.841322] input: FaceTime HD Camera (Built-in):  as /devices/pci0000:00/0000:00:1a.7/usb1/1-2/1-2:1.0/input/input12
[   17.841766] snd_hda_codec_cirrus hdaudioC0D0:    hp_outs=1 (0xa/0x0/0x0/0x0/0x0)
[   17.843824] snd_hda_codec_cirrus hdaudioC0D0:    mono: mono_out=0x0
[   17.844066] usb 5-1.5: Found UVC 1.00 device FaceTime HD Camera (Display) (05ac:1112)
[   17.844815] snd_hda_codec_cirrus hdaudioC0D0:    dig-out=0x10/0x0
[   17.846915] snd_hda_codec_cirrus hdaudioC0D0:    inputs:
[   17.848090] snd_hda_codec_cirrus hdaudioC0D0:      Mic=0xd
[   17.849148] snd_hda_codec_cirrus hdaudioC0D0:      Line=0xc
[   17.850172] snd_hda_codec_cirrus hdaudioC0D0:    dig-in=0xf
[   17.861495] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
[   17.862723] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
[   17.864025] input: HDA Intel PCH SPDIF In as /devices/pci0000:00/0000:00:1b.0/sound/card0/input15
[   17.871660] usb 1-1.1.2: USB disconnect, device number 8
[   17.905760] applesmc: key=332 fan=3 temp=50 index=49 acc=0 lux=2 kbd=0
[   17.906799] applesmc applesmc.768: hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[   17.954596] Bluetooth: hci0: BCM: chip id 254 build 0518
[   17.956584] Bluetooth: hci0: BCM: product 05ac:8215
[   17.958583] Bluetooth: hci0: BCM: features 0x00
[   17.976629] Bluetooth: hci0: Bluetooth USB Host Controller
[   17.995601] usb 5-1.4: 1:2: cannot get freq at ep 0x4
[   17.999948] input: FaceTime HD Camera (Display): F as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:04.0/0000:18:00.0/0000:19:00.0/0000:1a:00.0/0000:1b:03.0/0000:1c:00.2/usb5/5-1/5-1.5/5-1.5:1.0/input/input16
[   18.004568] usb 5-1.4: 2:1: cannot get freq at ep 0x84
[   18.043572] usb 5-1.4: Warning! Unlikely big volume range (=16384), cval->res is probably wrong.
[   18.044518] usb 5-1.4: [2] FU [PCM Playback Volume] ch = 2, val = -16384/0/1
[   18.081794] usb 5-1.4: Warning! Unlikely big volume range (=15872), cval->res is probably wrong.
[   18.082714] usb 5-1.4: [5] FU [Mic Capture Volume] ch = 1, val = -11264/4608/1
[   18.084616] usb 6-1.5: Found UVC 1.00 device FaceTime HD Camera (Display) (05ac:1112)
[   18.096581] usb 6-1.4: 1:1: cannot get freq at ep 0x4
[   18.265544] usb 6-1.4: 1:2: cannot get freq at ep 0x4
[   18.270126] input: FaceTime HD Camera (Display): F as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:04.0/0000:18:00.0/0000:19:04.0/0000:1f:00.0/0000:20:00.0/0000:21:00.0/0000:22:03.0/0000:23:00.2/usb6/6-1/6-1.5/6-1.5:1.0/input/input17
[   18.271241] usbcore: registered new interface driver uvcvideo
[   18.275487] usb 6-1.4: 2:1: cannot get freq at ep 0x84
[   18.303840] usb 1-1.1.3: USB disconnect, device number 9
[   18.314619] usb 6-1.4: Warning! Unlikely big volume range (=16384), cval->res is probably wrong.
[   18.315568] usb 6-1.4: [2] FU [PCM Playback Volume] ch = 2, val = -16384/0/1
[   18.350623] usb 6-1.4: Warning! Unlikely big volume range (=15872), cval->res is probably wrong.
[   18.351575] usb 6-1.4: [5] FU [Mic Capture Volume] ch = 1, val = -11264/4608/1
[   18.352671] usbcore: registered new interface driver snd-usb-audio
[   19.466533] Adding 16777212k swap on /dev/sda5.  Priority:-2 extents:1 across:16777212k SS
[   19.479522] EXT4-fs (sda6): re-mounted. Quota mode: none.
[   19.567488] device-mapper: ioctl: 4.46.0-ioctl (2022-02-22) initialised: dm-devel@redhat.com
[   22.736999] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Quota mode: none.
[   23.306417] NET: Registered PF_PACKET protocol family
[   26.092695] tg3 0000:02:00.0 eth0: Link is up at 1000 Mbps, full duplex
[   26.093702] tg3 0000:02:00.0 eth0: Flow control is off for TX and off for RX
[   26.094700] tg3 0000:02:00.0 eth0: EEE is enabled
[   32.095886] FS-Cache: Loaded
[   32.101681] RPC: Registered named UNIX socket transport module.
[   32.102524] RPC: Registered udp transport module.
[   32.103401] RPC: Registered tcp transport module.
[   32.104228] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   32.116581] NFS: Registering the id_resolver key type
[   32.117441] Key type id_resolver registered
[   32.118257] Key type id_legacy registered
[   33.404416] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[   33.825723] elogind-daemon[3139]: New seat seat0.
[   35.485777] switching from power state:
[   35.485784] 	ui class: performance
[   35.485786] 	internal class: none
[   35.485789] 	caps:
[   35.485790] 	uvd    vclk: 0 dclk: 0
[   35.485791] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   35.485793] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[   35.485795] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[   35.485797] 	status: c
[   35.485798] switching to power state:
[   35.485799] 	ui class: battery
[   35.485800] 	internal class: none
[   35.485802] 	caps:
[   35.485804] 	uvd    vclk: 0 dclk: 0
[   35.485805] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   35.485807] 		power level 1    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   35.485808] 		power level 2    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   35.485810] 	status: r
[   42.450996] elogind-daemon[3139]: New session c1 of user brad.t :

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-04-01  5:48                       ` Brad Campbell
@ 2022-04-01 14:30                         ` Mika Westerberg
  2022-04-01 15:05                           ` Brad Campbell
  0 siblings, 1 reply; 47+ messages in thread
From: Mika Westerberg @ 2022-04-01 14:30 UTC (permalink / raw)
  To: Brad Campbell; +Cc: linux-kernel

Hi,

On Fri, Apr 01, 2022 at 01:48:13PM +0800, Brad Campbell wrote:
> That I can do. I didn't crop or grep as I wasn't sure what might be additionally relevant.
> 2 machines, 2 ports, 4 cold boots. Each time just the Thnuderbolt displays chained.

Thanks for the logs! It looks like the Apple EFI CM always uses the lane
1 adapter.

Can you try the below patch? Fingers crossed that it solves the
chaining issue for both ;-) I had to patch the test.c because otherwise
unit tests fail to compile when enabled.

This should now setup the second tunnel always through the lane 0
adapter and thus share the bandwidth equally between the two lanes.

diff --git a/drivers/thunderbolt/tb.c b/drivers/thunderbolt/tb.c
index 8c20a50cc9d9..1ca6fe67ba56 100644
--- a/drivers/thunderbolt/tb.c
+++ b/drivers/thunderbolt/tb.c
@@ -1065,7 +1065,7 @@ static void tb_recalc_estimated_bandwidth(struct tb *tb)
 
 static void tb_tunnel_dp(struct tb *tb)
 {
-	int available_up, available_down, ret;
+	int available_up, available_down, ret, link_nr;
 	struct tb_cm *tcm = tb_priv(tb);
 	struct tb_port *port, *in, *out;
 	struct tb_tunnel *tunnel;
@@ -1110,6 +1110,20 @@ static void tb_tunnel_dp(struct tb *tb)
 		return;
 	}
 
+	/*
+	 * This is only applicable to links that are not bonded (so
+	 * when Thunderbolt 1 hardware is involved somewhere in the
+	 * topology). For these try to share the DP bandwidth between
+	 * the two lanes.
+	 */
+	link_nr = 1;
+	list_for_each_entry(tunnel, &tcm->tunnel_list, list) {
+		if (tb_tunnel_is_dp(tunnel)) {
+			link_nr = 0;
+			break;
+		}
+	}
+
 	/*
 	 * DP stream needs the domain to be active so runtime resume
 	 * both ends of the tunnel.
@@ -1142,7 +1156,8 @@ static void tb_tunnel_dp(struct tb *tb)
 
 	tb_attach_bandwidth_group(tcm, in, out);
 
-	tunnel = tb_tunnel_alloc_dp(tb, in, out, available_up, available_down);
+	tunnel = tb_tunnel_alloc_dp(tb, in, out, link_nr, available_up,
+				    available_down);
 	if (!tunnel) {
 		tb_port_dbg(out, "could not allocate DP tunnel\n");
 		goto err_detach_group;
diff --git a/drivers/thunderbolt/test.c b/drivers/thunderbolt/test.c
index 6f027b3c2efe..5884c616b047 100644
--- a/drivers/thunderbolt/test.c
+++ b/drivers/thunderbolt/test.c
@@ -1365,7 +1365,7 @@ static void tb_test_tunnel_dp(struct kunit *test)
 	in = &host->ports[5];
 	out = &dev->ports[13];
 
-	tunnel = tb_tunnel_alloc_dp(NULL, in, out, 0, 0);
+	tunnel = tb_tunnel_alloc_dp(NULL, in, out, 1, 0, 0);
 	KUNIT_ASSERT_TRUE(test, tunnel != NULL);
 	KUNIT_EXPECT_EQ(test, tunnel->type, TB_TUNNEL_DP);
 	KUNIT_EXPECT_PTR_EQ(test, tunnel->src_port, in);
@@ -1411,7 +1411,7 @@ static void tb_test_tunnel_dp_chain(struct kunit *test)
 	in = &host->ports[5];
 	out = &dev4->ports[14];
 
-	tunnel = tb_tunnel_alloc_dp(NULL, in, out, 0, 0);
+	tunnel = tb_tunnel_alloc_dp(NULL, in, out, 1, 0, 0);
 	KUNIT_ASSERT_TRUE(test, tunnel != NULL);
 	KUNIT_EXPECT_EQ(test, tunnel->type, TB_TUNNEL_DP);
 	KUNIT_EXPECT_PTR_EQ(test, tunnel->src_port, in);
@@ -1461,7 +1461,7 @@ static void tb_test_tunnel_dp_tree(struct kunit *test)
 	in = &dev2->ports[13];
 	out = &dev5->ports[13];
 
-	tunnel = tb_tunnel_alloc_dp(NULL, in, out, 0, 0);
+	tunnel = tb_tunnel_alloc_dp(NULL, in, out, 1, 0, 0);
 	KUNIT_ASSERT_TRUE(test, tunnel != NULL);
 	KUNIT_EXPECT_EQ(test, tunnel->type, TB_TUNNEL_DP);
 	KUNIT_EXPECT_PTR_EQ(test, tunnel->src_port, in);
@@ -1526,7 +1526,7 @@ static void tb_test_tunnel_dp_max_length(struct kunit *test)
 	in = &dev6->ports[13];
 	out = &dev12->ports[13];
 
-	tunnel = tb_tunnel_alloc_dp(NULL, in, out, 0, 0);
+	tunnel = tb_tunnel_alloc_dp(NULL, in, out, 1, 0, 0);
 	KUNIT_ASSERT_TRUE(test, tunnel != NULL);
 	KUNIT_EXPECT_EQ(test, tunnel->type, TB_TUNNEL_DP);
 	KUNIT_EXPECT_PTR_EQ(test, tunnel->src_port, in);
@@ -1604,7 +1604,7 @@ static void tb_test_tunnel_3dp(struct kunit *test)
 	KUNIT_ASSERT_EQ(test, tunnel1->npaths, 3);
 	KUNIT_ASSERT_EQ(test, tunnel1->paths[0]->path_length, 3);
 
-	tunnel2 = tb_tunnel_alloc_dp(NULL, in2, out2, 0, 0);
+	tunnel2 = tb_tunnel_alloc_dp(NULL, in2, out2, 1, 0, 0);
 	KUNIT_ASSERT_TRUE(test, tunnel2 != NULL);
 	KUNIT_EXPECT_EQ(test, tunnel2->type, TB_TUNNEL_DP);
 	KUNIT_EXPECT_PTR_EQ(test, tunnel2->src_port, in2);
@@ -1612,7 +1612,7 @@ static void tb_test_tunnel_3dp(struct kunit *test)
 	KUNIT_ASSERT_EQ(test, tunnel2->npaths, 3);
 	KUNIT_ASSERT_EQ(test, tunnel2->paths[0]->path_length, 4);
 
-	tunnel3 = tb_tunnel_alloc_dp(NULL, in3, out3, 0, 0);
+	tunnel3 = tb_tunnel_alloc_dp(NULL, in3, out3, 1, 0, 0);
 	KUNIT_ASSERT_TRUE(test, tunnel3 != NULL);
 	KUNIT_EXPECT_EQ(test, tunnel3->type, TB_TUNNEL_DP);
 	KUNIT_EXPECT_PTR_EQ(test, tunnel3->src_port, in3);
@@ -1709,7 +1709,7 @@ static void tb_test_tunnel_port_on_path(struct kunit *test)
 	in = &dev2->ports[13];
 	out = &dev5->ports[13];
 
-	dp_tunnel = tb_tunnel_alloc_dp(NULL, in, out, 0, 0);
+	dp_tunnel = tb_tunnel_alloc_dp(NULL, in, out, 1, 0, 0);
 	KUNIT_ASSERT_TRUE(test, dp_tunnel != NULL);
 
 	KUNIT_EXPECT_TRUE(test, tb_tunnel_port_on_path(dp_tunnel, in));
@@ -2091,7 +2091,7 @@ static void tb_test_credit_alloc_dp(struct kunit *test)
 	in = &host->ports[5];
 	out = &dev->ports[14];
 
-	tunnel = tb_tunnel_alloc_dp(NULL, in, out, 0, 0);
+	tunnel = tb_tunnel_alloc_dp(NULL, in, out, 1, 0, 0);
 	KUNIT_ASSERT_TRUE(test, tunnel != NULL);
 	KUNIT_ASSERT_EQ(test, tunnel->npaths, (size_t)3);
 
@@ -2327,7 +2327,7 @@ static struct tb_tunnel *TB_TEST_DP_TUNNEL1(struct kunit *test,
 
 	in = &host->ports[5];
 	out = &dev->ports[13];
-	dp_tunnel1 = tb_tunnel_alloc_dp(NULL, in, out, 0, 0);
+	dp_tunnel1 = tb_tunnel_alloc_dp(NULL, in, out, 1, 0, 0);
 	KUNIT_ASSERT_TRUE(test, dp_tunnel1 != NULL);
 	KUNIT_ASSERT_EQ(test, dp_tunnel1->npaths, (size_t)3);
 
@@ -2364,7 +2364,7 @@ static struct tb_tunnel *TB_TEST_DP_TUNNEL2(struct kunit *test,
 
 	in = &host->ports[6];
 	out = &dev->ports[14];
-	dp_tunnel2 = tb_tunnel_alloc_dp(NULL, in, out, 0, 0);
+	dp_tunnel2 = tb_tunnel_alloc_dp(NULL, in, out, 1, 0, 0);
 	KUNIT_ASSERT_TRUE(test, dp_tunnel2 != NULL);
 	KUNIT_ASSERT_EQ(test, dp_tunnel2->npaths, (size_t)3);
 
diff --git a/drivers/thunderbolt/tunnel.c b/drivers/thunderbolt/tunnel.c
index d08441f36e7a..08fddd469ab6 100644
--- a/drivers/thunderbolt/tunnel.c
+++ b/drivers/thunderbolt/tunnel.c
@@ -1086,6 +1086,7 @@ struct tb_tunnel *tb_tunnel_discover_dp(struct tb *tb, struct tb_port *in,
  * @tb: Pointer to the domain structure
  * @in: DP in adapter port
  * @out: DP out adapter port
+ * @link_nr: Preferred lane adapter when the link is not bonded
  * @max_up: Maximum available upstream bandwidth for the DP tunnel (%0
  *	    if not limited)
  * @max_down: Maximum available downstream bandwidth for the DP tunnel
@@ -1097,8 +1098,8 @@ struct tb_tunnel *tb_tunnel_discover_dp(struct tb *tb, struct tb_port *in,
  * Return: Returns a tb_tunnel on success or NULL on failure.
  */
 struct tb_tunnel *tb_tunnel_alloc_dp(struct tb *tb, struct tb_port *in,
-				     struct tb_port *out, int max_up,
-				     int max_down)
+				     struct tb_port *out, int link_nr,
+				     int max_up, int max_down)
 {
 	struct tb_tunnel *tunnel;
 	struct tb_path **paths;
@@ -1124,21 +1125,21 @@ struct tb_tunnel *tb_tunnel_alloc_dp(struct tb *tb, struct tb_port *in,
 	paths = tunnel->paths;
 
 	path = tb_path_alloc(tb, in, TB_DP_VIDEO_HOPID, out, TB_DP_VIDEO_HOPID,
-			     1, "Video");
+			     link_nr, "Video");
 	if (!path)
 		goto err_free;
 	tb_dp_init_video_path(path);
 	paths[TB_DP_VIDEO_PATH_OUT] = path;
 
 	path = tb_path_alloc(tb, in, TB_DP_AUX_TX_HOPID, out,
-			     TB_DP_AUX_TX_HOPID, 1, "AUX TX");
+			     TB_DP_AUX_TX_HOPID, link_nr, "AUX TX");
 	if (!path)
 		goto err_free;
 	tb_dp_init_aux_path(path);
 	paths[TB_DP_AUX_PATH_OUT] = path;
 
 	path = tb_path_alloc(tb, out, TB_DP_AUX_RX_HOPID, in,
-			     TB_DP_AUX_RX_HOPID, 1, "AUX RX");
+			     TB_DP_AUX_RX_HOPID, link_nr, "AUX RX");
 	if (!path)
 		goto err_free;
 	tb_dp_init_aux_path(path);
diff --git a/drivers/thunderbolt/tunnel.h b/drivers/thunderbolt/tunnel.h
index ea605046d41f..89d6328dd04f 100644
--- a/drivers/thunderbolt/tunnel.h
+++ b/drivers/thunderbolt/tunnel.h
@@ -77,8 +77,8 @@ struct tb_tunnel *tb_tunnel_alloc_pci(struct tb *tb, struct tb_port *up,
 struct tb_tunnel *tb_tunnel_discover_dp(struct tb *tb, struct tb_port *in,
 					bool alloc_hopid);
 struct tb_tunnel *tb_tunnel_alloc_dp(struct tb *tb, struct tb_port *in,
-				     struct tb_port *out, int max_up,
-				     int max_down);
+				     struct tb_port *out, int link_nr,
+				     int max_up, int max_down);
 struct tb_tunnel *tb_tunnel_alloc_dma(struct tb *tb, struct tb_port *nhi,
 				      struct tb_port *dst, int transmit_path,
 				      int transmit_ring, int receive_path,
-- 
2.32.0


^ permalink raw reply related	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-04-01 14:30                         ` Mika Westerberg
@ 2022-04-01 15:05                           ` Brad Campbell
  2022-04-04 10:10                             ` Mika Westerberg
  0 siblings, 1 reply; 47+ messages in thread
From: Brad Campbell @ 2022-04-01 15:05 UTC (permalink / raw)
  To: Mika Westerberg; +Cc: linux-kernel

On 1/4/22 22:30, Mika Westerberg wrote:
> Hi,
> 
> On Fri, Apr 01, 2022 at 01:48:13PM +0800, Brad Campbell wrote:
>> That I can do. I didn't crop or grep as I wasn't sure what might be additionally relevant.
>> 2 machines, 2 ports, 4 cold boots. Each time just the Thnuderbolt displays chained.
> 
> Thanks for the logs! It looks like the Apple EFI CM always uses the lane
> 1 adapter.

Thanks for sticking with me. This must be a minuscule corner case that is buried in a dark room behind a filing cabinet.

> Can you try the below patch? Fingers crossed that it solves the
> chaining issue for both ;-) I had to patch the test.c because otherwise
> unit tests fail to compile when enabled.
> 
> This should now setup the second tunnel always through the lane 0
> adapter and thus share the bandwidth equally between the two lanes.
> 
> @@ -1604,7 +1604,7 @@ static void tb_test_tunnel_3dp(struct kunit *test)
>   	KUNIT_ASSERT_EQ(test, tunnel1->npaths, 3);
>   	KUNIT_ASSERT_EQ(test, tunnel1->paths[0]->path_length, 3);
>   
> -	tunnel2 = tb_tunnel_alloc_dp(NULL, in2, out2, 0, 0);
> +	tunnel2 = tb_tunnel_alloc_dp(NULL, in2, out2, 1, 0, 0);
>   	KUNIT_ASSERT_TRUE(test, tunnel2 != NULL);
>   	KUNIT_EXPECT_EQ(test, tunnel2->type, TB_TUNNEL_DP);
>   	KUNIT_EXPECT_PTR_EQ(test, tunnel2->src_port, in2);
> @@ -1612,7 +1612,7 @@ static void tb_test_tunnel_3dp(struct kunit *test)
>   	KUNIT_ASSERT_EQ(test, tunnel2->npaths, 3);
>   	KUNIT_ASSERT_EQ(test, tunnel2->paths[0]->path_length, 4);
>   
> -	tunnel3 = tb_tunnel_alloc_dp(NULL, in3, out3, 0, 0);
> +	tunnel3 = tb_tunnel_alloc_dp(NULL, in3, out3, 1, 0, 0);
>   	KUNIT_ASSERT_TRUE(test, tunnel3 != NULL);
>   	KUNIT_EXPECT_EQ(test, tunnel3->type, TB_TUNNEL_DP);
>   	KUNIT_EXPECT_PTR_EQ(test, tunnel3->src_port, in3);

These 2 chunks don't apply.
I can't find a tb_test_tunnel_3dp in any of the trees I have (either head or stable). In any case I've updated to current head and applied without those chunks.

This fixes *all* cases on the MacBookPro. Cold boot on either port, and hot plug likewise

On the iMac it cold boots on either port. If I boot with the displays plugged in, then unplug-replug we get :

Apr  1 22:49:41 bkmac kernel: [   24.480306] [drm:radeon_dp_link_train [radeon]] *ERROR* displayport link status failed
Apr  1 22:49:41 bkmac kernel: [   24.481309] [drm:radeon_dp_link_train [radeon]] *ERROR* clock recovery failed

The last head on the chain comes up, the first doesn't.

If I plug the displays in *after* the chime and before the kernel starts up, then both heads come up and hotplug works fine excepting after the second unplug we get lots of this :

Apr  1 22:52:54 bkmac kernel: [   37.313493] thunderbolt 0000:07:00.0: 0: timeout reading config space 1 from 0x39
Apr  1 22:52:54 bkmac kernel: [   37.313513] thunderbolt 0000:07:00.0: 0:c: DP IN available
Apr  1 22:52:54 bkmac kernel: [   37.763482] thunderbolt 0000:07:00.0: 0: timeout reading config space 1 from 0x39
Apr  1 22:52:54 bkmac kernel: [   37.763489] thunderbolt 0000:07:00.0: 0:d: DP IN available
Apr  1 22:52:54 bkmac kernel: [   37.763491] thunderbolt 0000:07:00.0: no suitable DP IN adapter available, not tunneling
Apr  1 22:52:54 bkmac kernel: [   37.763495] thunderbolt 0000:07:00.0: 0:4: got unplug event for disconnected port, ignoring
Apr  1 22:52:54 bkmac kernel: [   37.763496] thunderbolt 0000:07:00.0: 0:3: got unplug event for disconnected port, ignoring
Apr  1 22:52:54 bkmac kernel: [   37.763498] thunderbolt 0000:07:00.0: 0:3: got unplug event for disconnected port, ignoring

And the thunderbolt ports then fail to respond to any plug event until rebooted.

Feels like it's nailed excepting some DP routing on the Radeon, but I've not been able to put my finger on how that works.
With your very first patch, hotplug works on the iMac.

Regards,
Brad.

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-04-01 15:05                           ` Brad Campbell
@ 2022-04-04 10:10                             ` Mika Westerberg
  2022-04-04 11:38                               ` Brad Campbell
  0 siblings, 1 reply; 47+ messages in thread
From: Mika Westerberg @ 2022-04-04 10:10 UTC (permalink / raw)
  To: Brad Campbell; +Cc: linux-kernel

On Fri, Apr 01, 2022 at 11:05:27PM +0800, Brad Campbell wrote:
> On 1/4/22 22:30, Mika Westerberg wrote:
> > Hi,
> > 
> > On Fri, Apr 01, 2022 at 01:48:13PM +0800, Brad Campbell wrote:
> > > That I can do. I didn't crop or grep as I wasn't sure what might be additionally relevant.
> > > 2 machines, 2 ports, 4 cold boots. Each time just the Thnuderbolt displays chained.
> > 
> > Thanks for the logs! It looks like the Apple EFI CM always uses the lane
> > 1 adapter.
> 
> Thanks for sticking with me. This must be a minuscule corner case that
> is buried in a dark room behind a filing cabinet.

Well, it is just that nobody else reported the issue before ;-) I don't
have Light Ridge or Falcon Ridge based Apple hardware anymore so these
won't show up in my regular testing.

> > Can you try the below patch? Fingers crossed that it solves the
> > chaining issue for both ;-) I had to patch the test.c because otherwise
> > unit tests fail to compile when enabled.
> > 
> > This should now setup the second tunnel always through the lane 0
> > adapter and thus share the bandwidth equally between the two lanes.
> > 
> > @@ -1604,7 +1604,7 @@ static void tb_test_tunnel_3dp(struct kunit *test)
> >   	KUNIT_ASSERT_EQ(test, tunnel1->npaths, 3);
> >   	KUNIT_ASSERT_EQ(test, tunnel1->paths[0]->path_length, 3);
> > -	tunnel2 = tb_tunnel_alloc_dp(NULL, in2, out2, 0, 0);
> > +	tunnel2 = tb_tunnel_alloc_dp(NULL, in2, out2, 1, 0, 0);
> >   	KUNIT_ASSERT_TRUE(test, tunnel2 != NULL);
> >   	KUNIT_EXPECT_EQ(test, tunnel2->type, TB_TUNNEL_DP);
> >   	KUNIT_EXPECT_PTR_EQ(test, tunnel2->src_port, in2);
> > @@ -1612,7 +1612,7 @@ static void tb_test_tunnel_3dp(struct kunit *test)
> >   	KUNIT_ASSERT_EQ(test, tunnel2->npaths, 3);
> >   	KUNIT_ASSERT_EQ(test, tunnel2->paths[0]->path_length, 4);
> > -	tunnel3 = tb_tunnel_alloc_dp(NULL, in3, out3, 0, 0);
> > +	tunnel3 = tb_tunnel_alloc_dp(NULL, in3, out3, 1, 0, 0);
> >   	KUNIT_ASSERT_TRUE(test, tunnel3 != NULL);
> >   	KUNIT_EXPECT_EQ(test, tunnel3->type, TB_TUNNEL_DP);
> >   	KUNIT_EXPECT_PTR_EQ(test, tunnel3->src_port, in3);
> 
> These 2 chunks don't apply.
> I can't find a tb_test_tunnel_3dp in any of the trees I have (either
> head or stable). In any case I've updated to current head and applied
> without those chunks.

Indeed, I forgot to drop that hunk. It is based on my local branch that
has some additional code but good that you managed to work it around.

> This fixes *all* cases on the MacBookPro. Cold boot on either port, and hot plug likewise

That's great!

> On the iMac it cold boots on either port. If I boot with the displays plugged in, then unplug-replug we get :
> 
> Apr  1 22:49:41 bkmac kernel: [   24.480306] [drm:radeon_dp_link_train [radeon]] *ERROR* displayport link status failed
> Apr  1 22:49:41 bkmac kernel: [   24.481309] [drm:radeon_dp_link_train [radeon]] *ERROR* clock recovery failed
> 
> The last head on the chain comes up, the first doesn't.
> 
> If I plug the displays in *after* the chime and before the kernel starts up, then both heads come up and hotplug works fine excepting after the second unplug we get lots of this :
> 
> Apr  1 22:52:54 bkmac kernel: [   37.313493] thunderbolt 0000:07:00.0: 0: timeout reading config space 1 from 0x39
> Apr  1 22:52:54 bkmac kernel: [   37.313513] thunderbolt 0000:07:00.0: 0:c: DP IN available
> Apr  1 22:52:54 bkmac kernel: [   37.763482] thunderbolt 0000:07:00.0: 0: timeout reading config space 1 from 0x39
> Apr  1 22:52:54 bkmac kernel: [   37.763489] thunderbolt 0000:07:00.0: 0:d: DP IN available
> Apr  1 22:52:54 bkmac kernel: [   37.763491] thunderbolt 0000:07:00.0: no suitable DP IN adapter available, not tunneling
> Apr  1 22:52:54 bkmac kernel: [   37.763495] thunderbolt 0000:07:00.0: 0:4: got unplug event for disconnected port, ignoring
> Apr  1 22:52:54 bkmac kernel: [   37.763496] thunderbolt 0000:07:00.0: 0:3: got unplug event for disconnected port, ignoring
> Apr  1 22:52:54 bkmac kernel: [   37.763498] thunderbolt 0000:07:00.0: 0:3: got unplug event for disconnected port, ignoring
> 
> And the thunderbolt ports then fail to respond to any plug event until rebooted.

This makes me suspect that there is something else still going on with
the Light Ridge controller that we are missing in the Linux driver.

> Feels like it's nailed excepting some DP routing on the Radeon, but
> I've not been able to put my finger on how that works.
> With your very first patch, hotplug works on the iMac.

Hm, you mean you don't see the timeout errors and stuff with the first
patch applied?

I think I will make this current one a proper patch and submit upstream
later this week (will CC you too). For the iMac issue we may need to
debug it further. Not sure if you answered this one already but on iMac
on macOS does it work always when you plug in the whole chain?

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-04-04 10:10                             ` Mika Westerberg
@ 2022-04-04 11:38                               ` Brad Campbell
  2022-04-04 12:53                                 ` Mika Westerberg
  0 siblings, 1 reply; 47+ messages in thread
From: Brad Campbell @ 2022-04-04 11:38 UTC (permalink / raw)
  To: Mika Westerberg; +Cc: linux-kernel



On 4/4/22 18:10, Mika Westerberg wrote:
> On Fri, Apr 01, 2022 at 11:05:27PM +0800, Brad Campbell wrote:
>> On 1/4/22 22:30, Mika Westerberg wrote:
>>> Hi,
>>>
>>> On Fri, Apr 01, 2022 at 01:48:13PM +0800, Brad Campbell wrote:
>>>> That I can do. I didn't crop or grep as I wasn't sure what might be additionally relevant.
>>>> 2 machines, 2 ports, 4 cold boots. Each time just the Thnuderbolt displays chained.
>>>
>>> Thanks for the logs! It looks like the Apple EFI CM always uses the lane
>>> 1 adapter.
>>
>> Thanks for sticking with me. This must be a minuscule corner case that
>> is buried in a dark room behind a filing cabinet.
> 
> Well, it is just that nobody else reported the issue before ;-) I don't
> have Light Ridge or Falcon Ridge based Apple hardware anymore so these
> won't show up in my regular testing.

This iMac has > 90,000 power on hours, so I'm not sure how much longer I'm going to have it either.

I've been waiting for the GPU to flake out for a couple of years now. It gives the odd set of "sparklies" 
under OSX but it's fine on Linux.

>>> Can you try the below patch? Fingers crossed that it solves the
>>> chaining issue for both ;-) I had to patch the test.c because otherwise
>>> unit tests fail to compile when enabled.
>>>
>>> This should now setup the second tunnel always through the lane 0
>>> adapter and thus share the bandwidth equally between the two lanes.
>>>
>>> @@ -1604,7 +1604,7 @@ static void tb_test_tunnel_3dp(struct kunit *test)
>>>   	KUNIT_ASSERT_EQ(test, tunnel1->npaths, 3);
>>>   	KUNIT_ASSERT_EQ(test, tunnel1->paths[0]->path_length, 3);
>>> -	tunnel2 = tb_tunnel_alloc_dp(NULL, in2, out2, 0, 0);
>>> +	tunnel2 = tb_tunnel_alloc_dp(NULL, in2, out2, 1, 0, 0);
>>>   	KUNIT_ASSERT_TRUE(test, tunnel2 != NULL);
>>>   	KUNIT_EXPECT_EQ(test, tunnel2->type, TB_TUNNEL_DP);
>>>   	KUNIT_EXPECT_PTR_EQ(test, tunnel2->src_port, in2);
>>> @@ -1612,7 +1612,7 @@ static void tb_test_tunnel_3dp(struct kunit *test)
>>>   	KUNIT_ASSERT_EQ(test, tunnel2->npaths, 3);
>>>   	KUNIT_ASSERT_EQ(test, tunnel2->paths[0]->path_length, 4);
>>> -	tunnel3 = tb_tunnel_alloc_dp(NULL, in3, out3, 0, 0);
>>> +	tunnel3 = tb_tunnel_alloc_dp(NULL, in3, out3, 1, 0, 0);
>>>   	KUNIT_ASSERT_TRUE(test, tunnel3 != NULL);
>>>   	KUNIT_EXPECT_EQ(test, tunnel3->type, TB_TUNNEL_DP);
>>>   	KUNIT_EXPECT_PTR_EQ(test, tunnel3->src_port, in3);
>>
>> These 2 chunks don't apply.
>> I can't find a tb_test_tunnel_3dp in any of the trees I have (either
>> head or stable). In any case I've updated to current head and applied
>> without those chunks.
> 
> Indeed, I forgot to drop that hunk. It is based on my local branch that
> has some additional code but good that you managed to work it around.
> 
>> This fixes *all* cases on the MacBookPro. Cold boot on either port, and hot plug likewise
> 
> That's great!

Yes, I reckon that one is ready to go. 

>> On the iMac it cold boots on either port. If I boot with the displays plugged in, then unplug-replug we get :
>>
>> Apr  1 22:49:41 bkmac kernel: [   24.480306] [drm:radeon_dp_link_train [radeon]] *ERROR* displayport link status failed
>> Apr  1 22:49:41 bkmac kernel: [   24.481309] [drm:radeon_dp_link_train [radeon]] *ERROR* clock recovery failed
>>
>> The last head on the chain comes up, the first doesn't.
>>
>> If I plug the displays in *after* the chime and before the kernel starts up, then both heads come up and hotplug works fine excepting after the second unplug we get lots of this :
>>
>> Apr  1 22:52:54 bkmac kernel: [   37.313493] thunderbolt 0000:07:00.0: 0: timeout reading config space 1 from 0x39
>> Apr  1 22:52:54 bkmac kernel: [   37.313513] thunderbolt 0000:07:00.0: 0:c: DP IN available
>> Apr  1 22:52:54 bkmac kernel: [   37.763482] thunderbolt 0000:07:00.0: 0: timeout reading config space 1 from 0x39
>> Apr  1 22:52:54 bkmac kernel: [   37.763489] thunderbolt 0000:07:00.0: 0:d: DP IN available
>> Apr  1 22:52:54 bkmac kernel: [   37.763491] thunderbolt 0000:07:00.0: no suitable DP IN adapter available, not tunneling
>> Apr  1 22:52:54 bkmac kernel: [   37.763495] thunderbolt 0000:07:00.0: 0:4: got unplug event for disconnected port, ignoring
>> Apr  1 22:52:54 bkmac kernel: [   37.763496] thunderbolt 0000:07:00.0: 0:3: got unplug event for disconnected port, ignoring
>> Apr  1 22:52:54 bkmac kernel: [   37.763498] thunderbolt 0000:07:00.0: 0:3: got unplug event for disconnected port, ignoring
>>
>> And the thunderbolt ports then fail to respond to any plug event until rebooted.
> 
> This makes me suspect that there is something else still going on with
> the Light Ridge controller that we are missing in the Linux driver.

I expect you're right. 
 
>> Feels like it's nailed excepting some DP routing on the Radeon, but
>> I've not been able to put my finger on how that works.
>> With your very first patch, hotplug works on the iMac.
> 
> Hm, you mean you don't see the timeout errors and stuff with the first
> patch applied?

I see the config timeout errors and the controller locking up after a couple of unplugs, but when it does configure the DP channels, they both come up every time.

So, with the original patch when thunderbolt discovery works, displays both work. With the latest patch, whether or not the hotplug works, the radeon driver fails to bring up the parent head.

Both suffer from the controller config timeout reads on unplug causing it to become unresponsive after a couple of re-plug cycles (3 if I'm lucky).

> I think I will make this current one a proper patch and submit upstream
> later this week (will CC you too). For the iMac issue we may need to
> debug it further. Not sure if you answered this one already but on iMac
> on macOS does it work always when you plug in the whole chain?
> 
Yes, MacOS works fine in any order on any port.

There is a difference in the way something is set up between what the EFI does and what Linux does.

If I wait for the Chime, then a bit longer and plug the chain in (before the bootloader starts), Linux sets up both heads and hotplug / replug works.

If I cold boot with the chain plugged in, the EFI sets up one head and Linux configures the other. Replug fails with the clock-recovery error in that case.

The difference seems to be when EFI sets up, on re-plug it sets up the child display first (303 vs 3) and that causes the issue. Repeated tests can get difficult as often on the second or third plug (or unplug) the controller locks up and no longer responds to events.

I'll try and get a couple of clear dmesg with your last debug patch because it appear the chain is being discovered in a different order depending on whether or not the EFI set it up.

I received my brand new Titan Ridge board today (Gigabyte B550 Vision-d-p) and with a modified Thunderbolt rom and the last patch it detects and runs both Thunderbolt displays from a cold boot. Hotplug fails, and there are other issues related to warm boot, but they'll all have to wait until I get a serial console up.

Appreciate the persistence with this.

Regards,
Brad

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-04-04 11:38                               ` Brad Campbell
@ 2022-04-04 12:53                                 ` Mika Westerberg
  2022-04-06  2:51                                   ` Brad Campbell
  0 siblings, 1 reply; 47+ messages in thread
From: Mika Westerberg @ 2022-04-04 12:53 UTC (permalink / raw)
  To: Brad Campbell; +Cc: linux-kernel

Hi,

On Mon, Apr 04, 2022 at 07:38:06PM +0800, Brad Campbell wrote:
> > Hm, you mean you don't see the timeout errors and stuff with the first
> > patch applied?
> 
> I see the config timeout errors and the controller locking up after a
> couple of unplugs, but when it does configure the DP channels, they
> both come up every time.
> 
> So, with the original patch when thunderbolt discovery works, displays
> both work. With the latest patch, whether or not the hotplug works,
> the radeon driver fails to bring up the parent head.
> 
> Both suffer from the controller config timeout reads on unplug causing
> it to become unresponsive after a couple of re-plug cycles (3 if I'm
> lucky).

I suspect the same issue is even with the first patch but it just
manifests differently. I think the timeouts are the key here and we need
to figure out why they happen.

> > I think I will make this current one a proper patch and submit upstream
> > later this week (will CC you too). For the iMac issue we may need to
> > debug it further. Not sure if you answered this one already but on iMac
> > on macOS does it work always when you plug in the whole chain?
> > 
> Yes, MacOS works fine in any order on any port.
> 
> There is a difference in the way something is set up between what the
> EFI does and what Linux does.

Agree.

> If I wait for the Chime, then a bit longer and plug the chain in
> (before the bootloader starts), Linux sets up both heads and hotplug /
> replug works.
> 
> If I cold boot with the chain plugged in, the EFI sets up one head and
> Linux configures the other. Replug fails with the clock-recovery error
> in that case.
> 
> The difference seems to be when EFI sets up, on re-plug it sets up the
> child display first (303 vs 3) and that causes the issue. Repeated
> tests can get difficult as often on the second or third plug (or
> unplug) the controller locks up and no longer responds to events.
> 
> I'll try and get a couple of clear dmesg with your last debug patch
> because it appear the chain is being discovered in a different order
> depending on whether or not the EFI set it up.

That would be helpful.

> I received my brand new Titan Ridge board today (Gigabyte B550
> Vision-d-p) and with a modified Thunderbolt rom and the last patch it
> detects and runs both Thunderbolt displays from a cold boot. Hotplug
> fails, and there are other issues related to warm boot, but they'll
> all have to wait until I get a serial console up.

Hehe, OK.

> Appreciate the persistence with this.

My pleasure ;-)

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-04-04 12:53                                 ` Mika Westerberg
@ 2022-04-06  2:51                                   ` Brad Campbell
  2022-04-06 14:56                                     ` Mika Westerberg
  0 siblings, 1 reply; 47+ messages in thread
From: Brad Campbell @ 2022-04-06  2:51 UTC (permalink / raw)
  To: Mika Westerberg; +Cc: linux-kernel

On 4/4/22 20:53, Mika Westerberg wrote:
> Hi,
> 
> On Mon, Apr 04, 2022 at 07:38:06PM +0800, Brad Campbell wrote:
>>> Hm, you mean you don't see the timeout errors and stuff with the first
>>> patch applied?
>>
>> I see the config timeout errors and the controller locking up after a
>> couple of unplugs, but when it does configure the DP channels, they
>> both come up every time.
>>
>> So, with the original patch when thunderbolt discovery works, displays
>> both work. With the latest patch, whether or not the hotplug works,
>> the radeon driver fails to bring up the parent head.
>>
>> Both suffer from the controller config timeout reads on unplug causing
>> it to become unresponsive after a couple of re-plug cycles (3 if I'm
>> lucky).
> 
> I suspect the same issue is even with the first patch but it just
> manifests differently. I think the timeouts are the key here and we need
> to figure out why they happen.
> 
>>> I think I will make this current one a proper patch and submit upstream
>>> later this week (will CC you too). For the iMac issue we may need to
>>> debug it further. Not sure if you answered this one already but on iMac
>>> on macOS does it work always when you plug in the whole chain?
>>>
>> Yes, MacOS works fine in any order on any port.
>>
>> There is a difference in the way something is set up between what the
>> EFI does and what Linux does.
> 
> Agree.
> 
>> If I wait for the Chime, then a bit longer and plug the chain in
>> (before the bootloader starts), Linux sets up both heads and hotplug /
>> replug works.
>>
>> If I cold boot with the chain plugged in, the EFI sets up one head and
>> Linux configures the other. Replug fails with the clock-recovery error
>> in that case.
>>
>> The difference seems to be when EFI sets up, on re-plug it sets up the
>> child display first (303 vs 3) and that causes the issue. Repeated
>> tests can get difficult as often on the second or third plug (or
>> unplug) the controller locks up and no longer responds to events.
>>
>> I'll try and get a couple of clear dmesg with your last debug patch
>> because it appear the chain is being discovered in a different order
>> depending on whether or not the EFI set it up.
> 
> That would be helpful.

Both included in-line.

This is cold boot with the chain plugged in. I've re-added the dbg to print the link number, and I've included your path discovery debugs.
Boot with chain plugged in, wait for it to settle, unplug and replug. First head in the chain fails with :

[   65.778129] [drm:radeon_dp_link_train [radeon]] *ERROR* displayport link status failed
[   65.778158] [drm:radeon_dp_link_train [radeon]] *ERROR* clock recovery failed

[    0.000000] Linux version 5.17.1bkc1+ (brad@bkmac) (gcc (Debian 8.3.0-6) 8.3.0, GNU ld (GNU Binutils for Debian) 2.31.1) #28 SMP PREEMPT Wed Apr 6 10:31:18 AWST 2022
[    0.000000] Command line: ro root=UUID=de35d1a6-e0e1-40b0-b46a-3974a04adf4b libata.allow_tpm=1 netconsole=6666@192.168.2.87/eth0,6666@192.168.2.208/dc:a6:32:61:33:da oops=panic panic=10 thunderbolt.dyndbg pci=assign-busses,realloc,hpbussize=0x10,hpmmiosize=128M,hpmmioprefsize=1G initrd=boot\initrd.img-5.17.1bkc1+
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    0.000000] signal: max sigframe size: 1776
[    0.000000] reserving inaccessible SNB gfx pages
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008e000-0x000000000008ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000bffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000020200000-0x000000003fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000040000000-0x00000000401fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000040200000-0x000000008ed32fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008ed33000-0x000000008ed5efff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000008ed5f000-0x000000008ed70fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008ed71000-0x000000008ed8efff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000008ed8f000-0x000000008ee59fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008ee5a000-0x000000008ee8efff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008ee8f000-0x000000008eed6fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008eed7000-0x000000008eefefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008eeff000-0x000000008efa2fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008efa3000-0x000000008f8fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffed8000-0x00000000ffefffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000086fefffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0x89102018-0x8911dc57] usable ==> usable
[    0.000000] e820: update [mem 0x89102018-0x8911dc57] usable ==> usable
[    0.000000] e820: update [mem 0x891a0018-0x891b1c3d] usable ==> usable
[    0.000000] e820: update [mem 0x891a0018-0x891b1c3d] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000008dfff] usable
[    0.000000] reserve setup_data: [mem 0x000000000008e000-0x000000000008ffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000000a0000-0x00000000000bffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000020000000-0x00000000201fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000020200000-0x000000003fffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000040000000-0x00000000401fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000040200000-0x0000000089102017] usable
[    0.000000] reserve setup_data: [mem 0x0000000089102018-0x000000008911dc57] usable
[    0.000000] reserve setup_data: [mem 0x000000008911dc58-0x00000000891a0017] usable
[    0.000000] reserve setup_data: [mem 0x00000000891a0018-0x00000000891b1c3d] usable
[    0.000000] reserve setup_data: [mem 0x00000000891b1c3e-0x000000008ed32fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008ed33000-0x000000008ed5efff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000008ed5f000-0x000000008ed70fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008ed71000-0x000000008ed8efff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000008ed8f000-0x000000008ee59fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008ee5a000-0x000000008ee8efff] reserved
[    0.000000] reserve setup_data: [mem 0x000000008ee8f000-0x000000008eed6fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008eed7000-0x000000008eefefff] reserved
[    0.000000] reserve setup_data: [mem 0x000000008eeff000-0x000000008efa2fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008efa3000-0x000000008f8fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ffed8000-0x00000000ffefffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000086fefffff] usable
[    0.000000] efi: EFI v1.10 by Apple
[    0.000000] efi: ACPI=0x8ed8e000 ACPI 2.0=0x8ed8e014 SMBIOS=0x8ed3b000
[    0.000000] SMBIOS 2.4 present.
[    0.000000] DMI: Apple Inc. iMac12,2/Mac-942B59F58194171B, BIOS 87.0.0.0.0 06/14/2019
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 3400.192 MHz processor
[    0.000094] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000096] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000103] last_pfn = 0x86ff00 max_arch_pfn = 0x400000000
[    0.000752] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT
[    0.001367] last_pfn = 0x8efa3 max_arch_pfn = 0x400000000
[    0.002457] Secure boot disabled
[    0.002459] RAMDISK: [mem 0x7e4c0000-0x7fffffff]
[    0.002463] ACPI: Early table checksum verification disabled
[    0.002466] ACPI: RSDP 0x000000008ED8E014 000024 (v02 APPLE )
[    0.002470] ACPI: XSDT 0x000000008ED8E1C0 0000A4 (v01 APPLE  Apple00  0000F000      01000013)
[    0.002475] ACPI: FACP 0x000000008ED8C000 0000F4 (v04 APPLE  Apple00  0000F000 Loki 0000005F)
[    0.002479] ACPI: DSDT 0x000000008ED81000 0053FB (v01 APPLE  iMac     00210001 INTL 20061109)
[    0.002482] ACPI: FACS 0x000000008ED3E000 000040
[    0.002484] ACPI: FACS 0x000000008ED3E000 000040
[    0.002486] ACPI: HPET 0x000000008ED8B000 000038 (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002489] ACPI: APIC 0x000000008ED8A000 0000BC (v02 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002492] ACPI: SBST 0x000000008ED88000 000030 (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002494] ACPI: ECDT 0x000000008ED87000 000053 (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002497] ACPI: SSDT 0x000000008ED7E000 00020D (v01 APPLE  SataAhci 00001000 INTL 20061109)
[    0.002499] ACPI: SSDT 0x000000008ED7C000 0000B1 (v01 APPLE  SmcDppt  00001000 INTL 20061109)
[    0.002502] ACPI: SSDT 0x000000008ED7A000 000646 (v01 APPLE  UsbNoRmh 00001000 INTL 20061109)
[    0.002504] ACPI: SSDT 0x000000008ED78000 00013D (v01 APPLE  SataPrt1 00001000 INTL 20061109)
[    0.002507] ACPI: SSDT 0x000000008ED77000 0000A0 (v02 APPLE  IGHda    00001000 INTL 20061109)
[    0.002510] ACPI: SSDT 0x000000008ED75000 000032 (v01 APPLE  SsdtS3   00001000 INTL 20061109)
[    0.002512] ACPI: SSDT 0x000000008ED74000 000548 (v01 PmRef  Cpu0Ist  00003000 INTL 20061109)
[    0.002515] ACPI: SSDT 0x000000008ED73000 0009B1 (v01 PmRef  CpuPm    00003000 INTL 20061109)
[    0.002517] ACPI: SSDT 0x000000008ED72000 000315 (v01 PmRef  Cpu0Tst  00003000 INTL 20061109)
[    0.002520] ACPI: SSDT 0x000000008ED71000 00037A (v01 PmRef  ApTst    00003000 INTL 20061109)
[    0.002522] ACPI: MCFG 0x000000008ED89000 00003C (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002525] ACPI: Reserving FACP table memory at [mem 0x8ed8c000-0x8ed8c0f3]
[    0.002526] ACPI: Reserving DSDT table memory at [mem 0x8ed81000-0x8ed863fa]
[    0.002527] ACPI: Reserving FACS table memory at [mem 0x8ed3e000-0x8ed3e03f]
[    0.002528] ACPI: Reserving FACS table memory at [mem 0x8ed3e000-0x8ed3e03f]
[    0.002529] ACPI: Reserving HPET table memory at [mem 0x8ed8b000-0x8ed8b037]
[    0.002531] ACPI: Reserving APIC table memory at [mem 0x8ed8a000-0x8ed8a0bb]
[    0.002532] ACPI: Reserving SBST table memory at [mem 0x8ed88000-0x8ed8802f]
[    0.002533] ACPI: Reserving ECDT table memory at [mem 0x8ed87000-0x8ed87052]
[    0.002534] ACPI: Reserving SSDT table memory at [mem 0x8ed7e000-0x8ed7e20c]
[    0.002535] ACPI: Reserving SSDT table memory at [mem 0x8ed7c000-0x8ed7c0b0]
[    0.002536] ACPI: Reserving SSDT table memory at [mem 0x8ed7a000-0x8ed7a645]
[    0.002537] ACPI: Reserving SSDT table memory at [mem 0x8ed78000-0x8ed7813c]
[    0.002538] ACPI: Reserving SSDT table memory at [mem 0x8ed77000-0x8ed7709f]
[    0.002539] ACPI: Reserving SSDT table memory at [mem 0x8ed75000-0x8ed75031]
[    0.002540] ACPI: Reserving SSDT table memory at [mem 0x8ed74000-0x8ed74547]
[    0.002541] ACPI: Reserving SSDT table memory at [mem 0x8ed73000-0x8ed739b0]
[    0.002542] ACPI: Reserving SSDT table memory at [mem 0x8ed72000-0x8ed72314]
[    0.002544] ACPI: Reserving SSDT table memory at [mem 0x8ed71000-0x8ed71379]
[    0.002545] ACPI: Reserving MCFG table memory at [mem 0x8ed89000-0x8ed8903b]
[    0.002551] ACPI: DMI detected to setup _OSI("Darwin"): Apple hardware
[    0.002578] Zone ranges:
[    0.002579]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.002580]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.002582]   Normal   [mem 0x0000000100000000-0x000000086fefffff]
[    0.002583] Movable zone start for each node
[    0.002584] Early memory node ranges
[    0.002584]   node   0: [mem 0x0000000000001000-0x000000000008dfff]
[    0.002586]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.002587]   node   0: [mem 0x0000000000100000-0x000000001fffffff]
[    0.002588]   node   0: [mem 0x0000000020200000-0x000000003fffffff]
[    0.002589]   node   0: [mem 0x0000000040200000-0x000000008ed32fff]
[    0.002590]   node   0: [mem 0x000000008ed5f000-0x000000008ed70fff]
[    0.002591]   node   0: [mem 0x000000008ed8f000-0x000000008ee59fff]
[    0.002592]   node   0: [mem 0x000000008ee8f000-0x000000008eed6fff]
[    0.002592]   node   0: [mem 0x000000008eeff000-0x000000008efa2fff]
[    0.002593]   node   0: [mem 0x0000000100000000-0x000000086fefffff]
[    0.002596] Initmem setup node 0 [mem 0x0000000000001000-0x000000086fefffff]
[    0.002600] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.002601] On node 0, zone DMA: 2 pages in unavailable ranges
[    0.002619] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.004119] On node 0, zone DMA32: 512 pages in unavailable ranges
[    0.006364] On node 0, zone DMA32: 512 pages in unavailable ranges
[    0.006369] On node 0, zone DMA32: 44 pages in unavailable ranges
[    0.006372] On node 0, zone DMA32: 30 pages in unavailable ranges
[    0.006374] On node 0, zone DMA32: 53 pages in unavailable ranges
[    0.006376] On node 0, zone DMA32: 40 pages in unavailable ranges
[    0.060498] On node 0, zone Normal: 4189 pages in unavailable ranges
[    0.060505] On node 0, zone Normal: 256 pages in unavailable ranges
[    0.060667] ACPI: PM-Timer IO Port: 0x408
[    0.060673] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.060675] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.060676] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.060677] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.060678] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.060679] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.060680] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.060681] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.060689] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[    0.060692] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.060694] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.060697] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.060698] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.060702] TSC deadline timer available
[    0.060703] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[    0.060724] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.060726] PM: hibernation: Registered nosave memory: [mem 0x0008e000-0x0008ffff]
[    0.060728] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000bffff]
[    0.060729] PM: hibernation: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[    0.060730] PM: hibernation: Registered nosave memory: [mem 0x20000000-0x201fffff]
[    0.060732] PM: hibernation: Registered nosave memory: [mem 0x40000000-0x401fffff]
[    0.060734] PM: hibernation: Registered nosave memory: [mem 0x89102000-0x89102fff]
[    0.060736] PM: hibernation: Registered nosave memory: [mem 0x8911d000-0x8911dfff]
[    0.060738] PM: hibernation: Registered nosave memory: [mem 0x891a0000-0x891a0fff]
[    0.060740] PM: hibernation: Registered nosave memory: [mem 0x891b1000-0x891b1fff]
[    0.060741] PM: hibernation: Registered nosave memory: [mem 0x8ed33000-0x8ed5efff]
[    0.060743] PM: hibernation: Registered nosave memory: [mem 0x8ed71000-0x8ed8efff]
[    0.060745] PM: hibernation: Registered nosave memory: [mem 0x8ee5a000-0x8ee8efff]
[    0.060747] PM: hibernation: Registered nosave memory: [mem 0x8eed7000-0x8eefefff]
[    0.060749] PM: hibernation: Registered nosave memory: [mem 0x8efa3000-0x8f8fffff]
[    0.060749] PM: hibernation: Registered nosave memory: [mem 0x8f900000-0xe00f7fff]
[    0.060750] PM: hibernation: Registered nosave memory: [mem 0xe00f8000-0xe00f8fff]
[    0.060751] PM: hibernation: Registered nosave memory: [mem 0xe00f9000-0xfed1bfff]
[    0.060752] PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.060753] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xffed7fff]
[    0.060754] PM: hibernation: Registered nosave memory: [mem 0xffed8000-0xffefffff]
[    0.060755] PM: hibernation: Registered nosave memory: [mem 0xfff00000-0xffffffff]
[    0.060756] [mem 0x8f900000-0xe00f7fff] available for PCI devices
[    0.060760] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.063046] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[    0.063212] percpu: Embedded 44 pages/cpu s139416 r8192 d32616 u262144
[    0.063219] pcpu-alloc: s139416 r8192 d32616 u262144 alloc=1*2097152
[    0.063221] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
[    0.063242] Built 1 zonelists, mobility grouping on.  Total pages: 8251732
[    0.063244] Kernel command line: ro root=UUID=de35d1a6-e0e1-40b0-b46a-3974a04adf4b libata.allow_tpm=1 netconsole=6666@192.168.2.87/eth0,6666@192.168.2.208/dc:a6:32:61:33:da oops=panic panic=10 thunderbolt.dyndbg pci=assign-busses,realloc,hpbussize=0x10,hpmmiosize=128M,hpmmioprefsize=1G initrd=boot\initrd.img-5.17.1bkc1+
[    0.063308] Unknown kernel command line parameters "netconsole=6666@192.168.2.87/eth0,6666@192.168.2.208/dc:a6:32:61:33:da", will be passed to user space.
[    0.064927] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.065750] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.065814] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.152413] Memory: 32768320K/33531492K available (8192K kernel code, 2299K rwdata, 1844K rodata, 956K init, 2632K bss, 762916K reserved, 0K cma-reserved)
[    0.152448] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.152662] Dynamic Preempt: voluntary
[    0.152686] rcu: Preemptible hierarchical RCU implementation.
[    0.152687] 	Trampoline variant of Tasks RCU enabled.
[    0.152688] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[    0.152697] NR_IRQS: 4352, nr_irqs: 488, preallocated irqs: 16
[    0.152898] random: get_random_bytes called from start_kernel+0x443/0x5f6 with crng_init=0
[    0.152922] Console: colour dummy device 80x25
[    0.153201] printk: console [tty0] enabled
[    0.153210] ACPI: Core revision 20211217
[    0.153294] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.153308] APIC: Switch to symmetric I/O mode setup
[    0.153687] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.203305] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x310303f59eb, max_idle_ns: 440795323301 ns
[    0.203311] Calibrating delay loop (skipped), value calculated using timer frequency.. 6800.38 BogoMIPS (lpj=34001920)
[    0.203315] pid_max: default: 32768 minimum: 301
[    0.207055] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.207118] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.207239] CPU0: Thermal monitoring enabled (TM1)
[    0.207243] process: using mwait in idle threads
[    0.207246] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.207248] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.207251] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.207254] Spectre V2 : Kernel not compiled with retpoline; no mitigation available!
[    0.207255] Spectre V2 : Vulnerable
[    0.207258] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.207260] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    0.207262] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.207265] Spectre V2 : User space: Mitigation: STIBP via prctl
[    0.207267] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.207270] MDS: Mitigation: Clear CPU buffers
[    0.207425] Freeing SMP alternatives memory: 24K
[    0.207696] smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 1054
[    0.207703] smpboot: CPU0: Intel(R) Core(TM) i7-2600 CPU @ 3.40GHz (family: 0x6, model: 0x2a, stepping: 0x7)
[    0.207759] cblist_init_generic: Setting adjustable number of callback queues.
[    0.207763] cblist_init_generic: Setting shift to 3 and lim to 1.
[    0.207773] Performance Events: PEBS fmt1+, SandyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
[    0.207787] ... version:                3
[    0.207789] ... bit width:              48
[    0.207790] ... generic registers:      4
[    0.207792] ... value mask:             0000ffffffffffff
[    0.207794] ... max period:             00007fffffffffff
[    0.207795] ... fixed-purpose events:   3
[    0.207797] ... event mask:             000000070000000f
[    0.207874] rcu: Hierarchical SRCU implementation.
[    0.207971] smp: Bringing up secondary CPUs ...
[    0.208014] x86: Booting SMP configuration:
[    0.208017] .... node  #0, CPUs:      #1 #2 #3 #4
[    0.216862] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[    0.216862]  #5 #6 #7
[    0.226640] smp: Brought up 1 node, 8 CPUs
[    0.226640] smpboot: Max logical packages: 1
[    0.226640] smpboot: Total of 8 processors activated (54403.07 BogoMIPS)
[    0.228781] devtmpfs: initialized
[    0.228781] ACPI: PM: Registering ACPI NVS region [mem 0x8ed33000-0x8ed5efff] (180224 bytes)
[    0.228781] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.228781] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[    0.228781] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.228781] thermal_sys: Registered thermal governor 'step_wise'
[    0.228781] thermal_sys: Registered thermal governor 'user_space'
[    0.228781] cpuidle: using governor ladder
[    0.228781] cpuidle: using governor menu
[    0.228781] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.228781] PCI: MMCONFIG for domain 0000 [bus 00-fb] at [mem 0xe0000000-0xefbfffff] (base 0xe0000000)
[    0.228781] PCI: not using MMCONFIG
[    0.228781] PCI: Using configuration type 1 for base access
[    0.228781] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[    0.233834] ACPI: Disabled all _OSI OS vendors
[    0.233834] ACPI: Added _OSI(Module Device)
[    0.233834] ACPI: Added _OSI(Processor Device)
[    0.233834] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.233834] ACPI: Added _OSI(Processor Aggregator Device)
[    0.233834] ACPI: Added _OSI(Linux-Dell-Video)
[    0.233834] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.233834] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.233834] ACPI: Added _OSI(Darwin)
[    0.235646] ACPI: 11 ACPI AML tables successfully acquired and loaded
[    0.235849] ACPI: EC: EC started
[    0.235851] ACPI: EC: interrupt blocked
[    0.236899] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.236902] ACPI: EC: Boot ECDT EC used to handle transactions
[    0.237032] ACPI: BIOS _OSI(Darwin) query honored via DMI
[    0.237166] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.237369] ACPI: Dynamic OEM Table Load:
[    0.237376] ACPI: SSDT 0xFFFF888100379800 000781 (v01 PmRef  Cpu0Cst  00003001 INTL 20061109)
[    0.237697] ACPI: Dynamic OEM Table Load:
[    0.237703] ACPI: SSDT 0xFFFF88810036E800 0003A4 (v01 PmRef  ApIst    00003000 INTL 20061109)
[    0.237939] ACPI: Dynamic OEM Table Load:
[    0.237944] ACPI: SSDT 0xFFFF8881000FA600 000119 (v01 PmRef  ApCst    00003000 INTL 20061109)
[    0.238729] ACPI: Interpreter enabled
[    0.238744] ACPI: PM: (supports S0 S3 S4 S5)
[    0.238746] ACPI: Using IOAPIC for interrupt routing
[    0.238763] PCI: MMCONFIG for domain 0000 [bus 00-fb] at [mem 0xe0000000-0xefbfffff] (base 0xe0000000)
[    0.238973] PCI: MMCONFIG at [mem 0xe0000000-0xefbfffff] reserved in ACPI motherboard resources
[    0.238985] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.239079] ACPI: Enabled 6 GPEs in block 00 to 3F
[    0.241935] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.241942] acpi PNP0A08:00: _OSC: OS assumes control of [PCIeHotplug SHPCHotplug AER PCIeCapability LTR DPC]
[    0.241947] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-fb] only partially covers this bridge
[    0.242083] PCI host bridge to bus 0000:00
[    0.242086] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.242089] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.242092] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000fffff window]
[    0.242095] pci_bus 0000:00: root bus resource [mem 0x8f900000-0xfeafffff window]
[    0.242097] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff window]
[    0.242101] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.242110] pci 0000:00:00.0: [8086:0100] type 00 class 0x060000
[    0.242172] pci 0000:00:01.0: [8086:0101] type 01 class 0x060400
[    0.242200] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.242256] pci 0000:00:02.0: [8086:0102] type 00 class 0x038000
[    0.242264] pci 0000:00:02.0: reg 0x10: [mem 0xa8000000-0xa83fffff 64bit]
[    0.242269] pci 0000:00:02.0: reg 0x18: [mem 0xa0000000-0xa7ffffff 64bit pref]
[    0.242274] pci 0000:00:02.0: reg 0x20: [io  0x3000-0x303f]
[    0.242345] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
[    0.242364] pci 0000:00:16.0: reg 0x10: [mem 0xa8907100-0xa890710f 64bit]
[    0.242431] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.242477] pci 0000:00:1a.0: [8086:1c2c] type 00 class 0x0c0300
[    0.242515] pci 0000:00:1a.0: reg 0x20: [io  0x3140-0x315f]
[    0.242597] pci 0000:00:1a.7: [8086:1c2d] type 00 class 0x0c0320
[    0.242613] pci 0000:00:1a.7: reg 0x10: [mem 0xa8906c00-0xa8906fff]
[    0.243318] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
[    0.243484] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
[    0.243499] pci 0000:00:1b.0: reg 0x10: [mem 0xa8900000-0xa8903fff 64bit]
[    0.243561] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.243620] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
[    0.243700] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.243766] pci 0000:00:1c.1: [8086:1c12] type 01 class 0x060400
[    0.243846] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.243910] pci 0000:00:1c.2: [8086:1c14] type 01 class 0x060400
[    0.243988] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.244054] pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
[    0.244133] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.244196] pci 0000:00:1d.0: [8086:1c27] type 00 class 0x0c0300
[    0.244235] pci 0000:00:1d.0: reg 0x20: [io  0x30e0-0x30ff]
[    0.244317] pci 0000:00:1d.7: [8086:1c26] type 00 class 0x0c0320
[    0.244333] pci 0000:00:1d.7: reg 0x10: [mem 0xa8906800-0xa8906bff]
[    0.244408] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.244571] pci 0000:00:1f.0: [8086:1c44] type 00 class 0x060100
[    0.244712] pci 0000:00:1f.2: [8086:1c02] type 00 class 0x010601
[    0.244725] pci 0000:00:1f.2: reg 0x10: [io  0x3168-0x316f]
[    0.244732] pci 0000:00:1f.2: reg 0x14: [io  0x317c-0x317f]
[    0.244740] pci 0000:00:1f.2: reg 0x18: [io  0x3160-0x3167]
[    0.244747] pci 0000:00:1f.2: reg 0x1c: [io  0x3178-0x317b]
[    0.244754] pci 0000:00:1f.2: reg 0x20: [io  0x3060-0x307f]
[    0.244761] pci 0000:00:1f.2: reg 0x24: [mem 0xa8906000-0xa89067ff]
[    0.244796] pci 0000:00:1f.2: PME# supported from D3hot
[    0.244842] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
[    0.244857] pci 0000:00:1f.3: reg 0x10: [mem 0xa8907000-0xa89070ff 64bit]
[    0.244871] pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
[    0.244974] pci 0000:01:00.0: [1002:6720] type 00 class 0x030000
[    0.244990] pci 0000:01:00.0: reg 0x10: [mem 0x90000000-0x9fffffff 64bit pref]
[    0.245001] pci 0000:01:00.0: reg 0x18: [mem 0xa8800000-0xa881ffff 64bit]
[    0.245009] pci 0000:01:00.0: reg 0x20: [io  0x2000-0x20ff]
[    0.245021] pci 0000:01:00.0: reg 0x30: [mem 0xa8820000-0xa883ffff pref]
[    0.245028] pci 0000:01:00.0: enabling Extended Tags
[    0.245038] pci 0000:01:00.0: BAR 0: assigned to efifb
[    0.245068] pci 0000:01:00.0: supports D1 D2
[    0.245156] pci 0000:01:00.1: [1002:aa88] type 00 class 0x040300
[    0.245171] pci 0000:01:00.1: reg 0x10: [mem 0xa8840000-0xa8843fff 64bit]
[    0.245196] pci 0000:01:00.1: enabling Extended Tags
[    0.245231] pci 0000:01:00.1: supports D1 D2
[    0.245322] pci 0000:00:01.0: PCI bridge to [bus 01-ff]
[    0.245326] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.245329] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.245332] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.245336] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
[    0.245410] pci 0000:02:00.0: [14e4:16b4] type 00 class 0x020000
[    0.245443] pci 0000:02:00.0: reg 0x10: [mem 0xa8400000-0xa840ffff 64bit pref]
[    0.245466] pci 0000:02:00.0: reg 0x18: [mem 0xa8410000-0xa841ffff 64bit pref]
[    0.245623] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[    0.245738] pci 0000:00:1c.0: PCI bridge to [bus 02-ff]
[    0.245745] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.245751] pci 0000:00:1c.0:   bridge window [mem 0xa8400000-0xa84fffff 64bit pref]
[    0.245754] pci_bus 0000:02: busn_res: [bus 02-ff] end is updated to 02
[    0.245826] pci 0000:03:00.0: [168c:0030] type 00 class 0x028000
[    0.245857] pci 0000:03:00.0: reg 0x10: [mem 0xa8600000-0xa861ffff 64bit]
[    0.245917] pci 0000:03:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    0.246008] pci 0000:03:00.0: supports D1 D2
[    0.246010] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.246110] pci 0000:00:1c.1: PCI bridge to [bus 03-ff]
[    0.246117] pci 0000:00:1c.1:   bridge window [mem 0xa8600000-0xa86fffff]
[    0.246123] pci_bus 0000:03: busn_res: [bus 03-ff] end is updated to 03
[    0.246195] pci 0000:04:00.0: [11c1:5901] type 00 class 0x0c0010
[    0.246229] pci 0000:04:00.0: reg 0x10: [mem 0xa8500000-0xa8500fff 64bit]
[    0.246392] pci 0000:04:00.0: supports D1 D2
[    0.246394] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.246589] pci 0000:00:1c.2: PCI bridge to [bus 04-ff]
[    0.246596] pci 0000:00:1c.2:   bridge window [mem 0xa8500000-0xa85fffff]
[    0.246602] pci_bus 0000:04: busn_res: [bus 04-ff] end is updated to 04
[    0.246676] pci 0000:05:00.0: [8086:1513] type 01 class 0x060400
[    0.246741] pci 0000:05:00.0: enabling Extended Tags
[    0.246836] pci 0000:05:00.0: supports D1 D2
[    0.246838] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.246965] pci 0000:00:1c.4: PCI bridge to [bus 05-ff]
[    0.246970] pci 0000:00:1c.4:   bridge window [io  0x4000-0x4fff]
[    0.246974] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xad6fffff]
[    0.246980] pci 0000:00:1c.4:   bridge window [mem 0xacf00000-0xb10fffff 64bit pref]
[    0.247065] acpiphp: Slot [3] registered
[    0.247087] acpiphp: Slot [4] registered
[    0.247128] pci 0000:06:00.0: [8086:1513] type 01 class 0x060400
[    0.247198] pci 0000:06:00.0: enabling Extended Tags
[    0.247298] pci 0000:06:00.0: supports D1 D2
[    0.247300] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.247411] pci 0000:06:03.0: [8086:1513] type 01 class 0x060400
[    0.247481] pci 0000:06:03.0: enabling Extended Tags
[    0.247582] pci 0000:06:03.0: supports D1 D2
[    0.247584] pci 0000:06:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.247690] pci 0000:06:04.0: [8086:1513] type 01 class 0x060400
[    0.247760] pci 0000:06:04.0: enabling Extended Tags
[    0.247861] pci 0000:06:04.0: supports D1 D2
[    0.247863] pci 0000:06:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.247971] pci 0000:06:05.0: [8086:1513] type 01 class 0x060400
[    0.248041] pci 0000:06:05.0: enabling Extended Tags
[    0.248141] pci 0000:06:05.0: supports D1 D2
[    0.248144] pci 0000:06:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.248253] pci 0000:06:06.0: [8086:1513] type 01 class 0x060400
[    0.248323] pci 0000:06:06.0: enabling Extended Tags
[    0.248424] pci 0000:06:06.0: supports D1 D2
[    0.248426] pci 0000:06:06.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.248543] pci 0000:05:00.0: PCI bridge to [bus 06-ff]
[    0.248555] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xa96fffff]
[    0.248564] pci 0000:05:00.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.248663] acpiphp: Slot [1] registered
[    0.248704] pci 0000:07:00.0: [8086:1513] type 00 class 0x088000
[    0.248732] pci 0000:07:00.0: reg 0x10: [mem 0xa8a00000-0xa8a3ffff]
[    0.248748] pci 0000:07:00.0: reg 0x14: [mem 0xa8a40000-0xa8a40fff]
[    0.248828] pci 0000:07:00.0: enabling Extended Tags
[    0.248953] pci 0000:07:00.0: supports D1 D2
[    0.248955] pci 0000:07:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.249098] pci 0000:06:00.0: PCI bridge to [bus 07-ff]
[    0.249110] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.249119] pci_bus 0000:07: busn_res: [bus 07-ff] end is updated to 07
[    0.249176] pci 0000:06:03.0: PCI bridge to [bus 08-ff]
[    0.249188] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xa8bfffff]
[    0.249197] pci_bus 0000:08: busn_res: [bus 08-ff] end is updated to 17
[    0.249310] pci 0000:18:00.0: [8086:1513] type 01 class 0x060400
[    0.249428] pci 0000:18:00.0: enabling Extended Tags
[    0.249604] pci 0000:18:00.0: supports D1 D2
[    0.249606] pci 0000:18:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.273372] pci 0000:06:04.0: PCI bridge to [bus 18-ff]
[    0.273390] pci 0000:06:04.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.273403] pci 0000:06:04.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.273412] pci 0000:18:00.0: bridge configuration invalid ([bus 3a-49]), reconfiguring
[    0.273578] pci 0000:19:00.0: [8086:1513] type 01 class 0x060400
[    0.273702] pci 0000:19:00.0: enabling Extended Tags
[    0.273883] pci 0000:19:00.0: supports D1 D2
[    0.273885] pci 0000:19:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.274042] pci 0000:19:01.0: [8086:1513] type 01 class 0x060400
[    0.274166] pci 0000:19:01.0: enabling Extended Tags
[    0.274346] pci 0000:19:01.0: supports D1 D2
[    0.274348] pci 0000:19:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.274504] pci 0000:19:02.0: [8086:1513] type 01 class 0x060400
[    0.274628] pci 0000:19:02.0: enabling Extended Tags
[    0.274808] pci 0000:19:02.0: supports D1 D2
[    0.274810] pci 0000:19:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.274971] pci 0000:19:04.0: [8086:1513] type 01 class 0x060400
[    0.275095] pci 0000:19:04.0: enabling Extended Tags
[    0.275278] pci 0000:19:04.0: supports D1 D2
[    0.275280] pci 0000:19:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.275440] pci 0000:19:05.0: [8086:1513] type 01 class 0x060400
[    0.275547] pci 0000:19:05.0: enabling Extended Tags
[    0.275730] pci 0000:19:05.0: supports D1 D2
[    0.275732] pci 0000:19:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.275912] pci 0000:18:00.0: PCI bridge to [bus 19-ff]
[    0.275931] pci 0000:18:00.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.275945] pci 0000:18:00.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.275951] pci 0000:19:00.0: bridge configuration invalid ([bus 3b-3d]), reconfiguring
[    0.275968] pci 0000:19:01.0: bridge configuration invalid ([bus 3e-3e]), reconfiguring
[    0.275985] pci 0000:19:02.0: bridge configuration invalid ([bus 3f-3f]), reconfiguring
[    0.276002] pci 0000:19:04.0: bridge configuration invalid ([bus 40-48]), reconfiguring
[    0.276018] pci 0000:19:05.0: bridge configuration invalid ([bus 49-49]), reconfiguring
[    0.276172] pci 0000:1a:00.0: [12d8:400c] type 01 class 0x060400
[    0.276560] pci 0000:1a:00.0: supports D1 D2
[    0.276562] pci 0000:1a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.303347] pci 0000:19:00.0: PCI bridge to [bus 1a-ff]
[    0.303372] pci 0000:19:00.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.303394] pci 0000:1a:00.0: bridge configuration invalid ([bus 3c-3d]), reconfiguring
[    0.303629] pci 0000:1b:03.0: [12d8:400c] type 01 class 0x060400
[    0.303964] pci 0000:1b:03.0: supports D1 D2
[    0.303966] pci 0000:1b:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.304168] pci 0000:1a:00.0: PCI bridge to [bus 1b-ff]
[    0.304193] pci 0000:1a:00.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.304214] pci 0000:1b:03.0: bridge configuration invalid ([bus 3d-3d]), reconfiguring
[    0.304418] pci 0000:1c:00.0: [12d8:400e] type 00 class 0x0c0310
[    0.304470] pci 0000:1c:00.0: reg 0x10: [mem 0xa9401000-0xa9401fff]
[    0.304783] pci 0000:1c:00.0: supports D1 D2
[    0.304785] pci 0000:1c:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.304940] pci 0000:1c:00.1: [12d8:400e] type 00 class 0x0c0310
[    0.304992] pci 0000:1c:00.1: reg 0x10: [mem 0xa9400000-0xa9400fff]
[    0.305304] pci 0000:1c:00.1: supports D1 D2
[    0.305307] pci 0000:1c:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.305433] pci 0000:1c:00.2: [12d8:400f] type 00 class 0x0c0320
[    0.305485] pci 0000:1c:00.2: reg 0x10: [mem 0xa9402000-0xa94020ff]
[    0.305797] pci 0000:1c:00.2: supports D1 D2
[    0.305799] pci 0000:1c:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.306056] pci 0000:1b:03.0: PCI bridge to [bus 1c-ff]
[    0.306081] pci 0000:1b:03.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.306099] pci_bus 0000:1c: busn_res: [bus 1c-ff] end is updated to 1c
[    0.306109] pci_bus 0000:1b: busn_res: [bus 1b-ff] end is updated to 1c
[    0.306120] pci_bus 0000:1a: busn_res: [bus 1a-ff] end is updated to 1c
[    0.306266] pci 0000:1d:00.0: [14e4:16b0] type 00 class 0x020000
[    0.306335] pci 0000:1d:00.0: reg 0x10: [mem 0xad000000-0xad00ffff 64bit pref]
[    0.306381] pci 0000:1d:00.0: reg 0x18: [mem 0xad010000-0xad01ffff 64bit pref]
[    0.306723] pci 0000:1d:00.0: PME# supported from D0 D3hot D3cold
[    0.333367] pci 0000:19:01.0: PCI bridge to [bus 1d-ff]
[    0.333391] pci 0000:19:01.0:   bridge window [mem 0xa9300000-0xa93fffff]
[    0.333409] pci 0000:19:01.0:   bridge window [mem 0xad000000-0xad0fffff 64bit pref]
[    0.333416] pci_bus 0000:1d: busn_res: [bus 1d-ff] end is updated to 1d
[    0.333570] pci 0000:1e:00.0: [11c1:5901] type 00 class 0x0c0010
[    0.333640] pci 0000:1e:00.0: reg 0x10: [mem 0xa9200000-0xa9200fff 64bit]
[    0.333993] pci 0000:1e:00.0: supports D1 D2
[    0.333995] pci 0000:1e:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.363366] pci 0000:19:02.0: PCI bridge to [bus 1e-ff]
[    0.363391] pci 0000:19:02.0:   bridge window [mem 0xa9200000-0xa92fffff]
[    0.363409] pci_bus 0000:1e: busn_res: [bus 1e-ff] end is updated to 1e
[    0.363590] pci 0000:1f:00.0: [8086:1513] type 01 class 0x060400
[    0.363760] pci 0000:1f:00.0: enabling Extended Tags
[    0.364018] pci 0000:1f:00.0: supports D1 D2
[    0.364020] pci 0000:1f:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.393354] pci 0000:19:04.0: PCI bridge to [bus 1f-ff]
[    0.393378] pci 0000:19:04.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.393396] pci 0000:19:04.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.393406] pci 0000:1f:00.0: bridge configuration invalid ([bus 41-48]), reconfiguring
[    0.393635] pci 0000:20:00.0: [8086:1513] type 01 class 0x060400
[    0.393814] pci 0000:20:00.0: enabling Extended Tags
[    0.394073] pci 0000:20:00.0: supports D1 D2
[    0.394075] pci 0000:20:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.394294] pci 0000:20:01.0: [8086:1513] type 01 class 0x060400
[    0.394472] pci 0000:20:01.0: enabling Extended Tags
[    0.394731] pci 0000:20:01.0: supports D1 D2
[    0.394733] pci 0000:20:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.394949] pci 0000:20:02.0: [8086:1513] type 01 class 0x060400
[    0.395127] pci 0000:20:02.0: enabling Extended Tags
[    0.395387] pci 0000:20:02.0: supports D1 D2
[    0.395389] pci 0000:20:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.395614] pci 0000:20:04.0: [8086:1513] type 01 class 0x060400
[    0.395769] pci 0000:20:04.0: enabling Extended Tags
[    0.396033] pci 0000:20:04.0: supports D1 D2
[    0.396035] pci 0000:20:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.396261] pci 0000:20:05.0: [8086:1513] type 01 class 0x060400
[    0.396415] pci 0000:20:05.0: enabling Extended Tags
[    0.396679] pci 0000:20:05.0: supports D1 D2
[    0.396681] pci 0000:20:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.396935] pci 0000:1f:00.0: PCI bridge to [bus 20-ff]
[    0.396962] pci 0000:1f:00.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.396980] pci 0000:1f:00.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.396988] pci 0000:20:00.0: bridge configuration invalid ([bus 42-44]), reconfiguring
[    0.397011] pci 0000:20:01.0: bridge configuration invalid ([bus 45-45]), reconfiguring
[    0.397034] pci 0000:20:02.0: bridge configuration invalid ([bus 46-46]), reconfiguring
[    0.397057] pci 0000:20:04.0: bridge configuration invalid ([bus 47-47]), reconfiguring
[    0.397080] pci 0000:20:05.0: bridge configuration invalid ([bus 48-48]), reconfiguring
[    0.397293] pci 0000:21:00.0: [12d8:400c] type 01 class 0x060400
[    0.397813] pci 0000:21:00.0: supports D1 D2
[    0.397815] pci 0000:21:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.398083] pci 0000:20:00.0: PCI bridge to [bus 21-ff]
[    0.398110] pci 0000:20:00.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.398134] pci 0000:21:00.0: bridge configuration invalid ([bus 43-44]), reconfiguring
[    0.398431] pci 0000:22:03.0: [12d8:400c] type 01 class 0x060400
[    0.398880] pci 0000:22:03.0: supports D1 D2
[    0.398882] pci 0000:22:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.399146] pci 0000:21:00.0: PCI bridge to [bus 22-ff]
[    0.399179] pci 0000:21:00.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.399207] pci 0000:22:03.0: bridge configuration invalid ([bus 44-44]), reconfiguring
[    0.399479] pci 0000:23:00.0: [12d8:400e] type 00 class 0x0c0310
[    0.399547] pci 0000:23:00.0: reg 0x10: [mem 0xa9101000-0xa9101fff]
[    0.399964] pci 0000:23:00.0: supports D1 D2
[    0.399966] pci 0000:23:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.400173] pci 0000:23:00.1: [12d8:400e] type 00 class 0x0c0310
[    0.400242] pci 0000:23:00.1: reg 0x10: [mem 0xa9100000-0xa9100fff]
[    0.400659] pci 0000:23:00.1: supports D1 D2
[    0.400661] pci 0000:23:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.400824] pci 0000:23:00.2: [12d8:400f] type 00 class 0x0c0320
[    0.400892] pci 0000:23:00.2: reg 0x10: [mem 0xa9102000-0xa91020ff]
[    0.401309] pci 0000:23:00.2: supports D1 D2
[    0.401311] pci 0000:23:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.401663] pci 0000:22:03.0: PCI bridge to [bus 23-ff]
[    0.401696] pci 0000:22:03.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.401719] pci_bus 0000:23: busn_res: [bus 23-ff] end is updated to 23
[    0.401732] pci_bus 0000:22: busn_res: [bus 22-ff] end is updated to 23
[    0.401745] pci_bus 0000:21: busn_res: [bus 21-ff] end is updated to 23
[    0.401946] pci 0000:24:00.0: [14e4:16b0] type 00 class 0x020000
[    0.402038] pci 0000:24:00.0: reg 0x10: [mem 0xacf00000-0xacf0ffff 64bit pref]
[    0.402098] pci 0000:24:00.0: reg 0x18: [mem 0xacf10000-0xacf1ffff 64bit pref]
[    0.402550] pci 0000:24:00.0: PME# supported from D0 D3hot D3cold
[    0.402867] pci 0000:20:01.0: PCI bridge to [bus 24-ff]
[    0.402894] pci 0000:20:01.0:   bridge window [mem 0xa9000000-0xa90fffff]
[    0.402913] pci 0000:20:01.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.402916] pci_bus 0000:24: busn_res: [bus 24-ff] end is updated to 24
[    0.403112] pci 0000:25:00.0: [11c1:5901] type 00 class 0x0c0010
[    0.403204] pci 0000:25:00.0: reg 0x10: [mem 0xa8f00000-0xa8f00fff 64bit]
[    0.403672] pci 0000:25:00.0: supports D1 D2
[    0.403674] pci 0000:25:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.403971] pci 0000:20:02.0: PCI bridge to [bus 25-ff]
[    0.403998] pci 0000:20:02.0:   bridge window [mem 0xa8f00000-0xa8ffffff]
[    0.404017] pci_bus 0000:25: busn_res: [bus 25-ff] end is updated to 25
[    0.404150] pci 0000:20:04.0: PCI bridge to [bus 26-ff]
[    0.404177] pci 0000:20:04.0:   bridge window [mem 0xa8e00000-0xa8efffff]
[    0.404196] pci_bus 0000:26: busn_res: [bus 26-ff] end is updated to 35
[    0.404328] pci 0000:20:05.0: PCI bridge to [bus 36-ff]
[    0.404355] pci 0000:20:05.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.404374] pci_bus 0000:36: busn_res: [bus 36-ff] end is updated to 45
[    0.404385] pci_bus 0000:20: busn_res: [bus 20-ff] end is updated to 45
[    0.404396] pci_bus 0000:1f: busn_res: [bus 1f-ff] end is updated to 45
[    0.404489] pci 0000:19:05.0: PCI bridge to [bus 46-ff]
[    0.404509] pci 0000:19:05.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.404522] pci_bus 0000:46: busn_res: [bus 46-ff] end is updated to 55
[    0.404531] pci_bus 0000:19: busn_res: [bus 19-ff] end is updated to 55
[    0.404539] pci_bus 0000:18: busn_res: [bus 18-ff] end is updated to 55
[    0.404601] pci 0000:06:05.0: PCI bridge to [bus 56-ff]
[    0.404613] pci 0000:06:05.0:   bridge window [mem 0xa9500000-0xa95fffff]
[    0.404622] pci_bus 0000:56: busn_res: [bus 56-ff] end is updated to 65
[    0.404678] pci 0000:06:06.0: PCI bridge to [bus 66-ff]
[    0.404690] pci 0000:06:06.0:   bridge window [mem 0xa9600000-0xa96fffff]
[    0.404699] pci_bus 0000:66: busn_res: [bus 66-ff] end is updated to 75
[    0.404705] pci_bus 0000:06: busn_res: [bus 06-ff] end is updated to 75
[    0.404710] pci_bus 0000:05: busn_res: [bus 05-ff] end is updated to 75
[    0.404715] pci_bus 0000:00: on NUMA node 0
[    0.404980] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    0.404983] ACPI: PCI: Interrupt link LNKA disabled
[    0.405014] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    0.405016] ACPI: PCI: Interrupt link LNKB disabled
[    0.405045] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    0.405047] ACPI: PCI: Interrupt link LNKC disabled
[    0.405075] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    0.405078] ACPI: PCI: Interrupt link LNKD disabled
[    0.405106] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    0.405108] ACPI: PCI: Interrupt link LNKE disabled
[    0.405136] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    0.405138] ACPI: PCI: Interrupt link LNKF disabled
[    0.405166] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    0.405169] ACPI: PCI: Interrupt link LNKG disabled
[    0.405196] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    0.405199] ACPI: PCI: Interrupt link LNKH disabled
[    0.405285] ACPI: EC: interrupt unblocked
[    0.405288] ACPI: EC: event unblocked
[    0.405292] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.405294] ACPI: EC: GPE=0x17
[    0.405296] ACPI: \_SB_.PCI0.LPCB.EC__: Boot ECDT EC initialization complete
[    0.405299] ACPI: \_SB_.PCI0.LPCB.EC__: EC: Used to handle transactions and events
[    0.405329] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    0.405329] pci 0000:01:00.0: vgaarb: bridge control possible
[    0.405329] pci 0000:01:00.0: vgaarb: setting as boot device
[    0.405329] vgaarb: loaded
[    0.405329] SCSI subsystem initialized
[    0.405329] libata version 3.00 loaded.
[    0.405329] Registered efivars operations
[    0.405329] PCI: Using ACPI for IRQ routing
[    0.416017] PCI: pci_cache_line_size set to 64 bytes
[    0.416020] pci 0000:00:1c.4: can't claim BAR 9 [mem 0xacf00000-0xb10fffff 64bit pref]: address conflict with PCI Bus 0000:05 [mem 0xa8a00000-0xad6fffff]
[    0.416300] e820: reserve RAM buffer [mem 0x0008e000-0x0008ffff]
[    0.416302] e820: reserve RAM buffer [mem 0x89102018-0x8bffffff]
[    0.416303] e820: reserve RAM buffer [mem 0x891a0018-0x8bffffff]
[    0.416304] e820: reserve RAM buffer [mem 0x8ed33000-0x8fffffff]
[    0.416306] e820: reserve RAM buffer [mem 0x8ed71000-0x8fffffff]
[    0.416307] e820: reserve RAM buffer [mem 0x8ee5a000-0x8fffffff]
[    0.416308] e820: reserve RAM buffer [mem 0x8eed7000-0x8fffffff]
[    0.416309] e820: reserve RAM buffer [mem 0x8efa3000-0x8fffffff]
[    0.416310] e820: reserve RAM buffer [mem 0x86ff00000-0x86fffffff]
[    0.417207] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.417219] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.419260] clocksource: Switched to clocksource tsc-early
[    0.419297] VFS: Disk quotas dquot_6.6.0
[    0.419308] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.419339] pnp: PnP ACPI init
[    0.419446] system 00:00: [mem 0xfed00000-0xfed003ff] has been reserved
[    0.419490] system 00:01: [io  0x0680-0x069f] has been reserved
[    0.419493] system 00:01: [io  0x1000-0x100f] has been reserved
[    0.419496] system 00:01: [io  0xffff] has been reserved
[    0.419499] system 00:01: [io  0xffff] has been reserved
[    0.419501] system 00:01: [io  0x0400-0x047f] has been reserved
[    0.419503] system 00:01: [io  0x0500-0x057f] has been reserved
[    0.419506] system 00:01: [io  0x164e-0x164f] has been reserved
[    0.419656] system 00:03: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.419659] system 00:03: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.419663] system 00:03: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.419666] system 00:03: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.419668] system 00:03: [mem 0xe0000000-0xefffffff] could not be reserved
[    0.419671] system 00:03: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.419674] system 00:03: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.419676] system 00:03: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.419679] system 00:03: [mem 0xff000000-0xffffffff] could not be reserved
[    0.419682] system 00:03: [mem 0xfee00000-0xfeefffff] has been reserved
[    0.419762] pnp: PnP ACPI: found 4 devices
[    0.419777] pci 0000:01:00.0: assigning 75 device properties
[    0.419777] pci 0000:04:00.0: assigning 2 device properties
[    0.419777] pci 0000:07:00.0: assigning 5 device properties
[    0.419777] pci 0000:1e:00.0: assigning 2 device properties
[    0.419777] pci 0000:25:00.0: assigning 2 device properties
[    0.419777] pci 0000:00:1b.0: assigning 4 device properties
[    0.419777] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.419777] NET: Registered PF_INET protocol family
[    0.419777] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.421142] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    0.421183] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.421448] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.421538] TCP: Hash tables configured (established 262144 bind 65536)
[    0.421565] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.421623] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.421700] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.421708] pci 0000:03:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[    0.421716] pci_bus 0000:00: max bus depth: 9 pci_try_num: 10
[    0.421729] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.421732] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.421736] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.421739] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.421744] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.421749] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.421753] pci 0000:00:1c.0:   bridge window [mem 0xa8400000-0xa84fffff 64bit pref]
[    0.421761] pci 0000:03:00.0: BAR 6: assigned [mem 0xa8620000-0xa862ffff pref]
[    0.421765] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.421769] pci 0000:00:1c.1:   bridge window [mem 0xa8600000-0xa86fffff]
[    0.421777] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.421782] pci 0000:00:1c.2:   bridge window [mem 0xa8500000-0xa85fffff]
[    0.421790] pci 0000:05:00.0: BAR 7: no space for [io  size 0x8000]
[    0.421793] pci 0000:05:00.0: BAR 7: failed to assign [io  size 0x8000]
[    0.421798] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.421801] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.421804] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.421807] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.421811] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.421814] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.421816] pci 0000:06:03.0: BAR 7: no space for [io  size 0x1000]
[    0.421819] pci 0000:06:03.0: BAR 7: failed to assign [io  size 0x1000]
[    0.421822] pci 0000:06:04.0: BAR 7: no space for [io  size 0x5000]
[    0.421824] pci 0000:06:04.0: BAR 7: failed to assign [io  size 0x5000]
[    0.421826] pci 0000:06:05.0: BAR 7: no space for [io  size 0x1000]
[    0.421829] pci 0000:06:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.421832] pci 0000:06:06.0: BAR 7: no space for [io  size 0x1000]
[    0.421835] pci 0000:06:06.0: BAR 7: failed to assign [io  size 0x1000]
[    0.421838] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.421845] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.421856] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.421863] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xa8bfffff]
[    0.421875] pci 0000:18:00.0: BAR 7: no space for [io  size 0x4000]
[    0.421878] pci 0000:18:00.0: BAR 7: failed to assign [io  size 0x4000]
[    0.421881] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.421884] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.421887] pci 0000:19:04.0: BAR 7: no space for [io  size 0x3000]
[    0.421890] pci 0000:19:04.0: BAR 7: failed to assign [io  size 0x3000]
[    0.421892] pci 0000:19:05.0: BAR 7: no space for [io  size 0x1000]
[    0.421894] pci 0000:19:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.421897] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.421911] pci 0000:1b:03.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.421936] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.421949] pci 0000:1a:00.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.421974] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.421985] pci 0000:19:00.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.422004] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.422015] pci 0000:19:01.0:   bridge window [mem 0xa9300000-0xa93fffff]
[    0.422023] pci 0000:19:01.0:   bridge window [mem 0xad000000-0xad0fffff 64bit pref]
[    0.422037] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.422047] pci 0000:19:02.0:   bridge window [mem 0xa9200000-0xa92fffff]
[    0.422067] pci 0000:1f:00.0: BAR 7: no space for [io  size 0x2000]
[    0.422069] pci 0000:1f:00.0: BAR 7: failed to assign [io  size 0x2000]
[    0.422073] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422076] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422080] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422083] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422085] pci 0000:20:04.0: BAR 7: no space for [io  size 0x1000]
[    0.422088] pci 0000:20:04.0: BAR 7: failed to assign [io  size 0x1000]
[    0.422090] pci 0000:20:05.0: BAR 7: no space for [io  size 0x1000]
[    0.422092] pci 0000:20:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.422095] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.422113] pci 0000:22:03.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.422146] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.422163] pci 0000:21:00.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.422196] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.422210] pci 0000:20:00.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.422237] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.422252] pci 0000:20:01.0:   bridge window [mem 0xa9000000-0xa90fffff]
[    0.422262] pci 0000:20:01.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.422282] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.422296] pci 0000:20:02.0:   bridge window [mem 0xa8f00000-0xa8ffffff]
[    0.422323] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.422338] pci 0000:20:04.0:   bridge window [mem 0xa8e00000-0xa8efffff]
[    0.422365] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.422379] pci 0000:20:05.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.422406] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.422420] pci 0000:1f:00.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.422431] pci 0000:1f:00.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.422450] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.422460] pci 0000:19:04.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.422468] pci 0000:19:04.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.422482] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.422493] pci 0000:19:05.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.422512] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.422523] pci 0000:18:00.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.422530] pci 0000:18:00.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.422544] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.422551] pci 0000:06:04.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.422557] pci 0000:06:04.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.422566] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.422572] pci 0000:06:05.0:   bridge window [mem 0xa9500000-0xa95fffff]
[    0.422584] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.422591] pci 0000:06:06.0:   bridge window [mem 0xa9600000-0xa96fffff]
[    0.422603] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.422609] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xa96fffff]
[    0.422615] pci 0000:05:00.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.422624] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.422627] pci 0000:00:1c.4:   bridge window [io  0x4000-0x4fff]
[    0.422632] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xad6fffff]
[    0.422640] pci_bus 0000:00: No. 2 try to assign unassigned res
[    0.422648] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.422650] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.422653] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.422656] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.422660] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.422665] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.422669] pci 0000:00:1c.0:   bridge window [mem 0xa8400000-0xa84fffff 64bit pref]
[    0.422675] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.422680] pci 0000:00:1c.1:   bridge window [mem 0xa8600000-0xa86fffff]
[    0.422688] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.422693] pci 0000:00:1c.2:   bridge window [mem 0xa8500000-0xa85fffff]
[    0.422701] pci 0000:05:00.0: BAR 7: no space for [io  size 0x8000]
[    0.422703] pci 0000:05:00.0: BAR 7: failed to assign [io  size 0x8000]
[    0.422707] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422710] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422713] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422716] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422719] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422722] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422725] pci 0000:06:03.0: BAR 7: no space for [io  size 0x1000]
[    0.422727] pci 0000:06:03.0: BAR 7: failed to assign [io  size 0x1000]
[    0.422730] pci 0000:06:04.0: BAR 7: no space for [io  size 0x5000]
[    0.422732] pci 0000:06:04.0: BAR 7: failed to assign [io  size 0x5000]
[    0.422734] pci 0000:06:05.0: BAR 7: no space for [io  size 0x1000]
[    0.422737] pci 0000:06:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.422739] pci 0000:06:06.0: BAR 7: no space for [io  size 0x1000]
[    0.422741] pci 0000:06:06.0: BAR 7: failed to assign [io  size 0x1000]
[    0.422744] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.422751] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.422762] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.422769] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xa8bfffff]
[    0.422781] pci 0000:18:00.0: BAR 7: no space for [io  size 0x4000]
[    0.422783] pci 0000:18:00.0: BAR 7: failed to assign [io  size 0x4000]
[    0.422787] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422790] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422793] pci 0000:19:04.0: BAR 7: no space for [io  size 0x3000]
[    0.422795] pci 0000:19:04.0: BAR 7: failed to assign [io  size 0x3000]
[    0.422797] pci 0000:19:05.0: BAR 7: no space for [io  size 0x1000]
[    0.422800] pci 0000:19:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.422802] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.422816] pci 0000:1b:03.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.422840] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.422854] pci 0000:1a:00.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.422879] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.422889] pci 0000:19:00.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.422909] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.422919] pci 0000:19:01.0:   bridge window [mem 0xa9300000-0xa93fffff]
[    0.422927] pci 0000:19:01.0:   bridge window [mem 0xad000000-0xad0fffff 64bit pref]
[    0.422941] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.422952] pci 0000:19:02.0:   bridge window [mem 0xa9200000-0xa92fffff]
[    0.422971] pci 0000:1f:00.0: BAR 7: no space for [io  size 0x2000]
[    0.422973] pci 0000:1f:00.0: BAR 7: failed to assign [io  size 0x2000]
[    0.422977] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422979] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422983] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422986] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422989] pci 0000:20:04.0: BAR 7: no space for [io  size 0x1000]
[    0.422991] pci 0000:20:04.0: BAR 7: failed to assign [io  size 0x1000]
[    0.422993] pci 0000:20:05.0: BAR 7: no space for [io  size 0x1000]
[    0.422996] pci 0000:20:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.422998] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.423015] pci 0000:22:03.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.423048] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.423065] pci 0000:21:00.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.423098] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.423112] pci 0000:20:00.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.423139] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.423154] pci 0000:20:01.0:   bridge window [mem 0xa9000000-0xa90fffff]
[    0.423164] pci 0000:20:01.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.423183] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.423198] pci 0000:20:02.0:   bridge window [mem 0xa8f00000-0xa8ffffff]
[    0.423224] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.423239] pci 0000:20:04.0:   bridge window [mem 0xa8e00000-0xa8efffff]
[    0.423266] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.423280] pci 0000:20:05.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.423307] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.423321] pci 0000:1f:00.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.423331] pci 0000:1f:00.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.423350] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.423361] pci 0000:19:04.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.423369] pci 0000:19:04.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.423383] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.423393] pci 0000:19:05.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.423413] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.423423] pci 0000:18:00.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.423431] pci 0000:18:00.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.423445] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.423452] pci 0000:06:04.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.423457] pci 0000:06:04.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.423466] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.423473] pci 0000:06:05.0:   bridge window [mem 0xa9500000-0xa95fffff]
[    0.423485] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.423491] pci 0000:06:06.0:   bridge window [mem 0xa9600000-0xa96fffff]
[    0.423503] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.423510] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xa96fffff]
[    0.423515] pci 0000:05:00.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.423524] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.423527] pci 0000:00:1c.4:   bridge window [io  0x4000-0x4fff]
[    0.423532] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xad6fffff]
[    0.423540] pci_bus 0000:00: No. 3 try to assign unassigned res
[    0.423542] release child resource [mem 0xa9100000-0xa9100fff]
[    0.423543] release child resource [mem 0xa9101000-0xa9101fff]
[    0.423544] release child resource [mem 0xa9102000-0xa91020ff]
[    0.423545] pci 0000:22:03.0: resource 8 [mem 0xa9100000-0xa91fffff] released
[    0.423548] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.423560] pci 0000:21:00.0: resource 8 [mem 0xa9100000-0xa91fffff] released
[    0.423562] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.423575] pci 0000:20:00.0: resource 8 [mem 0xa9100000-0xa91fffff] released
[    0.423577] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.423587] release child resource [mem 0xacf00000-0xacf0ffff 64bit pref]
[    0.423588] release child resource [mem 0xacf10000-0xacf1ffff 64bit pref]
[    0.423589] pci 0000:20:01.0: resource 9 [mem 0xacf00000-0xacffffff 64bit pref] released
[    0.423592] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.423614] release child resource [mem 0xa8f00000-0xa8f00fff 64bit]
[    0.423615] pci 0000:20:02.0: resource 8 [mem 0xa8f00000-0xa8ffffff] released
[    0.423618] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.423628] pci 0000:20:04.0: resource 8 [mem 0xa8e00000-0xa8efffff] released
[    0.423631] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.423641] pci 0000:20:05.0: resource 8 [mem 0xa8d00000-0xa8dfffff] released
[    0.423644] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.423654] pci 0000:1f:00.0: resource 9 [mem 0xacf00000-0xacffffff 64bit pref] released
[    0.423657] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.423680] release child resource [mem 0xa9400000-0xa9400fff]
[    0.423680] release child resource [mem 0xa9401000-0xa9401fff]
[    0.423681] release child resource [mem 0xa9402000-0xa94020ff]
[    0.423682] pci 0000:1b:03.0: resource 8 [mem 0xa9400000-0xa94fffff] released
[    0.423684] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.423694] pci 0000:1a:00.0: resource 8 [mem 0xa9400000-0xa94fffff] released
[    0.423696] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.423706] pci 0000:19:00.0: resource 8 [mem 0xa9400000-0xa94fffff] released
[    0.423709] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.423716] release child resource [mem 0xad000000-0xad00ffff 64bit pref]
[    0.423717] release child resource [mem 0xad010000-0xad01ffff 64bit pref]
[    0.423718] pci 0000:19:01.0: resource 9 [mem 0xad000000-0xad0fffff 64bit pref] released
[    0.423721] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.423737] release child resource [mem 0xa9200000-0xa9200fff 64bit]
[    0.423738] pci 0000:19:02.0: resource 8 [mem 0xa9200000-0xa92fffff] released
[    0.423740] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.423748] pci 0000:19:04.0: resource 9 [mem 0xacf00000-0xacffffff 64bit pref] released
[    0.423751] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.423767] pci 0000:19:05.0: resource 8 [mem 0xa8c00000-0xa8cfffff] released
[    0.423770] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.423778] pci 0000:18:00.0: resource 9 [mem 0xacf00000-0xad0fffff 64bit pref] released
[    0.423780] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.423797] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.423798] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.423799] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.423801] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.423807] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xa8bfffff] released
[    0.423809] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.423815] pci 0000:06:04.0: resource 9 [mem 0xacf00000-0xad0fffff 64bit pref] released
[    0.423818] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.423828] pci 0000:06:05.0: resource 8 [mem 0xa9500000-0xa95fffff] released
[    0.423830] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.423835] pci 0000:06:06.0: resource 8 [mem 0xa9600000-0xa96fffff] released
[    0.423838] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.423843] pci 0000:05:00.0: resource 9 [mem 0xacf00000-0xad0fffff 64bit pref] released
[    0.423846] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.423857] pci 0000:00:1c.4: resource 7 [io  0x4000-0x4fff] released
[    0.423859] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.423874] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.423877] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.423881] pci 0000:00:1c.4: BAR 7: assigned [io  0x4000-0xbfff]
[    0.423884] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.423886] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.423889] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.423892] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.423896] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.423901] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.423905] pci 0000:00:1c.0:   bridge window [mem 0xa8400000-0xa84fffff 64bit pref]
[    0.423912] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.423916] pci 0000:00:1c.1:   bridge window [mem 0xa8600000-0xa86fffff]
[    0.423924] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.423929] pci 0000:00:1c.2:   bridge window [mem 0xa8500000-0xa85fffff]
[    0.423938] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.423940] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.423944] pci 0000:05:00.0: BAR 7: assigned [io  0x4000-0xbfff]
[    0.423947] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.423950] pci 0000:06:03.0: BAR 8: no space for [mem size 0x08000000]
[    0.423952] pci 0000:06:03.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.423955] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.423958] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.423962] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.423964] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.423967] pci 0000:06:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.423970] pci 0000:06:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.423973] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.423976] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.423979] pci 0000:06:06.0: BAR 8: no space for [mem size 0x08000000]
[    0.423981] pci 0000:06:06.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.423984] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.423987] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.423990] pci 0000:06:03.0: BAR 7: assigned [io  0x4000-0x4fff]
[    0.423992] pci 0000:06:04.0: BAR 7: assigned [io  0x5000-0x9fff]
[    0.423995] pci 0000:06:05.0: BAR 7: assigned [io  0xa000-0xafff]
[    0.423997] pci 0000:06:06.0: BAR 7: assigned [io  0xb000-0xbfff]
[    0.424000] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.424007] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.424013] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.424020] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.424032] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.424035] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.424052] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.424055] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.424058] pci 0000:18:00.0: BAR 7: assigned [io  0x5000-0x8fff]
[    0.424061] pci 0000:19:00.0: BAR 8: assigned [mem 0xa8c00000-0xa8cfffff]
[    0.424064] pci 0000:19:01.0: BAR 9: assigned [mem 0xa9200000-0xa92fffff 64bit pref]
[    0.424067] pci 0000:19:02.0: BAR 8: assigned [mem 0xa9400000-0xa94fffff]
[    0.424070] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.424073] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.424076] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.424078] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.424081] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.424084] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.424087] pci 0000:19:04.0: BAR 7: assigned [io  0x5000-0x7fff]
[    0.424090] pci 0000:19:05.0: BAR 7: assigned [io  0x8000-0x8fff]
[    0.424092] pci 0000:1a:00.0: BAR 8: assigned [mem 0xa8c00000-0xa8cfffff]
[    0.424095] pci 0000:1b:03.0: BAR 8: assigned [mem 0xa8c00000-0xa8cfffff]
[    0.424098] pci 0000:1c:00.0: BAR 0: assigned [mem 0xa8c00000-0xa8c00fff]
[    0.424109] pci 0000:1c:00.1: BAR 0: assigned [mem 0xa8c01000-0xa8c01fff]
[    0.424119] pci 0000:1c:00.2: BAR 0: assigned [mem 0xa8c02000-0xa8c020ff]
[    0.424129] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.424142] pci 0000:1b:03.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.424167] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.424181] pci 0000:1a:00.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.424206] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.424216] pci 0000:19:00.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.424236] pci 0000:1d:00.0: BAR 0: assigned [mem 0xa9200000-0xa920ffff 64bit pref]
[    0.424267] pci 0000:1d:00.0: BAR 2: assigned [mem 0xa9210000-0xa921ffff 64bit pref]
[    0.424297] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.424308] pci 0000:19:01.0:   bridge window [mem 0xa9300000-0xa93fffff]
[    0.424315] pci 0000:19:01.0:   bridge window [mem 0xa9200000-0xa92fffff 64bit pref]
[    0.424330] pci 0000:1e:00.0: BAR 0: assigned [mem 0xa9400000-0xa9400fff 64bit]
[    0.424360] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.424371] pci 0000:19:02.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.424391] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.424393] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.424397] pci 0000:1f:00.0: BAR 7: assigned [io  0x5000-0x6fff]
[    0.424400] pci 0000:20:00.0: BAR 8: assigned [mem 0xa8d00000-0xa8dfffff]
[    0.424403] pci 0000:20:01.0: BAR 9: assigned [mem 0xa8e00000-0xa8efffff 64bit pref]
[    0.424406] pci 0000:20:02.0: BAR 8: assigned [mem 0xa8f00000-0xa8ffffff]
[    0.424409] pci 0000:20:04.0: BAR 8: no space for [mem size 0x08000000]
[    0.424411] pci 0000:20:04.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.424414] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.424417] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.424420] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.424422] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.424425] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.424428] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.424431] pci 0000:20:04.0: BAR 7: assigned [io  0x5000-0x5fff]
[    0.424433] pci 0000:20:05.0: BAR 7: assigned [io  0x6000-0x6fff]
[    0.424436] pci 0000:21:00.0: BAR 8: assigned [mem 0xa8d00000-0xa8dfffff]
[    0.424439] pci 0000:22:03.0: BAR 8: assigned [mem 0xa8d00000-0xa8dfffff]
[    0.424442] pci 0000:23:00.0: BAR 0: assigned [mem 0xa8d00000-0xa8d00fff]
[    0.424455] pci 0000:23:00.1: BAR 0: assigned [mem 0xa8d01000-0xa8d01fff]
[    0.424468] pci 0000:23:00.2: BAR 0: assigned [mem 0xa8d02000-0xa8d020ff]
[    0.424480] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.424497] pci 0000:22:03.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.424530] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.424547] pci 0000:21:00.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.424580] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.424594] pci 0000:20:00.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.424621] pci 0000:24:00.0: BAR 0: assigned [mem 0xa8e00000-0xa8e0ffff 64bit pref]
[    0.424661] pci 0000:24:00.0: BAR 2: assigned [mem 0xa8e10000-0xa8e1ffff 64bit pref]
[    0.424700] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.424714] pci 0000:20:01.0:   bridge window [mem 0xa9000000-0xa90fffff]
[    0.424725] pci 0000:20:01.0:   bridge window [mem 0xa8e00000-0xa8efffff 64bit pref]
[    0.424744] pci 0000:25:00.0: BAR 0: assigned [mem 0xa8f00000-0xa8f00fff 64bit]
[    0.424784] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.424798] pci 0000:20:02.0:   bridge window [mem 0xa8f00000-0xa8ffffff]
[    0.424825] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.424831] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.424870] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.424876] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.424915] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.424921] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.424936] pci 0000:1f:00.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.424962] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.424967] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.424978] pci 0000:19:04.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.424997] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.425002] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.425029] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.425034] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.425045] pci 0000:18:00.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.425064] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.425067] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.425074] pci 0000:06:04.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.425086] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.425090] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.425106] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.425110] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.425126] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.425130] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.425136] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xa96fffff]
[    0.425148] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.425151] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.425155] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xad6fffff]
[    0.425163] pci_bus 0000:00: No. 4 try to assign unassigned res
[    0.425166] release child resource [mem 0xa8d00000-0xa8d00fff]
[    0.425166] release child resource [mem 0xa8d01000-0xa8d01fff]
[    0.425167] release child resource [mem 0xa8d02000-0xa8d020ff]
[    0.425168] pci 0000:22:03.0: resource 8 [mem 0xa8d00000-0xa8dfffff] released
[    0.425170] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.425182] pci 0000:21:00.0: resource 8 [mem 0xa8d00000-0xa8dfffff] released
[    0.425185] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.425197] pci 0000:20:00.0: resource 8 [mem 0xa8d00000-0xa8dfffff] released
[    0.425200] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.425210] release child resource [mem 0xa8e00000-0xa8e0ffff 64bit pref]
[    0.425211] release child resource [mem 0xa8e10000-0xa8e1ffff 64bit pref]
[    0.425212] pci 0000:20:01.0: resource 9 [mem 0xa8e00000-0xa8efffff 64bit pref] released
[    0.425215] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.425237] release child resource [mem 0xa8f00000-0xa8f00fff 64bit]
[    0.425238] pci 0000:20:02.0: resource 8 [mem 0xa8f00000-0xa8ffffff] released
[    0.425240] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.425250] release child resource [mem 0xa9000000-0xa90fffff]
[    0.425251] pci 0000:1f:00.0: resource 8 [mem 0xa8d00000-0xa91fffff] released
[    0.425254] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.425264] pci 0000:19:04.0: resource 8 [mem 0xa8d00000-0xa91fffff] released
[    0.425267] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.425274] release child resource [mem 0xa8c00000-0xa8c00fff]
[    0.425275] release child resource [mem 0xa8c01000-0xa8c01fff]
[    0.425276] release child resource [mem 0xa8c02000-0xa8c020ff]
[    0.425277] pci 0000:1b:03.0: resource 8 [mem 0xa8c00000-0xa8cfffff] released
[    0.425279] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.425289] pci 0000:1a:00.0: resource 8 [mem 0xa8c00000-0xa8cfffff] released
[    0.425291] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.425301] pci 0000:19:00.0: resource 8 [mem 0xa8c00000-0xa8cfffff] released
[    0.425303] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.425311] release child resource [mem 0xa9200000-0xa920ffff 64bit pref]
[    0.425311] release child resource [mem 0xa9210000-0xa921ffff 64bit pref]
[    0.425312] pci 0000:19:01.0: resource 9 [mem 0xa9200000-0xa92fffff 64bit pref] released
[    0.425315] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.425331] release child resource [mem 0xa9400000-0xa9400fff 64bit]
[    0.425332] pci 0000:19:02.0: resource 8 [mem 0xa9400000-0xa94fffff] released
[    0.425335] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.425342] release child resource [mem 0xa9300000-0xa93fffff]
[    0.425343] pci 0000:18:00.0: resource 8 [mem 0xa8c00000-0xa94fffff] released
[    0.425346] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.425354] pci 0000:06:04.0: resource 8 [mem 0xa8c00000-0xa94fffff] released
[    0.425356] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.425362] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.425362] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.425363] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.425366] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.425371] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xa96fffff] released
[    0.425374] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.425380] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xad6fffff] released
[    0.425383] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.425387] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.425388] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.425391] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.425394] release child resource [mem 0xa8400000-0xa840ffff 64bit pref]
[    0.425395] release child resource [mem 0xa8410000-0xa841ffff 64bit pref]
[    0.425396] pci 0000:00:1c.0: resource 9 [mem 0xa8400000-0xa84fffff 64bit pref] released
[    0.425399] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.425405] release child resource [mem 0xa8600000-0xa861ffff 64bit]
[    0.425406] release child resource [mem 0xa8620000-0xa862ffff pref]
[    0.425407] pci 0000:00:1c.1: resource 8 [mem 0xa8600000-0xa86fffff] released
[    0.425410] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.425413] release child resource [mem 0xa8500000-0xa8500fff 64bit]
[    0.425414] pci 0000:00:1c.2: resource 8 [mem 0xa8500000-0xa85fffff] released
[    0.425417] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.425430] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.425434] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.425437] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.425440] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.425443] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.425447] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.425450] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.425454] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.425462] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.425464] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.425467] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.425470] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.425474] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.425490] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.425506] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.425510] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.425515] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.425522] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.425536] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.425539] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.425544] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.425552] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.425568] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.425572] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.425581] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.425583] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.425586] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.425590] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.425593] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.425596] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.425599] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.425602] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.425604] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.425607] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.425610] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.425613] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.425616] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.425619] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.425622] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.425625] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.425628] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.425635] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.425641] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.425648] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.425660] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.425663] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.425670] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.425682] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.425685] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.425688] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.425692] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.425694] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.425697] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.425700] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.425703] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.425706] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.425709] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.425712] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.425714] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.425717] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.425720] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.425723] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.425726] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.425729] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.425739] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.425749] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.425759] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.425773] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.425798] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.425811] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.425836] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.425847] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.425866] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.425897] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.425927] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.425937] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.425945] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.425960] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.425990] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.426001] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.426020] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.426023] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.426026] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.426030] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.426032] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.426035] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.426038] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.426041] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.426044] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.426046] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.426050] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.426052] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.426055] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.426058] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.426061] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.426064] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.426067] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.426079] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.426092] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.426105] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.426122] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.426155] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.426172] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.426205] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.426219] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.426246] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.426286] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.426325] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.426339] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.426350] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.426369] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.426409] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.426423] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.426450] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.426456] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.426471] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.426498] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.426504] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.426543] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.426549] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.426563] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.426590] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.426595] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.426606] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.426625] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.426630] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.426657] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.426662] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.426673] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.426692] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.426695] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.426702] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.426714] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.426718] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.426725] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.426737] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.426740] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.426747] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.426759] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.426762] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.426769] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.426781] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.426784] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.426789] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.426797] pci_bus 0000:00: No. 5 try to assign unassigned res
[    0.426799] release child resource [mem 0xb0f00000-0xb0f00fff]
[    0.426799] release child resource [mem 0xb0f01000-0xb0f01fff]
[    0.426800] release child resource [mem 0xb0f02000-0xb0f020ff]
[    0.426801] pci 0000:22:03.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.426803] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.426815] pci 0000:21:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.426818] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.426830] pci 0000:20:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.426833] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.426843] release child resource [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.426844] release child resource [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.426845] pci 0000:20:01.0: resource 9 [mem 0xb1100000-0xb11fffff 64bit pref] released
[    0.426848] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.426870] release child resource [mem 0xb1200000-0xb1200fff 64bit]
[    0.426871] pci 0000:20:02.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[    0.426873] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.426884] pci 0000:20:04.0: resource 8 [mem 0xb1300000-0xb92fffff] released
[    0.426886] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.426896] release child resource [mem 0xb1000000-0xb10fffff]
[    0.426897] pci 0000:1f:00.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.426900] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.426910] pci 0000:19:04.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.426913] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.426920] release child resource [mem 0xb0b00000-0xb0b00fff]
[    0.426921] release child resource [mem 0xb0b01000-0xb0b01fff]
[    0.426922] release child resource [mem 0xb0b02000-0xb0b020ff]
[    0.426922] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.426925] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.426934] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.426937] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.426947] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.426949] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.426957] release child resource [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.426957] release child resource [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.426958] pci 0000:19:01.0: resource 9 [mem 0xb0d00000-0xb0dfffff 64bit pref] released
[    0.426961] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.426977] release child resource [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.426978] pci 0000:19:02.0: resource 8 [mem 0xb0e00000-0xb0efffff] released
[    0.426981] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.426988] release child resource [mem 0xb0c00000-0xb0cfffff]
[    0.426989] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.426992] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427000] pci 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427002] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427008] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.427008] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.427009] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.427012] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427017] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[    0.427019] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427025] pci 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[    0.427027] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427033] pci 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[    0.427035] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427040] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427043] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427049] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427051] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427055] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427056] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.427059] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427063] release child resource [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427064] release child resource [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427064] pci 0000:00:1c.0: resource 9 [mem 0x8f900000-0x8f9fffff 64bit pref] released
[    0.427067] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427074] release child resource [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427075] release child resource [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427076] pci 0000:00:1c.1: resource 8 [mem 0x8fa00000-0x8fafffff] released
[    0.427078] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427082] release child resource [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427083] pci 0000:00:1c.2: resource 8 [mem 0x8fb00000-0x8fbfffff] released
[    0.427085] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427097] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427101] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427104] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.427107] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.427110] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427114] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427117] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427120] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427128] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427130] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.427133] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.427136] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427141] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427157] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427172] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427177] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.427181] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427188] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427202] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427205] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427210] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.427218] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427234] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427239] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.427247] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427249] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427252] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427256] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.427259] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.427262] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427264] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427267] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427270] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427273] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427276] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.427279] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427282] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427285] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.427288] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427291] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427294] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.427300] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.427307] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427313] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.427325] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427329] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.427336] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.427348] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427351] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427354] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427357] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427360] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.427363] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427366] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.427366] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427366] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427366] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427366] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427366] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427366] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427366] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427366] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.427366] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.427366] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.427366] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427366] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427366] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427366] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427366] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427366] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427366] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427366] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427366] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427366] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.427366] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427366] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427366] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427366] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.427366] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427366] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427366] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427366] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427366] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.427366] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427366] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.427366] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.427366] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427366] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427366] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427366] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427366] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.427366] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.427366] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.427366] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427366] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427366] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427366] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427366] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427366] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427366] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427366] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427366] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427366] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.427366] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427366] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.427366] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427366] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.427366] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427366] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.427366] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.427366] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.427366] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.427366] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427366] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.427366] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427366] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427366] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.427366] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427366] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.427366] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.427366] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427366] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.427366] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427366] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427366] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.427366] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427366] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427366] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.427366] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.427366] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427366] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.427366] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.427366] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427366] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.427366] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.427366] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427366] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.427366] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.427366] pci_bus 0000:00: No. 6 try to assign unassigned res
[    0.427366] release child resource [mem 0xb0f00000-0xb0f00fff]
[    0.427366] release child resource [mem 0xb0f01000-0xb0f01fff]
[    0.427366] release child resource [mem 0xb0f02000-0xb0f020ff]
[    0.427366] pci 0000:22:03.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427366] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427366] pci 0000:21:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427366] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427366] pci 0000:20:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427366] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427366] release child resource [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427366] release child resource [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427366] pci 0000:20:01.0: resource 9 [mem 0xb1100000-0xb11fffff 64bit pref] released
[    0.427366] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427366] release child resource [mem 0xb1200000-0xb1200fff 64bit]
[    0.427366] pci 0000:20:02.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[    0.427366] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427366] pci 0000:20:04.0: resource 8 [mem 0xb1300000-0xb92fffff] released
[    0.427366] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427366] release child resource [mem 0xb1000000-0xb10fffff]
[    0.427366] pci 0000:1f:00.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.427366] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427366] pci 0000:19:04.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.427366] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427366] release child resource [mem 0xb0b00000-0xb0b00fff]
[    0.427366] release child resource [mem 0xb0b01000-0xb0b01fff]
[    0.427366] release child resource [mem 0xb0b02000-0xb0b020ff]
[    0.427366] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427366] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427366] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427366] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427366] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427366] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427366] release child resource [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427366] release child resource [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427366] pci 0000:19:01.0: resource 9 [mem 0xb0d00000-0xb0dfffff 64bit pref] released
[    0.427366] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427366] release child resource [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427366] pci 0000:19:02.0: resource 8 [mem 0xb0e00000-0xb0efffff] released
[    0.427366] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427366] release child resource [mem 0xb0c00000-0xb0cfffff]
[    0.427366] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427366] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427366] pci 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427366] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427366] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.427366] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.427366] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.427366] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427366] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[    0.427366] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427366] pci 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[    0.427366] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427366] pci 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[    0.427366] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427366] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427366] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427366] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427366] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427366] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427366] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.427366] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427366] release child resource [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427366] release child resource [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427366] pci 0000:00:1c.0: resource 9 [mem 0x8f900000-0x8f9fffff 64bit pref] released
[    0.427366] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427366] release child resource [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427366] release child resource [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427366] pci 0000:00:1c.1: resource 8 [mem 0x8fa00000-0x8fafffff] released
[    0.427366] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427366] release child resource [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427366] pci 0000:00:1c.2: resource 8 [mem 0x8fb00000-0x8fbfffff] released
[    0.427366] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427366] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427366] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427366] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.427366] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.427366] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427366] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427366] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427366] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427366] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427366] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.427366] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.427366] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427366] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427366] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427366] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427366] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.427366] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427366] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427366] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427366] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427366] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.427366] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427366] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427366] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.427366] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427366] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427366] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427366] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.427366] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.427366] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427366] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427366] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427366] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.427366] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.427366] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.427366] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.427366] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427366] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.427366] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427366] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.427366] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.427366] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427366] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427366] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427366] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427366] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.427366] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427366] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.427366] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427366] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427366] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427366] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427366] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427366] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427366] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427366] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.427366] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.427366] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.427366] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427366] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427366] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427366] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427366] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427366] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427366] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427366] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427366] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427366] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.427366] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427366] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427366] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427366] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.427366] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427366] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427366] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427366] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427366] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.427366] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427366] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.427366] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.427366] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427366] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427366] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427366] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427366] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.427366] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.427366] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.427366] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427366] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427366] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427366] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427366] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427366] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427366] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427366] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427366] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427366] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.427366] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427366] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.427366] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427366] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.427366] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427366] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.427366] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.427366] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.427366] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.427366] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427366] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.427366] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427366] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427366] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.427366] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427366] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.427366] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.427366] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427366] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.427366] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427366] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427366] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.427366] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427366] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427366] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.427366] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.427366] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427366] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.427366] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.427366] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427366] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.427366] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.427366] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427366] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.427366] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.427366] pci_bus 0000:00: No. 7 try to assign unassigned res
[    0.427366] release child resource [mem 0xb0f00000-0xb0f00fff]
[    0.427366] release child resource [mem 0xb0f01000-0xb0f01fff]
[    0.427366] release child resource [mem 0xb0f02000-0xb0f020ff]
[    0.427366] pci 0000:22:03.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427366] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427366] pci 0000:21:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427366] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427366] pci 0000:20:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427366] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427366] release child resource [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427366] release child resource [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427366] pci 0000:20:01.0: resource 9 [mem 0xb1100000-0xb11fffff 64bit pref] released
[    0.427366] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427366] release child resource [mem 0xb1200000-0xb1200fff 64bit]
[    0.427366] pci 0000:20:02.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[    0.427366] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427366] pci 0000:20:04.0: resource 8 [mem 0xb1300000-0xb92fffff] released
[    0.427366] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427366] release child resource [mem 0xb1000000-0xb10fffff]
[    0.427366] pci 0000:1f:00.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.427366] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427366] pci 0000:19:04.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.427366] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427366] release child resource [mem 0xb0b00000-0xb0b00fff]
[    0.427366] release child resource [mem 0xb0b01000-0xb0b01fff]
[    0.427366] release child resource [mem 0xb0b02000-0xb0b020ff]
[    0.427366] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427366] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427366] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427366] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427366] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427366] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427366] release child resource [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427366] release child resource [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427366] pci 0000:19:01.0: resource 9 [mem 0xb0d00000-0xb0dfffff 64bit pref] released
[    0.427366] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427366] release child resource [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427366] pci 0000:19:02.0: resource 8 [mem 0xb0e00000-0xb0efffff] released
[    0.427366] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427366] release child resource [mem 0xb0c00000-0xb0cfffff]
[    0.427366] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427366] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427366] pci 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427366] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427366] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.427366] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.427366] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.427366] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427366] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[    0.427366] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427366] pci 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[    0.427366] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427366] pci 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[    0.427366] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427366] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427366] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427366] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427366] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427366] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427366] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.427366] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427366] release child resource [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427366] release child resource [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427366] pci 0000:00:1c.0: resource 9 [mem 0x8f900000-0x8f9fffff 64bit pref] released
[    0.427366] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427366] release child resource [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427366] release child resource [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427366] pci 0000:00:1c.1: resource 8 [mem 0x8fa00000-0x8fafffff] released
[    0.427366] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427366] release child resource [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427366] pci 0000:00:1c.2: resource 8 [mem 0x8fb00000-0x8fbfffff] released
[    0.427366] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427366] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427366] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427366] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.427366] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.427366] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427366] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427366] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427366] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427366] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427366] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.427366] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.427366] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427366] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427366] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427366] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427366] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.427366] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427366] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427366] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427366] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427366] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.427366] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427366] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427366] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.427366] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427366] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427366] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427366] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.427366] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.427366] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427366] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427366] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427366] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.427366] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.427366] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.427366] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.427366] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427366] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.427366] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427366] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.427366] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.427366] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427366] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427366] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427366] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427366] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.427366] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427366] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.427366] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427366] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427366] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427366] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427366] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427366] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427366] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427366] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.427366] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.427366] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.427366] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427366] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427366] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427366] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427366] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427366] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427366] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427366] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427366] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427366] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.427366] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427366] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427366] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427366] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.427366] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427366] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427366] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427366] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427366] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.427366] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427366] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.427366] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.427366] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427366] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427366] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427366] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427366] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.427366] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.427366] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.427366] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427366] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427366] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427366] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427366] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427366] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427366] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427366] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427366] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427366] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.427366] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427366] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.427366] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427366] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.427366] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427366] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.427366] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.427366] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.427366] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.427366] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427366] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.427366] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427366] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427366] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.427366] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427366] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.427366] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.427366] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427366] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.427366] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427366] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427366] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.427366] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427366] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427366] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.427366] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.427366] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427366] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.427366] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.427366] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427366] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.427366] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.427366] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427366] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.427366] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.427366] pci_bus 0000:00: No. 8 try to assign unassigned res
[    0.427366] release child resource [mem 0xb0f00000-0xb0f00fff]
[    0.427366] release child resource [mem 0xb0f01000-0xb0f01fff]
[    0.427366] release child resource [mem 0xb0f02000-0xb0f020ff]
[    0.427366] pci 0000:22:03.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427366] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427366] pci 0000:21:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427366] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427366] pci 0000:20:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427366] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427366] release child resource [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427366] release child resource [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427366] pci 0000:20:01.0: resource 9 [mem 0xb1100000-0xb11fffff 64bit pref] released
[    0.427366] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427366] release child resource [mem 0xb1200000-0xb1200fff 64bit]
[    0.427366] pci 0000:20:02.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[    0.427366] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427366] pci 0000:20:04.0: resource 8 [mem 0xb1300000-0xb92fffff] released
[    0.427366] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427366] release child resource [mem 0xb1000000-0xb10fffff]
[    0.427366] pci 0000:1f:00.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.427366] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427366] pci 0000:19:04.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.427366] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427366] release child resource [mem 0xb0b00000-0xb0b00fff]
[    0.427366] release child resource [mem 0xb0b01000-0xb0b01fff]
[    0.427366] release child resource [mem 0xb0b02000-0xb0b020ff]
[    0.427366] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427366] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427366] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427366] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427366] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427366] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427366] release child resource [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427366] release child resource [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427366] pci 0000:19:01.0: resource 9 [mem 0xb0d00000-0xb0dfffff 64bit pref] released
[    0.427366] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427366] release child resource [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427366] pci 0000:19:02.0: resource 8 [mem 0xb0e00000-0xb0efffff] released
[    0.427366] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427366] release child resource [mem 0xb0c00000-0xb0cfffff]
[    0.427366] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427366] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427366] pci 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427366] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427366] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.427366] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.427366] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.427366] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427366] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[    0.427366] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427366] pci 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[    0.427366] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427366] pci 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[    0.427366] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427366] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427366] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427366] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427366] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427366] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427366] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.427366] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427366] release child resource [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427366] release child resource [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427366] pci 0000:00:1c.0: resource 9 [mem 0x8f900000-0x8f9fffff 64bit pref] released
[    0.427366] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427366] release child resource [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427366] release child resource [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427366] pci 0000:00:1c.1: resource 8 [mem 0x8fa00000-0x8fafffff] released
[    0.427366] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427366] release child resource [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427366] pci 0000:00:1c.2: resource 8 [mem 0x8fb00000-0x8fbfffff] released
[    0.427366] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427366] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427366] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427366] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.427366] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.427366] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427366] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427366] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427366] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427366] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427366] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.427366] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.427366] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427366] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427366] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427366] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427366] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.427366] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427366] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427366] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427366] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427366] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.427366] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427366] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427366] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.427366] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427366] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427366] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427366] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.427366] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.427366] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427366] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427366] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427366] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.427366] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.427366] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.427366] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.427366] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427366] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.427366] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427366] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.427366] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.427366] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427366] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427366] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427366] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427366] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.427366] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427366] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.427366] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427366] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427366] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427366] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427366] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427366] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427366] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427366] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.427366] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.427366] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.427366] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427366] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427366] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427366] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427366] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427366] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427366] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427366] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427366] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427366] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.427366] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427366] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427366] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427366] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.427366] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427366] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427366] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427366] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427366] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.427366] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427366] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.427366] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.427366] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427366] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427366] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427366] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427366] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427366] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.427366] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.427366] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.427366] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427366] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427366] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427366] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427366] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427366] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427366] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427366] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427366] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427366] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.427366] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427366] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.427366] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427366] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.427366] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427366] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.427366] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.427366] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.427366] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.427366] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427366] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.427366] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427366] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427366] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.427366] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427366] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.427366] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.427366] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.433320] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.433332] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.433351] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.433355] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.433361] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.433373] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.433377] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.433384] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.433396] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.433399] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.433406] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.433418] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.433422] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.433428] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.433440] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.433443] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.433448] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.433455] pci_bus 0000:00: No. 9 try to assign unassigned res
[    0.433458] release child resource [mem 0xb0f00000-0xb0f00fff]
[    0.433458] release child resource [mem 0xb0f01000-0xb0f01fff]
[    0.433459] release child resource [mem 0xb0f02000-0xb0f020ff]
[    0.433460] pci 0000:22:03.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.433462] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.433475] pci 0000:21:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.433477] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.433489] pci 0000:20:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.433492] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.433502] release child resource [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.433503] release child resource [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.433504] pci 0000:20:01.0: resource 9 [mem 0xb1100000-0xb11fffff 64bit pref] released
[    0.433507] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.433529] release child resource [mem 0xb1200000-0xb1200fff 64bit]
[    0.433530] pci 0000:20:02.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[    0.433533] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.433543] pci 0000:20:04.0: resource 8 [mem 0xb1300000-0xb92fffff] released
[    0.433545] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.433556] release child resource [mem 0xb1000000-0xb10fffff]
[    0.433556] pci 0000:1f:00.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.433559] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.433569] pci 0000:19:04.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.433572] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.433580] release child resource [mem 0xb0b00000-0xb0b00fff]
[    0.433580] release child resource [mem 0xb0b01000-0xb0b01fff]
[    0.433581] release child resource [mem 0xb0b02000-0xb0b020ff]
[    0.433582] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.433584] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.433594] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.433596] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.433606] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.433609] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.433616] release child resource [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.433617] release child resource [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.433618] pci 0000:19:01.0: resource 9 [mem 0xb0d00000-0xb0dfffff 64bit pref] released
[    0.433621] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.433637] release child resource [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.433638] pci 0000:19:02.0: resource 8 [mem 0xb0e00000-0xb0efffff] released
[    0.433640] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.433648] release child resource [mem 0xb0c00000-0xb0cfffff]
[    0.433649] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.433651] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.433660] pci 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.433662] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.433667] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.433668] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.433669] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.433671] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.433677] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[    0.433679] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.433685] pci 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[    0.433687] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.433692] pci 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[    0.433695] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.433700] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.433702] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.433709] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.433711] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.433715] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.433716] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.433719] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.433722] release child resource [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.433723] release child resource [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.433724] pci 0000:00:1c.0: resource 9 [mem 0x8f900000-0x8f9fffff 64bit pref] released
[    0.433727] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.433734] release child resource [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.433734] release child resource [mem 0x8fa20000-0x8fa2ffff pref]
[    0.433735] pci 0000:00:1c.1: resource 8 [mem 0x8fa00000-0x8fafffff] released
[    0.433738] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.433741] release child resource [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.433742] pci 0000:00:1c.2: resource 8 [mem 0x8fb00000-0x8fbfffff] released
[    0.433745] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.433764] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.433770] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.433775] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.433780] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.433785] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.433789] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.433792] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.433801] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.433810] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.433812] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.433815] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.433818] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.433823] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.433839] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.433854] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.433859] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.433863] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.433870] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.433884] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.433887] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.433892] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.433900] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.433916] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.433921] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.433929] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.433932] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.433934] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.433938] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.433941] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.433944] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.433946] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.433950] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.433952] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.433955] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.433958] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.433961] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.433964] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.433967] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.433970] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.433972] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.433976] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.433982] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.433989] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.433996] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.434007] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.434011] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.434018] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.434030] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.434033] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.434036] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.434039] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.434042] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.434045] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.434048] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.434050] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.434053] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.434056] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.434059] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.434062] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.434064] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.434067] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.434070] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.434073] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.434076] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.434086] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.434096] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.434107] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.434120] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.434145] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.434158] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.434183] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.434194] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.434213] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.434244] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.434274] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.434285] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.434293] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.434307] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.434338] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.434348] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.434368] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.434371] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.434374] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.434377] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.434380] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.434383] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.434386] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.434388] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.434391] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.434394] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.434397] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.434399] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.434402] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.434405] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.434408] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.434411] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.434414] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.434427] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.434439] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.434452] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.434469] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.434502] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.434519] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.434552] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.434567] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.434594] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.434634] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.434673] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.434687] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.434698] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.434718] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.434757] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.434771] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.434798] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.434805] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.434819] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.434846] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.434852] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.434891] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.434898] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.434912] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.434939] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.434943] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.434954] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.434973] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.434978] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.435006] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.435011] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.435021] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.435040] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.435044] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.435051] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.435063] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.435066] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.435073] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.435085] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.435088] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.435095] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.435107] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.435111] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.435117] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.435129] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.435132] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.435137] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.435145] pci_bus 0000:00: No. 10 try to assign unassigned res
[    0.435147] release child resource [mem 0xb0f00000-0xb0f00fff]
[    0.435148] release child resource [mem 0xb0f01000-0xb0f01fff]
[    0.435148] release child resource [mem 0xb0f02000-0xb0f020ff]
[    0.435149] pci 0000:22:03.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.435152] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.435164] pci 0000:21:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.435166] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.435179] pci 0000:20:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.435181] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.435191] release child resource [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.435192] release child resource [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.435193] pci 0000:20:01.0: resource 9 [mem 0xb1100000-0xb11fffff 64bit pref] released
[    0.435196] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.435219] release child resource [mem 0xb1200000-0xb1200fff 64bit]
[    0.435220] pci 0000:20:02.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[    0.435222] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.435232] pci 0000:20:04.0: resource 8 [mem 0xb1300000-0xb92fffff] released
[    0.435235] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.435245] release child resource [mem 0xb1000000-0xb10fffff]
[    0.435246] pci 0000:1f:00.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.435248] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.435259] pci 0000:19:04.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.435261] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.435269] release child resource [mem 0xb0b00000-0xb0b00fff]
[    0.435270] release child resource [mem 0xb0b01000-0xb0b01fff]
[    0.435270] release child resource [mem 0xb0b02000-0xb0b020ff]
[    0.435271] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.435274] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.435283] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.435286] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.435295] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.435298] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.435305] release child resource [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.435306] release child resource [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.435307] pci 0000:19:01.0: resource 9 [mem 0xb0d00000-0xb0dfffff 64bit pref] released
[    0.435310] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.435326] release child resource [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.435327] pci 0000:19:02.0: resource 8 [mem 0xb0e00000-0xb0efffff] released
[    0.435329] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.435337] release child resource [mem 0xb0c00000-0xb0cfffff]
[    0.435338] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.435340] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.435349] pci 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.435351] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.435356] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.435357] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.435358] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.435360] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.435365] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[    0.435368] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.435373] pci 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[    0.435376] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.435381] pci 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[    0.435384] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.435389] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.435391] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.435398] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.435400] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.435404] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.435405] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.435408] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.435411] release child resource [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.435412] release child resource [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.435413] pci 0000:00:1c.0: resource 9 [mem 0x8f900000-0x8f9fffff 64bit pref] released
[    0.435416] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.435422] release child resource [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.435423] release child resource [mem 0x8fa20000-0x8fa2ffff pref]
[    0.435424] pci 0000:00:1c.1: resource 8 [mem 0x8fa00000-0x8fafffff] released
[    0.435426] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.435430] release child resource [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.435431] pci 0000:00:1c.2: resource 8 [mem 0x8fb00000-0x8fbfffff] released
[    0.435433] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.435446] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.435450] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.435453] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.435456] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.435459] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.435463] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.435466] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.435469] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.435477] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.435480] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.435483] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.435486] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.435490] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.435506] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.435521] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.435526] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.435530] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.435537] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.435552] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.435554] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.435559] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.435567] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.435583] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.435588] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.435596] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.435599] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.435602] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.435605] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.435608] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.435611] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.435614] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.435617] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.435619] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.435622] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.435625] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.435628] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.435631] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.435634] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.435637] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.435640] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.435643] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.435649] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.435656] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.435663] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.435675] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.435678] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.435685] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.435697] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.435700] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.435703] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.435707] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.435709] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.435712] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.435715] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.435718] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.435720] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.435723] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.435726] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.435729] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.435732] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.435734] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.435738] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.435740] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.435743] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.435753] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.435764] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.435774] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.435787] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.435812] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.435825] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.435850] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.435861] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.435880] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.435911] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.435941] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.435952] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.435960] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.435974] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.436004] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.436015] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.436034] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.436037] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.436040] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.436044] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.436046] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.436049] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.436052] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.436055] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.436058] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.436060] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.436063] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.436066] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.436069] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.436072] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.436075] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.436077] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.436080] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.436093] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.436106] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.436119] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.436136] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.436168] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.436186] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.436218] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.436232] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.436260] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.436299] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.436338] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.436353] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.436363] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.436382] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.436422] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.436436] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.436463] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.436469] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.436484] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.436511] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.436517] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.436556] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.436562] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.436576] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.436603] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.436608] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.436618] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.436638] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.436642] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.436670] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.436675] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.436685] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.436704] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.436708] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.436715] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.436726] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.436730] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.436737] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.436749] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.436752] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.436759] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.436771] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.436775] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.436782] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.436793] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.436796] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.436801] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.436809] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.436812] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.436814] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000fffff window]
[    0.436817] pci_bus 0000:00: resource 7 [mem 0x8f900000-0xfeafffff window]
[    0.436819] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff window]
[    0.436822] pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
[    0.436824] pci_bus 0000:01: resource 1 [mem 0xa8800000-0xa88fffff]
[    0.436826] pci_bus 0000:01: resource 2 [mem 0x90000000-0x9fffffff 64bit pref]
[    0.436829] pci_bus 0000:02: resource 1 [mem 0xa8700000-0xa87fffff]
[    0.436832] pci_bus 0000:02: resource 2 [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.436834] pci_bus 0000:03: resource 1 [mem 0x8fa00000-0x8fafffff]
[    0.436837] pci_bus 0000:04: resource 1 [mem 0x8fb00000-0x8fbfffff]
[    0.436839] pci_bus 0000:05: resource 0 [io  0x4000-0xbfff]
[    0.436841] pci_bus 0000:05: resource 1 [mem 0xa8a00000-0xd90fffff]
[    0.436844] pci_bus 0000:06: resource 0 [io  0x4000-0xbfff]
[    0.436846] pci_bus 0000:06: resource 1 [mem 0xa8a00000-0xd90fffff]
[    0.436848] pci_bus 0000:07: resource 1 [mem 0xa8a00000-0xa8afffff]
[    0.436850] pci_bus 0000:08: resource 0 [io  0x4000-0x4fff]
[    0.436853] pci_bus 0000:08: resource 1 [mem 0xa8b00000-0xb0afffff]
[    0.436855] pci_bus 0000:18: resource 0 [io  0x5000-0x9fff]
[    0.436857] pci_bus 0000:18: resource 1 [mem 0xb0b00000-0xc90fffff]
[    0.436859] pci_bus 0000:19: resource 0 [io  0x5000-0x8fff]
[    0.436862] pci_bus 0000:19: resource 1 [mem 0xb0b00000-0xc90fffff]
[    0.436864] pci_bus 0000:1a: resource 1 [mem 0xb0b00000-0xb0bfffff]
[    0.436866] pci_bus 0000:1b: resource 1 [mem 0xb0b00000-0xb0bfffff]
[    0.436869] pci_bus 0000:1c: resource 1 [mem 0xb0b00000-0xb0bfffff]
[    0.436871] pci_bus 0000:1d: resource 1 [mem 0xb0c00000-0xb0cfffff]
[    0.436873] pci_bus 0000:1d: resource 2 [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.436876] pci_bus 0000:1e: resource 1 [mem 0xb0e00000-0xb0efffff]
[    0.436878] pci_bus 0000:1f: resource 0 [io  0x5000-0x7fff]
[    0.436881] pci_bus 0000:1f: resource 1 [mem 0xb0f00000-0xc11fffff]
[    0.436883] pci_bus 0000:20: resource 0 [io  0x5000-0x6fff]
[    0.436885] pci_bus 0000:20: resource 1 [mem 0xb0f00000-0xc11fffff]
[    0.436888] pci_bus 0000:21: resource 1 [mem 0xb0f00000-0xb0ffffff]
[    0.436890] pci_bus 0000:22: resource 1 [mem 0xb0f00000-0xb0ffffff]
[    0.436892] pci_bus 0000:23: resource 1 [mem 0xb0f00000-0xb0ffffff]
[    0.436895] pci_bus 0000:24: resource 1 [mem 0xb1000000-0xb10fffff]
[    0.436897] pci_bus 0000:24: resource 2 [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.436900] pci_bus 0000:25: resource 1 [mem 0xb1200000-0xb12fffff]
[    0.436902] pci_bus 0000:26: resource 0 [io  0x5000-0x5fff]
[    0.436904] pci_bus 0000:26: resource 1 [mem 0xb1300000-0xb92fffff]
[    0.436906] pci_bus 0000:36: resource 0 [io  0x6000-0x6fff]
[    0.436909] pci_bus 0000:46: resource 0 [io  0x8000-0x8fff]
[    0.436911] pci_bus 0000:56: resource 0 [io  0xa000-0xafff]
[    0.436913] pci_bus 0000:56: resource 1 [mem 0xc9100000-0xd10fffff]
[    0.436916] pci_bus 0000:66: resource 0 [io  0xb000-0xbfff]
[    0.436918] pci_bus 0000:66: resource 1 [mem 0xd1100000-0xd90fffff]
[    0.437351] pci 0000:01:00.1: D0 power state depends on 0000:01:00.0
[    0.437367] pci 0000:05:00.0: CLS mismatch (256 != 128), using 64 bytes
[    0.437380] pci 0000:1c:00.0: MSI is not implemented on this device, disabling it
[    0.437383] pci 0000:1c:00.0: PME# is unreliable, disabling it
[    0.437675] pci 0000:1c:00.1: MSI is not implemented on this device, disabling it
[    0.437678] pci 0000:1c:00.1: PME# is unreliable, disabling it
[    0.437756] pci 0000:1c:00.2: MSI is not implemented on this device, disabling it
[    0.437759] pci 0000:1c:00.2: PME# is unreliable, disabling it
[    0.437814] pci 0000:1c:00.2: EHCI: unrecognized capability 00
[    0.437852] pci 0000:23:00.0: MSI is not implemented on this device, disabling it
[    0.437855] pci 0000:23:00.0: PME# is unreliable, disabling it
[    0.438107] pci 0000:23:00.1: MSI is not implemented on this device, disabling it
[    0.438111] pci 0000:23:00.1: PME# is unreliable, disabling it
[    0.438204] pci 0000:23:00.2: MSI is not implemented on this device, disabling it
[    0.438207] pci 0000:23:00.2: PME# is unreliable, disabling it
[    0.438274] pci 0000:23:00.2: EHCI: unrecognized capability 00
[    0.438313] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.438316] software IO TLB: mapped [mem 0x0000000083000000-0x0000000087000000] (64MB)
[    0.438324] ACPI: bus type thunderbolt registered
[    0.438342] Trying to unpack rootfs image as initramfs...
[    0.438402] thunderbolt 0000:07:00.0: total paths: 32
[    0.438580] thunderbolt 0000:07:00.0: allocating TX ring 0 of size 10
[    0.438599] thunderbolt 0000:07:00.0: allocating RX ring 0 of size 10
[    0.438612] thunderbolt 0000:07:00.0: control channel created
[    0.438615] thunderbolt 0000:07:00.0: ICM not supported on this controller
[    0.438624] thunderbolt 0000:07:00.0: freeing RX ring 0
[    0.438631] thunderbolt 0000:07:00.0: freeing TX ring 0
[    0.438640] thunderbolt 0000:07:00.0: allocating TX ring 0 of size 10
[    0.438648] thunderbolt 0000:07:00.0: allocating RX ring 0 of size 10
[    0.438656] thunderbolt 0000:07:00.0: control channel created
[    0.438659] thunderbolt 0000:07:00.0: using software connection manager
[    0.438672] thunderbolt 0000:07:00.0: created link from 0000:06:03.0
[    0.438693] thunderbolt 0000:07:00.0: created link from 0000:06:04.0
[    0.438702] thunderbolt 0000:07:00.0: created link from 0000:06:05.0
[    0.438711] thunderbolt 0000:07:00.0: created link from 0000:06:06.0
[    0.438766] thunderbolt 0000:07:00.0: NHI initialized, starting thunderbolt
[    0.438767] thunderbolt 0000:07:00.0: control channel starting...
[    0.438768] thunderbolt 0000:07:00.0: starting TX ring 0
[    0.438777] thunderbolt 0000:07:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[    0.438779] thunderbolt 0000:07:00.0: starting RX ring 0
[    0.438787] thunderbolt 0000:07:00.0: enabling interrupt at register 0x38204 bit 0 (0x0 -> 0x1)
[    0.438790] thunderbolt 0000:07:00.0: security level set to user
[    0.438945] thunderbolt 0000:07:00.0: current switch config:
[    0.438947] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[    0.438949] thunderbolt 0000:07:00.0:   Max Port Number: 13
[    0.438950] thunderbolt 0000:07:00.0:   Config:
[    0.438951] thunderbolt 0000:07:00.0:    Upstream Port Number: 6 Depth: 0 Route String: 0x0 Enabled: 1, PlugEventsDelay: 255ms
[    0.438953] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[    0.443555] thunderbolt 0000:07:00.0: initializing Switch at 0x0 (depth: 0, up port: 6)
[    0.444065] thunderbolt 0000:07:00.0: 0: DROM version: 1
[    0.445599] thunderbolt 0000:07:00.0: 0: uid: 0x1000a13f2da20
[    0.448543] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    0.448546] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    0.448547] thunderbolt 0000:07:00.0:   Max counters: 32
[    0.448548] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.448549] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.451487] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    0.451489] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    0.451490] thunderbolt 0000:07:00.0:   Max counters: 32
[    0.451491] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.451492] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.454430] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    0.454432] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    0.454433] thunderbolt 0000:07:00.0:   Max counters: 32
[    0.454434] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.454435] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.455069] random: fast init done
[    0.457374] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    0.457376] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    0.457377] thunderbolt 0000:07:00.0:   Max counters: 32
[    0.457378] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.457379] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.457380] thunderbolt 0000:07:00.0: 0:5: disabled by eeprom
[    0.458270] thunderbolt 0000:07:00.0:  Port 6: 8086:1513 (Revision: 2, TB Version: 1, Type: NHI (0x2))
[    0.458272] thunderbolt 0000:07:00.0:   Max hop id (in/out): 31/31
[    0.458273] thunderbolt 0000:07:00.0:   Max counters: 32
[    0.458274] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.458275] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.459166] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    0.459168] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.459169] thunderbolt 0000:07:00.0:   Max counters: 1
[    0.459170] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.459171] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.460062] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    0.460064] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.460065] thunderbolt 0000:07:00.0:   Max counters: 1
[    0.460065] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.460066] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.460958] thunderbolt 0000:07:00.0:  Port 9: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    0.460960] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.460961] thunderbolt 0000:07:00.0:   Max counters: 1
[    0.460962] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.460963] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.461854] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    0.461856] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.461857] thunderbolt 0000:07:00.0:   Max counters: 1
[    0.461858] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.461859] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.463006] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[    0.463008] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    0.463009] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.463010] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.463011] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.463902] thunderbolt 0000:07:00.0:  Port 12: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0101))
[    0.463904] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    0.463905] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.463906] thunderbolt 0000:07:00.0:   NFC Credits: 0x700005
[    0.463907] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.464798] thunderbolt 0000:07:00.0:  Port 13: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0101))
[    0.464800] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    0.464801] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.464801] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.464802] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.480854] thunderbolt 0000:07:00.0: 0: TMU: current mode: HiFi
[    0.480982] thunderbolt 0000:07:00.0: 0:1: is unplugged (state: 7)
[    0.481109] thunderbolt 0000:07:00.0: 0:3: is connected, link is up (state: 2)
[    0.481365] thunderbolt 0000:07:00.0: current switch config:
[    0.481367] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[    0.481368] thunderbolt 0000:07:00.0:   Max Port Number: 13
[    0.481369] thunderbolt 0000:07:00.0:   Config:
[    0.481370] thunderbolt 0000:07:00.0:    Upstream Port Number: 1 Depth: 1 Route String: 0x3 Enabled: 1, PlugEventsDelay: 255ms
[    0.481372] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[    0.485974] thunderbolt 0000:07:00.0: initializing Switch at 0x3 (depth: 1, up port: 1)
[    0.503382] thunderbolt 0000:07:00.0: 3: reading drom (length: 0x97)
[    0.708103] Freeing initrd memory: 27904K
[    0.997052] thunderbolt 0000:07:00.0: 3: DROM version: 1
[    0.998076] thunderbolt 0000:07:00.0: 3: uid: 0x1000100189170
[    1.001019] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.001023] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.001026] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.001028] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.001030] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.003963] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.003966] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.003969] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.003971] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c0000e
[    1.003973] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.006906] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.006910] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.006912] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.006914] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.006916] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.009850] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.009854] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.009856] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.009858] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.009860] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.009862] thunderbolt 0000:07:00.0: 3:5: disabled by eeprom
[    1.009865] thunderbolt 0000:07:00.0: 3:6: disabled by eeprom
[    1.010746] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.010750] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.010752] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.010754] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.010756] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.011642] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.011646] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.011648] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.011650] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.011652] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.011654] thunderbolt 0000:07:00.0: 3:9: disabled by eeprom
[    1.012538] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[    1.012542] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.012544] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.012546] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.012548] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.013690] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[    1.013694] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    1.013696] thunderbolt 0000:07:00.0:   Max counters: 2
[    1.013698] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.013700] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.013702] thunderbolt 0000:07:00.0: 3:c: disabled by eeprom
[    1.013704] thunderbolt 0000:07:00.0: 3:d: disabled by eeprom
[    1.031975] thunderbolt 0000:07:00.0: 3: TMU: current mode: bi-directional, HiFi
[    1.032006] thunderbolt 0-3: new device found, vendor=0x1 device=0x8002
[    1.032015] thunderbolt 0-3: Apple, Inc. Thunderbolt Display
[    1.032111] thunderbolt 0000:07:00.0: 3:3: is connected, link is up (state: 2)
[    1.032370] thunderbolt 0000:07:00.0: current switch config:
[    1.032372] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[    1.032375] thunderbolt 0000:07:00.0:   Max Port Number: 13
[    1.032377] thunderbolt 0000:07:00.0:   Config:
[    1.032379] thunderbolt 0000:07:00.0:    Upstream Port Number: 3 Depth: 2 Route String: 0x303 Enabled: 1, PlugEventsDelay: 255ms
[    1.032383] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[    1.036979] thunderbolt 0000:07:00.0: initializing Switch at 0x303 (depth: 2, up port: 3)
[    1.054384] thunderbolt 0000:07:00.0: 303: reading drom (length: 0x97)
[    1.309348] random: crng init done
[    1.548054] thunderbolt 0000:07:00.0: 303: DROM version: 1
[    1.549078] thunderbolt 0000:07:00.0: 303: uid: 0x100010102a740
[    1.552022] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.552026] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.552028] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.552030] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.552032] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.554965] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.554969] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.554971] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.554973] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.554975] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.557909] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.557913] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.557915] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.557917] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.557919] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.560853] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.560856] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.560858] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.560860] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.560862] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.560865] thunderbolt 0000:07:00.0: 303:5: disabled by eeprom
[    1.560867] thunderbolt 0000:07:00.0: 303:6: disabled by eeprom
[    1.561749] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.561752] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.561754] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.561756] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.561758] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.562645] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.562648] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.562650] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.562652] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.562654] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.562656] thunderbolt 0000:07:00.0: 303:9: disabled by eeprom
[    1.563540] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[    1.563544] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.563546] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.563548] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.563550] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.564693] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[    1.564696] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    1.564699] thunderbolt 0000:07:00.0:   Max counters: 2
[    1.564701] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.564703] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.564705] thunderbolt 0000:07:00.0: 303:c: disabled by eeprom
[    1.564707] thunderbolt 0000:07:00.0: 303:d: disabled by eeprom
[    1.582598] thunderbolt 0000:07:00.0: 303: TMU: current mode: bi-directional, HiFi
[    1.582619] thunderbolt 0-303: new device found, vendor=0x1 device=0x8002
[    1.582627] thunderbolt 0-303: Apple, Inc. Thunderbolt Display
[    1.582723] thunderbolt 0000:07:00.0: 303:1: is unplugged (state: 7)
[    1.582983] thunderbolt 0000:07:00.0: 303:b: DP adapter HPD set, queuing hotplug
[    1.583751] thunderbolt 0000:07:00.0: discovering PCIe Up path starting from 0:7
[    1.583880] thunderbolt 0000:07:00.0: 0:7:  In HopID: 8 => Out port: 3 Out HopID: 8
[    1.583883] thunderbolt 0000:07:00.0: 0:7:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.583886] thunderbolt 0000:07:00.0: 0:7:    Counter enabled: 1 Counter index: 0
[    1.583889] thunderbolt 0000:07:00.0: 0:7:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.583893] thunderbolt 0000:07:00.0: 0:7:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.584007] thunderbolt 0000:07:00.0: 3:1:  In HopID: 8 => Out port: 10 Out HopID: 8
[    1.584010] thunderbolt 0000:07:00.0: 3:1:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.584013] thunderbolt 0000:07:00.0: 3:1:    Counter enabled: 1 Counter index: 0
[    1.584016] thunderbolt 0000:07:00.0: 3:1:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.584019] thunderbolt 0000:07:00.0: 3:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.584022] thunderbolt 0000:07:00.0: path discovery complete
[    1.584519] thunderbolt 0000:07:00.0: discovering PCIe Down path starting from 3:10
[    1.584647] thunderbolt 0000:07:00.0: 3:a:  In HopID: 8 => Out port: 1 Out HopID: 8
[    1.584650] thunderbolt 0000:07:00.0: 3:a:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.584653] thunderbolt 0000:07:00.0: 3:a:    Counter enabled: 1 Counter index: 0
[    1.584655] thunderbolt 0000:07:00.0: 3:a:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.584658] thunderbolt 0000:07:00.0: 3:a:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.584775] thunderbolt 0000:07:00.0: 0:3:  In HopID: 8 => Out port: 7 Out HopID: 8
[    1.584778] thunderbolt 0000:07:00.0: 0:3:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.584781] thunderbolt 0000:07:00.0: 0:3:    Counter enabled: 1 Counter index: 0
[    1.584783] thunderbolt 0000:07:00.0: 0:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.584786] thunderbolt 0000:07:00.0: 0:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.584789] thunderbolt 0000:07:00.0: path discovery complete
[    1.584903] thunderbolt 0000:07:00.0: 0:7 <-> 3:a (PCI): discovered
[    1.585670] thunderbolt 0000:07:00.0: discovering Video path starting from 0:12
[    1.585799] thunderbolt 0000:07:00.0: 0:c:  In HopID: 9 => Out port: 4 Out HopID: 9
[    1.585802] thunderbolt 0000:07:00.0: 0:c:   Weight: 1 Priority: 2 Credits: 2 Drop: 0
[    1.585805] thunderbolt 0000:07:00.0: 0:c:    Counter enabled: 1 Counter index: 0
[    1.585807] thunderbolt 0000:07:00.0: 0:c:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.585810] thunderbolt 0000:07:00.0: 0:c:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.585927] thunderbolt 0000:07:00.0: 3:2:  In HopID: 9 => Out port: 11 Out HopID: 9
[    1.585930] thunderbolt 0000:07:00.0: 3:2:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.585933] thunderbolt 0000:07:00.0: 3:2:    Counter enabled: 1 Counter index: 0
[    1.585935] thunderbolt 0000:07:00.0: 3:2:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.585938] thunderbolt 0000:07:00.0: 3:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.585941] thunderbolt 0000:07:00.0: path discovery complete
[    1.586182] thunderbolt 0000:07:00.0: discovering AUX TX path starting from 0:12
[    1.586311] thunderbolt 0000:07:00.0: 0:c:  In HopID: 8 => Out port: 4 Out HopID: 8
[    1.586314] thunderbolt 0000:07:00.0: 0:c:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.586317] thunderbolt 0000:07:00.0: 0:c:    Counter enabled: 1 Counter index: 1
[    1.586320] thunderbolt 0000:07:00.0: 0:c:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.586322] thunderbolt 0000:07:00.0: 0:c:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.586439] thunderbolt 0000:07:00.0: 3:2:  In HopID: 8 => Out port: 11 Out HopID: 8
[    1.586442] thunderbolt 0000:07:00.0: 3:2:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.586445] thunderbolt 0000:07:00.0: 3:2:    Counter enabled: 1 Counter index: 1
[    1.586447] thunderbolt 0000:07:00.0: 3:2:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.586450] thunderbolt 0000:07:00.0: 3:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.586453] thunderbolt 0000:07:00.0: path discovery complete
[    1.586950] thunderbolt 0000:07:00.0: discovering AUX RX path starting from 3:11
[    1.587079] thunderbolt 0000:07:00.0: 3:b:  In HopID: 8 => Out port: 2 Out HopID: 8
[    1.587082] thunderbolt 0000:07:00.0: 3:b:   Weight: 1 Priority: 2 Credits: 7 Drop: 0
[    1.587084] thunderbolt 0000:07:00.0: 3:b:    Counter enabled: 1 Counter index: 0
[    1.587087] thunderbolt 0000:07:00.0: 3:b:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.587090] thunderbolt 0000:07:00.0: 3:b:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.587207] thunderbolt 0000:07:00.0: 0:4:  In HopID: 8 => Out port: 12 Out HopID: 8
[    1.587210] thunderbolt 0000:07:00.0: 0:4:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.587213] thunderbolt 0000:07:00.0: 0:4:    Counter enabled: 1 Counter index: 0
[    1.587215] thunderbolt 0000:07:00.0: 0:4:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.587218] thunderbolt 0000:07:00.0: 0:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.587221] thunderbolt 0000:07:00.0: path discovery complete
[    1.587462] thunderbolt 0000:07:00.0: 0:c <-> 3:b (DP): discovered
[    1.587974] thunderbolt 0000:07:00.0: discovering PCIe Up path starting from 3:7
[    1.588103] thunderbolt 0000:07:00.0: 3:7:  In HopID: 8 => Out port: 3 Out HopID: 8
[    1.588106] thunderbolt 0000:07:00.0: 3:7:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.588109] thunderbolt 0000:07:00.0: 3:7:    Counter enabled: 1 Counter index: 0
[    1.588111] thunderbolt 0000:07:00.0: 3:7:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.588114] thunderbolt 0000:07:00.0: 3:7:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.588230] thunderbolt 0000:07:00.0: 303:3:  In HopID: 8 => Out port: 10 Out HopID: 8
[    1.588234] thunderbolt 0000:07:00.0: 303:3:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.588237] thunderbolt 0000:07:00.0: 303:3:    Counter enabled: 1 Counter index: 0
[    1.588239] thunderbolt 0000:07:00.0: 303:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.588242] thunderbolt 0000:07:00.0: 303:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.588245] thunderbolt 0000:07:00.0: path discovery complete
[    1.588742] thunderbolt 0000:07:00.0: discovering PCIe Down path starting from 303:10
[    1.588870] thunderbolt 0000:07:00.0: 303:a:  In HopID: 8 => Out port: 3 Out HopID: 8
[    1.588874] thunderbolt 0000:07:00.0: 303:a:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.588877] thunderbolt 0000:07:00.0: 303:a:    Counter enabled: 1 Counter index: 0
[    1.588879] thunderbolt 0000:07:00.0: 303:a:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.588882] thunderbolt 0000:07:00.0: 303:a:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.588998] thunderbolt 0000:07:00.0: 3:3:  In HopID: 8 => Out port: 7 Out HopID: 8
[    1.589002] thunderbolt 0000:07:00.0: 3:3:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.589004] thunderbolt 0000:07:00.0: 3:3:    Counter enabled: 1 Counter index: 0
[    1.589007] thunderbolt 0000:07:00.0: 3:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.589010] thunderbolt 0000:07:00.0: 3:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.589013] thunderbolt 0000:07:00.0: path discovery complete
[    1.589126] thunderbolt 0000:07:00.0: 3:7 <-> 303:a (PCI): discovered
[    1.589513] thunderbolt 0000:07:00.0: 0:c: DP IN resource available
[    1.589515] thunderbolt 0000:07:00.0: 0:d: DP IN resource available
[    1.589638] thunderbolt 0000:07:00.0: 303:b: DP OUT resource available
[    1.589642] thunderbolt 0000:07:00.0: looking for DP IN <-> DP OUT pairs:
[    1.589706] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer
[    1.589710] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[    1.589712] RAPL PMU: hw unit of domain package 2^-16 Joules
[    1.589714] RAPL PMU: hw unit of domain pp1-gpu 2^-16 Joules
[    1.589765] thunderbolt 0000:07:00.0: 0:c: in use
[    1.589899] thunderbolt 0000:07:00.0: 0:d: DP IN available
[    1.590020] thunderbolt 0000:07:00.0: 303:b: DP OUT available
[    1.590022] thunderbolt 0000:07:00.0: 0: allocated DP resource for port 13
[    1.590024] thunderbolt 0000:07:00.0: 303:b: calculating available bandwidth
[    1.590107] Initialise system trusted keyrings
[    1.590131] workingset: timestamp_bits=62 max_order=23 bucket_order=0
[    1.590147] thunderbolt 0000:07:00.0: 0:3: link total bandwidth 9000 Mb/s
[    1.590149] thunderbolt 0000:07:00.0: 3:1: link total bandwidth 9000 Mb/s
[    1.590274] thunderbolt 0000:07:00.0: 3:3: link total bandwidth 9000 Mb/s
[    1.590275] thunderbolt 0000:07:00.0: 303:3: link total bandwidth 9000 Mb/s
[    1.590277] thunderbolt 0000:07:00.0: available bandwidth for new DP tunnel 9000/9000 Mb/s
[    1.590283] thunderbolt 0000:07:00.0: 0:d <-> 303:b (DP): activating
[    1.590285] thunderbolt 0000:07:00.0: activating Video path from 0:13 to 303:11
[    1.590287] thunderbolt 0000:07:00.0: 303:3: adding 12 NFC credits to 0
[    1.590402] thunderbolt 0000:07:00.0: 3:1: adding 12 NFC credits to 0
[    1.590530] thunderbolt 0000:07:00.0: 0:d: adding 5 NFC credits to 0
[    1.590786] thunderbolt 0000:07:00.0: 303:3: Writing hop 2
[    1.590788] thunderbolt 0000:07:00.0: 303:3:  In HopID: 9 => Out port: 11 Out HopID: 9
[    1.590789] thunderbolt 0000:07:00.0: 303:3:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.590791] thunderbolt 0000:07:00.0: 303:3:    Counter enabled: 0 Counter index: 2047
[    1.590792] thunderbolt 0000:07:00.0: 303:3:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.590794] thunderbolt 0000:07:00.0: 303:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.590835] Key type asymmetric registered
[    1.590838] Asymmetric key parser 'x509' registered
[    1.590850] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
[    1.591042] thunderbolt 0000:07:00.0: 3:1: Writing hop 1
[    1.591044] thunderbolt 0000:07:00.0: 3:1:  In HopID: 9 => Out port: 3 Out HopID: 9
[    1.591045] thunderbolt 0000:07:00.0: 3:1:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.591047] thunderbolt 0000:07:00.0: 3:1:    Counter enabled: 0 Counter index: 2047
[    1.591048] thunderbolt 0000:07:00.0: 3:1:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.591050] thunderbolt 0000:07:00.0: 3:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.591299] thunderbolt 0000:07:00.0: 0:d: Writing hop 0
[    1.591301] thunderbolt 0000:07:00.0: 0:d:  In HopID: 9 => Out port: 3 Out HopID: 9
[    1.591304] thunderbolt 0000:07:00.0: 0:d:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.591307] thunderbolt 0000:07:00.0: 0:d:    Counter enabled: 0 Counter index: 2047
[    1.591309] thunderbolt 0000:07:00.0: 0:d:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.591312] thunderbolt 0000:07:00.0: 0:d:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.591426] thunderbolt 0000:07:00.0: path activation complete
[    1.591427] thunderbolt 0000:07:00.0: activating AUX TX path from 0:13 to 303:11
[    1.591554] thunderbolt 0000:07:00.0: 303:3: Writing hop 2
[    1.591556] thunderbolt 0000:07:00.0: 303:3:  In HopID: 10 => Out port: 11 Out HopID: 8
[    1.591557] thunderbolt 0000:07:00.0: 303:3:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.591559] thunderbolt 0000:07:00.0: 303:3:    Counter enabled: 0 Counter index: 2047
[    1.591560] thunderbolt 0000:07:00.0: 303:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.591561] thunderbolt 0000:07:00.0: 303:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.591689] pcieport 0000:06:03.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.591811] thunderbolt 0000:07:00.0: 3:1: Writing hop 1
[    1.591813] thunderbolt 0000:07:00.0: 3:1:  In HopID: 10 => Out port: 3 Out HopID: 10
[    1.591814] thunderbolt 0000:07:00.0: 3:1:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.591816] thunderbolt 0000:07:00.0: 3:1:    Counter enabled: 0 Counter index: 2047
[    1.591817] thunderbolt 0000:07:00.0: 3:1:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.591818] thunderbolt 0000:07:00.0: 3:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.591883] pcieport 0000:06:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.592066] thunderbolt 0000:07:00.0: 0:d: Writing hop 0
[    1.592068] thunderbolt 0000:07:00.0: 0:d:  In HopID: 8 => Out port: 3 Out HopID: 10
[    1.592069] thunderbolt 0000:07:00.0: 0:d:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.592071] thunderbolt 0000:07:00.0: 0:d:    Counter enabled: 0 Counter index: 2047
[    1.592072] thunderbolt 0000:07:00.0: 0:d:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.592073] thunderbolt 0000:07:00.0: 0:d:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.592099] pcieport 0000:06:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.592194] thunderbolt 0000:07:00.0: path activation complete
[    1.592196] thunderbolt 0000:07:00.0: activating AUX RX path from 303:11 to 0:13
[    1.592311] pcieport 0000:06:06.0: pciehp: Slot #6 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.592322] thunderbolt 0000:07:00.0: 0:3: Writing hop 2
[    1.592324] thunderbolt 0000:07:00.0: 0:3:  In HopID: 9 => Out port: 13 Out HopID: 8
[    1.592325] thunderbolt 0000:07:00.0: 0:3:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.592327] thunderbolt 0000:07:00.0: 0:3:    Counter enabled: 0 Counter index: 2047
[    1.592328] thunderbolt 0000:07:00.0: 0:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.592329] thunderbolt 0000:07:00.0: 0:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.592578] thunderbolt 0000:07:00.0: 3:3: Writing hop 1
[    1.592580] thunderbolt 0000:07:00.0: 3:3:  In HopID: 9 => Out port: 1 Out HopID: 9
[    1.592581] thunderbolt 0000:07:00.0: 3:3:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.592582] thunderbolt 0000:07:00.0: 3:3:    Counter enabled: 0 Counter index: 2047
[    1.592584] thunderbolt 0000:07:00.0: 3:3:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.592585] thunderbolt 0000:07:00.0: 3:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.592834] thunderbolt 0000:07:00.0: 303:b: Writing hop 0
[    1.592836] thunderbolt 0000:07:00.0: 303:b:  In HopID: 8 => Out port: 3 Out HopID: 9
[    1.592837] thunderbolt 0000:07:00.0: 303:b:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.592839] thunderbolt 0000:07:00.0: 303:b:    Counter enabled: 0 Counter index: 2047
[    1.592840] thunderbolt 0000:07:00.0: 303:b:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.592841] thunderbolt 0000:07:00.0: 303:b:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.592962] thunderbolt 0000:07:00.0: path activation complete
[    1.593610] pcieport 0000:19:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.593830] pcieport 0000:19:05.0: enabling device (0000 -> 0001)
[    1.593934] pcieport 0000:19:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.593994] thunderbolt 0000:07:00.0: Used link no : 0
[    1.595837] pcieport 0000:20:04.0: enabling device (0000 -> 0003)
[    1.595959] pcieport 0000:20:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.596256] pcieport 0000:20:05.0: enabling device (0000 -> 0001)
[    1.596378] pcieport 0000:20:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.606621] brd: module loaded
[    1.606889] Intel(R) 2.5G Ethernet Linux Driver
[    1.606895] Copyright(c) 2018 Intel Corporation.
[    1.606946] i8042: PNP: No PS/2 controller found.
[    1.606990] mousedev: PS/2 mouse device common for all mice
[    1.607059] intel_pstate: Intel P-state driver initializing
[    1.607182] efifb: probing for efifb
[    1.607197] efifb: framebuffer at 0x90010000, using 14400k, total 14400k
[    1.607200] efifb: mode is 2560x1440x32, linelength=10240, pages=1
[    1.607203] efifb: scrolling: redraw
[    1.607204] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    1.616826] Console: switching to colour frame buffer device 320x90
[    1.626003] fb0: EFI VGA frame buffer device
[    1.626093] Key type dns_resolver registered
[    1.626145] microcode: sig=0x206a7, pf=0x2, revision=0x2f
[    1.626339] microcode: Microcode Update Driver: v2.2.
[    1.626341] IPI shorthand broadcast: enabled
[    1.626385] sched_clock: Marking stable (1625902703, 433044)->(1637191332, -10855585)
[    1.626475] registered taskstats version 1
[    1.626492] Loading compiled-in X.509 certificates
[    1.627411] Freeing unused kernel image (initmem) memory: 956K
[    1.753621] Write protecting the kernel read-only data: 12288k
[    1.754144] Freeing unused kernel image (text/rodata gap) memory: 2044K
[    1.754305] Freeing unused kernel image (rodata/data gap) memory: 204K
[    1.754335] Run /init as init process
[    1.754350]   with arguments:
[    1.754351]     /init
[    1.754352]   with environment:
[    1.754352]     HOME=/
[    1.754353]     TERM=linux
[    1.754354]     netconsole=6666@192.168.2.87/eth0,6666@192.168.2.208/dc:a6:32:61:33:da
[    1.797874] udevd[874]: starting version 3.2.9
[    1.798577] udevd[875]: starting eudev-3.2.9
[    1.813369] ACPI: bus type USB registered
[    1.813427] usbcore: registered new interface driver usbfs
[    1.813462] usbcore: registered new interface driver hub
[    1.813499] usbcore: registered new device driver usb
[    1.815361] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.815404] ACPI: bus type drm_connector registered
[    1.815768] ehci-pci: EHCI PCI platform driver
[    1.815960] ehci-pci 0000:00:1a.7: EHCI Host Controller
[    1.815968] uhci_hcd: USB Universal Host Controller Interface driver
[    1.815997] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 1
[    1.816067] ehci-pci 0000:00:1a.7: debug port 2
[    1.816163] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.819327] ahci 0000:00:1f.2: version 3.0
[    1.819549] cryptd: max_cpu_qlen set to 1000
[    1.820050] ehci-pci 0000:00:1a.7: irq 23, io mem 0xa8906c00
[    1.820893] AVX version of gcm_enc/dec engaged.
[    1.820944] AES CTR mode by8 optimization enabled
[    1.827038] radeon: unknown parameter 'pm' ignored
[    1.827190] [drm] radeon kernel modesetting enabled.
[    1.827247] checking generic (90010000 e10000) vs hw (90000000 10000000)
[    1.827248] fb0: switching to radeon from EFI VGA
[    1.827408] Console: switching to colour dummy device 80x25
[    1.827460] radeon 0000:01:00.0: vgaarb: deactivate vga console
[    1.827634] [drm] initializing kernel modesetting (BARTS 0x1002:0x6720 0x106B:0x0B00 0x00).
[    1.829865] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x7 impl SATA mode
[    1.829872] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst
[    1.853123] tg3 0000:02:00.0 eth0: Tigon3 [partno(BCM957765) rev 57785100] (PCI Express) MAC address 3c:07:54:14:b2:08
[    1.853131] tg3 0000:02:00.0 eth0: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    1.853135] tg3 0000:02:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    1.853138] tg3 0000:02:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[    1.853345] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[    1.853574] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
[    1.853580] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.853583] usb usb1: Product: EHCI Host Controller
[    1.853586] usb usb1: Manufacturer: Linux 5.17.1bkc1+ ehci_hcd
[    1.853588] usb usb1: SerialNumber: 0000:00:1a.7
[    1.853778] hub 1-0:1.0: USB hub found
[    1.853788] hub 1-0:1.0: 6 ports detected
[    1.854169] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[    1.854341] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 2
[    1.854465] uhci_hcd 0000:00:1a.0: detected 2 ports
[    1.854596] uhci_hcd 0000:00:1a.0: irq 21, io port 0x00003140
[    1.854725] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17
[    1.854730] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.854733] usb usb2: Product: UHCI Host Controller
[    1.854735] usb usb2: Manufacturer: Linux 5.17.1bkc1+ uhci_hcd
[    1.854737] usb usb2: SerialNumber: 0000:00:1a.0
[    1.854822] hub 2-0:1.0: USB hub found
[    1.854830] hub 2-0:1.0: 2 ports detected
[    1.854966] ehci-pci 0000:00:1d.7: EHCI Host Controller
[    1.854975] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 3
[    1.855074] ehci-pci 0000:00:1d.7: debug port 2
[    1.859140] ehci-pci 0000:00:1d.7: irq 22, io mem 0xa8906800
[    1.893374] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    1.893568] firewire_ohci 0000:04:00.0: added OHCI v1.10 device as card 0, 8 IR + 8 IT contexts, quirks 0x0, physUB
[    1.893840] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
[    1.893847] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.893851] usb usb3: Product: EHCI Host Controller
[    1.893855] usb usb3: Manufacturer: Linux 5.17.1bkc1+ ehci_hcd
[    1.893858] usb usb3: SerialNumber: 0000:00:1d.7
[    1.893961] hub 3-0:1.0: USB hub found
[    1.893969] hub 3-0:1.0: 8 ports detected
[    1.894632] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    1.894645] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
[    1.894704] uhci_hcd 0000:00:1d.0: detected 2 ports
[    1.894932] scsi host0: ahci
[    1.894959] uhci_hcd 0000:00:1d.0: irq 19, io port 0x000030e0
[    1.895170] scsi host1: ahci
[    1.895366] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17
[    1.895373] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.895379] scsi host2: ahci
[    1.895385] usb usb4: Product: UHCI Host Controller
[    1.895390] usb usb4: Manufacturer: Linux 5.17.1bkc1+ uhci_hcd
[    1.895394] usb usb4: SerialNumber: 0000:00:1d.0
[    1.895523] scsi host3: ahci
[    1.895552] hub 4-0:1.0: USB hub found
[    1.895563] hub 4-0:1.0: 2 ports detected
[    1.895744] ehci-pci 0000:1c:00.2: EHCI Host Controller
[    1.895759] ehci-pci 0000:1c:00.2: new USB bus registered, assigned bus number 5
[    1.895765] scsi host4: ahci
[    1.895986] scsi host5: ahci
[    1.896105] ata1: SATA max UDMA/133 abar m2048@0xa8906000 port 0xa8906100 irq 52
[    1.896123] ata2: SATA max UDMA/133 abar m2048@0xa8906000 port 0xa8906180 irq 52
[    1.896160] ata3: SATA max UDMA/133 abar m2048@0xa8906000 port 0xa8906200 irq 52
[    1.896178] ehci-pci 0000:1c:00.2: irq 17, io mem 0xb0b02000
[    1.896185] ata4: DUMMY
[    1.896189] ata5: DUMMY
[    1.896207] ata6: DUMMY
[    1.923369] ehci-pci 0000:1c:00.2: USB 2.0 started, EHCI 1.00
[    1.923628] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
[    1.923635] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.923655] usb usb5: Product: EHCI Host Controller
[    1.923658] usb usb5: Manufacturer: Linux 5.17.1bkc1+ ehci_hcd
[    1.923660] usb usb5: SerialNumber: 0000:1c:00.2
[    1.923868] hub 5-0:1.0: USB hub found
[    1.923920] hub 5-0:1.0: 4 ports detected
[    1.924800] ehci-pci 0000:23:00.2: EHCI Host Controller
[    1.924807] ehci-pci 0000:23:00.2: new USB bus registered, assigned bus number 6
[    1.925161] ehci-pci 0000:23:00.2: irq 17, io mem 0xb0f02000
[    1.946501] tg3 0000:1d:00.0 eth1: Tigon3 [partno(BCM957761) rev 57785100] (PCI Express) MAC address c8:2a:14:4f:80:3e
[    1.946507] tg3 0000:1d:00.0 eth1: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    1.946511] tg3 0000:1d:00.0 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    1.946514] tg3 0000:1d:00.0 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[    1.963464] ehci-pci 0000:23:00.2: USB 2.0 started, EHCI 1.00
[    1.963737] firewire_ohci 0000:1e:00.0: added OHCI v1.10 device as card 1, 8 IR + 8 IT contexts, quirks 0x0, physUB
[    1.963754] usb usb6: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
[    1.963757] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.963759] usb usb6: Product: EHCI Host Controller
[    1.963760] usb usb6: Manufacturer: Linux 5.17.1bkc1+ ehci_hcd
[    1.963761] usb usb6: SerialNumber: 0000:23:00.2
[    1.963889] hub 6-0:1.0: USB hub found
[    1.963937] hub 6-0:1.0: 4 ports detected
[    2.033710] firewire_ohci 0000:25:00.0: added OHCI v1.10 device as card 2, 8 IR + 8 IT contexts, quirks 0x0, physUB
[    2.037622] tg3 0000:24:00.0 eth2: Tigon3 [partno(BCM957761) rev 57785100] (PCI Express) MAC address 38:c9:86:48:0c:c8
[    2.037629] tg3 0000:24:00.0 eth2: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    2.037632] tg3 0000:24:00.0 eth2: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    2.037636] tg3 0000:24:00.0 eth2: dma_rwctrl[00000001] dma_mask[64-bit]
[    2.158438] ATOM BIOS: Apple
[    2.158584] radeon 0000:01:00.0: VRAM: 1024M 0x0000000000000000 - 0x000000003FFFFFFF (1024M used)
[    2.158588] radeon 0000:01:00.0: GTT: 1024M 0x0000000040000000 - 0x000000007FFFFFFF
[    2.158594] [drm] Detected VRAM RAM=1024M, BAR=256M
[    2.158596] [drm] RAM width 256bits DDR
[    2.158612] [drm] radeon: 1024M of VRAM memory ready
[    2.158614] [drm] radeon: 1024M of GTT memory ready.
[    2.158618] [drm] Loading BARTS Microcode
[    2.158668] [drm] External GPIO thermal controller with fan control
[    2.158682] == power state 0 ==
[    2.158684] 	ui class: none
[    2.158685] 	internal class: boot
[    2.158688] 	caps:
[    2.158689] 	uvd    vclk: 0 dclk: 0
[    2.158691] 		power level 0    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    2.158693] 		power level 1    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    2.158695] 		power level 2    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    2.158697] 	status: c r b
[    2.158699] == power state 1 ==
[    2.158700] 	ui class: performance
[    2.158702] 	internal class: none
[    2.158703] 	caps:
[    2.158704] 	uvd    vclk: 0 dclk: 0
[    2.158706] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    2.158708] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    2.158710] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    2.158711] 	status:
[    2.158713] == power state 2 ==
[    2.158714] 	ui class: none
[    2.158715] 	internal class: uvd
[    2.158717] 	caps: video
[    2.158718] 	uvd    vclk: 54000 dclk: 40000
[    2.158720] 		power level 0    sclk: 29800 mclk: 90000 vddc: 950 vddci: 1100
[    2.158722] 		power level 1    sclk: 29800 mclk: 90000 vddc: 950 vddci: 1100
[    2.158724] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    2.158726] 	status:
[    2.158727] == power state 3 ==
[    2.158728] 	ui class: none
[    2.158729] 	internal class: uvd_mvc
[    2.158731] 	caps: video
[    2.158732] 	uvd    vclk: 70000 dclk: 56000
[    2.158734] 		power level 0    sclk: 50200 mclk: 90000 vddc: 1050 vddci: 1100
[    2.158736] 		power level 1    sclk: 50200 mclk: 90000 vddc: 1050 vddci: 1100
[    2.158737] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    2.158739] 	status:
[    2.158740] == power state 4 ==
[    2.158742] 	ui class: battery
[    2.158743] 	internal class: none
[    2.158744] 	caps:
[    2.158745] 	uvd    vclk: 0 dclk: 0
[    2.158747] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    2.158748] 		power level 1    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    2.158750] 		power level 2    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    2.158752] 	status:
[    2.163327] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    2.163702] [drm] radeon: dpm initialized
[    2.163766] [drm] GART: num cpu pages 262144, num gpu pages 262144
[    2.164144] [drm] enabling PCIE gen 2 link speeds, disable with radeon.pcie_gen2=0
[    2.182525] [drm] PCIE GART of 1024M enabled (table at 0x0000000000162000).
[    2.182626] radeon 0000:01:00.0: WB enabled
[    2.182629] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000040000c00
[    2.182632] radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000040000c0c
[    2.183406] radeon 0000:01:00.0: fence driver on ring 5 use gpu addr 0x0000000000072118
[    2.183844] radeon 0000:01:00.0: radeon: MSI limited to 32-bit
[    2.183880] radeon 0000:01:00.0: radeon: using MSI.
[    2.183910] [drm] radeon: irq initialized.
[    2.193339] usb 3-1: new high-speed USB device number 2 using ehci-pci
[    2.200268] [drm] ring test on 0 succeeded in 3 usecs
[    2.200280] [drm] ring test on 3 succeeded in 7 usecs
[    2.224645] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    2.224666] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    2.224819] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    2.226238] ata1.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    2.226336] ata1.00: supports DRM functions and may not be fully accessible
[    2.226340] ata1.00: ATA-9: Samsung SSD 850 PRO 256GB, EXM03B6Q, max UDMA/133
[    2.226413] ata2.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    2.226504] ata3.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    2.226512] ata3.00: ATAPI: OPTIARC DVD RW AD-5690H, 4AH5, max UDMA/100
[    2.226523] ata2.00: supports DRM functions and may not be fully accessible
[    2.226528] ata2.00: ATA-9: Samsung SSD 850 EVO 500GB, EMT02B6Q, max UDMA/133
[    2.227075] ata1.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 32), AA
[    2.227158] ata2.00: 976773168 sectors, multi 1: LBA48 NCQ (depth 32), AA
[    2.228670] ata3.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    2.228678] ata3.00: configured for UDMA/100
[    2.229075] ata1.00: Features: Trust Dev-Sleep NCQ-sndrcv
[    2.229161] ata2.00: Features: Trust Dev-Sleep NCQ-sndrcv
[    2.229404] ata1.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    2.229477] ata2.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    2.229486] ata1.00: supports DRM functions and may not be fully accessible
[    2.229531] ata2.00: supports DRM functions and may not be fully accessible
[    2.232290] ata2.00: configured for UDMA/133
[    2.232312] ata1.00: configured for UDMA/133
[    2.232392] scsi 0:0:0:0: Direct-Access     ATA      Samsung SSD 850  3B6Q PQ: 0 ANSI: 5
[    2.232651] scsi 1:0:0:0: Direct-Access     ATA      Samsung SSD 850  2B6Q PQ: 0 ANSI: 5
[    2.234094] scsi 2:0:0:0: CD-ROM            OPTIARC  DVD RW AD-5690H  4AH5 PQ: 0 ANSI: 5
[    2.363786] usb 1-1: New USB device found, idVendor=0424, idProduct=2514, bcdDevice= 0.03
[    2.363792] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.364018] hub 1-1:1.0: USB hub found
[    2.364123] hub 1-1:1.0: 3 ports detected
[    2.377398] [drm] ring test on 5 succeeded in 1 usecs
[    2.377426] [drm] UVD initialized successfully.
[    2.377619] usb 5-1: new high-speed USB device number 2 using ehci-pci
[    2.377715] [drm] ib test on ring 0 succeeded in 0 usecs
[    2.377881] [drm] ib test on ring 3 succeeded in 0 usecs
[    2.393751] usb 3-1: New USB device found, idVendor=0424, idProduct=2514, bcdDevice= 0.03
[    2.393757] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.394034] hub 3-1:1.0: USB hub found
[    2.394129] hub 3-1:1.0: 4 ports detected
[    2.403449] firewire_core 0000:04:00.0: created device fw0: GUID a4b197fffe3f2da2, S800
[    2.403466] firewire_core 0000:04:00.0: phy config: new root=ffc0, gap_count=63
[    2.443316] usb 6-1: new high-speed USB device number 2 using ehci-pci
[    2.473378] firewire_core 0000:1e:00.0: created device fw1: GUID 000a27020040c4ba, S800
[    2.473394] firewire_core 0000:1e:00.0: phy config: new root=ffc0, gap_count=63
[    2.513321] usb 1-2: new high-speed USB device number 3 using ehci-pci
[    2.543505] firewire_core 0000:25:00.0: created device fw2: GUID 000a2702006cfdfb, S800
[    2.543517] firewire_core 0000:25:00.0: phy config: new root=ffc0, gap_count=63
[    2.574162] usb 5-1: New USB device found, idVendor=05ac, idProduct=9127, bcdDevice= 1.00
[    2.574168] usb 5-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.574494] hub 5-1:1.0: USB hub found
[    2.574684] hub 5-1:1.0: 7 ports detected
[    2.574748] ohci-pci: OHCI PCI platform driver
[    2.574845] ohci-pci 0000:1c:00.0: OHCI PCI host controller
[    2.574852] ohci-pci 0000:1c:00.0: new USB bus registered, assigned bus number 7
[    2.574879] ohci-pci 0000:1c:00.0: irq 19, io mem 0xb0b00000
[    2.577529] sd 1:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[    2.577530] sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[    2.577538] sd 0:0:0:0: [sda] Write Protect is off
[    2.577541] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.577553] sd 1:0:0:0: [sdb] Write Protect is off
[    2.577555] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.577558] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    2.577582] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.580094] sd 1:0:0:0: [sdb] supports TCG Opal
[    2.580098] sd 1:0:0:0: [sdb] Attached SCSI disk
[    2.580153]  sda: sda1 sda2 sda3 sda4 sda5 sda6
[    2.581064] sd 0:0:0:0: [sda] supports TCG Opal
[    2.581069] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.581530] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    2.581580] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    2.581600] sr 2:0:0:0: Attached scsi generic sg2 type 5
[    2.643364] tsc: Refined TSC clocksource calibration: 3400.023 MHz
[    2.643383] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x31026473058, max_idle_ns: 440795314252 ns
[    2.647515] clocksource: Switched to clocksource tsc
[    2.647735] usb usb7: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17
[    2.647753] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.647755] usb usb7: Product: OHCI PCI host controller
[    2.647758] usb usb7: Manufacturer: Linux 5.17.1bkc1+ ohci_hcd
[    2.647760] usb usb7: SerialNumber: 0000:1c:00.0
[    2.647920] hub 7-0:1.0: USB hub found
[    2.647947] hub 7-0:1.0: 2 ports detected
[    2.647956] usb 6-1: New USB device found, idVendor=05ac, idProduct=9127, bcdDevice= 1.00
[    2.647963] usb 6-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.648207] hub 6-1:1.0: USB hub found
[    2.648215] ohci-pci 0000:1c:00.1: OHCI PCI host controller
[    2.648221] ohci-pci 0000:1c:00.1: new USB bus registered, assigned bus number 8
[    2.648261] ohci-pci 0000:1c:00.1: irq 16, io mem 0xb0b01000
[    2.648558] hub 6-1:1.0: 7 ports detected
[    2.715360] sr 2:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda caddy
[    2.715366] cdrom: Uniform CD-ROM driver Revision: 3.20
[    2.717451] usb usb8: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17
[    2.717457] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.717459] usb usb8: Product: OHCI PCI host controller
[    2.717461] usb usb8: Manufacturer: Linux 5.17.1bkc1+ ohci_hcd
[    2.717463] usb usb8: SerialNumber: 0000:1c:00.1
[    2.717595] hub 8-0:1.0: USB hub found
[    2.717610] hub 8-0:1.0: 2 ports detected
[    2.717762] ohci-pci 0000:23:00.0: OHCI PCI host controller
[    2.717767] ohci-pci 0000:23:00.0: new USB bus registered, assigned bus number 9
[    2.717793] ohci-pci 0000:23:00.0: irq 19, io mem 0xb0f00000
[    2.723363] usb 3-1.1: new high-speed USB device number 3 using ehci-pci
[    2.738895] usb 1-2: New USB device found, idVendor=05ac, idProduct=850b, bcdDevice= 7.55
[    2.738916] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.738919] usb 1-2: Product: FaceTime HD Camera (Built-in)
[    2.738921] usb 1-2: Manufacturer: Apple Inc.
[    2.738923] usb 1-2: SerialNumber: CCGB8K062WDDJRLX
[    2.794439] sr 2:0:0:0: Attached scsi CD-ROM sr0
[    2.797507] usb usb9: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17
[    2.797512] usb usb9: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.797515] usb usb9: Product: OHCI PCI host controller
[    2.797518] usb usb9: Manufacturer: Linux 5.17.1bkc1+ ohci_hcd
[    2.797520] usb usb9: SerialNumber: 0000:23:00.0
[    2.797637] hub 9-0:1.0: USB hub found
[    2.797655] hub 9-0:1.0: 2 ports detected
[    2.797803] ohci-pci 0000:23:00.1: OHCI PCI host controller
[    2.797809] ohci-pci 0000:23:00.1: new USB bus registered, assigned bus number 10
[    2.797835] ohci-pci 0000:23:00.1: irq 16, io mem 0xb0f01000
[    2.833353] usb 1-1.1: new full-speed USB device number 4 using ehci-pci
[    2.867499] usb usb10: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17
[    2.867504] usb usb10: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.867507] usb usb10: Product: OHCI PCI host controller
[    2.867510] usb usb10: Manufacturer: Linux 5.17.1bkc1+ ohci_hcd
[    2.867512] usb usb10: SerialNumber: 0000:23:00.1
[    2.867629] hub 10-0:1.0: USB hub found
[    2.867646] hub 10-0:1.0: 2 ports detected
[    2.888367] usb 3-1.1: New USB device found, idVendor=05ac, idProduct=8403, bcdDevice=98.33
[    2.888380] usb 3-1.1: New USB device strings: Mfr=3, Product=4, SerialNumber=2
[    2.888387] usb 3-1.1: Product: Card Reader
[    2.888391] usb 3-1.1: Manufacturer: Apple
[    2.888396] usb 3-1.1: SerialNumber: 000000009833
[    2.890304] usb-storage 3-1.1:1.0: USB Mass Storage device detected
[    2.890375] scsi host6: usb-storage 3-1.1:1.0
[    2.890427] usbcore: registered new interface driver usb-storage
[    2.890677] usbcore: registered new interface driver uas
[    2.903322] usb 5-1.4: new full-speed USB device number 3 using ehci-pci
[    2.973362] usb 6-1.4: new full-speed USB device number 3 using ehci-pci
[    2.983343] usb 3-1.2: new low-speed USB device number 4 using ehci-pci
[    2.985733] usb 1-1.1: New USB device found, idVendor=0a5c, idProduct=4500, bcdDevice= 1.00
[    2.985740] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.985743] usb 1-1.1: Product: BRCM2046 Hub
[    2.985745] usb 1-1.1: Manufacturer: Apple Inc.
[    2.986015] hub 1-1.1:1.0: USB hub found
[    2.986203] hub 1-1.1:1.0: 3 ports detected
[    3.033489] [drm] ib test on ring 5 succeeded
[    3.063127] usb 5-1.4: New USB device found, idVendor=05ac, idProduct=1107, bcdDevice= 2.09
[    3.063141] usb 5-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.063148] usb 5-1.4: Product: Display Audio
[    3.063152] usb 5-1.4: Manufacturer: Apple Inc.
[    3.063156] usb 5-1.4: SerialNumber: 152303D9
[    3.065527] hid: raw HID events driver (C) Jiri Kosina
[    3.076921] usbcore: registered new interface driver usbhid
[    3.076925] usbhid: USB HID core driver
[    3.077763] input: Apple Inc. Display Audio as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:04.0/0000:18:00.0/0000:19:00.0/0000:1a:00.0/0000:1b:03.0/0000:1c:00.2/usb5/5-1/5-1.4/5-1.4:1.3/0003:05AC:1107.0001/input/input0
[    3.077841] hid-generic 0003:05AC:1107.0001: input,hidraw0: USB HID v1.11 Device [Apple Inc. Display Audio] on usb-0000:1c:00.2-1.4/input3
[    3.093370] usb 1-1.2: new high-speed USB device number 5 using ehci-pci
[    3.113355] [drm] radeon atom DIG backlight initialized
[    3.113370] [drm] Radeon Display Connectors
[    3.113374] [drm] Connector 0:
[    3.113377] [drm]   eDP-1
[    3.113381] [drm]   HPD3
[    3.113383] [drm]   DDC: 0x6450 0x6450 0x6454 0x6454 0x6458 0x6458 0x645c 0x645c
[    3.113390] [drm]   Encoders:
[    3.113393] [drm]     LCD1: INTERNAL_UNIPHY2
[    3.113397] [drm] Connector 1:
[    3.113399] [drm]   DP-1
[    3.113402] [drm]   HPD1
[    3.113405] [drm]   DDC: 0x6430 0x6430 0x6434 0x6434 0x6438 0x6438 0x643c 0x643c
[    3.113411] [drm]   Encoders:
[    3.113413] [drm]     DFP1: INTERNAL_UNIPHY1
[    3.113416] [drm] Connector 2:
[    3.113419] [drm]   DP-2
[    3.113422] [drm]   HPD2
[    3.113424] [drm]   DDC: 0x6440 0x6440 0x6444 0x6444 0x6448 0x6448 0x644c 0x644c
[    3.113430] [drm]   Encoders:
[    3.113433] [drm]     DFP2: INTERNAL_UNIPHY1
[    3.113436] [drm] Connector 3:
[    3.113439] [drm]   DP-3
[    3.113449] [drm]   HPD4
[    3.113450] [drm]   DDC: 0x6460 0x6460 0x6464 0x6464 0x6468 0x6468 0x646c 0x646c
[    3.113453] [drm]   Encoders:
[    3.113454] [drm]     DFP3: INTERNAL_UNIPHY2
[    3.113455] [drm] Connector 4:
[    3.113456] [drm]   DP-4
[    3.113457] [drm]   HPD5
[    3.113459] [drm]   DDC: 0x6470 0x6470 0x6474 0x6474 0x6478 0x6478 0x647c 0x647c
[    3.113461] [drm]   Encoders:
[    3.113462] [drm]     DFP4: INTERNAL_UNIPHY
[    3.113464] [drm] Connector 5:
[    3.113465] [drm]   VGA-1
[    3.113466] [drm]   DDC: 0x64d8 0x64d8 0x64dc 0x64dc 0x64e0 0x64e0 0x64e4 0x64e4
[    3.113468] [drm]   Encoders:
[    3.113470] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[    3.143794] usb 6-1.4: New USB device found, idVendor=05ac, idProduct=1107, bcdDevice= 2.09
[    3.143812] usb 6-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.143813] switching from power state:
[    3.143815] usb 6-1.4: Product: Display Audio
[    3.143816] usb 6-1.4: Manufacturer: Apple Inc.
[    3.143819] 	ui class: none
[    3.143820] usb 6-1.4: SerialNumber: 1A0E0738
[    3.143821] 	internal class: boot
[    3.143826] 	caps:
[    3.143827] 	uvd    vclk: 0 dclk: 0
[    3.143829] 		power level 0    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    3.143831] 		power level 1    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    3.143833] 		power level 2    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    3.143835] 	status: c b
[    3.143837] switching to power state:
[    3.143839] 	ui class: performance
[    3.143840] 	internal class: none
[    3.143842] 	caps:
[    3.143843] 	uvd    vclk: 0 dclk: 0
[    3.143844] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    3.143846] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    3.143848] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    3.143850] 	status: r
[    3.155801] input: Apple Inc. Display Audio as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:04.0/0000:18:00.0/0000:19:04.0/0000:1f:00.0/0000:20:00.0/0000:21:00.0/0000:22:03.0/0000:23:00.2/usb6/6-1/6-1.4/6-1.4:1.3/0003:05AC:1107.0002/input/input1
[    3.155838] hid-generic 0003:05AC:1107.0002: input,hidraw1: USB HID v1.11 Device [Apple Inc. Display Audio] on usb-0000:23:00.2-1.4/input3
[    3.159867] usb 3-1.2: New USB device found, idVendor=05ac, idProduct=8242, bcdDevice= 0.16
[    3.159881] usb 3-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.159888] usb 3-1.2: Product: IR Receiver
[    3.159893] usb 3-1.2: Manufacturer: Apple Computer, Inc.
[    3.165131] input: Apple Computer, Inc. IR Receiver as /devices/pci0000:00/0000:00:1d.7/usb3/3-1/3-1.2/3-1.2:1.0/0003:05AC:8242.0003/input/input2
[    3.173319] usb 5-1.5: new high-speed USB device number 4 using ehci-pci
[    3.233510] appleir 0003:05AC:8242.0003: input,hiddev96,hidraw2: USB HID v1.11 Device [Apple Computer, Inc. IR Receiver] on usb-0000:00:1d.7-1.2/input0
[    3.251952] usb 1-1.2: New USB device found, idVendor=05ac, idProduct=1006, bcdDevice=96.15
[    3.251958] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.251961] usb 1-1.2: Product: Keyboard Hub
[    3.251963] usb 1-1.2: Manufacturer: Apple, Inc.
[    3.251965] usb 1-1.2: SerialNumber: 000000000000
[    3.252146] hub 1-1.2:1.0: USB hub found
[    3.252236] hub 1-1.2:1.0: 3 ports detected
[    3.253319] usb 6-1.5: new high-speed USB device number 4 using ehci-pci
[    3.263320] usb 3-1.4: new low-speed USB device number 5 using ehci-pci
[    3.340552] usb 5-1.5: New USB device found, idVendor=05ac, idProduct=1112, bcdDevice=71.60
[    3.340558] usb 5-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.340561] usb 5-1.5: Product: FaceTime HD Camera (Display)
[    3.340563] usb 5-1.5: Manufacturer: Apple Inc.
[    3.340565] usb 5-1.5: SerialNumber: CCGB690CKUDJ9DFX
[    3.343341] usb 1-1.1.1: new full-speed USB device number 6 using ehci-pci
[    3.418877] usb 3-1.4: New USB device found, idVendor=047d, idProduct=1020, bcdDevice= 1.06
[    3.418883] usb 3-1.4: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    3.418886] usb 3-1.4: Product: Kensington Expert Mouse
[    3.420777] usb 6-1.5: New USB device found, idVendor=05ac, idProduct=1112, bcdDevice=71.60
[    3.420783] usb 6-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.420787] usb 6-1.5: Product: FaceTime HD Camera (Display)
[    3.420789] usb 6-1.5: Manufacturer: Apple Inc.
[    3.420791] usb 6-1.5: SerialNumber: CC2G3101FFDJ9FLP
[    3.421905] input: Kensington Expert Mouse as /devices/pci0000:00/0000:00:1d.7/usb3/3-1/3-1.4/3-1.4:1.0/0003:047D:1020.0004/input/input3
[    3.422044] hid-generic 0003:047D:1020.0004: input,hidraw3: USB HID v1.11 Mouse [Kensington Expert Mouse] on usb-0000:00:1d.7-1.4/input0
[    3.443331] usb 5-1.7: new full-speed USB device number 5 using ehci-pci
[    3.498127] usb 1-1.1.1: New USB device found, idVendor=05ac, idProduct=8215, bcdDevice= 2.08
[    3.498133] usb 1-1.1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.498136] usb 1-1.1.1: Product: Bluetooth USB Host Controller
[    3.498138] usb 1-1.1.1: Manufacturer: Apple Inc.
[    3.498140] usb 1-1.1.1: SerialNumber: 3451C9ED7F9B
[    3.523321] usb 6-1.7: new full-speed USB device number 5 using ehci-pci
[    3.593322] usb 1-1.3: new full-speed USB device number 7 using ehci-pci
[    3.595952] usb 5-1.7: New USB device found, idVendor=05ac, idProduct=9227, bcdDevice= 1.37
[    3.595958] usb 5-1.7: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.595961] usb 5-1.7: Product: Apple Thunderbolt Display
[    3.595963] usb 5-1.7: Manufacturer: Apple Inc.
[    3.595965] usb 5-1.7: SerialNumber: 152303D9
[    3.597970] hid-generic 0003:05AC:9227.0005: hiddev97,hidraw4: USB HID v1.11 Device [Apple Inc. Apple Thunderbolt Display] on usb-0000:1c:00.2-1.7/input0
[    3.676075] usb 6-1.7: New USB device found, idVendor=05ac, idProduct=9227, bcdDevice= 1.39
[    3.676081] usb 6-1.7: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.676084] usb 6-1.7: Product: Apple Thunderbolt Display
[    3.676086] usb 6-1.7: Manufacturer: Apple Inc.
[    3.676087] usb 6-1.7: SerialNumber: 1A0E0738
[    3.678216] hid-generic 0003:05AC:9227.0006: hiddev98,hidraw5: USB HID v1.11 Device [Apple Inc. Apple Thunderbolt Display] on usb-0000:23:00.2-1.7/input0
[    3.744354] usb 1-1.3: New USB device found, idVendor=067b, idProduct=2303, bcdDevice= 4.00
[    3.744360] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.744363] usb 1-1.3: Product: USB-Serial Controller C
[    3.744365] usb 1-1.3: Manufacturer: Prolific Technology Inc.
[    3.843321] usb 1-1.2.2: new low-speed USB device number 8 using ehci-pci
[    3.915021] scsi 6:0:0:0: Direct-Access     APPLE    SD Card Reader   1.00 PQ: 0 ANSI: 0
[    3.915179] sd 6:0:0:0: Attached scsi generic sg3 type 0
[    3.915861] sd 6:0:0:0: [sdc] Media removed, stopped polling
[    3.916609] sd 6:0:0:0: [sdc] Attached SCSI removable disk
[    4.000372] usb 1-1.2.2: New USB device found, idVendor=05ac, idProduct=0220, bcdDevice= 0.71
[    4.000378] usb 1-1.2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.000381] usb 1-1.2.2: Product: Apple Keyboard
[    4.000383] usb 1-1.2.2: Manufacturer: Apple, Inc
[    4.008455] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/0003:05AC:0220.0007/input/input4
[    4.073438] apple 0003:05AC:0220.0007: input,hidraw6: USB HID v1.11 Keyboard [Apple, Inc Apple Keyboard] on usb-0000:00:1a.7-1.2.2/input0
[    4.073521] apple 0003:05AC:0220.0008: Fn key not found (Apple Wireless Keyboard clone?), disabling Fn key handling
[    4.073544] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.1/0003:05AC:0220.0008/input/input5
[    4.093321] usb 1-1.1.2: new full-speed USB device number 9 using ehci-pci
[    4.143436] apple 0003:05AC:0220.0008: input,hidraw7: USB HID v1.11 Device [Apple, Inc Apple Keyboard] on usb-0000:00:1a.7-1.2.2/input1
[    4.247266] usb 1-1.1.2: New USB device found, idVendor=05ac, idProduct=820a, bcdDevice= 1.00
[    4.247282] usb 1-1.1.2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.249159] input: HID 05ac:820a as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.1/1-1.1.2/1-1.1.2:1.0/0003:05AC:820A.0009/input/input6
[    4.313408] hid-generic 0003:05AC:820A.0009: input,hidraw8: USB HID v1.11 Keyboard [HID 05ac:820a] on usb-0000:00:1a.7-1.1.2/input0
[    4.413334] usb 1-1.1.3: new full-speed USB device number 10 using ehci-pci
[    4.536820] [drm] fb mappable at 0x90363000
[    4.536824] [drm] vram apper at 0x90000000
[    4.536825] [drm] size 14745600
[    4.536827] [drm] fb depth is 24
[    4.536828] [drm]    pitch is 10240
[    4.536919] fbcon: radeondrmfb (fb0) is primary device
[    4.566871] usb 1-1.1.3: New USB device found, idVendor=05ac, idProduct=820b, bcdDevice= 1.00
[    4.566873] usb 1-1.1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.568606] input: HID 05ac:820b as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.1/1-1.1.3/1-1.1.3:1.0/0003:05AC:820B.000A/input/input7
[    4.568648] hid-generic 0003:05AC:820B.000A: input,hidraw9: USB HID v1.11 Mouse [HID 05ac:820b] on usb-0000:00:1a.7-1.1.3/input0
[    5.227723] switching from power state:
[    5.227724] 	ui class: performance
[    5.227725] 	internal class: none
[    5.227726] 	caps:
[    5.227727] 	uvd    vclk: 0 dclk: 0
[    5.227728] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    5.227729] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    5.227730] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    5.227730] 	status: c r
[    5.227731] switching to power state:
[    5.227731] 	ui class: performance
[    5.227732] 	internal class: none
[    5.227732] 	caps:
[    5.227733] 	uvd    vclk: 0 dclk: 0
[    5.227733] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    5.227734] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    5.227735] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    5.227735] 	status: c r
[    6.343798] switching from power state:
[    6.343799] 	ui class: performance
[    6.343800] 	internal class: none
[    6.343801] 	caps:
[    6.343802] 	uvd    vclk: 0 dclk: 0
[    6.343802] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    6.343803] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    6.343804] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    6.343805] 	status: c r
[    6.343806] switching to power state:
[    6.343806] 	ui class: performance
[    6.343806] 	internal class: none
[    6.343807] 	caps:
[    6.343807] 	uvd    vclk: 0 dclk: 0
[    6.343808] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    6.343809] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    6.343809] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    6.343810] 	status: c r
[    6.453961] Console: switching to colour frame buffer device 320x90
[    6.460786] radeon 0000:01:00.0: [drm] fb0: radeondrmfb frame buffer device
[    6.503390] [drm] Initialized radeon 2.50.0 20080528 for 0000:01:00.0 on minor 0
[    6.529745] [drm] amdgpu kernel modesetting enabled.
[    6.605203] netpoll: netconsole: local port 6666
[    6.605224] netpoll: netconsole: local IPv4 address 192.168.2.87
[    6.605245] netpoll: netconsole: interface 'eth0'
[    6.605260] netpoll: netconsole: remote port 6666
[    6.605275] netpoll: netconsole: remote IPv4 address 192.168.2.208
[    6.605294] netpoll: netconsole: remote ethernet address dc:a6:32:61:33:da
[    6.605318] netpoll: netconsole: device eth0 not up yet, forcing it
[   10.164780] tg3 0000:02:00.0 eth0: Link is up at 1000 Mbps, full duplex
[   10.164803] tg3 0000:02:00.0 eth0: Flow control is off for TX and off for RX
[   10.164824] tg3 0000:02:00.0 eth0: EEE is enabled
[   10.203785] printk: console [netcon0] enabled
[   10.203802] netconsole: network logging started
[   17.321242]  sdb: sdb1
[   17.374513] process '/usr/bin/fstype' started with executable stack
[   17.421491] EXT4-fs (sda6): mounted filesystem with ordered data mode. Quota mode: none.
[   17.601034] udevd[1276]: starting version 3.2.9
[   17.623788] udevd[1277]: starting eudev-3.2.9
[   17.656078] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input8
[   17.658268] ACPI: button: Power Button [PWRB]
[   17.660490] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input9
[   17.662796] ACPI: button: Sleep Button [SLPB]
[   17.664562] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input10
[   17.673340] udevd[1330]: Error changing net interface name eth1 to eth2: File exists
[   17.675262] udevd[1330]: could not rename interface '3' from 'eth1' to 'eth2': File exists
[   17.691247] mc: Linux media interface: v0.10
[   17.691612] udevd[1331]: Error changing net interface name eth2 to eth1: File exists
[   17.694940] udevd[1331]: could not rename interface '4' from 'eth2' to 'eth1': File exists
[   17.697949] videodev: Linux video capture interface: v2.00
[   17.703826] ACPI: button: Power Button [PWRF]
[   17.704434] snd_hda_intel 0000:00:1b.0: enabling device (0000 -> 0002)
[   17.707592] snd_hda_intel 0000:01:00.1: enabling device (0000 -> 0002)
[   17.714729] usb 1-2: Found UVC 1.00 device FaceTime HD Camera (Built-in) (05ac:850b)
[   17.719879] usbcore: registered new interface driver usbserial_generic
[   17.721997] usbserial: USB Serial support registered for generic
[   17.724992] usb 5-1.4: 1:1: cannot get freq at ep 0x4
[   17.725075] usbcore: registered new interface driver pl2303
[   17.726969] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input11
[   17.729856] usbserial: USB Serial support registered for pl2303
[   17.732596] pl2303 1-1.3:1.0: pl2303 converter detected
[   17.735643] snd_hda_codec_cirrus hdaudioC0D0: autoconfig for CS4206: line_outs=2 (0x9/0xb/0x0/0x0/0x0) type:speaker
[   17.736302] usb 1-1.3: pl2303 converter now attached to ttyUSB0
[   17.737791] snd_hda_codec_cirrus hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   17.741865] input: FaceTime HD Camera (Built-in):  as /devices/pci0000:00/0000:00:1a.7/usb1/1-2/1-2:1.0/input/input12
[   17.742035] snd_hda_codec_cirrus hdaudioC0D0:    hp_outs=1 (0xa/0x0/0x0/0x0/0x0)
[   17.745265] usb 5-1.5: Found UVC 1.00 device FaceTime HD Camera (Display) (05ac:1112)
[   17.745733] snd_hda_codec_cirrus hdaudioC0D0:    mono: mono_out=0x0
[   17.749324] snd_hda_codec_cirrus hdaudioC0D0:    dig-out=0x10/0x0
[   17.750764] snd_hda_codec_cirrus hdaudioC0D0:    inputs:
[   17.752213] snd_hda_codec_cirrus hdaudioC0D0:      Mic=0xd
[   17.754417] Bluetooth: Core ver 2.22
[   17.754542] snd_hda_codec_cirrus hdaudioC0D0:      Line=0xc
[   17.756567] NET: Registered PF_BLUETOOTH protocol family
[   17.758711] snd_hda_codec_cirrus hdaudioC0D0:    dig-in=0xf
[   17.761804] Bluetooth: HCI device and connection manager initialized
[   17.763367] Bluetooth: HCI socket layer initialized
[   17.764982] Bluetooth: L2CAP socket layer initialized
[   17.766931] Bluetooth: SCO socket layer initialized
[   17.771204] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
[   17.772743] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
[   17.774274] input: HDA Intel PCH SPDIF In as /devices/pci0000:00/0000:00:1b.0/sound/card0/input15
[   17.779051] usbcore: registered new interface driver btusb
[   17.802584] applesmc: key=332 fan=3 temp=50 index=49 acc=0 lux=2 kbd=0
[   17.804989] applesmc applesmc.768: hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[   17.825107] usb 1-1.1.2: USB disconnect, device number 9
[   17.894263] usb 5-1.4: 1:2: cannot get freq at ep 0x4
[   17.898882] input: FaceTime HD Camera (Display): F as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:04.0/0000:18:00.0/0000:19:00.0/0000:1a:00.0/0000:1b:03.0/0000:1c:00.2/usb5/5-1/5-1.5/5-1.5:1.0/input/input16
[   17.903293] usb 5-1.4: 2:1: cannot get freq at ep 0x84
[   17.906426] Bluetooth: hci0: BCM: chip id 254 build 0518
[   17.909407] Bluetooth: hci0: BCM: product 05ac:8215
[   17.912408] Bluetooth: hci0: BCM: features 0x00
[   17.930379] Bluetooth: hci0: Bluetooth USB Host Controller
[   17.946112] usb 5-1.4: Warning! Unlikely big volume range (=16384), cval->res is probably wrong.
[   17.947654] usb 5-1.4: [2] FU [PCM Playback Volume] ch = 2, val = -16384/0/1
[   17.983033] usb 5-1.4: Warning! Unlikely big volume range (=15872), cval->res is probably wrong.
[   17.985296] usb 5-1.4: [5] FU [Mic Capture Volume] ch = 1, val = -11264/4608/1
[   17.999895] usb 6-1.4: 1:1: cannot get freq at ep 0x4
[   18.034865] usb 6-1.5: Found UVC 1.00 device FaceTime HD Camera (Display) (05ac:1112)
[   18.169853] usb 6-1.4: 1:2: cannot get freq at ep 0x4
[   18.174480] input: FaceTime HD Camera (Display): F as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:04.0/0000:18:00.0/0000:19:04.0/0000:1f:00.0/0000:20:00.0/0000:21:00.0/0000:22:03.0/0000:23:00.2/usb6/6-1/6-1.5/6-1.5:1.0/input/input17
[   18.176246] usbcore: registered new interface driver uvcvideo
[   18.178820] usb 6-1.4: 2:1: cannot get freq at ep 0x84
[   18.218703] usb 6-1.4: Warning! Unlikely big volume range (=16384), cval->res is probably wrong.
[   18.220350] usb 6-1.4: [2] FU [PCM Playback Volume] ch = 2, val = -16384/0/1
[   18.255833] usb 6-1.4: Warning! Unlikely big volume range (=15872), cval->res is probably wrong.
[   18.257541] usb 6-1.4: [5] FU [Mic Capture Volume] ch = 1, val = -11264/4608/1
[   18.259594] usbcore: registered new interface driver snd-usb-audio
[   18.263725] usb 1-1.1.3: USB disconnect, device number 10
[   18.586466] Adding 16777212k swap on /dev/sda5.  Priority:-2 extents:1 across:16777212k SS
[   18.600939] EXT4-fs (sda6): re-mounted. Quota mode: none.
[   18.688391] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com
[   21.868276] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Quota mode: none.
[   22.398472] NET: Registered PF_PACKET protocol family
[   25.302647] tg3 0000:02:00.0 eth0: Link is up at 1000 Mbps, full duplex
[   25.304141] tg3 0000:02:00.0 eth0: Flow control is off for TX and off for RX
[   25.305629] tg3 0000:02:00.0 eth0: EEE is enabled
[   30.913667] RPC: Registered named UNIX socket transport module.
[   30.915102] RPC: Registered udp transport module.
[   30.916547] RPC: Registered tcp transport module.
[   30.917967] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   30.922055] FS-Cache: Loaded
[   30.935962] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[   30.957347] NFS: Registering the id_resolver key type
[   30.958864] Key type id_resolver registered
[   30.960350] Key type id_legacy registered
[   32.653208] elogind-daemon[3141]: New seat seat0.
[   34.199874] switching from power state:
[   34.199881] 	ui class: performance
[   34.199883] 	internal class: none
[   34.199885] 	caps:
[   34.199887] 	uvd    vclk: 0 dclk: 0
[   34.199888] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   34.199890] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[   34.199892] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[   34.199894] 	status: c
[   34.199896] switching to power state:
[   34.199896] 	ui class: battery
[   34.199897] 	internal class: none
[   34.199899] 	caps:
[   34.199900] 	uvd    vclk: 0 dclk: 0
[   34.199901] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   34.199903] 		power level 1    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   34.199905] 		power level 2    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   34.199906] 	status: r
[   42.521168] elogind-daemon[3141]: New session c1 of user brad.
[   54.326490] thunderbolt 0000:07:00.0: acking hot unplug event on 0:3
[   54.326503] thunderbolt 0000:07:00.0: acking hot unplug event on 0:4
[   54.326512] thunderbolt 0000:07:00.0: 0:3: switch unplugged
[   54.326517] thunderbolt 0000:07:00.0: 0:7 <-> 3:a (PCI): deactivating
[   54.326559] thunderbolt 0000:07:00.0: deactivating PCIe Down path from 3:10 to 0:7
[   54.373181] pcieport 0000:19:04.0: pciehp: pciehp_isr: no response from device
[   54.373421] thunderbolt 0000:07:00.0: deactivating PCIe Up path from 0:7 to 3:10
[   54.374767] pcieport 0000:20:04.0: pciehp: pciehp_isr: no response from device
[   54.423101] ohci-pci 0000:1c:00.1: HC died; cleaning up
[   54.473019] ohci-pci 0000:23:00.1: HC died; cleaning up
[   54.473033] pcieport 0000:19:04.0: pciehp: pciehp_isr: no response from device
[   54.473036] pcieport 0000:20:04.0: pciehp: pciehp_isr: no response from device
[   54.473042] pcieport 0000:06:04.0: pciehp: Slot(4-1): Link Down
[   54.473044] pcieport 0000:06:04.0: pciehp: Slot(4-1): Card not present
[   54.473053] pcieport 0000:19:05.0: can't change power state from D3cold to D0 (config space inaccessible)
[   54.473252] thunderbolt 0000:07:00.0: 0:c <-> 3:b (DP): deactivating
[   54.473259] pcieport 0000:20:05.0: can't change power state from D3cold to D0 (config space inaccessible)
[   54.487136] pcieport 0000:20:04.0: can't change power state from D3cold to D0 (config space inaccessible)
[   54.487674] thunderbolt 0000:07:00.0: deactivating Video path from 0:12 to 3:11
[   54.488055] thunderbolt 0000:07:00.0: 0:c: adding -5 NFC credits to 5
[   54.488181] thunderbolt 0000:07:00.0: deactivating AUX TX path from 0:12 to 3:11
[   54.488565] thunderbolt 0000:07:00.0: deactivating AUX RX path from 3:11 to 0:12
[   54.488949] thunderbolt 0000:07:00.0: 0: released DP resource for port 12
[   54.488953] thunderbolt 0000:07:00.0: 3:7 <-> 303:a (PCI): deactivating
[   54.488954] thunderbolt 0000:07:00.0: deactivating PCIe Down path from 303:10 to 3:7
[   54.488956] thunderbolt 0000:07:00.0: deactivating PCIe Up path from 3:7 to 303:10
[   54.490501] thunderbolt 0000:07:00.0: 0:d <-> 303:b (DP): deactivating
[   54.491152] thunderbolt 0000:07:00.0: deactivating Video path from 0:13 to 303:11
[   54.491536] thunderbolt 0000:07:00.0: 0:d: adding -5 NFC credits to 5
[   54.682718] thunderbolt 0000:07:00.0: deactivating AUX TX path from 0:13 to 303:11
[   54.682789] firewire_ohci 0000:25:00.0: removed fw-ohci device
[   54.683076] thunderbolt 0000:07:00.0: deactivating AUX RX path from 303:11 to 0:13
[   54.683461] thunderbolt 0000:07:00.0: 0: released DP resource for port 13
[   54.683467] thunderbolt 0000:07:00.0: 303:b: DP OUT resource unavailable
[   54.683522] thunderbolt 0-303: device disconnected
[   54.684197] thunderbolt 0-3: device disconnected
[   54.685834] thunderbolt 0000:07:00.0: looking for DP IN <-> DP OUT pairs:
[   54.690232] thunderbolt 0000:07:00.0: 0:c: DP IN available
[   54.690354] thunderbolt 0000:07:00.0: 0:d: DP IN available
[   54.690355] thunderbolt 0000:07:00.0: no suitable DP IN adapter available, not tunneling
[   54.690358] thunderbolt 0000:07:00.0: 0:4: got unplug event for disconnected port, ignoring
[   54.812462] ehci-pci 0000:23:00.2: HC died; cleaning up
[   54.862410] ehci-pci 0000:23:00.2: remove, state 1
[   54.863634] usb usb6: USB disconnect, device number 1
[   54.863636] usb 6-1: USB disconnect, device number 2
[   54.863637] usb 6-1.4: USB disconnect, device number 3
[   54.907612] usb 6-1.5: USB disconnect, device number 4
[   55.087688] usb 6-1.7: USB disconnect, device number 5
[   55.591186] ehci-pci 0000:23:00.2: USB bus 6 deregistered
[   55.592537] ohci-pci 0000:23:00.1: remove, state 4
[   55.593772] usb usb10: USB disconnect, device number 1
[   56.240004] ohci-pci 0000:23:00.1: USB bus 10 deregistered
[   56.289886] ohci-pci 0000:23:00.0: HC died; cleaning up
[   56.289905] ohci-pci 0000:23:00.0: remove, state 4
[   56.289907] usb usb9: USB disconnect, device number 1
[   56.339797] sched: RT throttling activated
[   56.938778] ohci-pci 0000:23:00.0: USB bus 9 deregistered
[   57.138485] firewire_ohci 0000:1e:00.0: removed fw-ohci device
[   57.194600] switching from power state:
[   57.195865] 	ui class: battery
[   57.197086] 	internal class: none
[   57.198280] 	caps:
[   57.199473] 	uvd    vclk: 0 dclk: 0
[   57.200661] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   57.201871] 		power level 1    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   57.203072] 		power level 2    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   57.204271] 	status: c r
[   57.205455] switching to power state:
[   57.206654] 	ui class: battery
[   57.207851] 	internal class: none
[   57.207852] 	caps:
[   57.207853] 	uvd    vclk: 0 dclk: 0
[   57.207853] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   57.207854] 		power level 1    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   57.207855] 		power level 2    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   57.207855] 	status: c r
[   57.308106] ehci-pci 0000:1c:00.2: HC died; cleaning up
[   57.358050] ehci-pci 0000:1c:00.2: remove, state 1
[   57.359102] usb usb5: USB disconnect, device number 1
[   57.359104] usb 5-1: USB disconnect, device number 2
[   57.359105] usb 5-1.4: USB disconnect, device number 3
[   57.456495] usb 5-1.5: USB disconnect, device number 4
[   57.616580] usb 5-1.7: USB disconnect, device number 5
[   58.116648] ehci-pci 0000:1c:00.2: USB bus 5 deregistered
[   58.116749] ohci-pci 0000:1c:00.1: remove, state 4
[   58.116753] usb usb8: USB disconnect, device number 1
[   58.765466] ohci-pci 0000:1c:00.1: USB bus 8 deregistered
[   58.815349] ohci-pci 0000:1c:00.0: HC died; cleaning up
[   58.816403] ohci-pci 0000:1c:00.0: remove, state 4
[   58.817442] usb usb7: USB disconnect, device number 1
[   59.464196] ohci-pci 0000:1c:00.0: USB bus 7 deregistered
[   59.466252] pci_bus 0000:1c: busn_res: [bus 1c] is released
[   59.467528] pci_bus 0000:1b: busn_res: [bus 1b-1c] is released
[   59.468688] pci_bus 0000:1a: busn_res: [bus 1a-1c] is released
[   59.469898] pci_bus 0000:1d: busn_res: [bus 1d] is released
[   59.471070] pci_bus 0000:1e: busn_res: [bus 1e] is released
[   59.472715] pci_bus 0000:23: busn_res: [bus 23] is released
[   59.473960] pci_bus 0000:22: busn_res: [bus 22-23] is released
[   59.475077] pci_bus 0000:21: busn_res: [bus 21-23] is released
[   59.475481] pci_bus 0000:24: busn_res: [bus 24] is released
[   59.477417] pci_bus 0000:25: busn_res: [bus 25] is released
[   59.477910] pci_bus 0000:26: busn_res: [bus 26-35] is released
[   59.478486] pci_bus 0000:36: busn_res: [bus 36-45] is released
[   59.479051] pci_bus 0000:20: busn_res: [bus 20-45] is released
[   59.483149] pci_bus 0000:1f: busn_res: [bus 1f-45] is released
[   59.483509] pci_bus 0000:46: busn_res: [bus 46-55] is released
[   59.483753] pci_bus 0000:19: busn_res: [bus 19-55] is released
[   63.149034] thunderbolt 0000:07:00.0: acking hot plug event on 0:4
[   63.149153] thunderbolt 0000:07:00.0: 0:4: hotplug: scanning
[   63.149157] thunderbolt 0000:07:00.0: 0:4: hotplug: no switch found
[   63.168156] thunderbolt 0000:07:00.0: acking hot plug event on 0:3
[   63.168278] thunderbolt 0000:07:00.0: 0:3: hotplug: scanning
[   63.168360] thunderbolt 0000:07:00.0: 0:3: is connected, link is up (state: 2)
[   63.168611] thunderbolt 0000:07:00.0: current switch config:
[   63.168619] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[   63.168624] thunderbolt 0000:07:00.0:   Max Port Number: 13
[   63.168627] thunderbolt 0000:07:00.0:   Config:
[   63.168629] thunderbolt 0000:07:00.0:    Upstream Port Number: 0 Depth: 0 Route String: 0x0 Enabled: 0, PlugEventsDelay: 10ms
[   63.168633] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[   63.173196] thunderbolt 0000:07:00.0: initializing Switch at 0x3 (depth: 1, up port: 1)
[   63.190569] thunderbolt 0000:07:00.0: 3: reading drom (length: 0x97)
[   63.686949] thunderbolt 0000:07:00.0: 3: DROM version: 1
[   63.687973] thunderbolt 0000:07:00.0: 3: uid: 0x1000100189170
[   63.690916] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   63.690921] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   63.690924] thunderbolt 0000:07:00.0:   Max counters: 32
[   63.690926] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   63.690928] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   63.693857] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   63.693860] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   63.693862] thunderbolt 0000:07:00.0:   Max counters: 32
[   63.693863] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   63.693864] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   63.705552] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   63.705554] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   63.705554] thunderbolt 0000:07:00.0:   Max counters: 32
[   63.705555] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   63.705556] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   63.708495] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   63.708497] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   63.708498] thunderbolt 0000:07:00.0:   Max counters: 32
[   63.708499] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   63.708499] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   63.708500] thunderbolt 0000:07:00.0: 3:5: disabled by eeprom
[   63.708501] thunderbolt 0000:07:00.0: 3:6: disabled by eeprom
[   63.709391] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[   63.709393] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[   63.709394] thunderbolt 0000:07:00.0:   Max counters: 1
[   63.709395] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   63.709396] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   63.710287] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[   63.710289] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[   63.710290] thunderbolt 0000:07:00.0:   Max counters: 1
[   63.710290] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   63.710291] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   63.710292] thunderbolt 0000:07:00.0: 3:9: disabled by eeprom
[   63.711183] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[   63.711185] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[   63.711186] thunderbolt 0000:07:00.0:   Max counters: 1
[   63.711187] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   63.711187] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   63.712335] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[   63.712337] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[   63.712338] thunderbolt 0000:07:00.0:   Max counters: 2
[   63.712339] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   63.712339] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   63.712340] thunderbolt 0000:07:00.0: 3:c: disabled by eeprom
[   63.712341] thunderbolt 0000:07:00.0: 3:d: disabled by eeprom
[   63.730198] thunderbolt 0000:07:00.0: 3: TMU: current mode: bi-directional, HiFi
[   63.730230] thunderbolt 0-3: new device found, vendor=0x1 device=0x8002
[   63.730231] thunderbolt 0-3: Apple, Inc. Thunderbolt Display
[   63.730477] thunderbolt 0000:07:00.0: 3:3: is connected, link is up (state: 2)
[   63.730619] thunderbolt 0000:07:00.0: current switch config:
[   63.730620] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[   63.730622] thunderbolt 0000:07:00.0:   Max Port Number: 13
[   63.730623] thunderbolt 0000:07:00.0:   Config:
[   63.730623] thunderbolt 0000:07:00.0:    Upstream Port Number: 0 Depth: 0 Route String: 0x0 Enabled: 0, PlugEventsDelay: 10ms
[   63.730625] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[   63.735228] thunderbolt 0000:07:00.0: initializing Switch at 0x303 (depth: 2, up port: 3)
[   63.752635] thunderbolt 0000:07:00.0: 303: reading drom (length: 0x97)
[   63.878586] thunderbolt 0000:07:00.0: acking hot plug event on 3:b
[   63.878590] thunderbolt 0000:07:00.0: acking hot plug event on 3:b
[   63.979833] thunderbolt 0000:07:00.0: acking hot plug event on 303:b
[   63.979837] thunderbolt 0000:07:00.0: acking hot plug event on 303:b
[   64.246328] thunderbolt 0000:07:00.0: 303: DROM version: 1
[   64.247352] thunderbolt 0000:07:00.0: 303: uid: 0x100010102a740
[   64.250295] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   64.250298] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   64.250299] thunderbolt 0000:07:00.0:   Max counters: 32
[   64.250300] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   64.250301] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   64.253271] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   64.253273] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   64.253274] thunderbolt 0000:07:00.0:   Max counters: 32
[   64.253275] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   64.253275] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   64.256184] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   64.256187] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   64.256188] thunderbolt 0000:07:00.0:   Max counters: 32
[   64.256189] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   64.256190] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   64.259127] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   64.259129] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   64.259130] thunderbolt 0000:07:00.0:   Max counters: 32
[   64.259131] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   64.259132] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   64.259133] thunderbolt 0000:07:00.0: 303:5: disabled by eeprom
[   64.259134] thunderbolt 0000:07:00.0: 303:6: disabled by eeprom
[   64.260023] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[   64.260025] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[   64.260026] thunderbolt 0000:07:00.0:   Max counters: 1
[   64.260026] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   64.260027] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   64.260919] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[   64.260921] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[   64.260921] thunderbolt 0000:07:00.0:   Max counters: 1
[   64.260922] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   64.260923] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   64.260924] thunderbolt 0000:07:00.0: 303:9: disabled by eeprom
[   64.261815] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[   64.261817] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[   64.261817] thunderbolt 0000:07:00.0:   Max counters: 1
[   64.261818] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   64.261819] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   64.262967] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[   64.262969] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[   64.262970] thunderbolt 0000:07:00.0:   Max counters: 2
[   64.262971] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   64.262972] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   64.262972] thunderbolt 0000:07:00.0: 303:c: disabled by eeprom
[   64.262973] thunderbolt 0000:07:00.0: 303:d: disabled by eeprom
[   64.281381] thunderbolt 0000:07:00.0: 303: TMU: current mode: bi-directional, HiFi
[   64.281400] thunderbolt 0-303: new device found, vendor=0x1 device=0x8002
[   64.281402] thunderbolt 0-303: Apple, Inc. Thunderbolt Display
[   64.281510] thunderbolt 0000:07:00.0: 303:1: is unplugged (state: 7)
[   64.281785] thunderbolt 0000:07:00.0: 303:b: DP adapter HPD set, queuing hotplug
[   64.282021] thunderbolt 0000:07:00.0: 3:b: DP adapter HPD set, queuing hotplug
[   64.282185] thunderbolt 0000:07:00.0: 0:7 <-> 3:a (PCI): activating
[   64.282188] thunderbolt 0000:07:00.0: activating PCIe Down path from 0:7 to 3:10
[   64.282277] thunderbolt 0000:07:00.0: 3:1: Writing hop 1
[   64.284493] thunderbolt 0000:07:00.0: 3:1:  In HopID: 8 => Out port: 10 Out HopID: 8
[   64.284495] thunderbolt 0000:07:00.0: 3:1:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   64.284496] thunderbolt 0000:07:00.0: 3:1:    Counter enabled: 0 Counter index: 2047
[   64.284498] thunderbolt 0000:07:00.0: 3:1:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   64.284499] thunderbolt 0000:07:00.0: 3:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   64.284696] thunderbolt 0000:07:00.0: 0:7: Writing hop 0
[   64.284699] thunderbolt 0000:07:00.0: 0:7:  In HopID: 8 => Out port: 3 Out HopID: 8
[   64.284700] thunderbolt 0000:07:00.0: 0:7:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   64.284702] thunderbolt 0000:07:00.0: 0:7:    Counter enabled: 0 Counter index: 2047
[   64.284703] thunderbolt 0000:07:00.0: 0:7:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   64.284704] thunderbolt 0000:07:00.0: 0:7:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   64.284824] thunderbolt 0000:07:00.0: path activation complete
[   64.284826] thunderbolt 0000:07:00.0: activating PCIe Up path from 3:10 to 0:7
[   64.284952] thunderbolt 0000:07:00.0: 0:3: Writing hop 1
[   64.284954] thunderbolt 0000:07:00.0: 0:3:  In HopID: 8 => Out port: 7 Out HopID: 8
[   64.284955] thunderbolt 0000:07:00.0: 0:3:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   64.284957] thunderbolt 0000:07:00.0: 0:3:    Counter enabled: 0 Counter index: 2047
[   64.284958] thunderbolt 0000:07:00.0: 0:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   64.284959] thunderbolt 0000:07:00.0: 0:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   64.285186] thunderbolt 0000:07:00.0: 3:a: Writing hop 0
[   64.285188] thunderbolt 0000:07:00.0: 3:a:  In HopID: 8 => Out port: 1 Out HopID: 8
[   64.285189] thunderbolt 0000:07:00.0: 3:a:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   64.285190] thunderbolt 0000:07:00.0: 3:a:    Counter enabled: 0 Counter index: 2047
[   64.285191] thunderbolt 0000:07:00.0: 3:a:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   64.285192] thunderbolt 0000:07:00.0: 3:a:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   64.285314] thunderbolt 0000:07:00.0: path activation complete
[   64.285345] pcieport 0000:06:04.0: pciehp: Slot(4-1): Card present
[   64.285699] thunderbolt 0000:07:00.0: 3:b: DP OUT resource available
[   64.285702] thunderbolt 0000:07:00.0: looking for DP IN <-> DP OUT pairs:
[   64.285919] thunderbolt 0000:07:00.0: 0:c: DP IN available
[   64.285936] thunderbolt 0000:07:00.0: 3:b: DP OUT available
[   64.285938] thunderbolt 0000:07:00.0: 0: allocated DP resource for port 12
[   64.285940] thunderbolt 0000:07:00.0: 3:b: calculating available bandwidth
[   64.286063] thunderbolt 0000:07:00.0: 0:3: link total bandwidth 9000 Mb/s
[   64.287644] thunderbolt 0000:07:00.0: 3:1: link total bandwidth 9000 Mb/s
[   64.287646] thunderbolt 0000:07:00.0: available bandwidth for new DP tunnel 9000/9000 Mb/s
[   64.287653] thunderbolt 0000:07:00.0: 0:c <-> 3:b (DP): activating
[   64.287656] thunderbolt 0000:07:00.0: activating Video path from 0:12 to 3:11
[   64.287658] thunderbolt 0000:07:00.0: 3:2: adding 12 NFC credits to 0
[   64.287673] thunderbolt 0000:07:00.0: 0:c: adding 5 NFC credits to 0
[   64.287928] thunderbolt 0000:07:00.0: 3:2: Writing hop 1
[   64.287930] thunderbolt 0000:07:00.0: 3:2:  In HopID: 8 => Out port: 11 Out HopID: 9
[   64.287933] thunderbolt 0000:07:00.0: 3:2:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[   64.287935] thunderbolt 0000:07:00.0: 3:2:    Counter enabled: 0 Counter index: 2047
[   64.287937] thunderbolt 0000:07:00.0: 3:2:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[   64.287939] thunderbolt 0000:07:00.0: 3:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   64.288184] thunderbolt 0000:07:00.0: 0:c: Writing hop 0
[   64.288186] thunderbolt 0000:07:00.0: 0:c:  In HopID: 9 => Out port: 4 Out HopID: 8
[   64.288188] thunderbolt 0000:07:00.0: 0:c:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[   64.288190] thunderbolt 0000:07:00.0: 0:c:    Counter enabled: 0 Counter index: 2047
[   64.288192] thunderbolt 0000:07:00.0: 0:c:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[   64.288194] thunderbolt 0000:07:00.0: 0:c:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   64.288312] thunderbolt 0000:07:00.0: path activation complete
[   64.288314] thunderbolt 0000:07:00.0: activating AUX TX path from 0:12 to 3:11
[   64.291251] thunderbolt 0000:07:00.0: 3:2: Writing hop 1
[   64.291253] thunderbolt 0000:07:00.0: 3:2:  In HopID: 9 => Out port: 11 Out HopID: 8
[   64.291255] thunderbolt 0000:07:00.0: 3:2:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   64.291257] thunderbolt 0000:07:00.0: 3:2:    Counter enabled: 0 Counter index: 2047
[   64.291259] thunderbolt 0000:07:00.0: 3:2:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   64.291261] thunderbolt 0000:07:00.0: 3:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   64.291506] thunderbolt 0000:07:00.0: 0:c: Writing hop 0
[   64.291508] thunderbolt 0000:07:00.0: 0:c:  In HopID: 8 => Out port: 4 Out HopID: 9
[   64.291510] thunderbolt 0000:07:00.0: 0:c:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   64.291512] thunderbolt 0000:07:00.0: 0:c:    Counter enabled: 0 Counter index: 2047
[   64.291514] thunderbolt 0000:07:00.0: 0:c:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   64.291516] thunderbolt 0000:07:00.0: 0:c:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   64.291634] thunderbolt 0000:07:00.0: path activation complete
[   64.291635] thunderbolt 0000:07:00.0: activating AUX RX path from 3:11 to 0:12
[   64.291762] thunderbolt 0000:07:00.0: 0:4: Writing hop 1
[   64.291764] thunderbolt 0000:07:00.0: 0:4:  In HopID: 8 => Out port: 12 Out HopID: 8
[   64.291766] thunderbolt 0000:07:00.0: 0:4:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   64.291768] thunderbolt 0000:07:00.0: 0:4:    Counter enabled: 0 Counter index: 2047
[   64.291770] thunderbolt 0000:07:00.0: 0:4:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   64.291772] thunderbolt 0000:07:00.0: 0:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   64.292018] thunderbolt 0000:07:00.0: 3:b: Writing hop 0
[   64.292020] thunderbolt 0000:07:00.0: 3:b:  In HopID: 8 => Out port: 2 Out HopID: 8
[   64.292024] thunderbolt 0000:07:00.0: 3:b:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   64.292026] thunderbolt 0000:07:00.0: 3:b:    Counter enabled: 0 Counter index: 2047
[   64.292027] thunderbolt 0000:07:00.0: 3:b:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   64.292030] thunderbolt 0000:07:00.0: 3:b:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   64.292146] thunderbolt 0000:07:00.0: path activation complete
[   64.293171] thunderbolt 0000:07:00.0: Used link no : 1
[   64.293301] thunderbolt 0000:07:00.0: 3:7 <-> 303:a (PCI): activating
[   64.293304] thunderbolt 0000:07:00.0: activating PCIe Down path from 3:7 to 303:10
[   64.293426] thunderbolt 0000:07:00.0: 303:3: Writing hop 1
[   64.293427] thunderbolt 0000:07:00.0: 303:3:  In HopID: 8 => Out port: 10 Out HopID: 8
[   64.293428] thunderbolt 0000:07:00.0: 303:3:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   64.293430] thunderbolt 0000:07:00.0: 303:3:    Counter enabled: 0 Counter index: 2047
[   64.293431] thunderbolt 0000:07:00.0: 303:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   64.293432] thunderbolt 0000:07:00.0: 303:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   64.293681] thunderbolt 0000:07:00.0: 3:7: Writing hop 0
[   64.293683] thunderbolt 0000:07:00.0: 3:7:  In HopID: 8 => Out port: 3 Out HopID: 8
[   64.293684] thunderbolt 0000:07:00.0: 3:7:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   64.293685] thunderbolt 0000:07:00.0: 3:7:    Counter enabled: 0 Counter index: 2047
[   64.293686] thunderbolt 0000:07:00.0: 3:7:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   64.293687] thunderbolt 0000:07:00.0: 3:7:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   64.293809] thunderbolt 0000:07:00.0: path activation complete
[   64.293810] thunderbolt 0000:07:00.0: activating PCIe Up path from 303:10 to 3:7
[   64.293937] thunderbolt 0000:07:00.0: 3:3: Writing hop 1
[   64.293938] thunderbolt 0000:07:00.0: 3:3:  In HopID: 8 => Out port: 7 Out HopID: 8
[   64.293940] thunderbolt 0000:07:00.0: 3:3:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   64.293941] thunderbolt 0000:07:00.0: 3:3:    Counter enabled: 0 Counter index: 2047
[   64.293942] thunderbolt 0000:07:00.0: 3:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   64.293943] thunderbolt 0000:07:00.0: 3:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   64.294193] thunderbolt 0000:07:00.0: 303:a: Writing hop 0
[   64.294194] thunderbolt 0000:07:00.0: 303:a:  In HopID: 8 => Out port: 3 Out HopID: 8
[   64.294196] thunderbolt 0000:07:00.0: 303:a:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   64.294197] thunderbolt 0000:07:00.0: 303:a:    Counter enabled: 0 Counter index: 2047
[   64.294198] thunderbolt 0000:07:00.0: 303:a:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   64.294199] thunderbolt 0000:07:00.0: 303:a:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   64.294321] thunderbolt 0000:07:00.0: path activation complete
[   64.294835] thunderbolt 0000:07:00.0: 303:b: DP OUT resource available
[   64.294837] thunderbolt 0000:07:00.0: looking for DP IN <-> DP OUT pairs:
[   64.294962] thunderbolt 0000:07:00.0: 0:c: in use
[   64.295092] thunderbolt 0000:07:00.0: 0:d: DP IN available
[   64.295219] thunderbolt 0000:07:00.0: 3:b: in use
[   64.295347] thunderbolt 0000:07:00.0: 303:b: DP OUT available
[   64.295348] thunderbolt 0000:07:00.0: 0: allocated DP resource for port 13
[   64.295350] thunderbolt 0000:07:00.0: 303:b: calculating available bandwidth
[   64.295474] thunderbolt 0000:07:00.0: 0:3: link total bandwidth 9000 Mb/s
[   64.295477] thunderbolt 0000:07:00.0: 3:1: link total bandwidth 9000 Mb/s
[   64.295603] thunderbolt 0000:07:00.0: 3:3: link total bandwidth 9000 Mb/s
[   64.295605] thunderbolt 0000:07:00.0: 303:3: link total bandwidth 9000 Mb/s
[   64.295607] thunderbolt 0000:07:00.0: available bandwidth for new DP tunnel 9000/9000 Mb/s
[   64.295612] thunderbolt 0000:07:00.0: 0:d <-> 303:b (DP): activating
[   64.295615] thunderbolt 0000:07:00.0: activating Video path from 0:13 to 303:11
[   64.295617] thunderbolt 0000:07:00.0: 303:3: adding 12 NFC credits to 0
[   64.295730] thunderbolt 0000:07:00.0: 3:1: adding 12 NFC credits to 0
[   64.295858] thunderbolt 0000:07:00.0: 0:d: adding 5 NFC credits to 0
[   64.296114] thunderbolt 0000:07:00.0: 303:3: Writing hop 2
[   64.296116] thunderbolt 0000:07:00.0: 303:3:  In HopID: 9 => Out port: 11 Out HopID: 9
[   64.296118] thunderbolt 0000:07:00.0: 303:3:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[   64.296121] thunderbolt 0000:07:00.0: 303:3:    Counter enabled: 0 Counter index: 2047
[   64.296123] thunderbolt 0000:07:00.0: 303:3:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[   64.296125] thunderbolt 0000:07:00.0: 303:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   64.296370] thunderbolt 0000:07:00.0: 3:1: Writing hop 1
[   64.296372] thunderbolt 0000:07:00.0: 3:1:  In HopID: 9 => Out port: 3 Out HopID: 9
[   64.296374] thunderbolt 0000:07:00.0: 3:1:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[   64.296376] thunderbolt 0000:07:00.0: 3:1:    Counter enabled: 0 Counter index: 2047
[   64.296378] thunderbolt 0000:07:00.0: 3:1:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[   64.296380] thunderbolt 0000:07:00.0: 3:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   64.296626] thunderbolt 0000:07:00.0: 0:d: Writing hop 0
[   64.296628] thunderbolt 0000:07:00.0: 0:d:  In HopID: 9 => Out port: 3 Out HopID: 9
[   64.296630] thunderbolt 0000:07:00.0: 0:d:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[   64.296632] thunderbolt 0000:07:00.0: 0:d:    Counter enabled: 0 Counter index: 2047
[   64.296634] thunderbolt 0000:07:00.0: 0:d:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[   64.296636] thunderbolt 0000:07:00.0: 0:d:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   64.296754] thunderbolt 0000:07:00.0: path activation complete
[   64.296755] thunderbolt 0000:07:00.0: activating AUX TX path from 0:13 to 303:11
[   64.296882] thunderbolt 0000:07:00.0: 303:3: Writing hop 2
[   64.296883] thunderbolt 0000:07:00.0: 303:3:  In HopID: 10 => Out port: 11 Out HopID: 8
[   64.296886] thunderbolt 0000:07:00.0: 303:3:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   64.296888] thunderbolt 0000:07:00.0: 303:3:    Counter enabled: 0 Counter index: 2047
[   64.296890] thunderbolt 0000:07:00.0: 303:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   64.296892] thunderbolt 0000:07:00.0: 303:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   64.297138] thunderbolt 0000:07:00.0: 3:1: Writing hop 1
[   64.297140] thunderbolt 0000:07:00.0: 3:1:  In HopID: 10 => Out port: 3 Out HopID: 10
[   64.297142] thunderbolt 0000:07:00.0: 3:1:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   64.297144] thunderbolt 0000:07:00.0: 3:1:    Counter enabled: 0 Counter index: 2047
[   64.297146] thunderbolt 0000:07:00.0: 3:1:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   64.297148] thunderbolt 0000:07:00.0: 3:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   64.297394] thunderbolt 0000:07:00.0: 0:d: Writing hop 0
[   64.297396] thunderbolt 0000:07:00.0: 0:d:  In HopID: 8 => Out port: 3 Out HopID: 10
[   64.297398] thunderbolt 0000:07:00.0: 0:d:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   64.297400] thunderbolt 0000:07:00.0: 0:d:    Counter enabled: 0 Counter index: 2047
[   64.297402] thunderbolt 0000:07:00.0: 0:d:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   64.297404] thunderbolt 0000:07:00.0: 0:d:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   64.297522] thunderbolt 0000:07:00.0: path activation complete
[   64.297523] thunderbolt 0000:07:00.0: activating AUX RX path from 303:11 to 0:13
[   64.297650] thunderbolt 0000:07:00.0: 0:3: Writing hop 2
[   64.297652] thunderbolt 0000:07:00.0: 0:3:  In HopID: 9 => Out port: 13 Out HopID: 8
[   64.297654] thunderbolt 0000:07:00.0: 0:3:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   64.297656] thunderbolt 0000:07:00.0: 0:3:    Counter enabled: 0 Counter index: 2047
[   64.297658] thunderbolt 0000:07:00.0: 0:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   64.297660] thunderbolt 0000:07:00.0: 0:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   64.297906] thunderbolt 0000:07:00.0: 3:3: Writing hop 1
[   64.297907] thunderbolt 0000:07:00.0: 3:3:  In HopID: 9 => Out port: 1 Out HopID: 9
[   64.297909] thunderbolt 0000:07:00.0: 3:3:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   64.297912] thunderbolt 0000:07:00.0: 3:3:    Counter enabled: 0 Counter index: 2047
[   64.297913] thunderbolt 0000:07:00.0: 3:3:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   64.297915] thunderbolt 0000:07:00.0: 3:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   64.299955] thunderbolt 0000:07:00.0: 303:b: Writing hop 0
[   64.299957] thunderbolt 0000:07:00.0: 303:b:  In HopID: 8 => Out port: 3 Out HopID: 9
[   64.299959] thunderbolt 0000:07:00.0: 303:b:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   64.299961] thunderbolt 0000:07:00.0: 303:b:    Counter enabled: 0 Counter index: 2047
[   64.299963] thunderbolt 0000:07:00.0: 303:b:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   64.299965] thunderbolt 0000:07:00.0: 303:b:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   64.300082] thunderbolt 0000:07:00.0: path activation complete
[   64.301106] thunderbolt 0000:07:00.0: Used link no : 0
[   64.472424] pci 0000:18:00.0: [8086:1513] type 01 class 0x060400
[   64.472527] pci 0000:18:00.0: enabling Extended Tags
[   64.472708] pci 0000:18:00.0: supports D1 D2
[   64.472709] pci 0000:18:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   64.472881] pcieport 0000:06:04.0: ASPM: current common clock configuration is inconsistent, reconfiguring
[   64.502395] pci 0000:18:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   64.502566] pci 0000:19:00.0: [8086:1513] type 01 class 0x060400
[   64.502684] pci 0000:19:00.0: enabling Extended Tags
[   64.502874] pci 0000:19:00.0: supports D1 D2
[   64.502876] pci 0000:19:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   64.503127] pci 0000:19:01.0: [8086:1513] type 01 class 0x060400
[   64.503245] pci 0000:19:01.0: enabling Extended Tags
[   64.503433] pci 0000:19:01.0: supports D1 D2
[   64.512621] pci 0000:19:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[   64.512816] pci 0000:19:02.0: [8086:1513] type 01 class 0x060400
[   64.515113] pci 0000:19:02.0: enabling Extended Tags
[   64.515294] pci 0000:19:02.0: supports D1 D2
[   64.515295] pci 0000:19:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[   64.515463] pci 0000:19:04.0: [8086:1513] type 01 class 0x060400
[   64.515573] pci 0000:19:04.0: enabling Extended Tags
[   64.515763] pci 0000:19:04.0: supports D1 D2
[   64.515764] pci 0000:19:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[   64.516019] pci 0000:19:05.0: [8086:1513] type 01 class 0x060400
[   64.516145] pci 0000:19:05.0: enabling Extended Tags
[   64.516367] pci 0000:19:05.0: supports D1 D2
[   64.516369] pci 0000:19:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[   64.516556] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[   64.530326] pci 0000:18:00.0:   bridge window [io  0x0000-0x0fff]
[   64.531470] pci 0000:18:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   64.531482] pci 0000:18:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   64.531487] pci 0000:19:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   64.535125] pci 0000:19:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   64.535140] pci 0000:19:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   64.535155] pci 0000:19:04.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   64.538692] pci 0000:19:05.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   64.538867] pci 0000:1a:00.0: [12d8:400c] type 01 class 0x060400
[   64.539250] pci 0000:1a:00.0: supports D1 D2
[   64.539252] pci 0000:1a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   64.562355] pci 0000:19:00.0: PCI bridge to [bus 1a-55]
[   64.562369] pci 0000:19:00.0:   bridge window [io  0x0000-0x0fff]
[   64.562376] pci 0000:19:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   64.562388] pci 0000:19:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   64.562393] pci 0000:1a:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   64.562627] pci 0000:1b:03.0: [12d8:400c] type 01 class 0x060400
[   64.562964] pci 0000:1b:03.0: supports D1 D2
[   64.562966] pci 0000:1b:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[   64.563202] pci 0000:1a:00.0: PCI bridge to [bus 1b-55]
[   64.563220] pci 0000:1a:00.0:   bridge window [io  0x0000-0x0fff]
[   64.563230] pci 0000:1a:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   64.563247] pci 0000:1a:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   64.563253] pci 0000:1b:03.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   64.563470] pci 0000:1c:00.0: [12d8:400e] type 00 class 0x0c0310
[   64.563523] pci 0000:1c:00.0: reg 0x10: [mem 0x00000000-0x00000fff]
[   64.563806] pci 0000:1c:00.0: supports D1 D2
[   64.582209] pci 0000:1c:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   64.582422] pci 0000:1c:00.1: [12d8:400e] type 00 class 0x0c0310
[   64.584674] pci 0000:1c:00.1: reg 0x10: [mem 0x00000000-0x00000fff]
[   64.586087] pci 0000:1c:00.1: supports D1 D2
[   64.586088] pci 0000:1c:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[   64.586221] pci 0000:1c:00.2: [12d8:400f] type 00 class 0x0c0320
[   64.586265] pci 0000:1c:00.2: reg 0x10: [mem 0x00000000-0x000000ff]
[   64.586543] pci 0000:1c:00.2: supports D1 D2
[   64.586545] pci 0000:1c:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[   64.586999] pci 0000:1b:03.0: PCI bridge to [bus 1c-55]
[   64.587018] pci 0000:1b:03.0:   bridge window [io  0x0000-0x0fff]
[   64.587027] pci 0000:1b:03.0:   bridge window [mem 0x00000000-0x000fffff]
[   64.587045] pci 0000:1b:03.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   64.587048] pci_bus 0000:1c: busn_res: [bus 1c-55] end is updated to 1c
[   64.587059] pci_bus 0000:1b: busn_res: [bus 1b-55] end is updated to 1c
[   64.587069] pci_bus 0000:1a: busn_res: [bus 1a-55] end is updated to 1c
[   64.587233] pci 0000:1d:00.0: [14e4:16b0] type 00 class 0x020000
[   64.587297] pci 0000:1d:00.0: reg 0x10: [mem 0x00000000-0x0000ffff 64bit pref]
[   64.604381] pci 0000:1d:00.0: reg 0x18: [mem 0x00000000-0x0000ffff 64bit pref]
[   64.605844] pci 0000:1d:00.0: PME# supported from D0 D3hot D3cold
[   64.632343] pci 0000:19:01.0: PCI bridge to [bus 1d-55]
[   64.632357] pci 0000:19:01.0:   bridge window [io  0x0000-0x0fff]
[   64.632364] pci 0000:19:01.0:   bridge window [mem 0x00000000-0x000fffff]
[   64.632376] pci 0000:19:01.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   64.632378] pci_bus 0000:1d: busn_res: [bus 1d-55] end is updated to 1d
[   64.632530] pci 0000:1e:00.0: [11c1:5901] type 00 class 0x0c0010
[   64.632594] pci 0000:1e:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[   64.632924] pci 0000:1e:00.0: supports D1 D2
[   64.641984] pci 0000:1e:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   64.662329] pci 0000:19:02.0: PCI bridge to [bus 1e-55]
[   64.662343] pci 0000:19:02.0:   bridge window [io  0x0000-0x0fff]
[   64.662350] pci 0000:19:02.0:   bridge window [mem 0x00000000-0x000fffff]
[   64.662362] pci 0000:19:02.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   64.662363] pci_bus 0000:1e: busn_res: [bus 1e-55] end is updated to 1e
[   64.662544] pci 0000:1f:00.0: [8086:1513] type 01 class 0x060400
[   64.662704] pci 0000:1f:00.0: enabling Extended Tags
[   64.662975] pci 0000:1f:00.0: supports D1 D2
[   64.662977] pci 0000:1f:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   64.702302] pci 0000:19:04.0: PCI bridge to [bus 1f-55]
[   64.702316] pci 0000:19:04.0:   bridge window [io  0x0000-0x0fff]
[   64.702323] pci 0000:19:04.0:   bridge window [mem 0x00000000-0x000fffff]
[   64.702335] pci 0000:19:04.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   64.702340] pci 0000:1f:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   64.702570] pci 0000:20:00.0: [8086:1513] type 01 class 0x060400
[   64.702730] pci 0000:20:00.0: enabling Extended Tags
[   64.703006] pci 0000:20:00.0: supports D1 D2
[   64.703007] pci 0000:20:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   64.703371] pci 0000:20:01.0: [8086:1513] type 01 class 0x060400
[   64.714958] pci 0000:20:01.0: enabling Extended Tags
[   64.715220] pci 0000:20:01.0: supports D1 D2
[   64.715221] pci 0000:20:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[   64.715448] pci 0000:20:02.0: [8086:1513] type 01 class 0x060400
[   64.715607] pci 0000:20:02.0: enabling Extended Tags
[   64.715877] pci 0000:20:02.0: supports D1 D2
[   64.715879] pci 0000:20:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[   64.716241] pci 0000:20:04.0: [8086:1513] type 01 class 0x060400
[   64.725929] pci 0000:20:04.0: enabling Extended Tags
[   64.726197] pci 0000:20:04.0: supports D1 D2
[   64.726198] pci 0000:20:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[   64.726434] pci 0000:20:05.0: [8086:1513] type 01 class 0x060400
[   64.726595] pci 0000:20:05.0: enabling Extended Tags
[   64.726870] pci 0000:20:05.0: supports D1 D2
[   64.726871] pci 0000:20:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[   64.727240] pci 0000:1f:00.0: PCI bridge to [bus 20-55]
[   64.736634] pci 0000:1f:00.0:   bridge window [io  0x0000-0x0fff]
[   64.736644] pci 0000:1f:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   64.736661] pci 0000:1f:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   64.740183] pci 0000:20:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   64.740212] pci 0000:20:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   64.742629] pci 0000:20:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   64.742650] pci 0000:20:04.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   64.742679] pci 0000:20:05.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   64.746521] pci 0000:21:00.0: [12d8:400c] type 01 class 0x060400
[   64.747031] pci 0000:21:00.0: supports D1 D2
[   64.747033] pci 0000:21:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   64.747444] pci 0000:20:00.0: PCI bridge to [bus 21-55]
[   64.747464] pci 0000:20:00.0:   bridge window [io  0x0000-0x0fff]
[   64.747474] pci 0000:20:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   64.747493] pci 0000:20:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   64.747500] pci 0000:21:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   64.747813] pci 0000:22:03.0: [12d8:400c] type 01 class 0x060400
[   64.759072] pci 0000:22:03.0: supports D1 D2
[   64.759073] pci 0000:22:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[   64.759346] pci 0000:21:00.0: PCI bridge to [bus 22-55]
[   64.759369] pci 0000:21:00.0:   bridge window [io  0x0000-0x0fff]
[   64.759381] pci 0000:21:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   64.759404] pci 0000:21:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   64.759411] pci 0000:22:03.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   64.759698] pci 0000:23:00.0: [12d8:400e] type 00 class 0x0c0310
[   64.759758] pci 0000:23:00.0: reg 0x10: [mem 0x00000000-0x00000fff]
[   64.760129] pci 0000:23:00.0: supports D1 D2
[   64.771708] pci 0000:23:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   64.771946] pci 0000:23:00.1: [12d8:400e] type 00 class 0x0c0310
[   64.774258] pci 0000:23:00.1: reg 0x10: [mem 0x00000000-0x00000fff]
[   64.774617] pci 0000:23:00.1: supports D1 D2
[   64.776695] pci 0000:23:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[   64.776882] pci 0000:23:00.2: [12d8:400f] type 00 class 0x0c0320
[   64.779237] pci 0000:23:00.2: reg 0x10: [mem 0x00000000-0x000000ff]
[   64.779610] pci 0000:23:00.2: supports D1 D2
[   64.779611] pci 0000:23:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[   64.779978] pci 0000:22:03.0: PCI bridge to [bus 23-55]
[   64.780001] pci 0000:22:03.0:   bridge window [io  0x0000-0x0fff]
[   64.780013] pci 0000:22:03.0:   bridge window [mem 0x00000000-0x000fffff]
[   64.780035] pci 0000:22:03.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   64.780037] pci_bus 0000:23: busn_res: [bus 23-55] end is updated to 23
[   64.780050] pci_bus 0000:22: busn_res: [bus 22-55] end is updated to 23
[   64.780062] pci_bus 0000:21: busn_res: [bus 21-55] end is updated to 23
[   64.780331] pci 0000:24:00.0: [14e4:16b0] type 00 class 0x020000
[   64.780414] pci 0000:24:00.0: reg 0x10: [mem 0x00000000-0x0000ffff 64bit pref]
[   64.780465] pci 0000:24:00.0: reg 0x18: [mem 0x00000000-0x0000ffff 64bit pref]
[   64.780909] pci 0000:24:00.0: PME# supported from D0 D3hot D3cold
[   64.797714] pci 0000:20:01.0: PCI bridge to [bus 24-55]
[   64.797734] pci 0000:20:01.0:   bridge window [io  0x0000-0x0fff]
[   64.797744] pci 0000:20:01.0:   bridge window [mem 0x00000000-0x000fffff]
[   64.797763] pci 0000:20:01.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   64.797765] pci_bus 0000:24: busn_res: [bus 24-55] end is updated to 24
[   64.797984] pci 0000:25:00.0: [11c1:5901] type 00 class 0x0c0010
[   64.798067] pci 0000:25:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[   64.798504] pci 0000:25:00.0: supports D1 D2
[   64.798506] pci 0000:25:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   64.798956] pci 0000:20:02.0: PCI bridge to [bus 25-55]
[   64.798975] pci 0000:20:02.0:   bridge window [io  0x0000-0x0fff]
[   64.811965] pci 0000:20:02.0:   bridge window [mem 0x00000000-0x000fffff]
[   64.811990] pci 0000:20:02.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   64.811992] pci_bus 0000:25: busn_res: [bus 25-55] end is updated to 25
[   64.815746] pci 0000:20:04.0: PCI bridge to [bus 26-55]
[   64.815764] pci 0000:20:04.0:   bridge window [io  0x0000-0x0fff]
[   64.815773] pci 0000:20:04.0:   bridge window [mem 0x00000000-0x000fffff]
[   64.815790] pci 0000:20:04.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   64.815792] pci_bus 0000:26: busn_res: [bus 26-55] end is updated to 35
[   64.815969] pci 0000:20:05.0: PCI bridge to [bus 36-55]
[   64.815988] pci 0000:20:05.0:   bridge window [io  0x0000-0x0fff]
[   64.815998] pci 0000:20:05.0:   bridge window [mem 0x00000000-0x000fffff]
[   64.816024] pci 0000:20:05.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   64.816027] pci_bus 0000:36: busn_res: [bus 36-55] end is updated to 45
[   64.816038] pci_bus 0000:20: busn_res: [bus 20-55] end is updated to 45
[   64.816049] pci_bus 0000:1f: busn_res: [bus 1f-55] end is updated to 45
[   64.816201] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[   64.816215] pci 0000:19:05.0:   bridge window [io  0x0000-0x0fff]
[   64.816223] pci 0000:19:05.0:   bridge window [mem 0x00000000-0x000fffff]
[   64.816236] pci 0000:19:05.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   64.816239] pci_bus 0000:46: busn_res: [bus 46-55] end is updated to 55
[   64.816247] pci_bus 0000:19: busn_res: [bus 19-55] end is updated to 55
[   64.816263] pci 0000:20:04.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 26-35] add_size 3ff00000 add_align 100000
[   64.816267] pci 0000:20:04.0: bridge window [mem 0x00100000-0x001fffff] to [bus 26-35] add_size 7f00000 add_align 100000
[   64.816271] pci 0000:20:05.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 36-45] add_size 3ff00000 add_align 100000
[   64.816275] pci 0000:20:05.0: bridge window [mem 0x00100000-0x001fffff] to [bus 36-45] add_size 7f00000 add_align 100000
[   64.816279] pci 0000:1f:00.0: bridge window [mem 0x00100000-0x005fffff 64bit pref] to [bus 20-45] add_size 7fe00000 add_align 100000
[   64.816282] pci 0000:1f:00.0: bridge window [mem 0x00100000-0x005fffff] to [bus 20-45] add_size fe00000 add_align 100000
[   64.816286] pci 0000:19:04.0: bridge window [mem 0x00100000-0x005fffff 64bit pref] to [bus 1f-45] add_size bf900000 add_align 100000
[   64.816289] pci 0000:19:04.0: bridge window [mem 0x00100000-0x005fffff] to [bus 1f-45] add_size 17900000 add_align 100000
[   64.816292] pci 0000:19:05.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 46-55] add_size 3ff00000 add_align 100000
[   64.816295] pci 0000:19:05.0: bridge window [mem 0x00100000-0x001fffff] to [bus 46-55] add_size 7f00000 add_align 100000
[   64.816299] pci 0000:18:00.0: bridge window [mem 0x00100000-0x009fffff 64bit pref] to [bus 19-55] add_size ff800000 add_align 100000
[   64.816303] pci 0000:18:00.0: bridge window [mem 0x00100000-0x009fffff] to [bus 19-55] add_size 1f800000 add_align 100000
[   64.816307] pcieport 0000:06:04.0: bridge window [mem 0x00100000-0x009fffff 64bit pref] to [bus 18-55] add_size 13ef00000 add_align 100000
[   64.816317] pcieport 0000:06:04.0: BAR 9: no space for [mem size 0x00900000 64bit pref]
[   64.816320] pcieport 0000:06:04.0: BAR 9: failed to assign [mem size 0x00900000 64bit pref]
[   64.816323] pcieport 0000:06:04.0: BAR 9: no space for [mem size 0x00900000 64bit pref]
[   64.816326] pcieport 0000:06:04.0: BAR 9: failed to assign [mem size 0x00900000 64bit pref]
[   64.816329] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[   64.816332] pci 0000:18:00.0: BAR 9: no space for [mem size 0x00900000 64bit pref]
[   64.816334] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0x00900000 64bit pref]
[   64.816337] pci 0000:18:00.0: BAR 7: assigned [io  0x5000-0x9fff]
[   64.816339] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[   64.816342] pci 0000:18:00.0: BAR 9: no space for [mem size 0x00900000 64bit pref]
[   64.816343] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0x00900000 64bit pref]
[   64.816349] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[   64.816352] pci 0000:19:00.0: BAR 9: assigned [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   64.816354] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0d00000-0xb0dfffff]
[   64.816356] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0e00000-0xb0efffff 64bit pref]
[   64.816358] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[   64.816360] pci 0000:19:02.0: BAR 9: assigned [mem 0xb1000000-0xb10fffff 64bit pref]
[   64.816363] pci 0000:19:04.0: BAR 8: assigned [mem 0xb1100000-0xbd27ffff]
[   64.816365] pci 0000:19:04.0: BAR 9: assigned [mem 0xbd300000-0xbd5fffff 64bit pref]
[   64.816367] pci 0000:19:05.0: BAR 8: no space for [mem size 0x0c100000]
[   64.816369] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x0c100000]
[   64.816371] pci 0000:19:05.0: BAR 9: assigned [mem 0xbd600000-0xbd8fffff 64bit pref]
[   64.816374] pci 0000:19:00.0: BAR 7: assigned [io  0x5000-0x5fff]
[   64.816375] pci 0000:19:01.0: BAR 7: assigned [io  0x6000-0x6fff]
[   64.816377] pci 0000:19:02.0: BAR 7: assigned [io  0x7000-0x7fff]
[   64.816379] pci 0000:19:04.0: BAR 7: assigned [io  0x8000-0x8fff]
[   64.816381] pci 0000:19:05.0: BAR 7: assigned [io  0x9000-0x9fff]
[   64.816384] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[   64.816386] pci 0000:19:00.0: BAR 9: assigned [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   64.816388] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0d00000-0xb0dfffff]
[   64.816391] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0e00000-0xb0efffff 64bit pref]
[   64.816393] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[   64.816395] pci 0000:19:02.0: BAR 9: assigned [mem 0xb1000000-0xb10fffff 64bit pref]
[   64.816397] pci 0000:19:04.0: BAR 8: assigned [mem 0xb1100000-0xbd27ffff]
[   64.816399] pci 0000:19:04.0: BAR 9: assigned [mem 0xbd300000-0xbd5fffff 64bit pref]
[   64.816401] pci 0000:19:05.0: BAR 8: no space for [mem size 0x0c100000]
[   64.816403] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x0c100000]
[   64.816405] pci 0000:19:05.0: BAR 9: assigned [mem 0xbd600000-0xbd8fffff 64bit pref]
[   64.816408] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[   64.816411] pci 0000:1a:00.0: BAR 9: assigned [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   64.816413] pci 0000:1a:00.0: BAR 7: assigned [io  0x5000-0x5fff]
[   64.816415] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[   64.816417] pci 0000:1b:03.0: BAR 9: assigned [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   64.816419] pci 0000:1b:03.0: BAR 7: assigned [io  0x5000-0x5fff]
[   64.816422] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[   64.816432] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[   64.816449] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[   64.816459] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[   64.816465] pci 0000:1b:03.0:   bridge window [io  0x5000-0x5fff]
[   64.816477] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[   64.816487] pci 0000:1b:03.0:   bridge window [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   64.816504] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[   64.816509] pci 0000:1a:00.0:   bridge window [io  0x5000-0x5fff]
[   64.816522] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[   64.816531] pci 0000:1a:00.0:   bridge window [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   64.816547] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[   64.816551] pci 0000:19:00.0:   bridge window [io  0x5000-0x5fff]
[   64.816560] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[   64.816567] pci 0000:19:00.0:   bridge window [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   64.816580] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e0ffff 64bit pref]
[   64.816608] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0e10000-0xb0e1ffff 64bit pref]
[   64.816637] pci 0000:19:01.0: PCI bridge to [bus 1d]
[   64.816641] pci 0000:19:01.0:   bridge window [io  0x6000-0x6fff]
[   64.816650] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff]
[   64.816656] pci 0000:19:01.0:   bridge window [mem 0xb0e00000-0xb0efffff 64bit pref]
[   64.816669] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff 64bit]
[   64.816698] pci 0000:19:02.0: PCI bridge to [bus 1e]
[   64.816701] pci 0000:19:02.0:   bridge window [io  0x7000-0x7fff]
[   64.816711] pci 0000:19:02.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[   64.816717] pci 0000:19:02.0:   bridge window [mem 0xb1000000-0xb10fffff 64bit pref]
[   64.816730] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb1100000-0xbd27ffff]
[   64.816731] pci 0000:1f:00.0: BAR 9: assigned [mem 0xbd300000-0xbd5fffff 64bit pref]
[   64.816732] pci 0000:1f:00.0: BAR 7: assigned [io  0x8000-0x8fff]
[   64.816735] pci 0000:20:00.0: BAR 8: assigned [mem 0xb1100000-0xb11fffff]
[   64.816737] pci 0000:20:00.0: BAR 9: assigned [mem 0xbd300000-0xbd3fffff 64bit pref]
[   64.816738] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[   64.816739] pci 0000:20:01.0: BAR 9: assigned [mem 0xbd400000-0xbd4fffff 64bit pref]
[   64.816740] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1300000-0xb13fffff]
[   64.816742] pci 0000:20:02.0: BAR 9: assigned [mem 0xbd500000-0xbd5fffff 64bit pref]
[   64.816743] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1400000-0xb733ffff]
[   64.816745] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[   64.816746] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[   64.816747] pci 0000:20:05.0: BAR 8: assigned [mem 0xb7400000-0xbd27ffff]
[   64.816749] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[   64.816750] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[   64.816751] pci 0000:20:00.0: BAR 7: assigned [io  0x8000-0x8fff]
[   64.816752] pci 0000:20:01.0: BAR 7: no space for [io  size 0x1000]
[   64.816753] pci 0000:20:01.0: BAR 7: failed to assign [io  size 0x1000]
[   64.816754] pci 0000:20:02.0: BAR 7: no space for [io  size 0x1000]
[   64.816755] pci 0000:20:02.0: BAR 7: failed to assign [io  size 0x1000]
[   64.816756] pci 0000:20:04.0: BAR 7: no space for [io  size 0x1000]
[   64.816757] pci 0000:20:04.0: BAR 7: failed to assign [io  size 0x1000]
[   64.816758] pci 0000:20:05.0: BAR 7: no space for [io  size 0x1000]
[   64.816759] pci 0000:20:05.0: BAR 7: failed to assign [io  size 0x1000]
[   64.816761] pci 0000:20:00.0: BAR 8: assigned [mem 0xb1100000-0xb11fffff]
[   64.816762] pci 0000:20:00.0: BAR 9: assigned [mem 0xbd300000-0xbd3fffff 64bit pref]
[   64.816764] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[   64.816765] pci 0000:20:01.0: BAR 9: assigned [mem 0xbd400000-0xbd4fffff 64bit pref]
[   64.816766] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1300000-0xb13fffff]
[   64.816767] pci 0000:20:02.0: BAR 9: assigned [mem 0xbd500000-0xbd5fffff 64bit pref]
[   64.816769] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1400000-0xb733ffff]
[   64.816770] pci 0000:20:04.0: BAR 9: assigned [mem 0xb7400000-0xb74fffff 64bit pref]
[   64.816772] pci 0000:20:05.0: BAR 8: no space for [mem size 0x05e80000]
[   64.816773] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x05e80000]
[   64.816774] pci 0000:20:05.0: BAR 9: assigned [mem 0xb7500000-0xb75fffff 64bit pref]
[   64.816775] pci 0000:20:00.0: BAR 7: assigned [io  0x8000-0x8fff]
[   64.816777] pci 0000:20:01.0: BAR 7: no space for [io  size 0x1000]
[   64.816778] pci 0000:20:01.0: BAR 7: failed to assign [io  size 0x1000]
[   64.816779] pci 0000:20:02.0: BAR 7: no space for [io  size 0x1000]
[   64.816780] pci 0000:20:02.0: BAR 7: failed to assign [io  size 0x1000]
[   64.816781] pci 0000:20:04.0: BAR 7: no space for [io  size 0x1000]
[   64.816782] pci 0000:20:04.0: BAR 7: failed to assign [io  size 0x1000]
[   64.816783] pci 0000:20:05.0: BAR 7: no space for [io  size 0x1000]
[   64.816784] pci 0000:20:05.0: BAR 7: failed to assign [io  size 0x1000]
[   64.816786] pci 0000:20:05.0: BAR 9: [mem 0xb7500000-0xb75fffff 64bit pref] (failed to expand by 0x3ff00000)
[   64.816788] pci 0000:20:05.0: failed to add 3ff00000 res[9]=[mem 0xb7500000-0xb75fffff 64bit pref]
[   64.816790] pci 0000:20:04.0: BAR 9: [mem 0xb7400000-0xb74fffff 64bit pref] (failed to expand by 0x3ff00000)
[   64.816791] pci 0000:20:04.0: failed to add 3ff00000 res[9]=[mem 0xb7400000-0xb74fffff 64bit pref]
[   64.816793] pci 0000:21:00.0: BAR 8: assigned [mem 0xb1100000-0xb11fffff]
[   64.816795] pci 0000:21:00.0: BAR 9: assigned [mem 0xbd300000-0xbd3fffff 64bit pref]
[   64.816796] pci 0000:21:00.0: BAR 7: assigned [io  0x8000-0x8fff]
[   64.816797] pci 0000:22:03.0: BAR 8: assigned [mem 0xb1100000-0xb11fffff]
[   64.816799] pci 0000:22:03.0: BAR 9: assigned [mem 0xbd300000-0xbd3fffff 64bit pref]
[   64.816800] pci 0000:22:03.0: BAR 7: assigned [io  0x8000-0x8fff]
[   64.816802] pci 0000:23:00.0: BAR 0: assigned [mem 0xb1100000-0xb1100fff]
[   64.816813] pci 0000:23:00.1: BAR 0: assigned [mem 0xb1101000-0xb1101fff]
[   64.816824] pci 0000:23:00.2: BAR 0: assigned [mem 0xb1102000-0xb11020ff]
[   64.816836] pci 0000:22:03.0: PCI bridge to [bus 23]
[   64.816841] pci 0000:22:03.0:   bridge window [io  0x8000-0x8fff]
[   64.816857] pci 0000:22:03.0:   bridge window [mem 0xb1100000-0xb11fffff]
[   64.816868] pci 0000:22:03.0:   bridge window [mem 0xbd300000-0xbd3fffff 64bit pref]
[   64.816889] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[   64.816895] pci 0000:21:00.0:   bridge window [io  0x8000-0x8fff]
[   64.816911] pci 0000:21:00.0:   bridge window [mem 0xb1100000-0xb11fffff]
[   64.816922] pci 0000:21:00.0:   bridge window [mem 0xbd300000-0xbd3fffff 64bit pref]
[   64.816943] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[   64.816948] pci 0000:20:00.0:   bridge window [io  0x8000-0x8fff]
[   64.816962] pci 0000:20:00.0:   bridge window [mem 0xb1100000-0xb11fffff]
[   64.816971] pci 0000:20:00.0:   bridge window [mem 0xbd300000-0xbd3fffff 64bit pref]
[   64.816989] pci 0000:24:00.0: BAR 0: assigned [mem 0xbd400000-0xbd40ffff 64bit pref]
[   64.817026] pci 0000:24:00.0: BAR 2: assigned [mem 0xbd410000-0xbd41ffff 64bit pref]
[   64.817064] pci 0000:20:01.0: PCI bridge to [bus 24]
[   64.817077] pci 0000:20:01.0:   bridge window [mem 0xb1200000-0xb12fffff]
[   64.817086] pci 0000:20:01.0:   bridge window [mem 0xbd400000-0xbd4fffff 64bit pref]
[   64.817104] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1300000-0xb1300fff 64bit]
[   64.817142] pci 0000:20:02.0: PCI bridge to [bus 25]
[   64.817155] pci 0000:20:02.0:   bridge window [mem 0xb1300000-0xb13fffff]
[   64.817164] pci 0000:20:02.0:   bridge window [mem 0xbd500000-0xbd5fffff 64bit pref]
[   64.817182] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[   64.817195] pci 0000:20:04.0:   bridge window [mem 0xb1400000-0xb733ffff]
[   64.817204] pci 0000:20:04.0:   bridge window [mem 0xb7400000-0xb74fffff 64bit pref]
[   64.817222] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[   64.817243] pci 0000:20:05.0:   bridge window [mem 0xb7500000-0xb75fffff 64bit pref]
[   64.817261] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[   64.817266] pci 0000:1f:00.0:   bridge window [io  0x8000-0x8fff]
[   64.817279] pci 0000:1f:00.0:   bridge window [mem 0xb1100000-0xbd27ffff]
[   64.817288] pci 0000:1f:00.0:   bridge window [mem 0xbd300000-0xbd5fffff 64bit pref]
[   64.817305] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[   65.013475] pci 0000:19:04.0:   bridge window [io  0x8000-0x8fff]
[   65.013485] pci 0000:19:04.0:   bridge window [mem 0xb1100000-0xbd27ffff]
[   65.013491] pci 0000:19:04.0:   bridge window [mem 0xbd300000-0xbd5fffff 64bit pref]
[   65.013504] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[   65.013508] pci 0000:19:05.0:   bridge window [io  0x9000-0x9fff]
[   65.018481] pci 0000:19:05.0:   bridge window [mem 0xbd600000-0xbd8fffff 64bit pref]
[   65.018493] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[   65.020519] pci 0000:18:00.0:   bridge window [io  0x5000-0x9fff]
[   65.020536] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[   65.020553] pcieport 0000:06:04.0: PCI bridge to [bus 18-55]
[   65.020556] pcieport 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[   65.020561] pcieport 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[   65.020572] PCI: No. 2 try to assign unassigned res
[   65.025926] pci 0000:22:03.0: resource 7 [io  0x8000-0x8fff] released
[   65.025927] pci 0000:22:03.0: PCI bridge to [bus 23]
[   65.025948] pci 0000:21:00.0: resource 7 [io  0x8000-0x8fff] released
[   65.025949] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[   65.025971] pci 0000:20:00.0: resource 7 [io  0x8000-0x8fff] released
[   65.031247] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[   65.031272] pci 0000:1f:00.0: resource 7 [io  0x8000-0x8fff] released
[   65.031273] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[   65.031290] release child resource [mem 0xb1100000-0xb1100fff]
[   65.031291] release child resource [mem 0xb1101000-0xb1101fff]
[   65.031292] release child resource [mem 0xb1102000-0xb11020ff]
[   65.031292] pci 0000:22:03.0: resource 8 [mem 0xb1100000-0xb11fffff] released
[   65.031293] pci 0000:22:03.0: PCI bridge to [bus 23]
[   65.031304] pci 0000:21:00.0: resource 8 [mem 0xb1100000-0xb11fffff] released
[   65.031305] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[   65.031316] pci 0000:20:00.0: resource 8 [mem 0xb1100000-0xb11fffff] released
[   65.031317] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[   65.031326] pci 0000:20:01.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[   65.031327] pci 0000:20:01.0: PCI bridge to [bus 24]
[   65.031336] release child resource [mem 0xb1300000-0xb1300fff 64bit]
[   65.031337] pci 0000:20:02.0: resource 8 [mem 0xb1300000-0xb13fffff] released
[   65.031346] pci 0000:20:02.0: PCI bridge to [bus 25]
[   65.031355] pci 0000:20:04.0: resource 8 [mem 0xb1400000-0xb733ffff] released
[   65.031356] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[   65.031365] release child resource [mem 0xb7400000-0xb74fffff 64bit pref]
[   65.031366] release child resource [mem 0xb7500000-0xb75fffff 64bit pref]
[   65.031367] pci 0000:1f:00.0: resource 8 [mem 0xb1100000-0xbd27ffff] released
[   65.031375] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[   65.031384] release child resource [mem 0xb0b00000-0xb0b00fff]
[   65.031385] release child resource [mem 0xb0b01000-0xb0b01fff]
[   65.031385] release child resource [mem 0xb0b02000-0xb0b020ff]
[   65.031386] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[   65.031387] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[   65.031395] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[   65.031396] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[   65.031405] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[   65.031406] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[   65.031412] pci 0000:19:01.0: resource 8 [mem 0xb0d00000-0xb0dfffff] released
[   65.031413] pci 0000:19:01.0: PCI bridge to [bus 1d]
[   65.031420] release child resource [mem 0xb0f00000-0xb0f00fff 64bit]
[   65.031420] pci 0000:19:02.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[   65.031421] pci 0000:19:02.0: PCI bridge to [bus 1e]
[   65.031428] pci 0000:19:04.0: resource 8 [mem 0xb1100000-0xbd27ffff] released
[   65.031429] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[   65.031436] release child resource [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   65.031436] release child resource [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   65.031437] release child resource [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   65.031437] release child resource [mem 0xb0e00000-0xb0e0ffff 64bit pref]
[   65.031438] release child resource [mem 0xb0e10000-0xb0e1ffff 64bit pref]
[   65.031438] release child resource [mem 0xb0e00000-0xb0efffff 64bit pref]
[   65.031439] release child resource [mem 0xb1000000-0xb10fffff 64bit pref]
[   65.031440] release child resource [mem 0xbd300000-0xbd3fffff 64bit pref]
[   65.031440] release child resource [mem 0xbd300000-0xbd3fffff 64bit pref]
[   65.031441] release child resource [mem 0xbd300000-0xbd3fffff 64bit pref]
[   65.031441] release child resource [mem 0xbd400000-0xbd40ffff 64bit pref]
[   65.031442] release child resource [mem 0xbd410000-0xbd41ffff 64bit pref]
[   65.031443] release child resource [mem 0xbd400000-0xbd4fffff 64bit pref]
[   65.031443] release child resource [mem 0xbd500000-0xbd5fffff 64bit pref]
[   65.031444] release child resource [mem 0xbd300000-0xbd5fffff 64bit pref]
[   65.031444] release child resource [mem 0xbd300000-0xbd5fffff 64bit pref]
[   65.031445] release child resource [mem 0xbd600000-0xbd8fffff 64bit pref]
[   65.031446] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[   65.031447] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[   65.031454] pcieport 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[   65.031455] pcieport 0000:06:04.0: PCI bridge to [bus 18-55]
[   65.031459] release child resource [mem 0xa8a00000-0xa8a3ffff]
[   65.031459] release child resource [mem 0xa8a00000-0xa8a3ffff]
[   65.031460] release child resource [mem 0xa8a40000-0xa8a40fff]
[   65.031461] pcieport 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[   65.031462] pcieport 0000:06:00.0: PCI bridge to [bus 07]
[   65.031466] pcieport 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[   65.031467] pcieport 0000:06:03.0: PCI bridge to [bus 08-17]
[   65.031472] pcieport 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[   65.031472] pcieport 0000:06:05.0: PCI bridge to [bus 56-65]
[   65.031477] pcieport 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[   65.031478] pcieport 0000:06:06.0: PCI bridge to [bus 66-75]
[   65.031482] pcieport 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[   65.031483] pcieport 0000:05:00.0: PCI bridge to [bus 06-75]
[   65.031491] pci 0000:20:04.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 26-35] add_size 3ff00000 add_align 100000
[   65.031493] pci 0000:20:04.0: bridge window [mem 0x00100000-0x060fffff] to [bus 26-35] add_size 2000000 add_align 100000
[   65.031494] pci 0000:20:05.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 36-45] add_size 3ff00000 add_align 100000
[   65.031496] pci 0000:20:05.0: bridge window [mem 0x00100000-0x05ffffff] to [bus 36-45] add_size 2100000 add_align 100000
[   65.031498] pci 0000:1f:00.0: bridge window [mem 0x00100000-0x005fffff 64bit pref] to [bus 20-45] add_size 7fe00000 add_align 100000
[   65.031500] pci 0000:1f:00.0: bridge window [mem 0x00100000-0x0c2fffff] to [bus 20-45] add_size 4100000 add_align 100000
[   65.031501] pci 0000:19:04.0: bridge window [mem 0x00100000-0x005fffff 64bit pref] to [bus 1f-45] add_size bf900000 add_align 100000
[   65.031503] pci 0000:19:04.0: bridge window [mem 0x00100000-0x0c2fffff] to [bus 1f-45] add_size 4100000 add_align 100000
[   65.031504] pci 0000:19:05.0: bridge window [mem 0x00100000-0x003fffff 64bit pref] to [bus 46-55] add_size 3fd00000 add_align 100000
[   65.031506] pci 0000:18:00.0: bridge window [mem 0x00100000-0x00bfffff 64bit pref] to [bus 19-55] add_size ff600000 add_align 100000
[   65.031508] pci 0000:18:00.0: bridge window [mem 0x00100000-0x186fffff] to [bus 19-55] add_size 4100000 add_align 100000
[   65.031510] pcieport 0000:06:04.0: bridge window [mem 0x00100000-0x00bfffff 64bit pref] to [bus 18-55] add_size 13eb00000 add_align 100000
[   65.031511] pcieport 0000:06:04.0: bridge window [mem 0x00100000-0x186fffff] to [bus 18-55] add_size 4100000 add_align 100000
[   65.031515] pcieport 0000:06:04.0: BAR 8: no space for [mem size 0x18600000]
[   65.031516] pcieport 0000:06:04.0: BAR 8: failed to assign [mem size 0x18600000]
[   65.031518] pcieport 0000:06:04.0: BAR 9: no space for [mem size 0x00b00000 64bit pref]
[   65.031519] pcieport 0000:06:04.0: BAR 9: failed to assign [mem size 0x00b00000 64bit pref]
[   65.031520] pcieport 0000:06:04.0: BAR 8: no space for [mem size 0x18600000]
[   65.031521] pcieport 0000:06:04.0: BAR 8: failed to assign [mem size 0x18600000]
[   65.031522] pcieport 0000:06:04.0: BAR 9: no space for [mem size 0x00b00000 64bit pref]
[   65.031524] pcieport 0000:06:04.0: BAR 9: failed to assign [mem size 0x00b00000 64bit pref]
[   65.031525] pci 0000:18:00.0: BAR 8: no space for [mem size 0x18600000]
[   65.031526] pci 0000:18:00.0: BAR 8: failed to assign [mem size 0x18600000]
[   65.031527] pci 0000:18:00.0: BAR 9: no space for [mem size 0x00b00000 64bit pref]
[   65.031528] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0x00b00000 64bit pref]
[   65.031529] pci 0000:18:00.0: BAR 8: no space for [mem size 0x18600000]
[   65.031530] pci 0000:18:00.0: BAR 8: failed to assign [mem size 0x18600000]
[   65.031532] pci 0000:18:00.0: BAR 9: no space for [mem size 0x00b00000 64bit pref]
[   65.031533] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0x00b00000 64bit pref]
[   65.031535] pci 0000:19:00.0: BAR 8: no space for [mem size 0x00100000]
[   65.031536] pci 0000:19:00.0: BAR 8: failed to assign [mem size 0x00100000]
[   65.031537] pci 0000:19:00.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   65.031538] pci 0000:19:00.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   65.031539] pci 0000:19:01.0: BAR 8: no space for [mem size 0x00100000]
[   65.031540] pci 0000:19:01.0: BAR 8: failed to assign [mem size 0x00100000]
[   65.031541] pci 0000:19:01.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   65.031543] pci 0000:19:01.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   65.031544] pci 0000:19:02.0: BAR 8: no space for [mem size 0x00100000]
[   65.031545] pci 0000:19:02.0: BAR 8: failed to assign [mem size 0x00100000]
[   65.031546] pci 0000:19:02.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   65.031547] pci 0000:19:02.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   65.031548] pci 0000:19:04.0: BAR 8: no space for [mem size 0x0c180000]
[   65.031549] pci 0000:19:04.0: BAR 8: failed to assign [mem size 0x0c180000]
[   65.031550] pci 0000:19:04.0: BAR 9: no space for [mem size 0x00400000 64bit pref]
[   65.031551] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x00400000 64bit pref]
[   65.031552] pci 0000:19:05.0: BAR 8: no space for [mem size 0x0c100000]
[   65.031553] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x0c100000]
[   65.031554] pci 0000:19:05.0: BAR 9: no space for [mem size 0x00400000 64bit pref]
[   65.031555] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x00400000 64bit pref]
[   65.031557] pci 0000:19:00.0: BAR 8: no space for [mem size 0x00100000]
[   65.031558] pci 0000:19:00.0: BAR 8: failed to assign [mem size 0x00100000]
[   65.031559] pci 0000:19:00.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   65.031560] pci 0000:19:00.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   65.031561] pci 0000:19:01.0: BAR 8: no space for [mem size 0x00100000]
[   65.031562] pci 0000:19:01.0: BAR 8: failed to assign [mem size 0x00100000]
[   65.031563] pci 0000:19:01.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   65.031564] pci 0000:19:01.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   65.031565] pci 0000:19:02.0: BAR 8: no space for [mem size 0x00100000]
[   65.031566] pci 0000:19:02.0: BAR 8: failed to assign [mem size 0x00100000]
[   65.031567] pci 0000:19:02.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   65.031568] pci 0000:19:02.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   65.031569] pci 0000:19:04.0: BAR 8: no space for [mem size 0x0c180000]
[   65.031570] pci 0000:19:04.0: BAR 8: failed to assign [mem size 0x0c180000]
[   65.031571] pci 0000:19:04.0: BAR 9: no space for [mem size 0x00400000 64bit pref]
[   65.031572] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x00400000 64bit pref]
[   65.031573] pci 0000:19:05.0: BAR 8: no space for [mem size 0x0c100000]
[   65.031574] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x0c100000]
[   65.031576] pci 0000:19:05.0: BAR 9: no space for [mem size 0x00400000 64bit pref]
[   65.031577] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x00400000 64bit pref]
[   65.031578] pci 0000:1a:00.0: BAR 8: no space for [mem size 0x00100000]
[   65.031579] pci 0000:1a:00.0: BAR 8: failed to assign [mem size 0x00100000]
[   65.031580] pci 0000:1a:00.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   65.031581] pci 0000:1a:00.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   65.031582] pci 0000:1a:00.0: BAR 8: no space for [mem size 0x00100000]
[   65.031583] pci 0000:1a:00.0: BAR 8: failed to assign [mem size 0x00100000]
[   65.031584] pci 0000:1a:00.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   65.031585] pci 0000:1a:00.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   65.031587] pci 0000:1b:03.0: BAR 8: no space for [mem size 0x00100000]
[   65.031588] pci 0000:1b:03.0: BAR 8: failed to assign [mem size 0x00100000]
[   65.031589] pci 0000:1b:03.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   65.031590] pci 0000:1b:03.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   65.031591] pci 0000:1b:03.0: BAR 8: no space for [mem size 0x00100000]
[   65.031592] pci 0000:1b:03.0: BAR 8: failed to assign [mem size 0x00100000]
[   65.031593] pci 0000:1b:03.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   65.031594] pci 0000:1b:03.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   65.031595] pci 0000:1c:00.0: BAR 0: no space for [mem size 0x00001000]
[   65.031596] pci 0000:1c:00.0: BAR 0: failed to assign [mem size 0x00001000]
[   65.031597] pci 0000:1c:00.1: BAR 0: no space for [mem size 0x00001000]
[   65.031598] pci 0000:1c:00.1: BAR 0: failed to assign [mem size 0x00001000]
[   65.031599] pci 0000:1c:00.2: BAR 0: no space for [mem size 0x00000100]
[   65.031600] pci 0000:1c:00.2: BAR 0: failed to assign [mem size 0x00000100]
[   65.031602] pci 0000:1c:00.0: BAR 0: no space for [mem size 0x00001000]
[   65.031603] pci 0000:1c:00.0: BAR 0: failed to assign [mem size 0x00001000]
[   65.031604] pci 0000:1c:00.1: BAR 0: no space for [mem size 0x00001000]
[   65.031605] pci 0000:1c:00.1: BAR 0: failed to assign [mem size 0x00001000]
[   65.031606] pci 0000:1c:00.2: BAR 0: no space for [mem size 0x00000100]
[   65.031607] pci 0000:1c:00.2: BAR 0: failed to assign [mem size 0x00000100]
[   65.031608] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[   65.031612] pci 0000:1b:03.0:   bridge window [io  0x5000-0x5fff]
[   65.031647] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[   65.031652] pci 0000:1a:00.0:   bridge window [io  0x5000-0x5fff]
[   65.031687] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[   65.031690] pci 0000:19:00.0:   bridge window [io  0x5000-0x5fff]
[   65.031717] pci 0000:1d:00.0: BAR 0: no space for [mem size 0x00010000 64bit pref]
[   65.031718] pci 0000:1d:00.0: BAR 0: failed to assign [mem size 0x00010000 64bit pref]
[   65.031719] pci 0000:1d:00.0: BAR 2: no space for [mem size 0x00010000 64bit pref]
[   65.031720] pci 0000:1d:00.0: BAR 2: failed to assign [mem size 0x00010000 64bit pref]
[   65.031721] pci 0000:1d:00.0: BAR 0: no space for [mem size 0x00010000 64bit pref]
[   65.031722] pci 0000:1d:00.0: BAR 0: failed to assign [mem size 0x00010000 64bit pref]
[   65.031724] pci 0000:1d:00.0: BAR 2: no space for [mem size 0x00010000 64bit pref]
[   65.031725] pci 0000:1d:00.0: BAR 2: failed to assign [mem size 0x00010000 64bit pref]
[   65.031726] pci 0000:19:01.0: PCI bridge to [bus 1d]
[   65.031729] pci 0000:19:01.0:   bridge window [io  0x6000-0x6fff]
[   65.031756] pci 0000:1e:00.0: BAR 0: no space for [mem size 0x00001000 64bit]
[   65.031757] pci 0000:1e:00.0: BAR 0: failed to assign [mem size 0x00001000 64bit]
[   65.031758] pci 0000:1e:00.0: BAR 0: no space for [mem size 0x00001000 64bit]
[   65.031759] pci 0000:1e:00.0: BAR 0: failed to assign [mem size 0x00001000 64bit]
[   65.031760] pci 0000:19:02.0: PCI bridge to [bus 1e]
[   65.031763] pci 0000:19:02.0:   bridge window [io  0x7000-0x7fff]
[   65.031790] pci 0000:1f:00.0: BAR 8: no space for [mem size 0x0c180000]
[   65.031791] pci 0000:1f:00.0: BAR 8: failed to assign [mem size 0x0c180000]
[   65.031792] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x00400000 64bit pref]
[   65.031793] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x00400000 64bit pref]
[   65.031794] pci 0000:1f:00.0: BAR 7: no space for [io  size 0x2800]
[   65.031795] pci 0000:1f:00.0: BAR 7: failed to assign [io  size 0x2800]
[   65.031797] pci 0000:1f:00.0: BAR 8: no space for [mem size 0x0c180000]
[   65.031798] pci 0000:1f:00.0: BAR 8: failed to assign [mem size 0x0c180000]
[   65.031799] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x00400000 64bit pref]
[   65.031800] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x00400000 64bit pref]
[   65.031801] pci 0000:1f:00.0: BAR 7: no space for [io  size 0x2800]
[   65.031802] pci 0000:1f:00.0: BAR 7: failed to assign [io  size 0x2800]
[   65.031805] pci 0000:20:00.0: BAR 8: no space for [mem size 0x00100000]
[   65.031806] pci 0000:20:00.0: BAR 8: failed to assign [mem size 0x00100000]
[   65.031807] pci 0000:20:00.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   65.031808] pci 0000:20:00.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   65.031809] pci 0000:20:01.0: BAR 8: no space for [mem size 0x00100000]
[   65.031810] pci 0000:20:01.0: BAR 8: failed to assign [mem size 0x00100000]
[   65.031811] pci 0000:20:01.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   65.031812] pci 0000:20:01.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   65.031814] pci 0000:20:02.0: BAR 8: no space for [mem size 0x00100000]
[   65.031815] pci 0000:20:02.0: BAR 8: failed to assign [mem size 0x00100000]
[   65.031816] pci 0000:20:02.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   65.031817] pci 0000:20:02.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   65.031818] pci 0000:20:04.0: BAR 8: no space for [mem size 0x05f40000]
[   65.031819] pci 0000:20:04.0: BAR 8: failed to assign [mem size 0x05f40000]
[   65.031820] pci 0000:20:04.0: BAR 9: no space for [mem size 0x00080000 64bit pref]
[   65.031821] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x00080000 64bit pref]
[   65.031822] pci 0000:20:05.0: BAR 8: no space for [mem size 0x05e80000]
[   65.031823] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x05e80000]
[   65.031824] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[   65.031825] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[   65.031826] pci 0000:20:00.0: BAR 7: no space for [io  size 0x1000]
[   65.031827] pci 0000:20:00.0: BAR 7: failed to assign [io  size 0x1000]
[   65.031828] pci 0000:20:01.0: BAR 7: no space for [io  size 0x1000]
[   65.031829] pci 0000:20:01.0: BAR 7: failed to assign [io  size 0x1000]
[   65.031830] pci 0000:20:02.0: BAR 7: no space for [io  size 0x1000]
[   65.031831] pci 0000:20:02.0: BAR 7: failed to assign [io  size 0x1000]
[   65.031832] pci 0000:20:04.0: BAR 7: no space for [io  size 0x1000]
[   65.031833] pci 0000:20:04.0: BAR 7: failed to assign [io  size 0x1000]
[   65.031834] pci 0000:20:05.0: BAR 7: no space for [io  size 0x1000]
[   65.031835] pci 0000:20:05.0: BAR 7: failed to assign [io  size 0x1000]
[   65.031836] pci 0000:20:00.0: BAR 8: no space for [mem size 0x00100000]
[   65.031837] pci 0000:20:00.0: BAR 8: failed to assign [mem size 0x00100000]
[   65.031838] pci 0000:20:00.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   65.031839] pci 0000:20:00.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   65.031841] pci 0000:20:01.0: BAR 8: no space for [mem size 0x00100000]
[   65.031842] pci 0000:20:01.0: BAR 8: failed to assign [mem size 0x00100000]
[   65.031843] pci 0000:20:01.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   65.031844] pci 0000:20:01.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   65.031845] pci 0000:20:02.0: BAR 8: no space for [mem size 0x00100000]
[   65.031846] pci 0000:20:02.0: BAR 8: failed to assign [mem size 0x00100000]
[   65.031847] pci 0000:20:02.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   65.031848] pci 0000:20:02.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   65.031849] pci 0000:20:04.0: BAR 8: no space for [mem size 0x05f40000]
[   65.031850] pci 0000:20:04.0: BAR 8: failed to assign [mem size 0x05f40000]
[   65.031851] pci 0000:20:04.0: BAR 9: no space for [mem size 0x00080000 64bit pref]
[   65.031852] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x00080000 64bit pref]
[   65.031853] pci 0000:20:05.0: BAR 8: no space for [mem size 0x05e80000]
[   65.031854] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x05e80000]
[   65.031855] pci 0000:20:05.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   65.031856] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   65.031857] pci 0000:20:00.0: BAR 7: no space for [io  size 0x1000]
[   65.031858] pci 0000:20:00.0: BAR 7: failed to assign [io  size 0x1000]
[   65.031859] pci 0000:20:01.0: BAR 7: no space for [io  size 0x1000]
[   65.031860] pci 0000:20:01.0: BAR 7: failed to assign [io  size 0x1000]
[   65.031861] pci 0000:20:02.0: BAR 7: no space for [io  size 0x1000]
[   65.031862] pci 0000:20:02.0: BAR 7: failed to assign [io  size 0x1000]
[   65.031863] pci 0000:20:04.0: BAR 7: no space for [io  size 0x1000]
[   65.031864] pci 0000:20:04.0: BAR 7: failed to assign [io  size 0x1000]
[   65.031865] pci 0000:20:05.0: BAR 7: no space for [io  size 0x1000]
[   65.031866] pci 0000:20:05.0: BAR 7: failed to assign [io  size 0x1000]
[   65.031868] pci 0000:21:00.0: BAR 8: no space for [mem size 0x00100000]
[   65.031868] pci 0000:21:00.0: BAR 8: failed to assign [mem size 0x00100000]
[   65.031870] pci 0000:21:00.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   65.031871] pci 0000:21:00.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   65.031872] pci 0000:21:00.0: BAR 7: no space for [io  size 0x1000]
[   65.031873] pci 0000:21:00.0: BAR 7: failed to assign [io  size 0x1000]
[   65.031874] pci 0000:22:03.0: BAR 8: no space for [mem size 0x00100000]
[   65.031875] pci 0000:22:03.0: BAR 8: failed to assign [mem size 0x00100000]
[   65.031876] pci 0000:22:03.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   65.031877] pci 0000:22:03.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   65.031878] pci 0000:22:03.0: BAR 7: no space for [io  size 0x1000]
[   65.031879] pci 0000:22:03.0: BAR 7: failed to assign [io  size 0x1000]
[   65.031880] pci 0000:23:00.0: BAR 0: no space for [mem size 0x00001000]
[   65.031881] pci 0000:23:00.0: BAR 0: failed to assign [mem size 0x00001000]
[   65.031882] pci 0000:23:00.1: BAR 0: no space for [mem size 0x00001000]
[   65.031883] pci 0000:23:00.1: BAR 0: failed to assign [mem size 0x00001000]
[   65.031884] pci 0000:23:00.2: BAR 0: no space for [mem size 0x00000100]
[   65.031885] pci 0000:23:00.2: BAR 0: failed to assign [mem size 0x00000100]
[   65.031886] pci 0000:22:03.0: PCI bridge to [bus 23]
[   65.031933] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[   65.031980] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[   65.032019] pci 0000:24:00.0: BAR 0: no space for [mem size 0x00010000 64bit pref]
[   65.032020] pci 0000:24:00.0: BAR 0: failed to assign [mem size 0x00010000 64bit pref]
[   65.032021] pci 0000:24:00.0: BAR 2: no space for [mem size 0x00010000 64bit pref]
[   65.032022] pci 0000:24:00.0: BAR 2: failed to assign [mem size 0x00010000 64bit pref]
[   65.032023] pci 0000:20:01.0: PCI bridge to [bus 24]
[   65.032061] pci 0000:25:00.0: BAR 0: no space for [mem size 0x00001000 64bit]
[   65.032062] pci 0000:25:00.0: BAR 0: failed to assign [mem size 0x00001000 64bit]
[   65.032063] pci 0000:20:02.0: PCI bridge to [bus 25]
[   65.032114] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[   65.032152] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[   65.032190] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[   65.032228] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[   65.032231] pci 0000:19:04.0:   bridge window [io  0x8000-0x8fff]
[   65.032258] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[   65.032261] pci 0000:19:05.0:   bridge window [io  0x9000-0x9fff]
[   65.032288] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[   65.032291] pci 0000:18:00.0:   bridge window [io  0x5000-0x9fff]
[   65.032317] pcieport 0000:06:04.0: PCI bridge to [bus 18-55]
[   65.032319] pcieport 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[   65.032364] pcieport 0000:18:00.0: enabling device (0000 -> 0001)
[   65.032686] pcieport 0000:19:00.0: enabling device (0000 -> 0001)
[   65.112483] switching from power state:
[   65.113726] pcieport 0000:19:01.0: enabling device (0000 -> 0001)
[   65.114809] 	ui class: battery
[   65.116507] pcieport 0000:19:02.0: enabling device (0000 -> 0001)
[   65.117556] 	internal class: none
[   65.119233] pcieport 0000:19:04.0: enabling device (0000 -> 0001)

[   65.120296] 	caps:
[   65.121749] pcieport 0000:19:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[   65.123018] 	uvd    vclk: 0 dclk: 0
[   65.123019] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   65.123020] 		power level 1    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   65.124696] pcieport 0000:19:05.0: enabling device (0000 -> 0001)
[   65.125898] 		power level 2    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   65.127324] pcieport 0000:19:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[   65.128572] 	status: c r
[   65.130192] pcieport 0000:1a:00.0: enabling device (0000 -> 0001)

[   65.131353] switching to power state:
[   65.132789] pcieport 0000:1b:03.0: enabling device (0000 -> 0001)
[   65.134041] 	ui class: battery
[   65.135490] pci 0000:1c:00.0: MSI is not implemented on this device, disabling it
[   65.136693] 	internal class: none
[   65.138007] pci 0000:1c:00.0: PME# is unreliable, disabling it

[   65.140743] ohci-pci 0000:1c:00.0: init 0000:1c:00.0 fail, -16
[   65.141883] 	caps:
[   65.143183] ohci-pci: probe of 0000:1c:00.0 failed with error -16
[   65.144491] 	uvd    vclk: 0 dclk: 0
[   65.145768] pci 0000:1c:00.1: MSI is not implemented on this device, disabling it
[   65.147040] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   65.148313] pci 0000:1c:00.1: PME# is unreliable, disabling it
[   65.149588] 		power level 1    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   65.150971] ohci-pci 0000:1c:00.1: init 0000:1c:00.1 fail, -16
[   65.152168] 		power level 2    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   65.153456] ohci-pci: probe of 0000:1c:00.1 failed with error -16
[   65.154728] 	status:
[   65.155999] pci 0000:1c:00.2: MSI is not implemented on this device, disabling it
[   65.157264]  c
[   65.158531] pci 0000:1c:00.2: PME# is unreliable, disabling it
[   65.159800]  r
[   65.161616] ehci-pci 0000:1c:00.2: init 0000:1c:00.2 fail, -16

[   65.403446] ehci-pci: probe of 0000:1c:00.2 failed with error -16
[   65.403516] tg3 0000:1d:00.0: can't ioremap BAR 0: [??? 0x00000000 flags 0x0]
[   65.406094] tg3 0000:1d:00.0: Cannot map device registers, aborting
[   65.406120] tg3: probe of 0000:1d:00.0 failed with error -12
[   65.406176] firewire_ohci 0000:1e:00.0: invalid MMIO resource
[   65.412745] pcieport 0000:20:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[   65.413418] pcieport 0000:20:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[   65.414275] pci 0000:23:00.0: MSI is not implemented on this device, disabling it
[   65.414278] pci 0000:23:00.0: PME# is unreliable, disabling it
[   65.414471] ohci-pci 0000:23:00.0: init 0000:23:00.0 fail, -16
[   65.421289] ohci-pci: probe of 0000:23:00.0 failed with error -16
[   65.421294] pci 0000:23:00.1: MSI is not implemented on this device, disabling it
[   65.421295] pci 0000:23:00.1: PME# is unreliable, disabling it
[   65.421443] ohci-pci 0000:23:00.1: init 0000:23:00.1 fail, -16
[   65.426751] [drm:radeon_dp_link_train [radeon]] *ERROR* displayport link status failed
[   65.427006] ohci-pci: probe of 0000:23:00.1 failed with error -16
[   65.428422] [drm:radeon_dp_link_train [radeon]] *ERROR* clock recovery failed
[   65.429813] pci 0000:23:00.2: MSI is not implemented on this device, disabling it
[   65.429814] pci 0000:23:00.2: PME# is unreliable, disabling it
[   65.429955] ehci-pci 0000:23:00.2: init 0000:23:00.2 fail, -16
[   65.435574] ehci-pci: probe of 0000:23:00.2 failed with error -16
[   65.435640] tg3 0000:24:00.0: can't ioremap BAR 0: [??? 0x00000000 flags 0x0]
[   65.438472] tg3 0000:24:00.0: Cannot map device registers, aborting
[   65.438498] tg3: probe of 0000:24:00.0 failed with error -12
[   65.438572] firewire_ohci 0000:25:00.0: invalid MMIO resource
[   65.778129] [drm:radeon_dp_link_train [radeon]] *ERROR* displayport link status failed
[   65.778158] [drm:radeon_dp_link_train [radeon]] *ERROR* clock recovery failed


This is cold boot and plug the chain in at the bootloader phase. EFI does not set up the first head. Wait for it to settle, unplug/replug and both heads come up.


[    0.000000] Linux version 5.17.1bkc1+ (brad@bkmac) (gcc (Debian 8.3.0-6) 8.3.0, GNU ld (GNU Binutils for Debian) 2.31.1) #28 SMP PREEMPT Wed Apr 6 10:31:18 AWST 2022
[    0.000000] Command line: ro root=UUID=de35d1a6-e0e1-40b0-b46a-3974a04adf4b libata.allow_tpm=1 netconsole=6666@192.168.2.87/eth0,6666@192.168.2.208/dc:a6:32:61:33:da oops=panic panic=10 thunderbolt.dyndbg pci=assign-busses,realloc,hpbussize=0x10,hpmmiosize=128M,hpmmioprefsize=1G initrd=boot\initrd.img-5.17.1bkc1+
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    0.000000] signal: max sigframe size: 1776
[    0.000000] reserving inaccessible SNB gfx pages
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008e000-0x000000000008ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000bffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000020200000-0x000000003fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000040000000-0x00000000401fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000040200000-0x000000008ed32fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008ed33000-0x000000008ed5efff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000008ed5f000-0x000000008ed70fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008ed71000-0x000000008ed8efff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000008ed8f000-0x000000008ee59fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008ee5a000-0x000000008ee8efff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008ee8f000-0x000000008eed6fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008eed7000-0x000000008eefefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008eeff000-0x000000008efa2fff] usable
[    0.000000] BIOS-e820: [mem 0x000000008efa3000-0x000000008f8fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffed8000-0x00000000ffefffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000086fefffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0x890c7018-0x890e2c57] usable ==> usable
[    0.000000] e820: update [mem 0x890c7018-0x890e2c57] usable ==> usable
[    0.000000] e820: update [mem 0x89a45018-0x89a568eb] usable ==> usable
[    0.000000] e820: update [mem 0x89a45018-0x89a568eb] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000008dfff] usable
[    0.000000] reserve setup_data: [mem 0x000000000008e000-0x000000000008ffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000000a0000-0x00000000000bffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000020000000-0x00000000201fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000020200000-0x000000003fffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000040000000-0x00000000401fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000040200000-0x00000000890c7017] usable
[    0.000000] reserve setup_data: [mem 0x00000000890c7018-0x00000000890e2c57] usable
[    0.000000] reserve setup_data: [mem 0x00000000890e2c58-0x0000000089a45017] usable
[    0.000000] reserve setup_data: [mem 0x0000000089a45018-0x0000000089a568eb] usable
[    0.000000] reserve setup_data: [mem 0x0000000089a568ec-0x000000008ed32fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008ed33000-0x000000008ed5efff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000008ed5f000-0x000000008ed70fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008ed71000-0x000000008ed8efff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000008ed8f000-0x000000008ee59fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008ee5a000-0x000000008ee8efff] reserved
[    0.000000] reserve setup_data: [mem 0x000000008ee8f000-0x000000008eed6fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008eed7000-0x000000008eefefff] reserved
[    0.000000] reserve setup_data: [mem 0x000000008eeff000-0x000000008efa2fff] usable
[    0.000000] reserve setup_data: [mem 0x000000008efa3000-0x000000008f8fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ffed8000-0x00000000ffefffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000086fefffff] usable
[    0.000000] efi: EFI v1.10 by Apple
[    0.000000] efi: ACPI=0x8ed8e000 ACPI 2.0=0x8ed8e014 SMBIOS=0x8ed3b000
[    0.000000] SMBIOS 2.4 present.
[    0.000000] DMI: Apple Inc. iMac12,2/Mac-942B59F58194171B, BIOS 87.0.0.0.0 06/14/2019
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 3399.727 MHz processor
[    0.000097] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000099] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000105] last_pfn = 0x86ff00 max_arch_pfn = 0x400000000
[    0.000754] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT
[    0.001371] last_pfn = 0x8efa3 max_arch_pfn = 0x400000000
[    0.002473] Secure boot disabled
[    0.002474] RAMDISK: [mem 0x7e4c0000-0x7fffffff]
[    0.002478] ACPI: Early table checksum verification disabled
[    0.002482] ACPI: RSDP 0x000000008ED8E014 000024 (v02 APPLE )
[    0.002486] ACPI: XSDT 0x000000008ED8E1C0 0000A4 (v01 APPLE  Apple00  0000F000      01000013)
[    0.002490] ACPI: FACP 0x000000008ED8C000 0000F4 (v04 APPLE  Apple00  0000F000 Loki 0000005F)
[    0.002495] ACPI: DSDT 0x000000008ED81000 0053FB (v01 APPLE  iMac     00210001 INTL 20061109)
[    0.002498] ACPI: FACS 0x000000008ED3E000 000040
[    0.002500] ACPI: FACS 0x000000008ED3E000 000040
[    0.002502] ACPI: HPET 0x000000008ED8B000 000038 (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002505] ACPI: APIC 0x000000008ED8A000 0000BC (v02 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002507] ACPI: SBST 0x000000008ED88000 000030 (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002510] ACPI: ECDT 0x000000008ED87000 000053 (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002512] ACPI: SSDT 0x000000008ED7E000 00020D (v01 APPLE  SataAhci 00001000 INTL 20061109)
[    0.002515] ACPI: SSDT 0x000000008ED7C000 0000B1 (v01 APPLE  SmcDppt  00001000 INTL 20061109)
[    0.002518] ACPI: SSDT 0x000000008ED7A000 000646 (v01 APPLE  UsbNoRmh 00001000 INTL 20061109)
[    0.002521] ACPI: SSDT 0x000000008ED78000 00013D (v01 APPLE  SataPrt1 00001000 INTL 20061109)
[    0.002523] ACPI: SSDT 0x000000008ED77000 0000A0 (v02 APPLE  IGHda    00001000 INTL 20061109)
[    0.002526] ACPI: SSDT 0x000000008ED75000 000032 (v01 APPLE  SsdtS3   00001000 INTL 20061109)
[    0.002528] ACPI: SSDT 0x000000008ED74000 000548 (v01 PmRef  Cpu0Ist  00003000 INTL 20061109)
[    0.002531] ACPI: SSDT 0x000000008ED73000 0009B1 (v01 PmRef  CpuPm    00003000 INTL 20061109)
[    0.002534] ACPI: SSDT 0x000000008ED72000 000315 (v01 PmRef  Cpu0Tst  00003000 INTL 20061109)
[    0.002536] ACPI: SSDT 0x000000008ED71000 00037A (v01 PmRef  ApTst    00003000 INTL 20061109)
[    0.002539] ACPI: MCFG 0x000000008ED89000 00003C (v01 APPLE  Apple00  00000001 Loki 0000005F)
[    0.002541] ACPI: Reserving FACP table memory at [mem 0x8ed8c000-0x8ed8c0f3]
[    0.002542] ACPI: Reserving DSDT table memory at [mem 0x8ed81000-0x8ed863fa]
[    0.002544] ACPI: Reserving FACS table memory at [mem 0x8ed3e000-0x8ed3e03f]
[    0.002545] ACPI: Reserving FACS table memory at [mem 0x8ed3e000-0x8ed3e03f]
[    0.002546] ACPI: Reserving HPET table memory at [mem 0x8ed8b000-0x8ed8b037]
[    0.002547] ACPI: Reserving APIC table memory at [mem 0x8ed8a000-0x8ed8a0bb]
[    0.002548] ACPI: Reserving SBST table memory at [mem 0x8ed88000-0x8ed8802f]
[    0.002549] ACPI: Reserving ECDT table memory at [mem 0x8ed87000-0x8ed87052]
[    0.002550] ACPI: Reserving SSDT table memory at [mem 0x8ed7e000-0x8ed7e20c]
[    0.002551] ACPI: Reserving SSDT table memory at [mem 0x8ed7c000-0x8ed7c0b0]
[    0.002552] ACPI: Reserving SSDT table memory at [mem 0x8ed7a000-0x8ed7a645]
[    0.002553] ACPI: Reserving SSDT table memory at [mem 0x8ed78000-0x8ed7813c]
[    0.002554] ACPI: Reserving SSDT table memory at [mem 0x8ed77000-0x8ed7709f]
[    0.002556] ACPI: Reserving SSDT table memory at [mem 0x8ed75000-0x8ed75031]
[    0.002557] ACPI: Reserving SSDT table memory at [mem 0x8ed74000-0x8ed74547]
[    0.002558] ACPI: Reserving SSDT table memory at [mem 0x8ed73000-0x8ed739b0]
[    0.002559] ACPI: Reserving SSDT table memory at [mem 0x8ed72000-0x8ed72314]
[    0.002560] ACPI: Reserving SSDT table memory at [mem 0x8ed71000-0x8ed71379]
[    0.002561] ACPI: Reserving MCFG table memory at [mem 0x8ed89000-0x8ed8903b]
[    0.002568] ACPI: DMI detected to setup _OSI("Darwin"): Apple hardware
[    0.002595] Zone ranges:
[    0.002596]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.002598]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.002599]   Normal   [mem 0x0000000100000000-0x000000086fefffff]
[    0.002600] Movable zone start for each node
[    0.002601] Early memory node ranges
[    0.002602]   node   0: [mem 0x0000000000001000-0x000000000008dfff]
[    0.002603]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.002604]   node   0: [mem 0x0000000000100000-0x000000001fffffff]
[    0.002605]   node   0: [mem 0x0000000020200000-0x000000003fffffff]
[    0.002606]   node   0: [mem 0x0000000040200000-0x000000008ed32fff]
[    0.002607]   node   0: [mem 0x000000008ed5f000-0x000000008ed70fff]
[    0.002608]   node   0: [mem 0x000000008ed8f000-0x000000008ee59fff]
[    0.002609]   node   0: [mem 0x000000008ee8f000-0x000000008eed6fff]
[    0.002610]   node   0: [mem 0x000000008eeff000-0x000000008efa2fff]
[    0.002611]   node   0: [mem 0x0000000100000000-0x000000086fefffff]
[    0.002614] Initmem setup node 0 [mem 0x0000000000001000-0x000000086fefffff]
[    0.002617] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.002619] On node 0, zone DMA: 2 pages in unavailable ranges
[    0.002638] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.004138] On node 0, zone DMA32: 512 pages in unavailable ranges
[    0.006376] On node 0, zone DMA32: 512 pages in unavailable ranges
[    0.006381] On node 0, zone DMA32: 44 pages in unavailable ranges
[    0.006383] On node 0, zone DMA32: 30 pages in unavailable ranges
[    0.006385] On node 0, zone DMA32: 53 pages in unavailable ranges
[    0.006388] On node 0, zone DMA32: 40 pages in unavailable ranges
[    0.060524] On node 0, zone Normal: 4189 pages in unavailable ranges
[    0.060531] On node 0, zone Normal: 256 pages in unavailable ranges
[    0.060695] ACPI: PM-Timer IO Port: 0x408
[    0.060701] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.060702] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.060703] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.060704] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.060705] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.060706] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.060707] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.060708] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.060717] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[    0.060719] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.060721] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.060724] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.060726] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.060729] TSC deadline timer available
[    0.060730] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[    0.060752] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.060754] PM: hibernation: Registered nosave memory: [mem 0x0008e000-0x0008ffff]
[    0.060756] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000bffff]
[    0.060757] PM: hibernation: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[    0.060759] PM: hibernation: Registered nosave memory: [mem 0x20000000-0x201fffff]
[    0.060761] PM: hibernation: Registered nosave memory: [mem 0x40000000-0x401fffff]
[    0.060762] PM: hibernation: Registered nosave memory: [mem 0x890c7000-0x890c7fff]
[    0.060764] PM: hibernation: Registered nosave memory: [mem 0x890e2000-0x890e2fff]
[    0.060766] PM: hibernation: Registered nosave memory: [mem 0x89a45000-0x89a45fff]
[    0.060768] PM: hibernation: Registered nosave memory: [mem 0x89a56000-0x89a56fff]
[    0.060770] PM: hibernation: Registered nosave memory: [mem 0x8ed33000-0x8ed5efff]
[    0.060772] PM: hibernation: Registered nosave memory: [mem 0x8ed71000-0x8ed8efff]
[    0.060773] PM: hibernation: Registered nosave memory: [mem 0x8ee5a000-0x8ee8efff]
[    0.060775] PM: hibernation: Registered nosave memory: [mem 0x8eed7000-0x8eefefff]
[    0.060777] PM: hibernation: Registered nosave memory: [mem 0x8efa3000-0x8f8fffff]
[    0.060778] PM: hibernation: Registered nosave memory: [mem 0x8f900000-0xe00f7fff]
[    0.060779] PM: hibernation: Registered nosave memory: [mem 0xe00f8000-0xe00f8fff]
[    0.060780] PM: hibernation: Registered nosave memory: [mem 0xe00f9000-0xfed1bfff]
[    0.060781] PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.060781] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xffed7fff]
[    0.060782] PM: hibernation: Registered nosave memory: [mem 0xffed8000-0xffefffff]
[    0.060783] PM: hibernation: Registered nosave memory: [mem 0xfff00000-0xffffffff]
[    0.060785] [mem 0x8f900000-0xe00f7fff] available for PCI devices
[    0.060789] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.063068] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[    0.063235] percpu: Embedded 44 pages/cpu s139416 r8192 d32616 u262144
[    0.063241] pcpu-alloc: s139416 r8192 d32616 u262144 alloc=1*2097152
[    0.063243] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
[    0.063265] Built 1 zonelists, mobility grouping on.  Total pages: 8251732
[    0.063267] Kernel command line: ro root=UUID=de35d1a6-e0e1-40b0-b46a-3974a04adf4b libata.allow_tpm=1 netconsole=6666@192.168.2.87/eth0,6666@192.168.2.208/dc:a6:32:61:33:da oops=panic panic=10 thunderbolt.dyndbg pci=assign-busses,realloc,hpbussize=0x10,hpmmiosize=128M,hpmmioprefsize=1G initrd=boot\initrd.img-5.17.1bkc1+
[    0.063331] Unknown kernel command line parameters "netconsole=6666@192.168.2.87/eth0,6666@192.168.2.208/dc:a6:32:61:33:da", will be passed to user space.
[    0.064952] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.065775] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.065840] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.152452] Memory: 32768300K/33531492K available (8192K kernel code, 2299K rwdata, 1844K rodata, 956K init, 2632K bss, 762936K reserved, 0K cma-reserved)
[    0.152487] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.152698] Dynamic Preempt: voluntary
[    0.152723] rcu: Preemptible hierarchical RCU implementation.
[    0.152725] 	Trampoline variant of Tasks RCU enabled.
[    0.152725] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[    0.152734] NR_IRQS: 4352, nr_irqs: 488, preallocated irqs: 16
[    0.152935] random: get_random_bytes called from start_kernel+0x443/0x5f6 with crng_init=0
[    0.152960] Console: colour dummy device 80x25
[    0.153238] printk: console [tty0] enabled
[    0.153247] ACPI: Core revision 20211217
[    0.153331] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.153346] APIC: Switch to symmetric I/O mode setup
[    0.153725] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.203350] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x31014cc2238, max_idle_ns: 440795368492 ns
[    0.203355] Calibrating delay loop (skipped), value calculated using timer frequency.. 6799.45 BogoMIPS (lpj=33997270)
[    0.203359] pid_max: default: 32768 minimum: 301
[    0.207395] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.207459] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.207581] CPU0: Thermal monitoring enabled (TM1)
[    0.207585] process: using mwait in idle threads
[    0.207587] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.207590] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.207592] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.207596] Spectre V2 : Kernel not compiled with retpoline; no mitigation available!
[    0.207596] Spectre V2 : Vulnerable
[    0.207599] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.207602] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    0.207604] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.207606] Spectre V2 : User space: Mitigation: STIBP via prctl
[    0.207609] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.207612] MDS: Mitigation: Clear CPU buffers
[    0.207767] Freeing SMP alternatives memory: 24K
[    0.208039] smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 1054
[    0.208046] smpboot: CPU0: Intel(R) Core(TM) i7-2600 CPU @ 3.40GHz (family: 0x6, model: 0x2a, stepping: 0x7)
[    0.208102] cblist_init_generic: Setting adjustable number of callback queues.
[    0.208106] cblist_init_generic: Setting shift to 3 and lim to 1.
[    0.208116] Performance Events: PEBS fmt1+, SandyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
[    0.208129] ... version:                3
[    0.208131] ... bit width:              48
[    0.208132] ... generic registers:      4
[    0.208134] ... value mask:             0000ffffffffffff
[    0.208136] ... max period:             00007fffffffffff
[    0.208137] ... fixed-purpose events:   3
[    0.208139] ... event mask:             000000070000000f
[    0.208217] rcu: Hierarchical SRCU implementation.
[    0.208315] smp: Bringing up secondary CPUs ...
[    0.208359] x86: Booting SMP configuration:
[    0.208361] .... node  #0, CPUs:      #1 #2 #3 #4
[    0.216906] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[    0.216906]  #5 #6 #7
[    0.226685] smp: Brought up 1 node, 8 CPUs
[    0.226685] smpboot: Max logical packages: 1
[    0.226685] smpboot: Total of 8 processors activated (54395.63 BogoMIPS)
[    0.228825] devtmpfs: initialized
[    0.228825] ACPI: PM: Registering ACPI NVS region [mem 0x8ed33000-0x8ed5efff] (180224 bytes)
[    0.228825] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.228825] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[    0.228825] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.228825] thermal_sys: Registered thermal governor 'step_wise'
[    0.228825] thermal_sys: Registered thermal governor 'user_space'
[    0.228825] cpuidle: using governor ladder
[    0.228825] cpuidle: using governor menu
[    0.228825] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.228825] PCI: MMCONFIG for domain 0000 [bus 00-fb] at [mem 0xe0000000-0xefbfffff] (base 0xe0000000)
[    0.228825] PCI: not using MMCONFIG
[    0.228825] PCI: Using configuration type 1 for base access
[    0.228825] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[    0.233876] ACPI: Disabled all _OSI OS vendors
[    0.233876] ACPI: Added _OSI(Module Device)
[    0.233876] ACPI: Added _OSI(Processor Device)
[    0.233876] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.233876] ACPI: Added _OSI(Processor Aggregator Device)
[    0.233876] ACPI: Added _OSI(Linux-Dell-Video)
[    0.233876] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.233876] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.233876] ACPI: Added _OSI(Darwin)
[    0.235694] ACPI: 11 ACPI AML tables successfully acquired and loaded
[    0.235897] ACPI: EC: EC started
[    0.235899] ACPI: EC: interrupt blocked
[    0.236404] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.236407] ACPI: EC: Boot ECDT EC used to handle transactions
[    0.236538] ACPI: BIOS _OSI(Darwin) query honored via DMI
[    0.236673] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.236876] ACPI: Dynamic OEM Table Load:
[    0.236884] ACPI: SSDT 0xFFFF8881003B9800 000781 (v01 PmRef  Cpu0Cst  00003001 INTL 20061109)
[    0.237205] ACPI: Dynamic OEM Table Load:
[    0.237211] ACPI: SSDT 0xFFFF8881003AE800 0003A4 (v01 PmRef  ApIst    00003000 INTL 20061109)
[    0.237448] ACPI: Dynamic OEM Table Load:
[    0.237453] ACPI: SSDT 0xFFFF8881000FA600 000119 (v01 PmRef  ApCst    00003000 INTL 20061109)
[    0.238237] ACPI: Interpreter enabled
[    0.238251] ACPI: PM: (supports S0 S3 S4 S5)
[    0.238253] ACPI: Using IOAPIC for interrupt routing
[    0.238270] PCI: MMCONFIG for domain 0000 [bus 00-fb] at [mem 0xe0000000-0xefbfffff] (base 0xe0000000)
[    0.238480] PCI: MMCONFIG at [mem 0xe0000000-0xefbfffff] reserved in ACPI motherboard resources
[    0.238493] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.238587] ACPI: Enabled 6 GPEs in block 00 to 3F
[    0.241443] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.241449] acpi PNP0A08:00: _OSC: OS assumes control of [PCIeHotplug SHPCHotplug AER PCIeCapability LTR DPC]
[    0.241454] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-fb] only partially covers this bridge
[    0.241590] PCI host bridge to bus 0000:00
[    0.241593] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.241596] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.241599] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000fffff window]
[    0.241602] pci_bus 0000:00: root bus resource [mem 0x8f900000-0xfeafffff window]
[    0.241605] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff window]
[    0.241608] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.241618] pci 0000:00:00.0: [8086:0100] type 00 class 0x060000
[    0.241679] pci 0000:00:01.0: [8086:0101] type 01 class 0x060400
[    0.241708] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.241763] pci 0000:00:02.0: [8086:0102] type 00 class 0x038000
[    0.241771] pci 0000:00:02.0: reg 0x10: [mem 0xa8000000-0xa83fffff 64bit]
[    0.241777] pci 0000:00:02.0: reg 0x18: [mem 0xa0000000-0xa7ffffff 64bit pref]
[    0.241782] pci 0000:00:02.0: reg 0x20: [io  0x3000-0x303f]
[    0.241852] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
[    0.241872] pci 0000:00:16.0: reg 0x10: [mem 0xa8907100-0xa890710f 64bit]
[    0.241938] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.241984] pci 0000:00:1a.0: [8086:1c2c] type 00 class 0x0c0300
[    0.242022] pci 0000:00:1a.0: reg 0x20: [io  0x3140-0x315f]
[    0.242106] pci 0000:00:1a.7: [8086:1c2d] type 00 class 0x0c0320
[    0.242121] pci 0000:00:1a.7: reg 0x10: [mem 0xa8906c00-0xa8906fff]
[    0.242197] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
[    0.242363] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
[    0.242379] pci 0000:00:1b.0: reg 0x10: [mem 0xa8900000-0xa8903fff 64bit]
[    0.242441] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.242501] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
[    0.242581] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.242647] pci 0000:00:1c.1: [8086:1c12] type 01 class 0x060400
[    0.242726] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.243417] pci 0000:00:1c.2: [8086:1c14] type 01 class 0x060400
[    0.243497] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.243563] pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
[    0.243643] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.243706] pci 0000:00:1d.0: [8086:1c27] type 00 class 0x0c0300
[    0.243745] pci 0000:00:1d.0: reg 0x20: [io  0x30e0-0x30ff]
[    0.243827] pci 0000:00:1d.7: [8086:1c26] type 00 class 0x0c0320
[    0.243843] pci 0000:00:1d.7: reg 0x10: [mem 0xa8906800-0xa8906bff]
[    0.243918] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.244081] pci 0000:00:1f.0: [8086:1c44] type 00 class 0x060100
[    0.244222] pci 0000:00:1f.2: [8086:1c02] type 00 class 0x010601
[    0.244234] pci 0000:00:1f.2: reg 0x10: [io  0x3168-0x316f]
[    0.244242] pci 0000:00:1f.2: reg 0x14: [io  0x317c-0x317f]
[    0.244249] pci 0000:00:1f.2: reg 0x18: [io  0x3160-0x3167]
[    0.244256] pci 0000:00:1f.2: reg 0x1c: [io  0x3178-0x317b]
[    0.244264] pci 0000:00:1f.2: reg 0x20: [io  0x3060-0x307f]
[    0.244271] pci 0000:00:1f.2: reg 0x24: [mem 0xa8906000-0xa89067ff]
[    0.244306] pci 0000:00:1f.2: PME# supported from D3hot
[    0.244352] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
[    0.244367] pci 0000:00:1f.3: reg 0x10: [mem 0xa8907000-0xa89070ff 64bit]
[    0.244382] pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
[    0.244485] pci 0000:01:00.0: [1002:6720] type 00 class 0x030000
[    0.244500] pci 0000:01:00.0: reg 0x10: [mem 0x90000000-0x9fffffff 64bit pref]
[    0.244511] pci 0000:01:00.0: reg 0x18: [mem 0xa8800000-0xa881ffff 64bit]
[    0.244519] pci 0000:01:00.0: reg 0x20: [io  0x2000-0x20ff]
[    0.244531] pci 0000:01:00.0: reg 0x30: [mem 0xa8820000-0xa883ffff pref]
[    0.244538] pci 0000:01:00.0: enabling Extended Tags
[    0.244548] pci 0000:01:00.0: BAR 0: assigned to efifb
[    0.244577] pci 0000:01:00.0: supports D1 D2
[    0.244666] pci 0000:01:00.1: [1002:aa88] type 00 class 0x040300
[    0.244681] pci 0000:01:00.1: reg 0x10: [mem 0xa8840000-0xa8843fff 64bit]
[    0.244706] pci 0000:01:00.1: enabling Extended Tags
[    0.244742] pci 0000:01:00.1: supports D1 D2
[    0.244833] pci 0000:00:01.0: PCI bridge to [bus 01-ff]
[    0.244837] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.244840] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.244844] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.244847] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
[    0.244921] pci 0000:02:00.0: [14e4:16b4] type 00 class 0x020000
[    0.244955] pci 0000:02:00.0: reg 0x10: [mem 0xa8400000-0xa840ffff 64bit pref]
[    0.244977] pci 0000:02:00.0: reg 0x18: [mem 0xa8410000-0xa841ffff 64bit pref]
[    0.245134] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[    0.245249] pci 0000:00:1c.0: PCI bridge to [bus 02-ff]
[    0.245256] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.245262] pci 0000:00:1c.0:   bridge window [mem 0xa8400000-0xa84fffff 64bit pref]
[    0.245265] pci_bus 0000:02: busn_res: [bus 02-ff] end is updated to 02
[    0.245335] pci 0000:03:00.0: [168c:0030] type 00 class 0x028000
[    0.245366] pci 0000:03:00.0: reg 0x10: [mem 0xa8600000-0xa861ffff 64bit]
[    0.245427] pci 0000:03:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    0.245518] pci 0000:03:00.0: supports D1 D2
[    0.245520] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.245620] pci 0000:00:1c.1: PCI bridge to [bus 03-ff]
[    0.245626] pci 0000:00:1c.1:   bridge window [mem 0xa8600000-0xa86fffff]
[    0.245633] pci_bus 0000:03: busn_res: [bus 03-ff] end is updated to 03
[    0.245704] pci 0000:04:00.0: [11c1:5901] type 00 class 0x0c0010
[    0.245738] pci 0000:04:00.0: reg 0x10: [mem 0xa8500000-0xa8500fff 64bit]
[    0.245901] pci 0000:04:00.0: supports D1 D2
[    0.245903] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.246098] pci 0000:00:1c.2: PCI bridge to [bus 04-ff]
[    0.246105] pci 0000:00:1c.2:   bridge window [mem 0xa8500000-0xa85fffff]
[    0.246111] pci_bus 0000:04: busn_res: [bus 04-ff] end is updated to 04
[    0.246184] pci 0000:05:00.0: [8086:1513] type 01 class 0x060400
[    0.246249] pci 0000:05:00.0: enabling Extended Tags
[    0.246345] pci 0000:05:00.0: supports D1 D2
[    0.246347] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.246474] pci 0000:00:1c.4: PCI bridge to [bus 05-ff]
[    0.246479] pci 0000:00:1c.4:   bridge window [io  0x4000-0x4fff]
[    0.246483] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xad6fffff]
[    0.246489] pci 0000:00:1c.4:   bridge window [mem 0xacf00000-0xb10fffff 64bit pref]
[    0.246574] acpiphp: Slot [3] registered
[    0.246596] acpiphp: Slot [4] registered
[    0.246637] pci 0000:06:00.0: [8086:1513] type 01 class 0x060400
[    0.246708] pci 0000:06:00.0: enabling Extended Tags
[    0.246809] pci 0000:06:00.0: supports D1 D2
[    0.246811] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.246923] pci 0000:06:03.0: [8086:1513] type 01 class 0x060400
[    0.246994] pci 0000:06:03.0: enabling Extended Tags
[    0.247095] pci 0000:06:03.0: supports D1 D2
[    0.247097] pci 0000:06:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.247203] pci 0000:06:04.0: [8086:1513] type 01 class 0x060400
[    0.247274] pci 0000:06:04.0: enabling Extended Tags
[    0.247375] pci 0000:06:04.0: supports D1 D2
[    0.247377] pci 0000:06:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.247485] pci 0000:06:05.0: [8086:1513] type 01 class 0x060400
[    0.247555] pci 0000:06:05.0: enabling Extended Tags
[    0.247656] pci 0000:06:05.0: supports D1 D2
[    0.247658] pci 0000:06:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.247768] pci 0000:06:06.0: [8086:1513] type 01 class 0x060400
[    0.247838] pci 0000:06:06.0: enabling Extended Tags
[    0.247939] pci 0000:06:06.0: supports D1 D2
[    0.247941] pci 0000:06:06.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.248060] pci 0000:05:00.0: PCI bridge to [bus 06-ff]
[    0.248072] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xa96fffff]
[    0.248080] pci 0000:05:00.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.248180] acpiphp: Slot [1] registered
[    0.248221] pci 0000:07:00.0: [8086:1513] type 00 class 0x088000
[    0.248249] pci 0000:07:00.0: reg 0x10: [mem 0xa8a00000-0xa8a3ffff]
[    0.248265] pci 0000:07:00.0: reg 0x14: [mem 0xa8a40000-0xa8a40fff]
[    0.248345] pci 0000:07:00.0: enabling Extended Tags
[    0.248470] pci 0000:07:00.0: supports D1 D2
[    0.248472] pci 0000:07:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.248615] pci 0000:06:00.0: PCI bridge to [bus 07-ff]
[    0.248627] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.248636] pci_bus 0000:07: busn_res: [bus 07-ff] end is updated to 07
[    0.248694] pci 0000:06:03.0: PCI bridge to [bus 08-ff]
[    0.248705] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xa8bfffff]
[    0.248714] pci_bus 0000:08: busn_res: [bus 08-ff] end is updated to 17
[    0.248828] pci 0000:18:00.0: [8086:1513] type 01 class 0x060400
[    0.248946] pci 0000:18:00.0: enabling Extended Tags
[    0.249123] pci 0000:18:00.0: supports D1 D2
[    0.249125] pci 0000:18:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.273416] pci 0000:06:04.0: PCI bridge to [bus 18-ff]
[    0.273435] pci 0000:06:04.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.273447] pci 0000:06:04.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.273457] pci 0000:18:00.0: bridge configuration invalid ([bus 3a-49]), reconfiguring
[    0.273623] pci 0000:19:00.0: [8086:1513] type 01 class 0x060400
[    0.273747] pci 0000:19:00.0: enabling Extended Tags
[    0.273929] pci 0000:19:00.0: supports D1 D2
[    0.273931] pci 0000:19:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.274088] pci 0000:19:01.0: [8086:1513] type 01 class 0x060400
[    0.274213] pci 0000:19:01.0: enabling Extended Tags
[    0.274394] pci 0000:19:01.0: supports D1 D2
[    0.274396] pci 0000:19:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.274552] pci 0000:19:02.0: [8086:1513] type 01 class 0x060400
[    0.274676] pci 0000:19:02.0: enabling Extended Tags
[    0.274857] pci 0000:19:02.0: supports D1 D2
[    0.274859] pci 0000:19:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.275020] pci 0000:19:04.0: [8086:1513] type 01 class 0x060400
[    0.275144] pci 0000:19:04.0: enabling Extended Tags
[    0.275327] pci 0000:19:04.0: supports D1 D2
[    0.275329] pci 0000:19:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.275491] pci 0000:19:05.0: [8086:1513] type 01 class 0x060400
[    0.275598] pci 0000:19:05.0: enabling Extended Tags
[    0.275781] pci 0000:19:05.0: supports D1 D2
[    0.275783] pci 0000:19:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.275964] pci 0000:18:00.0: PCI bridge to [bus 19-ff]
[    0.275983] pci 0000:18:00.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.275997] pci 0000:18:00.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.276003] pci 0000:19:00.0: bridge configuration invalid ([bus 3b-3d]), reconfiguring
[    0.276020] pci 0000:19:01.0: bridge configuration invalid ([bus 3e-3e]), reconfiguring
[    0.276037] pci 0000:19:02.0: bridge configuration invalid ([bus 3f-3f]), reconfiguring
[    0.276054] pci 0000:19:04.0: bridge configuration invalid ([bus 40-48]), reconfiguring
[    0.276071] pci 0000:19:05.0: bridge configuration invalid ([bus 49-49]), reconfiguring
[    0.276226] pci 0000:1a:00.0: [12d8:400c] type 01 class 0x060400
[    0.276616] pci 0000:1a:00.0: supports D1 D2
[    0.276619] pci 0000:1a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.303391] pci 0000:19:00.0: PCI bridge to [bus 1a-ff]
[    0.303416] pci 0000:19:00.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.303438] pci 0000:1a:00.0: bridge configuration invalid ([bus 3c-3d]), reconfiguring
[    0.303675] pci 0000:1b:03.0: [12d8:400c] type 01 class 0x060400
[    0.304012] pci 0000:1b:03.0: supports D1 D2
[    0.304014] pci 0000:1b:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.304218] pci 0000:1a:00.0: PCI bridge to [bus 1b-ff]
[    0.304243] pci 0000:1a:00.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.304265] pci 0000:1b:03.0: bridge configuration invalid ([bus 3d-3d]), reconfiguring
[    0.304470] pci 0000:1c:00.0: [12d8:400e] type 00 class 0x0c0310
[    0.304522] pci 0000:1c:00.0: reg 0x10: [mem 0xa9401000-0xa9401fff]
[    0.304837] pci 0000:1c:00.0: supports D1 D2
[    0.304839] pci 0000:1c:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.304995] pci 0000:1c:00.1: [12d8:400e] type 00 class 0x0c0310
[    0.305047] pci 0000:1c:00.1: reg 0x10: [mem 0xa9400000-0xa9400fff]
[    0.305361] pci 0000:1c:00.1: supports D1 D2
[    0.305363] pci 0000:1c:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.305491] pci 0000:1c:00.2: [12d8:400f] type 00 class 0x0c0320
[    0.305543] pci 0000:1c:00.2: reg 0x10: [mem 0xa9402000-0xa94020ff]
[    0.305856] pci 0000:1c:00.2: supports D1 D2
[    0.305858] pci 0000:1c:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.306116] pci 0000:1b:03.0: PCI bridge to [bus 1c-ff]
[    0.306141] pci 0000:1b:03.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.306159] pci_bus 0000:1c: busn_res: [bus 1c-ff] end is updated to 1c
[    0.306170] pci_bus 0000:1b: busn_res: [bus 1b-ff] end is updated to 1c
[    0.306180] pci_bus 0000:1a: busn_res: [bus 1a-ff] end is updated to 1c
[    0.306327] pci 0000:1d:00.0: [14e4:16b0] type 00 class 0x020000
[    0.306396] pci 0000:1d:00.0: reg 0x10: [mem 0xad000000-0xad00ffff 64bit pref]
[    0.306443] pci 0000:1d:00.0: reg 0x18: [mem 0xad010000-0xad01ffff 64bit pref]
[    0.306786] pci 0000:1d:00.0: PME# supported from D0 D3hot D3cold
[    0.333411] pci 0000:19:01.0: PCI bridge to [bus 1d-ff]
[    0.333436] pci 0000:19:01.0:   bridge window [mem 0xa9300000-0xa93fffff]
[    0.333453] pci 0000:19:01.0:   bridge window [mem 0xad000000-0xad0fffff 64bit pref]
[    0.333460] pci_bus 0000:1d: busn_res: [bus 1d-ff] end is updated to 1d
[    0.333615] pci 0000:1e:00.0: [11c1:5901] type 00 class 0x0c0010
[    0.333685] pci 0000:1e:00.0: reg 0x10: [mem 0xa9200000-0xa9200fff 64bit]
[    0.334039] pci 0000:1e:00.0: supports D1 D2
[    0.334041] pci 0000:1e:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.363410] pci 0000:19:02.0: PCI bridge to [bus 1e-ff]
[    0.363435] pci 0000:19:02.0:   bridge window [mem 0xa9200000-0xa92fffff]
[    0.363453] pci_bus 0000:1e: busn_res: [bus 1e-ff] end is updated to 1e
[    0.363634] pci 0000:1f:00.0: [8086:1513] type 01 class 0x060400
[    0.363806] pci 0000:1f:00.0: enabling Extended Tags
[    0.364063] pci 0000:1f:00.0: supports D1 D2
[    0.364065] pci 0000:1f:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.393398] pci 0000:19:04.0: PCI bridge to [bus 1f-ff]
[    0.393422] pci 0000:19:04.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.393440] pci 0000:19:04.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.393450] pci 0000:1f:00.0: bridge configuration invalid ([bus 41-48]), reconfiguring
[    0.393680] pci 0000:20:00.0: [8086:1513] type 01 class 0x060400
[    0.393859] pci 0000:20:00.0: enabling Extended Tags
[    0.394120] pci 0000:20:00.0: supports D1 D2
[    0.394122] pci 0000:20:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.394342] pci 0000:20:01.0: [8086:1513] type 01 class 0x060400
[    0.394521] pci 0000:20:01.0: enabling Extended Tags
[    0.394782] pci 0000:20:01.0: supports D1 D2
[    0.394784] pci 0000:20:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.395002] pci 0000:20:02.0: [8086:1513] type 01 class 0x060400
[    0.395181] pci 0000:20:02.0: enabling Extended Tags
[    0.395442] pci 0000:20:02.0: supports D1 D2
[    0.395444] pci 0000:20:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.395672] pci 0000:20:04.0: [8086:1513] type 01 class 0x060400
[    0.395827] pci 0000:20:04.0: enabling Extended Tags
[    0.396092] pci 0000:20:04.0: supports D1 D2
[    0.396094] pci 0000:20:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.396320] pci 0000:20:05.0: [8086:1513] type 01 class 0x060400
[    0.396475] pci 0000:20:05.0: enabling Extended Tags
[    0.396740] pci 0000:20:05.0: supports D1 D2
[    0.396743] pci 0000:20:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.396997] pci 0000:1f:00.0: PCI bridge to [bus 20-ff]
[    0.397024] pci 0000:1f:00.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.397043] pci 0000:1f:00.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.397050] pci 0000:20:00.0: bridge configuration invalid ([bus 42-44]), reconfiguring
[    0.397074] pci 0000:20:01.0: bridge configuration invalid ([bus 45-45]), reconfiguring
[    0.397097] pci 0000:20:02.0: bridge configuration invalid ([bus 46-46]), reconfiguring
[    0.397120] pci 0000:20:04.0: bridge configuration invalid ([bus 47-47]), reconfiguring
[    0.397143] pci 0000:20:05.0: bridge configuration invalid ([bus 48-48]), reconfiguring
[    0.397357] pci 0000:21:00.0: [12d8:400c] type 01 class 0x060400
[    0.397879] pci 0000:21:00.0: supports D1 D2
[    0.397881] pci 0000:21:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.398148] pci 0000:20:00.0: PCI bridge to [bus 21-ff]
[    0.398176] pci 0000:20:00.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.398200] pci 0000:21:00.0: bridge configuration invalid ([bus 43-44]), reconfiguring
[    0.398497] pci 0000:22:03.0: [12d8:400c] type 01 class 0x060400
[    0.398946] pci 0000:22:03.0: supports D1 D2
[    0.398948] pci 0000:22:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.399212] pci 0000:21:00.0: PCI bridge to [bus 22-ff]
[    0.399245] pci 0000:21:00.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.399272] pci 0000:22:03.0: bridge configuration invalid ([bus 44-44]), reconfiguring
[    0.399544] pci 0000:23:00.0: [12d8:400e] type 00 class 0x0c0310
[    0.399612] pci 0000:23:00.0: reg 0x10: [mem 0xa9101000-0xa9101fff]
[    0.400030] pci 0000:23:00.0: supports D1 D2
[    0.400033] pci 0000:23:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.400240] pci 0000:23:00.1: [12d8:400e] type 00 class 0x0c0310
[    0.400309] pci 0000:23:00.1: reg 0x10: [mem 0xa9100000-0xa9100fff]
[    0.400727] pci 0000:23:00.1: supports D1 D2
[    0.400729] pci 0000:23:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.400892] pci 0000:23:00.2: [12d8:400f] type 00 class 0x0c0320
[    0.400961] pci 0000:23:00.2: reg 0x10: [mem 0xa9102000-0xa91020ff]
[    0.401379] pci 0000:23:00.2: supports D1 D2
[    0.401381] pci 0000:23:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.401735] pci 0000:22:03.0: PCI bridge to [bus 23-ff]
[    0.401767] pci 0000:22:03.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.401790] pci_bus 0000:23: busn_res: [bus 23-ff] end is updated to 23
[    0.401803] pci_bus 0000:22: busn_res: [bus 22-ff] end is updated to 23
[    0.401816] pci_bus 0000:21: busn_res: [bus 21-ff] end is updated to 23
[    0.402018] pci 0000:24:00.0: [14e4:16b0] type 00 class 0x020000
[    0.402110] pci 0000:24:00.0: reg 0x10: [mem 0xacf00000-0xacf0ffff 64bit pref]
[    0.402169] pci 0000:24:00.0: reg 0x18: [mem 0xacf10000-0xacf1ffff 64bit pref]
[    0.402623] pci 0000:24:00.0: PME# supported from D0 D3hot D3cold
[    0.402941] pci 0000:20:01.0: PCI bridge to [bus 24-ff]
[    0.402968] pci 0000:20:01.0:   bridge window [mem 0xa9000000-0xa90fffff]
[    0.402987] pci 0000:20:01.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.402990] pci_bus 0000:24: busn_res: [bus 24-ff] end is updated to 24
[    0.403187] pci 0000:25:00.0: [11c1:5901] type 00 class 0x0c0010
[    0.403279] pci 0000:25:00.0: reg 0x10: [mem 0xa8f00000-0xa8f00fff 64bit]
[    0.403749] pci 0000:25:00.0: supports D1 D2
[    0.403751] pci 0000:25:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.404049] pci 0000:20:02.0: PCI bridge to [bus 25-ff]
[    0.404076] pci 0000:20:02.0:   bridge window [mem 0xa8f00000-0xa8ffffff]
[    0.404096] pci_bus 0000:25: busn_res: [bus 25-ff] end is updated to 25
[    0.404229] pci 0000:20:04.0: PCI bridge to [bus 26-ff]
[    0.404256] pci 0000:20:04.0:   bridge window [mem 0xa8e00000-0xa8efffff]
[    0.404275] pci_bus 0000:26: busn_res: [bus 26-ff] end is updated to 35
[    0.404408] pci 0000:20:05.0: PCI bridge to [bus 36-ff]
[    0.404435] pci 0000:20:05.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.404454] pci_bus 0000:36: busn_res: [bus 36-ff] end is updated to 45
[    0.404465] pci_bus 0000:20: busn_res: [bus 20-ff] end is updated to 45
[    0.404475] pci_bus 0000:1f: busn_res: [bus 1f-ff] end is updated to 45
[    0.404569] pci 0000:19:05.0: PCI bridge to [bus 46-ff]
[    0.404589] pci 0000:19:05.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.404603] pci_bus 0000:46: busn_res: [bus 46-ff] end is updated to 55
[    0.404611] pci_bus 0000:19: busn_res: [bus 19-ff] end is updated to 55
[    0.404619] pci_bus 0000:18: busn_res: [bus 18-ff] end is updated to 55
[    0.404682] pci 0000:06:05.0: PCI bridge to [bus 56-ff]
[    0.404694] pci 0000:06:05.0:   bridge window [mem 0xa9500000-0xa95fffff]
[    0.404702] pci_bus 0000:56: busn_res: [bus 56-ff] end is updated to 65
[    0.404759] pci 0000:06:06.0: PCI bridge to [bus 66-ff]
[    0.404771] pci 0000:06:06.0:   bridge window [mem 0xa9600000-0xa96fffff]
[    0.404780] pci_bus 0000:66: busn_res: [bus 66-ff] end is updated to 75
[    0.404786] pci_bus 0000:06: busn_res: [bus 06-ff] end is updated to 75
[    0.404791] pci_bus 0000:05: busn_res: [bus 05-ff] end is updated to 75
[    0.404796] pci_bus 0000:00: on NUMA node 0
[    0.405060] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    0.405063] ACPI: PCI: Interrupt link LNKA disabled
[    0.405093] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    0.405096] ACPI: PCI: Interrupt link LNKB disabled
[    0.405125] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    0.405127] ACPI: PCI: Interrupt link LNKC disabled
[    0.405155] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    0.405158] ACPI: PCI: Interrupt link LNKD disabled
[    0.405186] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    0.405188] ACPI: PCI: Interrupt link LNKE disabled
[    0.405216] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    0.405219] ACPI: PCI: Interrupt link LNKF disabled
[    0.405247] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    0.405249] ACPI: PCI: Interrupt link LNKG disabled
[    0.405277] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    0.405279] ACPI: PCI: Interrupt link LNKH disabled
[    0.405366] ACPI: EC: interrupt unblocked
[    0.405368] ACPI: EC: event unblocked
[    0.405373] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.405375] ACPI: EC: GPE=0x17
[    0.405376] ACPI: \_SB_.PCI0.LPCB.EC__: Boot ECDT EC initialization complete
[    0.405379] ACPI: \_SB_.PCI0.LPCB.EC__: EC: Used to handle transactions and events
[    0.405408] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    0.405408] pci 0000:01:00.0: vgaarb: bridge control possible
[    0.405408] pci 0000:01:00.0: vgaarb: setting as boot device
[    0.405408] vgaarb: loaded
[    0.405408] SCSI subsystem initialized
[    0.405408] libata version 3.00 loaded.
[    0.405408] Registered efivars operations
[    0.405408] PCI: Using ACPI for IRQ routing
[    0.416084] PCI: pci_cache_line_size set to 64 bytes
[    0.416086] pci 0000:00:1c.4: can't claim BAR 9 [mem 0xacf00000-0xb10fffff 64bit pref]: address conflict with PCI Bus 0000:05 [mem 0xa8a00000-0xad6fffff]
[    0.416367] e820: reserve RAM buffer [mem 0x0008e000-0x0008ffff]
[    0.416369] e820: reserve RAM buffer [mem 0x890c7018-0x8bffffff]
[    0.416370] e820: reserve RAM buffer [mem 0x89a45018-0x8bffffff]
[    0.416371] e820: reserve RAM buffer [mem 0x8ed33000-0x8fffffff]
[    0.416372] e820: reserve RAM buffer [mem 0x8ed71000-0x8fffffff]
[    0.416374] e820: reserve RAM buffer [mem 0x8ee5a000-0x8fffffff]
[    0.416375] e820: reserve RAM buffer [mem 0x8eed7000-0x8fffffff]
[    0.416376] e820: reserve RAM buffer [mem 0x8efa3000-0x8fffffff]
[    0.416377] e820: reserve RAM buffer [mem 0x86ff00000-0x86fffffff]
[    0.417275] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.417286] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.419328] clocksource: Switched to clocksource tsc-early
[    0.419365] VFS: Disk quotas dquot_6.6.0
[    0.419376] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.419408] pnp: PnP ACPI init
[    0.419515] system 00:00: [mem 0xfed00000-0xfed003ff] has been reserved
[    0.419559] system 00:01: [io  0x0680-0x069f] has been reserved
[    0.419562] system 00:01: [io  0x1000-0x100f] has been reserved
[    0.419565] system 00:01: [io  0xffff] has been reserved
[    0.419567] system 00:01: [io  0xffff] has been reserved
[    0.419569] system 00:01: [io  0x0400-0x047f] has been reserved
[    0.419572] system 00:01: [io  0x0500-0x057f] has been reserved
[    0.419574] system 00:01: [io  0x164e-0x164f] has been reserved
[    0.419724] system 00:03: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.419727] system 00:03: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.419731] system 00:03: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.419733] system 00:03: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.419736] system 00:03: [mem 0xe0000000-0xefffffff] could not be reserved
[    0.419739] system 00:03: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.419741] system 00:03: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.419744] system 00:03: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.419747] system 00:03: [mem 0xff000000-0xffffffff] could not be reserved
[    0.419749] system 00:03: [mem 0xfee00000-0xfeefffff] has been reserved
[    0.419829] pnp: PnP ACPI: found 4 devices
[    0.419844] pci 0000:01:00.0: assigning 74 device properties
[    0.419844] pci 0000:04:00.0: assigning 2 device properties
[    0.419844] pci 0000:07:00.0: assigning 5 device properties
[    0.419844] pci 0000:00:1b.0: assigning 4 device properties
[    0.419844] pci 0000:1e:00.0: assigning 2 device properties
[    0.419844] pci 0000:25:00.0: assigning 2 device properties
[    0.419844] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.419844] NET: Registered PF_INET protocol family
[    0.419844] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.421190] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    0.421231] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.421495] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.421585] TCP: Hash tables configured (established 262144 bind 65536)
[    0.421612] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.421671] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.421749] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.421757] pci 0000:03:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[    0.421764] pci_bus 0000:00: max bus depth: 9 pci_try_num: 10
[    0.421776] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.421780] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.421784] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.421787] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.421792] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.421796] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.421801] pci 0000:00:1c.0:   bridge window [mem 0xa8400000-0xa84fffff 64bit pref]
[    0.421809] pci 0000:03:00.0: BAR 6: assigned [mem 0xa8620000-0xa862ffff pref]
[    0.421813] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.421817] pci 0000:00:1c.1:   bridge window [mem 0xa8600000-0xa86fffff]
[    0.421825] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.421830] pci 0000:00:1c.2:   bridge window [mem 0xa8500000-0xa85fffff]
[    0.421839] pci 0000:05:00.0: BAR 7: no space for [io  size 0x8000]
[    0.421841] pci 0000:05:00.0: BAR 7: failed to assign [io  size 0x8000]
[    0.421846] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.421849] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.421853] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.421855] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.421859] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.421862] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.421865] pci 0000:06:03.0: BAR 7: no space for [io  size 0x1000]
[    0.421867] pci 0000:06:03.0: BAR 7: failed to assign [io  size 0x1000]
[    0.421870] pci 0000:06:04.0: BAR 7: no space for [io  size 0x5000]
[    0.421872] pci 0000:06:04.0: BAR 7: failed to assign [io  size 0x5000]
[    0.421874] pci 0000:06:05.0: BAR 7: no space for [io  size 0x1000]
[    0.421877] pci 0000:06:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.421880] pci 0000:06:06.0: BAR 7: no space for [io  size 0x1000]
[    0.421882] pci 0000:06:06.0: BAR 7: failed to assign [io  size 0x1000]
[    0.421886] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.421892] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.421904] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.421911] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xa8bfffff]
[    0.421923] pci 0000:18:00.0: BAR 7: no space for [io  size 0x4000]
[    0.421926] pci 0000:18:00.0: BAR 7: failed to assign [io  size 0x4000]
[    0.421930] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.421932] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.421935] pci 0000:19:04.0: BAR 7: no space for [io  size 0x3000]
[    0.421938] pci 0000:19:04.0: BAR 7: failed to assign [io  size 0x3000]
[    0.421940] pci 0000:19:05.0: BAR 7: no space for [io  size 0x1000]
[    0.421942] pci 0000:19:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.421946] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.421959] pci 0000:1b:03.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.421984] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.421998] pci 0000:1a:00.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.422023] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.422034] pci 0000:19:00.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.422054] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.422064] pci 0000:19:01.0:   bridge window [mem 0xa9300000-0xa93fffff]
[    0.422072] pci 0000:19:01.0:   bridge window [mem 0xad000000-0xad0fffff 64bit pref]
[    0.422086] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.422097] pci 0000:19:02.0:   bridge window [mem 0xa9200000-0xa92fffff]
[    0.422117] pci 0000:1f:00.0: BAR 7: no space for [io  size 0x2000]
[    0.422119] pci 0000:1f:00.0: BAR 7: failed to assign [io  size 0x2000]
[    0.422123] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422126] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422129] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422132] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422135] pci 0000:20:04.0: BAR 7: no space for [io  size 0x1000]
[    0.422137] pci 0000:20:04.0: BAR 7: failed to assign [io  size 0x1000]
[    0.422139] pci 0000:20:05.0: BAR 7: no space for [io  size 0x1000]
[    0.422142] pci 0000:20:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.422145] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.422162] pci 0000:22:03.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.422195] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.422212] pci 0000:21:00.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.422245] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.422259] pci 0000:20:00.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.422286] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.422301] pci 0000:20:01.0:   bridge window [mem 0xa9000000-0xa90fffff]
[    0.422311] pci 0000:20:01.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.422331] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.422345] pci 0000:20:02.0:   bridge window [mem 0xa8f00000-0xa8ffffff]
[    0.422372] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.422387] pci 0000:20:04.0:   bridge window [mem 0xa8e00000-0xa8efffff]
[    0.422414] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.422428] pci 0000:20:05.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.422455] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.422469] pci 0000:1f:00.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.422480] pci 0000:1f:00.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.422499] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.422509] pci 0000:19:04.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.422517] pci 0000:19:04.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.422532] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.422542] pci 0000:19:05.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.422561] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.422572] pci 0000:18:00.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.422580] pci 0000:18:00.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.422594] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.422601] pci 0000:06:04.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.422606] pci 0000:06:04.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.422615] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.422622] pci 0000:06:05.0:   bridge window [mem 0xa9500000-0xa95fffff]
[    0.422634] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.422641] pci 0000:06:06.0:   bridge window [mem 0xa9600000-0xa96fffff]
[    0.422653] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.422659] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xa96fffff]
[    0.422665] pci 0000:05:00.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.422674] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.422677] pci 0000:00:1c.4:   bridge window [io  0x4000-0x4fff]
[    0.422682] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xad6fffff]
[    0.422690] pci_bus 0000:00: No. 2 try to assign unassigned res
[    0.422698] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.422700] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.422703] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.422706] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.422710] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.422715] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.422719] pci 0000:00:1c.0:   bridge window [mem 0xa8400000-0xa84fffff 64bit pref]
[    0.422726] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.422731] pci 0000:00:1c.1:   bridge window [mem 0xa8600000-0xa86fffff]
[    0.422738] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.422743] pci 0000:00:1c.2:   bridge window [mem 0xa8500000-0xa85fffff]
[    0.422751] pci 0000:05:00.0: BAR 7: no space for [io  size 0x8000]
[    0.422754] pci 0000:05:00.0: BAR 7: failed to assign [io  size 0x8000]
[    0.422757] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422760] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422763] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422766] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422770] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422772] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422775] pci 0000:06:03.0: BAR 7: no space for [io  size 0x1000]
[    0.422778] pci 0000:06:03.0: BAR 7: failed to assign [io  size 0x1000]
[    0.422780] pci 0000:06:04.0: BAR 7: no space for [io  size 0x5000]
[    0.422782] pci 0000:06:04.0: BAR 7: failed to assign [io  size 0x5000]
[    0.422785] pci 0000:06:05.0: BAR 7: no space for [io  size 0x1000]
[    0.422787] pci 0000:06:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.422789] pci 0000:06:06.0: BAR 7: no space for [io  size 0x1000]
[    0.422792] pci 0000:06:06.0: BAR 7: failed to assign [io  size 0x1000]
[    0.422794] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.422801] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.422813] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.422820] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xa8bfffff]
[    0.422832] pci 0000:18:00.0: BAR 7: no space for [io  size 0x4000]
[    0.422834] pci 0000:18:00.0: BAR 7: failed to assign [io  size 0x4000]
[    0.422838] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.422840] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.422843] pci 0000:19:04.0: BAR 7: no space for [io  size 0x3000]
[    0.422846] pci 0000:19:04.0: BAR 7: failed to assign [io  size 0x3000]
[    0.422848] pci 0000:19:05.0: BAR 7: no space for [io  size 0x1000]
[    0.422850] pci 0000:19:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.422853] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.422866] pci 0000:1b:03.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.422891] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.422905] pci 0000:1a:00.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.422930] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.422941] pci 0000:19:00.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.422960] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.422970] pci 0000:19:01.0:   bridge window [mem 0xa9300000-0xa93fffff]
[    0.422979] pci 0000:19:01.0:   bridge window [mem 0xad000000-0xad0fffff 64bit pref]
[    0.422993] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.423003] pci 0000:19:02.0:   bridge window [mem 0xa9200000-0xa92fffff]
[    0.423023] pci 0000:1f:00.0: BAR 7: no space for [io  size 0x2000]
[    0.423025] pci 0000:1f:00.0: BAR 7: failed to assign [io  size 0x2000]
[    0.423028] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.423031] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.423035] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.423038] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.423040] pci 0000:20:04.0: BAR 7: no space for [io  size 0x1000]
[    0.423043] pci 0000:20:04.0: BAR 7: failed to assign [io  size 0x1000]
[    0.423045] pci 0000:20:05.0: BAR 7: no space for [io  size 0x1000]
[    0.423047] pci 0000:20:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.423050] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.423067] pci 0000:22:03.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.423100] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.423117] pci 0000:21:00.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.423150] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.423164] pci 0000:20:00.0:   bridge window [mem 0xa9100000-0xa91fffff]
[    0.423191] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.423206] pci 0000:20:01.0:   bridge window [mem 0xa9000000-0xa90fffff]
[    0.423216] pci 0000:20:01.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.423236] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.423250] pci 0000:20:02.0:   bridge window [mem 0xa8f00000-0xa8ffffff]
[    0.423277] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.423291] pci 0000:20:04.0:   bridge window [mem 0xa8e00000-0xa8efffff]
[    0.423318] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.423333] pci 0000:20:05.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.423360] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.423374] pci 0000:1f:00.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.423384] pci 0000:1f:00.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.423403] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.423414] pci 0000:19:04.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.423422] pci 0000:19:04.0:   bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[    0.423436] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.423447] pci 0000:19:05.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.423466] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.423476] pci 0000:18:00.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.423484] pci 0000:18:00.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.423498] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.423505] pci 0000:06:04.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.423511] pci 0000:06:04.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.423520] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.423527] pci 0000:06:05.0:   bridge window [mem 0xa9500000-0xa95fffff]
[    0.423538] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.423545] pci 0000:06:06.0:   bridge window [mem 0xa9600000-0xa96fffff]
[    0.423557] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.423564] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xa96fffff]
[    0.423569] pci 0000:05:00.0:   bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[    0.423578] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.423581] pci 0000:00:1c.4:   bridge window [io  0x4000-0x4fff]
[    0.423586] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xad6fffff]
[    0.423594] pci_bus 0000:00: No. 3 try to assign unassigned res
[    0.423596] release child resource [mem 0xa9100000-0xa9100fff]
[    0.423597] release child resource [mem 0xa9101000-0xa9101fff]
[    0.423598] release child resource [mem 0xa9102000-0xa91020ff]
[    0.423599] pci 0000:22:03.0: resource 8 [mem 0xa9100000-0xa91fffff] released
[    0.423601] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.423614] pci 0000:21:00.0: resource 8 [mem 0xa9100000-0xa91fffff] released
[    0.423616] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.423628] pci 0000:20:00.0: resource 8 [mem 0xa9100000-0xa91fffff] released
[    0.423631] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.423641] release child resource [mem 0xacf00000-0xacf0ffff 64bit pref]
[    0.423642] release child resource [mem 0xacf10000-0xacf1ffff 64bit pref]
[    0.423643] pci 0000:20:01.0: resource 9 [mem 0xacf00000-0xacffffff 64bit pref] released
[    0.423646] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.423668] release child resource [mem 0xa8f00000-0xa8f00fff 64bit]
[    0.423669] pci 0000:20:02.0: resource 8 [mem 0xa8f00000-0xa8ffffff] released
[    0.423672] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.423682] pci 0000:20:04.0: resource 8 [mem 0xa8e00000-0xa8efffff] released
[    0.423685] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.423695] pci 0000:20:05.0: resource 8 [mem 0xa8d00000-0xa8dfffff] released
[    0.423698] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.423708] pci 0000:1f:00.0: resource 9 [mem 0xacf00000-0xacffffff 64bit pref] released
[    0.423711] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.423734] release child resource [mem 0xa9400000-0xa9400fff]
[    0.423735] release child resource [mem 0xa9401000-0xa9401fff]
[    0.423735] release child resource [mem 0xa9402000-0xa94020ff]
[    0.423736] pci 0000:1b:03.0: resource 8 [mem 0xa9400000-0xa94fffff] released
[    0.423739] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.423748] pci 0000:1a:00.0: resource 8 [mem 0xa9400000-0xa94fffff] released
[    0.423751] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.423761] pci 0000:19:00.0: resource 8 [mem 0xa9400000-0xa94fffff] released
[    0.423763] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.423771] release child resource [mem 0xad000000-0xad00ffff 64bit pref]
[    0.423772] release child resource [mem 0xad010000-0xad01ffff 64bit pref]
[    0.423772] pci 0000:19:01.0: resource 9 [mem 0xad000000-0xad0fffff 64bit pref] released
[    0.423776] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.423791] release child resource [mem 0xa9200000-0xa9200fff 64bit]
[    0.423792] pci 0000:19:02.0: resource 8 [mem 0xa9200000-0xa92fffff] released
[    0.423795] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.423803] pci 0000:19:04.0: resource 9 [mem 0xacf00000-0xacffffff 64bit pref] released
[    0.423806] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.423822] pci 0000:19:05.0: resource 8 [mem 0xa8c00000-0xa8cfffff] released
[    0.423824] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.423832] pci 0000:18:00.0: resource 9 [mem 0xacf00000-0xad0fffff 64bit pref] released
[    0.423835] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.423852] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.423853] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.423854] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.423856] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.423861] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xa8bfffff] released
[    0.423864] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.423869] pci 0000:06:04.0: resource 9 [mem 0xacf00000-0xad0fffff 64bit pref] released
[    0.423872] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.423882] pci 0000:06:05.0: resource 8 [mem 0xa9500000-0xa95fffff] released
[    0.423885] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.423890] pci 0000:06:06.0: resource 8 [mem 0xa9600000-0xa96fffff] released
[    0.423893] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.423898] pci 0000:05:00.0: resource 9 [mem 0xacf00000-0xad0fffff 64bit pref] released
[    0.423901] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.423911] pci 0000:00:1c.4: resource 7 [io  0x4000-0x4fff] released
[    0.423914] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.423929] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.423932] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.423936] pci 0000:00:1c.4: BAR 7: assigned [io  0x4000-0xbfff]
[    0.423938] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.423941] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.423944] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.423947] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.423951] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.423956] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.423960] pci 0000:00:1c.0:   bridge window [mem 0xa8400000-0xa84fffff 64bit pref]
[    0.423966] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.423971] pci 0000:00:1c.1:   bridge window [mem 0xa8600000-0xa86fffff]
[    0.423979] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.423984] pci 0000:00:1c.2:   bridge window [mem 0xa8500000-0xa85fffff]
[    0.423992] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.423995] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.423998] pci 0000:05:00.0: BAR 7: assigned [io  0x4000-0xbfff]
[    0.424002] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.424005] pci 0000:06:03.0: BAR 8: no space for [mem size 0x08000000]
[    0.424007] pci 0000:06:03.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.424010] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.424013] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.424016] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.424019] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.424022] pci 0000:06:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.424025] pci 0000:06:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.424028] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.424030] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.424033] pci 0000:06:06.0: BAR 8: no space for [mem size 0x08000000]
[    0.424036] pci 0000:06:06.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.424039] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.424042] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.424044] pci 0000:06:03.0: BAR 7: assigned [io  0x4000-0x4fff]
[    0.424047] pci 0000:06:04.0: BAR 7: assigned [io  0x5000-0x9fff]
[    0.424050] pci 0000:06:05.0: BAR 7: assigned [io  0xa000-0xafff]
[    0.424052] pci 0000:06:06.0: BAR 7: assigned [io  0xb000-0xbfff]
[    0.424055] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.424061] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.424068] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.424075] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.424087] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.424090] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.424107] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.424110] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.424113] pci 0000:18:00.0: BAR 7: assigned [io  0x5000-0x8fff]
[    0.424116] pci 0000:19:00.0: BAR 8: assigned [mem 0xa8c00000-0xa8cfffff]
[    0.424120] pci 0000:19:01.0: BAR 9: assigned [mem 0xa9200000-0xa92fffff 64bit pref]
[    0.424123] pci 0000:19:02.0: BAR 8: assigned [mem 0xa9400000-0xa94fffff]
[    0.424125] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.424128] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.424131] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.424134] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.424136] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.424139] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.424142] pci 0000:19:04.0: BAR 7: assigned [io  0x5000-0x7fff]
[    0.424145] pci 0000:19:05.0: BAR 7: assigned [io  0x8000-0x8fff]
[    0.424147] pci 0000:1a:00.0: BAR 8: assigned [mem 0xa8c00000-0xa8cfffff]
[    0.424150] pci 0000:1b:03.0: BAR 8: assigned [mem 0xa8c00000-0xa8cfffff]
[    0.424153] pci 0000:1c:00.0: BAR 0: assigned [mem 0xa8c00000-0xa8c00fff]
[    0.424164] pci 0000:1c:00.1: BAR 0: assigned [mem 0xa8c01000-0xa8c01fff]
[    0.424174] pci 0000:1c:00.2: BAR 0: assigned [mem 0xa8c02000-0xa8c020ff]
[    0.424184] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.424197] pci 0000:1b:03.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.424222] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.424236] pci 0000:1a:00.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.424261] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.424272] pci 0000:19:00.0:   bridge window [mem 0xa8c00000-0xa8cfffff]
[    0.424292] pci 0000:1d:00.0: BAR 0: assigned [mem 0xa9200000-0xa920ffff 64bit pref]
[    0.424323] pci 0000:1d:00.0: BAR 2: assigned [mem 0xa9210000-0xa921ffff 64bit pref]
[    0.424353] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.424364] pci 0000:19:01.0:   bridge window [mem 0xa9300000-0xa93fffff]
[    0.424372] pci 0000:19:01.0:   bridge window [mem 0xa9200000-0xa92fffff 64bit pref]
[    0.424386] pci 0000:1e:00.0: BAR 0: assigned [mem 0xa9400000-0xa9400fff 64bit]
[    0.424417] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.424428] pci 0000:19:02.0:   bridge window [mem 0xa9400000-0xa94fffff]
[    0.424447] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.424450] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.424453] pci 0000:1f:00.0: BAR 7: assigned [io  0x5000-0x6fff]
[    0.424456] pci 0000:20:00.0: BAR 8: assigned [mem 0xa8d00000-0xa8dfffff]
[    0.424459] pci 0000:20:01.0: BAR 9: assigned [mem 0xa8e00000-0xa8efffff 64bit pref]
[    0.424462] pci 0000:20:02.0: BAR 8: assigned [mem 0xa8f00000-0xa8ffffff]
[    0.424465] pci 0000:20:04.0: BAR 8: no space for [mem size 0x08000000]
[    0.424468] pci 0000:20:04.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.424470] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.424473] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.424476] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.424479] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.424482] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.424484] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.424487] pci 0000:20:04.0: BAR 7: assigned [io  0x5000-0x5fff]
[    0.424490] pci 0000:20:05.0: BAR 7: assigned [io  0x6000-0x6fff]
[    0.424493] pci 0000:21:00.0: BAR 8: assigned [mem 0xa8d00000-0xa8dfffff]
[    0.424496] pci 0000:22:03.0: BAR 8: assigned [mem 0xa8d00000-0xa8dfffff]
[    0.424498] pci 0000:23:00.0: BAR 0: assigned [mem 0xa8d00000-0xa8d00fff]
[    0.424511] pci 0000:23:00.1: BAR 0: assigned [mem 0xa8d01000-0xa8d01fff]
[    0.424524] pci 0000:23:00.2: BAR 0: assigned [mem 0xa8d02000-0xa8d020ff]
[    0.424537] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.424554] pci 0000:22:03.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.424587] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.424604] pci 0000:21:00.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.424637] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.424651] pci 0000:20:00.0:   bridge window [mem 0xa8d00000-0xa8dfffff]
[    0.424679] pci 0000:24:00.0: BAR 0: assigned [mem 0xa8e00000-0xa8e0ffff 64bit pref]
[    0.424718] pci 0000:24:00.0: BAR 2: assigned [mem 0xa8e10000-0xa8e1ffff 64bit pref]
[    0.424758] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.424772] pci 0000:20:01.0:   bridge window [mem 0xa9000000-0xa90fffff]
[    0.424783] pci 0000:20:01.0:   bridge window [mem 0xa8e00000-0xa8efffff 64bit pref]
[    0.424802] pci 0000:25:00.0: BAR 0: assigned [mem 0xa8f00000-0xa8f00fff 64bit]
[    0.424842] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.424856] pci 0000:20:02.0:   bridge window [mem 0xa8f00000-0xa8ffffff]
[    0.424883] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.424890] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.424929] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.424935] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.424974] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.424980] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.424995] pci 0000:1f:00.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.425021] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.425026] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.425037] pci 0000:19:04.0:   bridge window [mem 0xa8d00000-0xa91fffff]
[    0.425057] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.425061] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.425089] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.425094] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.425105] pci 0000:18:00.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.425124] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.425127] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.425134] pci 0000:06:04.0:   bridge window [mem 0xa8c00000-0xa94fffff]
[    0.425146] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.425150] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.425166] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.425170] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.425186] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.425190] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.425197] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xa96fffff]
[    0.425208] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.425211] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.425216] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xad6fffff]
[    0.425224] pci_bus 0000:00: No. 4 try to assign unassigned res
[    0.425226] release child resource [mem 0xa8d00000-0xa8d00fff]
[    0.425227] release child resource [mem 0xa8d01000-0xa8d01fff]
[    0.425227] release child resource [mem 0xa8d02000-0xa8d020ff]
[    0.425228] pci 0000:22:03.0: resource 8 [mem 0xa8d00000-0xa8dfffff] released
[    0.425231] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.425243] pci 0000:21:00.0: resource 8 [mem 0xa8d00000-0xa8dfffff] released
[    0.425245] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.425258] pci 0000:20:00.0: resource 8 [mem 0xa8d00000-0xa8dfffff] released
[    0.425260] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.425270] release child resource [mem 0xa8e00000-0xa8e0ffff 64bit pref]
[    0.425271] release child resource [mem 0xa8e10000-0xa8e1ffff 64bit pref]
[    0.425272] pci 0000:20:01.0: resource 9 [mem 0xa8e00000-0xa8efffff 64bit pref] released
[    0.425275] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.425297] release child resource [mem 0xa8f00000-0xa8f00fff 64bit]
[    0.425298] pci 0000:20:02.0: resource 8 [mem 0xa8f00000-0xa8ffffff] released
[    0.425301] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.425311] release child resource [mem 0xa9000000-0xa90fffff]
[    0.425312] pci 0000:1f:00.0: resource 8 [mem 0xa8d00000-0xa91fffff] released
[    0.425314] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.425325] pci 0000:19:04.0: resource 8 [mem 0xa8d00000-0xa91fffff] released
[    0.425328] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.425335] release child resource [mem 0xa8c00000-0xa8c00fff]
[    0.425336] release child resource [mem 0xa8c01000-0xa8c01fff]
[    0.425337] release child resource [mem 0xa8c02000-0xa8c020ff]
[    0.425337] pci 0000:1b:03.0: resource 8 [mem 0xa8c00000-0xa8cfffff] released
[    0.425340] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.425350] pci 0000:1a:00.0: resource 8 [mem 0xa8c00000-0xa8cfffff] released
[    0.425352] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.425362] pci 0000:19:00.0: resource 8 [mem 0xa8c00000-0xa8cfffff] released
[    0.425364] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.425372] release child resource [mem 0xa9200000-0xa920ffff 64bit pref]
[    0.425373] release child resource [mem 0xa9210000-0xa921ffff 64bit pref]
[    0.425374] pci 0000:19:01.0: resource 9 [mem 0xa9200000-0xa92fffff 64bit pref] released
[    0.425377] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.425393] release child resource [mem 0xa9400000-0xa9400fff 64bit]
[    0.425394] pci 0000:19:02.0: resource 8 [mem 0xa9400000-0xa94fffff] released
[    0.425396] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.425404] release child resource [mem 0xa9300000-0xa93fffff]
[    0.425405] pci 0000:18:00.0: resource 8 [mem 0xa8c00000-0xa94fffff] released
[    0.425407] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.425416] pci 0000:06:04.0: resource 8 [mem 0xa8c00000-0xa94fffff] released
[    0.425418] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.425423] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.425424] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.425425] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.425427] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.425433] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xa96fffff] released
[    0.425435] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.425442] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xad6fffff] released
[    0.425444] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.425448] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.425449] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.425452] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.425456] release child resource [mem 0xa8400000-0xa840ffff 64bit pref]
[    0.425456] release child resource [mem 0xa8410000-0xa841ffff 64bit pref]
[    0.425457] pci 0000:00:1c.0: resource 9 [mem 0xa8400000-0xa84fffff 64bit pref] released
[    0.425460] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.425467] release child resource [mem 0xa8600000-0xa861ffff 64bit]
[    0.425467] release child resource [mem 0xa8620000-0xa862ffff pref]
[    0.425468] pci 0000:00:1c.1: resource 8 [mem 0xa8600000-0xa86fffff] released
[    0.425471] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.425475] release child resource [mem 0xa8500000-0xa8500fff 64bit]
[    0.425475] pci 0000:00:1c.2: resource 8 [mem 0xa8500000-0xa85fffff] released
[    0.425478] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.425491] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.425495] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.425498] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.425501] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.425504] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.425508] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.425511] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.425514] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.425523] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.425525] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.425528] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.425531] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.425535] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.425551] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.425567] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.425572] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.425576] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.425583] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.425598] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.425601] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.425605] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.425613] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.425629] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.425634] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.425642] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.425645] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.425648] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.425651] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.425654] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.425657] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.425660] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.425663] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.425666] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.425669] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.425672] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.425675] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.425677] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.425680] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.425683] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.425686] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.425689] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.425696] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.425702] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.425709] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.425721] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.425725] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.425732] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.425744] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.425747] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.425750] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.425753] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.425756] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.425759] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.425762] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.425765] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.425767] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.425770] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.425773] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.425776] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.425779] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.425781] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.425785] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.425787] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.425790] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.425801] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.425811] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.425821] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.425834] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.425859] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.425873] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.425898] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.425909] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.425928] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.425959] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.425990] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.426000] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.426008] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.426023] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.426053] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.426064] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.426083] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.426086] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.426089] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.426093] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.426095] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.426098] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.426101] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.426104] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.426107] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.426109] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.426112] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.426115] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.426118] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.426121] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.426124] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.426127] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.426129] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.426142] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.426155] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.426168] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.426185] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.426218] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.426235] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.426268] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.426282] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.426309] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.426349] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.426388] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.426403] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.426413] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.426433] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.426472] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.426487] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.426514] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.426520] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.426534] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.426561] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.426567] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.426606] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.426613] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.426627] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.426654] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.426659] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.426669] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.426689] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.426694] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.426721] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.426726] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.426737] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.426756] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.426759] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.426766] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.426778] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.426782] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.426789] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.426801] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.426804] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.426811] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.426823] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.426826] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.426833] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.426845] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.426848] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.426853] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.426860] pci_bus 0000:00: No. 5 try to assign unassigned res
[    0.426863] release child resource [mem 0xb0f00000-0xb0f00fff]
[    0.426863] release child resource [mem 0xb0f01000-0xb0f01fff]
[    0.426864] release child resource [mem 0xb0f02000-0xb0f020ff]
[    0.426865] pci 0000:22:03.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.426867] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.426879] pci 0000:21:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.426882] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.426894] pci 0000:20:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.426897] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.426907] release child resource [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.426908] release child resource [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.426909] pci 0000:20:01.0: resource 9 [mem 0xb1100000-0xb11fffff 64bit pref] released
[    0.426912] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.426934] release child resource [mem 0xb1200000-0xb1200fff 64bit]
[    0.426935] pci 0000:20:02.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[    0.426938] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.426948] pci 0000:20:04.0: resource 8 [mem 0xb1300000-0xb92fffff] released
[    0.426950] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.426960] release child resource [mem 0xb1000000-0xb10fffff]
[    0.426961] pci 0000:1f:00.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.426964] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.426974] pci 0000:19:04.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.426977] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.426984] release child resource [mem 0xb0b00000-0xb0b00fff]
[    0.426985] release child resource [mem 0xb0b01000-0xb0b01fff]
[    0.426986] release child resource [mem 0xb0b02000-0xb0b020ff]
[    0.426987] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.426989] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.426999] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427001] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427011] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427013] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427021] release child resource [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427022] release child resource [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427023] pci 0000:19:01.0: resource 9 [mem 0xb0d00000-0xb0dfffff 64bit pref] released
[    0.427026] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427042] release child resource [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427043] pci 0000:19:02.0: resource 8 [mem 0xb0e00000-0xb0efffff] released
[    0.427045] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427053] release child resource [mem 0xb0c00000-0xb0cfffff]
[    0.427054] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427056] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427064] pci 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427067] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427072] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.427073] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.427074] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.427076] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427081] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[    0.427084] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427089] pci 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[    0.427092] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427097] pci 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[    0.427099] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427105] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427107] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427113] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427116] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427120] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427121] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.427124] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427127] release child resource [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427128] release child resource [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427129] pci 0000:00:1c.0: resource 9 [mem 0x8f900000-0x8f9fffff 64bit pref] released
[    0.427132] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427138] release child resource [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427139] release child resource [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427140] pci 0000:00:1c.1: resource 8 [mem 0x8fa00000-0x8fafffff] released
[    0.427142] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427146] release child resource [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427147] pci 0000:00:1c.2: resource 8 [mem 0x8fb00000-0x8fbfffff] released
[    0.427149] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427161] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427165] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427168] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.427171] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.427174] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427178] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427181] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427184] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427192] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427195] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.427198] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.427201] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427205] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427221] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427236] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427241] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.427245] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427252] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427267] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427270] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427275] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.427283] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427299] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427303] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.427311] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427314] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427317] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427321] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.427324] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.427326] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427329] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427332] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427335] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427338] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427341] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.427344] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427347] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427350] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.427352] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427355] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427359] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.427365] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.427372] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427378] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.427387] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427387] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.427387] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.427387] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427387] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427387] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427387] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427387] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.427387] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427387] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.427387] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427387] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427387] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427387] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427387] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427387] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427387] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427387] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.427387] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.427387] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.427387] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427387] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427387] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427387] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427387] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427387] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427387] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427387] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427387] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427387] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.427387] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427387] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427387] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427387] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.427387] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427387] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427387] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427387] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427387] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.427387] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427387] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.427387] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.427387] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427387] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427387] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427387] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427387] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.427387] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.427387] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.427387] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427387] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427387] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427387] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427387] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427387] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427387] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427387] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427387] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427387] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.427387] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427387] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.427387] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427387] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.427387] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427387] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.427387] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.427387] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.427387] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.427387] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427387] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.427387] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427387] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427387] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.427387] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427387] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.427387] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.427387] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427387] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.427387] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427387] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427387] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.427387] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427387] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427387] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.427387] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.427387] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427387] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.427387] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.427387] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427387] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.427387] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.427387] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427387] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.427387] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.427387] pci_bus 0000:00: No. 6 try to assign unassigned res
[    0.427387] release child resource [mem 0xb0f00000-0xb0f00fff]
[    0.427387] release child resource [mem 0xb0f01000-0xb0f01fff]
[    0.427387] release child resource [mem 0xb0f02000-0xb0f020ff]
[    0.427387] pci 0000:22:03.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427387] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427387] pci 0000:21:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427387] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427387] pci 0000:20:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427387] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427387] release child resource [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427387] release child resource [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427387] pci 0000:20:01.0: resource 9 [mem 0xb1100000-0xb11fffff 64bit pref] released
[    0.427387] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427387] release child resource [mem 0xb1200000-0xb1200fff 64bit]
[    0.427387] pci 0000:20:02.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[    0.427387] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427387] pci 0000:20:04.0: resource 8 [mem 0xb1300000-0xb92fffff] released
[    0.427387] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427387] release child resource [mem 0xb1000000-0xb10fffff]
[    0.427387] pci 0000:1f:00.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.427387] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427387] pci 0000:19:04.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.427387] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427387] release child resource [mem 0xb0b00000-0xb0b00fff]
[    0.427387] release child resource [mem 0xb0b01000-0xb0b01fff]
[    0.427387] release child resource [mem 0xb0b02000-0xb0b020ff]
[    0.427387] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427387] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427387] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427387] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427387] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427387] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427387] release child resource [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427387] release child resource [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427387] pci 0000:19:01.0: resource 9 [mem 0xb0d00000-0xb0dfffff 64bit pref] released
[    0.427387] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427387] release child resource [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427387] pci 0000:19:02.0: resource 8 [mem 0xb0e00000-0xb0efffff] released
[    0.427387] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427387] release child resource [mem 0xb0c00000-0xb0cfffff]
[    0.427387] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427387] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427387] pci 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427387] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427387] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.427387] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.427387] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.427387] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427387] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[    0.427387] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427387] pci 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[    0.427387] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427387] pci 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[    0.427387] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427387] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427387] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427387] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427387] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427387] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427387] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.427387] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427387] release child resource [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427387] release child resource [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427387] pci 0000:00:1c.0: resource 9 [mem 0x8f900000-0x8f9fffff 64bit pref] released
[    0.427387] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427387] release child resource [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427387] release child resource [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427387] pci 0000:00:1c.1: resource 8 [mem 0x8fa00000-0x8fafffff] released
[    0.427387] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427387] release child resource [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427387] pci 0000:00:1c.2: resource 8 [mem 0x8fb00000-0x8fbfffff] released
[    0.427387] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427387] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427387] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427387] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.427387] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.427387] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427387] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427387] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427387] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427387] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427387] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.427387] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.427387] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427387] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427387] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427387] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427387] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.427387] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427387] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427387] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427387] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427387] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.427387] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427387] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427387] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.427387] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427387] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427387] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427387] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.427387] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.427387] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427387] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427387] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427387] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.427387] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.427387] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.427387] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.427387] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427387] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.427387] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427387] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.427387] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.427387] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427387] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427387] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427387] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427387] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.427387] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427387] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.427387] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427387] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427387] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427387] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427387] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427387] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427387] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427387] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.427387] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.427387] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.427387] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427387] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427387] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427387] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427387] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427387] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427387] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427387] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427387] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427387] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.427387] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427387] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427387] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427387] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.427387] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427387] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427387] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427387] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427387] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.427387] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427387] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.427387] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.427387] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427387] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427387] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427387] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427387] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.427387] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.427387] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.427387] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427387] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427387] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427387] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427387] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427387] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427387] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427387] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427387] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427387] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.427387] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427387] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.427387] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427387] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.427387] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427387] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.427387] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.427387] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.427387] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.427387] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427387] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.427387] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427387] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427387] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.427387] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427387] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.427387] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.427387] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427387] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.427387] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427387] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427387] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.427387] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427387] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427387] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.427387] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.427387] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427387] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.427387] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.427387] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427387] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.427387] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.427387] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427387] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.427387] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.427387] pci_bus 0000:00: No. 7 try to assign unassigned res
[    0.427387] release child resource [mem 0xb0f00000-0xb0f00fff]
[    0.427387] release child resource [mem 0xb0f01000-0xb0f01fff]
[    0.427387] release child resource [mem 0xb0f02000-0xb0f020ff]
[    0.427387] pci 0000:22:03.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427387] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427387] pci 0000:21:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427387] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427387] pci 0000:20:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427387] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427387] release child resource [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427387] release child resource [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427387] pci 0000:20:01.0: resource 9 [mem 0xb1100000-0xb11fffff 64bit pref] released
[    0.427387] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427387] release child resource [mem 0xb1200000-0xb1200fff 64bit]
[    0.427387] pci 0000:20:02.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[    0.427387] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427387] pci 0000:20:04.0: resource 8 [mem 0xb1300000-0xb92fffff] released
[    0.427387] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427387] release child resource [mem 0xb1000000-0xb10fffff]
[    0.427387] pci 0000:1f:00.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.427387] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427387] pci 0000:19:04.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.427387] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427387] release child resource [mem 0xb0b00000-0xb0b00fff]
[    0.427387] release child resource [mem 0xb0b01000-0xb0b01fff]
[    0.427387] release child resource [mem 0xb0b02000-0xb0b020ff]
[    0.427387] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427387] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427387] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427387] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427387] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427387] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427387] release child resource [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427387] release child resource [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427387] pci 0000:19:01.0: resource 9 [mem 0xb0d00000-0xb0dfffff 64bit pref] released
[    0.427387] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427387] release child resource [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427387] pci 0000:19:02.0: resource 8 [mem 0xb0e00000-0xb0efffff] released
[    0.427387] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427387] release child resource [mem 0xb0c00000-0xb0cfffff]
[    0.427387] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427387] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427387] pci 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427387] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427387] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.427387] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.427387] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.427387] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427387] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[    0.427387] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427387] pci 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[    0.427387] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427387] pci 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[    0.427387] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427387] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427387] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427387] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427387] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427387] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427387] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.427387] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427387] release child resource [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427387] release child resource [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427387] pci 0000:00:1c.0: resource 9 [mem 0x8f900000-0x8f9fffff 64bit pref] released
[    0.427387] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427387] release child resource [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427387] release child resource [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427387] pci 0000:00:1c.1: resource 8 [mem 0x8fa00000-0x8fafffff] released
[    0.427387] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427387] release child resource [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427387] pci 0000:00:1c.2: resource 8 [mem 0x8fb00000-0x8fbfffff] released
[    0.427387] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427387] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427387] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427387] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.427387] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.427387] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427387] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427387] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427387] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427387] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427387] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.427387] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.427387] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427387] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427387] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427387] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427387] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.427387] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427387] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427387] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427387] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427387] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.427387] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427387] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427387] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.427387] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427387] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427387] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427387] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.427387] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.427387] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427387] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427387] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427387] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.427387] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.427387] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.427387] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.427387] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427387] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.427387] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427387] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.427387] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.427387] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427387] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427387] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427387] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427387] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.427387] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427387] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.427387] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427387] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427387] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427387] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427387] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427387] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427387] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427387] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.427387] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.427387] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.427387] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427387] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427387] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427387] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427387] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427387] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427387] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427387] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427387] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427387] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.427387] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427387] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427387] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427387] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.427387] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427387] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427387] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427387] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427387] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.427387] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427387] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.427387] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.427387] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427387] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427387] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427387] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427387] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.427387] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.427387] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.427387] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427387] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427387] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427387] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427387] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427387] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427387] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427387] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427387] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427387] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.427387] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427387] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.427387] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427387] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.427387] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427387] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.427387] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.427387] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.427387] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.427387] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427387] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.427387] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427387] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427387] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.427387] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427387] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.427387] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.427387] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427387] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.427387] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427387] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427387] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.427387] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.427387] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427387] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.427387] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.427387] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427387] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.427387] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.427387] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427387] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.427387] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.427387] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427387] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.427387] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.427387] pci_bus 0000:00: No. 8 try to assign unassigned res
[    0.427387] release child resource [mem 0xb0f00000-0xb0f00fff]
[    0.427387] release child resource [mem 0xb0f01000-0xb0f01fff]
[    0.427387] release child resource [mem 0xb0f02000-0xb0f020ff]
[    0.427387] pci 0000:22:03.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427387] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427387] pci 0000:21:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427387] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427387] pci 0000:20:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.427387] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427387] release child resource [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427387] release child resource [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427387] pci 0000:20:01.0: resource 9 [mem 0xb1100000-0xb11fffff 64bit pref] released
[    0.427387] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427387] release child resource [mem 0xb1200000-0xb1200fff 64bit]
[    0.427387] pci 0000:20:02.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[    0.427387] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427387] pci 0000:20:04.0: resource 8 [mem 0xb1300000-0xb92fffff] released
[    0.427387] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427387] release child resource [mem 0xb1000000-0xb10fffff]
[    0.427387] pci 0000:1f:00.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.427387] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427387] pci 0000:19:04.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.427387] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427387] release child resource [mem 0xb0b00000-0xb0b00fff]
[    0.427387] release child resource [mem 0xb0b01000-0xb0b01fff]
[    0.427387] release child resource [mem 0xb0b02000-0xb0b020ff]
[    0.427387] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427387] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427387] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427387] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427387] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.427387] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427387] release child resource [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427387] release child resource [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427387] pci 0000:19:01.0: resource 9 [mem 0xb0d00000-0xb0dfffff 64bit pref] released
[    0.427387] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427387] release child resource [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427387] pci 0000:19:02.0: resource 8 [mem 0xb0e00000-0xb0efffff] released
[    0.427387] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427387] release child resource [mem 0xb0c00000-0xb0cfffff]
[    0.427387] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427387] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.427387] pci 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.427387] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.427387] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.427387] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.427387] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.427387] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427387] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[    0.427387] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427387] pci 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[    0.427387] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.427387] pci 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[    0.427387] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.427387] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427387] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.427387] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.427387] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.427387] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427387] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.427387] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427387] release child resource [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427387] release child resource [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427387] pci 0000:00:1c.0: resource 9 [mem 0x8f900000-0x8f9fffff 64bit pref] released
[    0.427387] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427387] release child resource [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427387] release child resource [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427387] pci 0000:00:1c.1: resource 8 [mem 0x8fa00000-0x8fafffff] released
[    0.427387] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427387] release child resource [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427387] pci 0000:00:1c.2: resource 8 [mem 0x8fb00000-0x8fbfffff] released
[    0.427387] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427387] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427387] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427387] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.427387] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.427387] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427387] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427387] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427387] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427387] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.427387] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.427387] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.427387] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.427387] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.427387] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.427387] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.427387] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.427387] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.427387] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.427387] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.427387] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.427387] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.427387] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.427387] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.427387] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.427387] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.427387] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.427387] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.427387] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.427387] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.427387] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427387] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427387] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427387] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.427387] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.427387] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.427387] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.427387] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.427387] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.427387] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.427387] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.427387] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.427387] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.427387] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.427387] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.427387] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427387] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.427387] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427387] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.427387] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427387] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427387] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427387] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427387] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427387] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427387] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.427387] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.427387] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.427387] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.427387] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.427387] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427387] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.427387] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427387] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.427387] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.427387] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.427387] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.427387] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.427387] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.427387] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.427387] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.427387] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.427387] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.427387] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.427387] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.427387] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.427387] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427387] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.427387] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427387] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.427387] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.427387] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.427387] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.427387] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.427387] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427387] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.427387] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.427387] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.427387] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.427387] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.427387] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427387] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.427387] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427387] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.427387] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.427387] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.427387] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.427387] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.427387] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.427387] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.427387] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.427387] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.427387] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.427387] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.427387] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.427387] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.427387] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.427387] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.427387] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.427387] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.427387] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.427387] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.427387] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.427387] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.433364] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.433369] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.433397] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.433402] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.433413] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.433432] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.433435] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.433442] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.433454] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.433458] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.433465] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.433476] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.433480] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.433487] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.433499] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.433503] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.433509] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.433521] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.433524] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.433529] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.433537] pci_bus 0000:00: No. 9 try to assign unassigned res
[    0.433539] release child resource [mem 0xb0f00000-0xb0f00fff]
[    0.433540] release child resource [mem 0xb0f01000-0xb0f01fff]
[    0.433540] release child resource [mem 0xb0f02000-0xb0f020ff]
[    0.433541] pci 0000:22:03.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.433544] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.433556] pci 0000:21:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.433559] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.433571] pci 0000:20:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.433573] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.433583] release child resource [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.433584] release child resource [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.433585] pci 0000:20:01.0: resource 9 [mem 0xb1100000-0xb11fffff 64bit pref] released
[    0.433588] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.433611] release child resource [mem 0xb1200000-0xb1200fff 64bit]
[    0.433612] pci 0000:20:02.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[    0.433614] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.433624] pci 0000:20:04.0: resource 8 [mem 0xb1300000-0xb92fffff] released
[    0.433627] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.433637] release child resource [mem 0xb1000000-0xb10fffff]
[    0.433638] pci 0000:1f:00.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.433641] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.433651] pci 0000:19:04.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.433654] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.433661] release child resource [mem 0xb0b00000-0xb0b00fff]
[    0.433662] release child resource [mem 0xb0b01000-0xb0b01fff]
[    0.433663] release child resource [mem 0xb0b02000-0xb0b020ff]
[    0.433664] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.433666] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.433676] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.433678] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.433688] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.433690] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.433698] release child resource [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.433699] release child resource [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.433700] pci 0000:19:01.0: resource 9 [mem 0xb0d00000-0xb0dfffff 64bit pref] released
[    0.433703] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.433719] release child resource [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.433720] pci 0000:19:02.0: resource 8 [mem 0xb0e00000-0xb0efffff] released
[    0.433722] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.433730] release child resource [mem 0xb0c00000-0xb0cfffff]
[    0.433731] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.433733] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.433742] pci 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.433744] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.433749] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.433750] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.433751] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.433753] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.433759] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[    0.433761] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.433767] pci 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[    0.433769] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.433774] pci 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[    0.433777] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.433782] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.433785] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.433791] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.433793] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.433797] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.433798] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.433801] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.433804] release child resource [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.433805] release child resource [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.433806] pci 0000:00:1c.0: resource 9 [mem 0x8f900000-0x8f9fffff 64bit pref] released
[    0.433809] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.433815] release child resource [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.433816] release child resource [mem 0x8fa20000-0x8fa2ffff pref]
[    0.433817] pci 0000:00:1c.1: resource 8 [mem 0x8fa00000-0x8fafffff] released
[    0.433820] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.433823] release child resource [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.433824] pci 0000:00:1c.2: resource 8 [mem 0x8fb00000-0x8fbfffff] released
[    0.433827] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.433846] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.433852] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.433857] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.433862] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.433867] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.433871] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.433874] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.433883] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.433892] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.433895] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.433898] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.433901] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.433905] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.433921] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.433937] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.433941] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.433946] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.433952] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.433967] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.433970] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.433974] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.433983] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.433999] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.434003] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.434011] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.434014] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.434017] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.434021] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.434023] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.434026] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.434029] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.434032] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.434035] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.434038] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.434041] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.434044] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.434046] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.434049] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.434052] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.434055] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.434058] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.434065] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.434071] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.434078] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.434090] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.434094] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.434101] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.434113] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.434115] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.434118] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.434122] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.434125] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.434127] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.434130] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.434133] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.434136] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.434139] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.434142] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.434144] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.434147] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.434150] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.434153] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.434156] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.434159] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.434169] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.434179] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.434189] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.434202] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.434227] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.434241] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.434266] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.434277] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.434296] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.434327] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.434357] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.434368] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.434376] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.434391] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.434421] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.434432] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.434452] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.434454] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.434457] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.434461] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.434463] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.434466] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.434469] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.434472] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.434475] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.434478] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.434481] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.434483] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.434486] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.434489] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.434492] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.434495] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.434498] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.434511] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.434523] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.434536] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.434553] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.434586] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.434603] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.434636] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.434650] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.434678] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.434717] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.434757] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.434771] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.434782] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.434801] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.434841] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.434855] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.434882] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.434888] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.434903] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.434930] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.434936] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.434975] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.434981] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.434996] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.435022] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.435027] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.435038] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.435057] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.435062] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.435090] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.435095] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.435105] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.435124] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.435128] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.435135] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.435147] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.435151] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.435157] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.435169] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.435173] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.435180] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.435192] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.435195] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.435202] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.435213] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.435216] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.435221] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.435229] pci_bus 0000:00: No. 10 try to assign unassigned res
[    0.435232] release child resource [mem 0xb0f00000-0xb0f00fff]
[    0.435232] release child resource [mem 0xb0f01000-0xb0f01fff]
[    0.435233] release child resource [mem 0xb0f02000-0xb0f020ff]
[    0.435234] pci 0000:22:03.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.435236] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.435249] pci 0000:21:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.435251] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.435263] pci 0000:20:00.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[    0.435266] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.435276] release child resource [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.435277] release child resource [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.435278] pci 0000:20:01.0: resource 9 [mem 0xb1100000-0xb11fffff 64bit pref] released
[    0.435281] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.435303] release child resource [mem 0xb1200000-0xb1200fff 64bit]
[    0.435304] pci 0000:20:02.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[    0.435307] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.435317] pci 0000:20:04.0: resource 8 [mem 0xb1300000-0xb92fffff] released
[    0.435319] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.435330] release child resource [mem 0xb1000000-0xb10fffff]
[    0.435331] pci 0000:1f:00.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.435333] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.435344] pci 0000:19:04.0: resource 8 [mem 0xb0f00000-0xc11fffff] released
[    0.435346] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.435354] release child resource [mem 0xb0b00000-0xb0b00fff]
[    0.435354] release child resource [mem 0xb0b01000-0xb0b01fff]
[    0.435355] release child resource [mem 0xb0b02000-0xb0b020ff]
[    0.435356] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.435358] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.435368] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.435371] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.435380] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[    0.435383] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.435390] release child resource [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.435391] release child resource [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.435392] pci 0000:19:01.0: resource 9 [mem 0xb0d00000-0xb0dfffff 64bit pref] released
[    0.435395] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.435411] release child resource [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.435412] pci 0000:19:02.0: resource 8 [mem 0xb0e00000-0xb0efffff] released
[    0.435414] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.435422] release child resource [mem 0xb0c00000-0xb0cfffff]
[    0.435423] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.435426] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.435434] pci 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[    0.435436] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.435441] release child resource [mem 0xa8a00000-0xa8a3ffff]
[    0.435442] release child resource [mem 0xa8a40000-0xa8a40fff]
[    0.435443] pci 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[    0.435446] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.435451] pci 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[    0.435453] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.435459] pci 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[    0.435461] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.435467] pci 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[    0.435469] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.435474] pci 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.435477] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.435483] pci 0000:00:1c.4: resource 8 [mem 0xa8a00000-0xd90fffff] released
[    0.435485] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.435489] release child resource [mem 0x90000000-0x9fffffff 64bit pref]
[    0.435490] pci 0000:00:01.0: resource 9 [mem 0x90000000-0x9fffffff 64bit pref] released
[    0.435493] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.435497] release child resource [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.435497] release child resource [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.435498] pci 0000:00:1c.0: resource 9 [mem 0x8f900000-0x8f9fffff 64bit pref] released
[    0.435501] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.435508] release child resource [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.435508] release child resource [mem 0x8fa20000-0x8fa2ffff pref]
[    0.435509] pci 0000:00:1c.1: resource 8 [mem 0x8fa00000-0x8fafffff] released
[    0.435512] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.435516] release child resource [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.435516] pci 0000:00:1c.2: resource 8 [mem 0x8fb00000-0x8fbfffff] released
[    0.435519] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.435532] pci 0000:00:01.0: BAR 9: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.435536] pci 0000:00:1c.0: BAR 9: assigned [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.435539] pci 0000:00:1c.1: BAR 8: assigned [mem 0x8fa00000-0x8fafffff]
[    0.435541] pci 0000:00:1c.2: BAR 8: assigned [mem 0x8fb00000-0x8fbfffff]
[    0.435544] pci 0000:00:1c.4: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.435548] pci 0000:00:1c.4: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.435551] pci 0000:00:1c.4: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.435555] pci 0000:01:00.0: BAR 0: assigned [mem 0x90000000-0x9fffffff 64bit pref]
[    0.435563] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.435565] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.435568] pci 0000:00:01.0:   bridge window [mem 0xa8800000-0xa88fffff]
[    0.435571] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.435575] pci 0000:02:00.0: BAR 0: assigned [mem 0x8f900000-0x8f90ffff 64bit pref]
[    0.435591] pci 0000:02:00.0: BAR 2: assigned [mem 0x8f910000-0x8f91ffff 64bit pref]
[    0.435606] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.435611] pci 0000:00:1c.0:   bridge window [mem 0xa8700000-0xa87fffff]
[    0.435615] pci 0000:00:1c.0:   bridge window [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.435622] pci 0000:03:00.0: BAR 0: assigned [mem 0x8fa00000-0x8fa1ffff 64bit]
[    0.435637] pci 0000:03:00.0: BAR 6: assigned [mem 0x8fa20000-0x8fa2ffff pref]
[    0.435640] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.435644] pci 0000:00:1c.1:   bridge window [mem 0x8fa00000-0x8fafffff]
[    0.435652] pci 0000:04:00.0: BAR 0: assigned [mem 0x8fb00000-0x8fb00fff 64bit]
[    0.435668] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.435673] pci 0000:00:1c.2:   bridge window [mem 0x8fb00000-0x8fbfffff]
[    0.435681] pci 0000:05:00.0: BAR 8: assigned [mem 0xa8a00000-0xd90fffff]
[    0.435684] pci 0000:05:00.0: BAR 9: no space for [mem size 0x180200000 64bit pref]
[    0.435687] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x180200000 64bit pref]
[    0.435691] pci 0000:06:00.0: BAR 8: assigned [mem 0xa8a00000-0xa8afffff]
[    0.435693] pci 0000:06:03.0: BAR 8: assigned [mem 0xa8b00000-0xb0afffff]
[    0.435696] pci 0000:06:03.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.435699] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.435702] pci 0000:06:04.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.435705] pci 0000:06:04.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.435708] pci 0000:06:04.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.435711] pci 0000:06:05.0: BAR 8: assigned [mem 0xc9100000-0xd10fffff]
[    0.435713] pci 0000:06:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.435716] pci 0000:06:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.435719] pci 0000:06:06.0: BAR 8: assigned [mem 0xd1100000-0xd90fffff]
[    0.435722] pci 0000:06:06.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.435725] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.435728] pci 0000:07:00.0: BAR 0: assigned [mem 0xa8a00000-0xa8a3ffff]
[    0.435735] pci 0000:07:00.0: BAR 1: assigned [mem 0xa8a40000-0xa8a40fff]
[    0.435741] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.435748] pci 0000:06:00.0:   bridge window [mem 0xa8a00000-0xa8afffff]
[    0.435760] pci 0000:06:03.0: PCI bridge to [bus 08-17]
[    0.435763] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    0.435770] pci 0000:06:03.0:   bridge window [mem 0xa8b00000-0xb0afffff]
[    0.435783] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[    0.435785] pci 0000:18:00.0: BAR 9: no space for [mem size 0xc0200000 64bit pref]
[    0.435788] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0xc0200000 64bit pref]
[    0.435792] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.435794] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0c00000-0xb0cfffff]
[    0.435797] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.435800] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0e00000-0xb0efffff]
[    0.435803] pci 0000:19:04.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.435806] pci 0000:19:04.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.435809] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.435812] pci 0000:19:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.435814] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.435817] pci 0000:19:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.435820] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.435823] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.435826] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[    0.435829] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[    0.435839] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[    0.435849] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[    0.435859] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[    0.435873] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.435898] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[    0.435911] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.435936] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[    0.435947] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[    0.435966] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0d00000-0xb0d0ffff 64bit pref]
[    0.435997] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0d10000-0xb0d1ffff 64bit pref]
[    0.436028] pci 0000:19:01.0: PCI bridge to [bus 1d]
[    0.436038] pci 0000:19:01.0:   bridge window [mem 0xb0c00000-0xb0cfffff]
[    0.436046] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.436061] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e00fff 64bit]
[    0.436091] pci 0000:19:02.0: PCI bridge to [bus 1e]
[    0.436102] pci 0000:19:02.0:   bridge window [mem 0xb0e00000-0xb0efffff]
[    0.436121] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb0f00000-0xc11fffff]
[    0.436124] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x80100000 64bit pref]
[    0.436127] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x80100000 64bit pref]
[    0.436130] pci 0000:20:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.436133] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1000000-0xb10fffff]
[    0.436136] pci 0000:20:01.0: BAR 9: assigned [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.436139] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[    0.436141] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1300000-0xb92fffff]
[    0.436144] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.436147] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.436150] pci 0000:20:05.0: BAR 8: no space for [mem size 0x08000000]
[    0.436153] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x08000000]
[    0.436155] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[    0.436158] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[    0.436161] pci 0000:21:00.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.436164] pci 0000:22:03.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[    0.436167] pci 0000:23:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff]
[    0.436180] pci 0000:23:00.1: BAR 0: assigned [mem 0xb0f01000-0xb0f01fff]
[    0.436193] pci 0000:23:00.2: BAR 0: assigned [mem 0xb0f02000-0xb0f020ff]
[    0.436205] pci 0000:22:03.0: PCI bridge to [bus 23]
[    0.436223] pci 0000:22:03.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.436255] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[    0.436273] pci 0000:21:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.436305] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[    0.436320] pci 0000:20:00.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[    0.436347] pci 0000:24:00.0: BAR 0: assigned [mem 0xb1100000-0xb110ffff 64bit pref]
[    0.436386] pci 0000:24:00.0: BAR 2: assigned [mem 0xb1110000-0xb111ffff 64bit pref]
[    0.436426] pci 0000:20:01.0: PCI bridge to [bus 24]
[    0.436440] pci 0000:20:01.0:   bridge window [mem 0xb1000000-0xb10fffff]
[    0.436451] pci 0000:20:01.0:   bridge window [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.436470] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1200000-0xb1200fff 64bit]
[    0.436510] pci 0000:20:02.0: PCI bridge to [bus 25]
[    0.436524] pci 0000:20:02.0:   bridge window [mem 0xb1200000-0xb12fffff]
[    0.436551] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[    0.436557] pci 0000:20:04.0:   bridge window [io  0x5000-0x5fff]
[    0.436572] pci 0000:20:04.0:   bridge window [mem 0xb1300000-0xb92fffff]
[    0.436599] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[    0.436605] pci 0000:20:05.0:   bridge window [io  0x6000-0x6fff]
[    0.436644] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[    0.436651] pci 0000:1f:00.0:   bridge window [io  0x5000-0x6fff]
[    0.436665] pci 0000:1f:00.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.436692] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[    0.436697] pci 0000:19:04.0:   bridge window [io  0x5000-0x7fff]
[    0.436707] pci 0000:19:04.0:   bridge window [mem 0xb0f00000-0xc11fffff]
[    0.436727] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[    0.436732] pci 0000:19:05.0:   bridge window [io  0x8000-0x8fff]
[    0.436759] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[    0.436764] pci 0000:18:00.0:   bridge window [io  0x5000-0x8fff]
[    0.436775] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.436794] pci 0000:06:04.0: PCI bridge to [bus 18-55]
[    0.436798] pci 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[    0.436805] pci 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[    0.436816] pci 0000:06:05.0: PCI bridge to [bus 56-65]
[    0.436820] pci 0000:06:05.0:   bridge window [io  0xa000-0xafff]
[    0.436827] pci 0000:06:05.0:   bridge window [mem 0xc9100000-0xd10fffff]
[    0.436839] pci 0000:06:06.0: PCI bridge to [bus 66-75]
[    0.436843] pci 0000:06:06.0:   bridge window [io  0xb000-0xbfff]
[    0.436849] pci 0000:06:06.0:   bridge window [mem 0xd1100000-0xd90fffff]
[    0.436861] pci 0000:05:00.0: PCI bridge to [bus 06-75]
[    0.436865] pci 0000:05:00.0:   bridge window [io  0x4000-0xbfff]
[    0.436872] pci 0000:05:00.0:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.436883] pci 0000:00:1c.4: PCI bridge to [bus 05-75]
[    0.436886] pci 0000:00:1c.4:   bridge window [io  0x4000-0xbfff]
[    0.436891] pci 0000:00:1c.4:   bridge window [mem 0xa8a00000-0xd90fffff]
[    0.436899] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.436902] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.436904] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000fffff window]
[    0.436907] pci_bus 0000:00: resource 7 [mem 0x8f900000-0xfeafffff window]
[    0.436909] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff window]
[    0.436912] pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
[    0.436914] pci_bus 0000:01: resource 1 [mem 0xa8800000-0xa88fffff]
[    0.436916] pci_bus 0000:01: resource 2 [mem 0x90000000-0x9fffffff 64bit pref]
[    0.436919] pci_bus 0000:02: resource 1 [mem 0xa8700000-0xa87fffff]
[    0.436921] pci_bus 0000:02: resource 2 [mem 0x8f900000-0x8f9fffff 64bit pref]
[    0.436924] pci_bus 0000:03: resource 1 [mem 0x8fa00000-0x8fafffff]
[    0.436927] pci_bus 0000:04: resource 1 [mem 0x8fb00000-0x8fbfffff]
[    0.436929] pci_bus 0000:05: resource 0 [io  0x4000-0xbfff]
[    0.436931] pci_bus 0000:05: resource 1 [mem 0xa8a00000-0xd90fffff]
[    0.436933] pci_bus 0000:06: resource 0 [io  0x4000-0xbfff]
[    0.436936] pci_bus 0000:06: resource 1 [mem 0xa8a00000-0xd90fffff]
[    0.436938] pci_bus 0000:07: resource 1 [mem 0xa8a00000-0xa8afffff]
[    0.436940] pci_bus 0000:08: resource 0 [io  0x4000-0x4fff]
[    0.436943] pci_bus 0000:08: resource 1 [mem 0xa8b00000-0xb0afffff]
[    0.436945] pci_bus 0000:18: resource 0 [io  0x5000-0x9fff]
[    0.436947] pci_bus 0000:18: resource 1 [mem 0xb0b00000-0xc90fffff]
[    0.436949] pci_bus 0000:19: resource 0 [io  0x5000-0x8fff]
[    0.436952] pci_bus 0000:19: resource 1 [mem 0xb0b00000-0xc90fffff]
[    0.436954] pci_bus 0000:1a: resource 1 [mem 0xb0b00000-0xb0bfffff]
[    0.436956] pci_bus 0000:1b: resource 1 [mem 0xb0b00000-0xb0bfffff]
[    0.436959] pci_bus 0000:1c: resource 1 [mem 0xb0b00000-0xb0bfffff]
[    0.436961] pci_bus 0000:1d: resource 1 [mem 0xb0c00000-0xb0cfffff]
[    0.436963] pci_bus 0000:1d: resource 2 [mem 0xb0d00000-0xb0dfffff 64bit pref]
[    0.436966] pci_bus 0000:1e: resource 1 [mem 0xb0e00000-0xb0efffff]
[    0.436968] pci_bus 0000:1f: resource 0 [io  0x5000-0x7fff]
[    0.436971] pci_bus 0000:1f: resource 1 [mem 0xb0f00000-0xc11fffff]
[    0.436973] pci_bus 0000:20: resource 0 [io  0x5000-0x6fff]
[    0.436975] pci_bus 0000:20: resource 1 [mem 0xb0f00000-0xc11fffff]
[    0.436977] pci_bus 0000:21: resource 1 [mem 0xb0f00000-0xb0ffffff]
[    0.436980] pci_bus 0000:22: resource 1 [mem 0xb0f00000-0xb0ffffff]
[    0.436982] pci_bus 0000:23: resource 1 [mem 0xb0f00000-0xb0ffffff]
[    0.436984] pci_bus 0000:24: resource 1 [mem 0xb1000000-0xb10fffff]
[    0.436987] pci_bus 0000:24: resource 2 [mem 0xb1100000-0xb11fffff 64bit pref]
[    0.436989] pci_bus 0000:25: resource 1 [mem 0xb1200000-0xb12fffff]
[    0.436992] pci_bus 0000:26: resource 0 [io  0x5000-0x5fff]
[    0.436994] pci_bus 0000:26: resource 1 [mem 0xb1300000-0xb92fffff]
[    0.436996] pci_bus 0000:36: resource 0 [io  0x6000-0x6fff]
[    0.436999] pci_bus 0000:46: resource 0 [io  0x8000-0x8fff]
[    0.437001] pci_bus 0000:56: resource 0 [io  0xa000-0xafff]
[    0.437003] pci_bus 0000:56: resource 1 [mem 0xc9100000-0xd10fffff]
[    0.437005] pci_bus 0000:66: resource 0 [io  0xb000-0xbfff]
[    0.437008] pci_bus 0000:66: resource 1 [mem 0xd1100000-0xd90fffff]
[    0.437443] pci 0000:01:00.1: D0 power state depends on 0000:01:00.0
[    0.437459] pci 0000:05:00.0: CLS mismatch (256 != 128), using 64 bytes
[    0.437472] pci 0000:1c:00.0: MSI is not implemented on this device, disabling it
[    0.437474] pci 0000:1c:00.0: PME# is unreliable, disabling it
[    0.437767] pci 0000:1c:00.1: MSI is not implemented on this device, disabling it
[    0.437771] pci 0000:1c:00.1: PME# is unreliable, disabling it
[    0.437849] pci 0000:1c:00.2: MSI is not implemented on this device, disabling it
[    0.437852] pci 0000:1c:00.2: PME# is unreliable, disabling it
[    0.437907] pci 0000:1c:00.2: EHCI: unrecognized capability 00
[    0.437945] pci 0000:23:00.0: MSI is not implemented on this device, disabling it
[    0.437948] pci 0000:23:00.0: PME# is unreliable, disabling it
[    0.438201] pci 0000:23:00.1: MSI is not implemented on this device, disabling it
[    0.438204] pci 0000:23:00.1: PME# is unreliable, disabling it
[    0.438298] pci 0000:23:00.2: MSI is not implemented on this device, disabling it
[    0.438301] pci 0000:23:00.2: PME# is unreliable, disabling it
[    0.438367] pci 0000:23:00.2: EHCI: unrecognized capability 00
[    0.438407] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.438410] software IO TLB: mapped [mem 0x0000000083000000-0x0000000087000000] (64MB)
[    0.438417] ACPI: bus type thunderbolt registered
[    0.438435] Trying to unpack rootfs image as initramfs...
[    0.438504] thunderbolt 0000:07:00.0: total paths: 32
[    0.438680] thunderbolt 0000:07:00.0: allocating TX ring 0 of size 10
[    0.438698] thunderbolt 0000:07:00.0: allocating RX ring 0 of size 10
[    0.438711] thunderbolt 0000:07:00.0: control channel created
[    0.438714] thunderbolt 0000:07:00.0: ICM not supported on this controller
[    0.438723] thunderbolt 0000:07:00.0: freeing RX ring 0
[    0.438729] thunderbolt 0000:07:00.0: freeing TX ring 0
[    0.438739] thunderbolt 0000:07:00.0: allocating TX ring 0 of size 10
[    0.438747] thunderbolt 0000:07:00.0: allocating RX ring 0 of size 10
[    0.438756] thunderbolt 0000:07:00.0: control channel created
[    0.438757] thunderbolt 0000:07:00.0: using software connection manager
[    0.438772] thunderbolt 0000:07:00.0: created link from 0000:06:03.0
[    0.438799] thunderbolt 0000:07:00.0: created link from 0000:06:04.0
[    0.438810] thunderbolt 0000:07:00.0: created link from 0000:06:05.0
[    0.438824] thunderbolt 0000:07:00.0: created link from 0000:06:06.0
[    0.438879] thunderbolt 0000:07:00.0: NHI initialized, starting thunderbolt
[    0.438881] thunderbolt 0000:07:00.0: control channel starting...
[    0.438882] thunderbolt 0000:07:00.0: starting TX ring 0
[    0.438890] thunderbolt 0000:07:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[    0.438892] thunderbolt 0000:07:00.0: starting RX ring 0
[    0.438900] thunderbolt 0000:07:00.0: enabling interrupt at register 0x38204 bit 0 (0x0 -> 0x1)
[    0.438903] thunderbolt 0000:07:00.0: security level set to user
[    0.439059] thunderbolt 0000:07:00.0: current switch config:
[    0.439061] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[    0.439063] thunderbolt 0000:07:00.0:   Max Port Number: 13
[    0.439064] thunderbolt 0000:07:00.0:   Config:
[    0.439065] thunderbolt 0000:07:00.0:    Upstream Port Number: 6 Depth: 0 Route String: 0x0 Enabled: 1, PlugEventsDelay: 255ms
[    0.439067] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[    0.443668] thunderbolt 0000:07:00.0: initializing Switch at 0x0 (depth: 0, up port: 6)
[    0.444179] thunderbolt 0000:07:00.0: 0: DROM version: 1
[    0.445714] thunderbolt 0000:07:00.0: 0: uid: 0x1000a13f2da20
[    0.448658] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    0.448661] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    0.448662] thunderbolt 0000:07:00.0:   Max counters: 32
[    0.448664] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.448665] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.451602] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    0.451604] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    0.451605] thunderbolt 0000:07:00.0:   Max counters: 32
[    0.451606] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.451607] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.454546] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    0.454548] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    0.454549] thunderbolt 0000:07:00.0:   Max counters: 32
[    0.454550] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.454551] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.455186] random: fast init done
[    0.457491] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    0.457492] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    0.457493] thunderbolt 0000:07:00.0:   Max counters: 32
[    0.457494] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    0.457495] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    0.457496] thunderbolt 0000:07:00.0: 0:5: disabled by eeprom
[    0.458387] thunderbolt 0000:07:00.0:  Port 6: 8086:1513 (Revision: 2, TB Version: 1, Type: NHI (0x2))
[    0.458388] thunderbolt 0000:07:00.0:   Max hop id (in/out): 31/31
[    0.458390] thunderbolt 0000:07:00.0:   Max counters: 32
[    0.458390] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.458391] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.459283] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    0.459285] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.459286] thunderbolt 0000:07:00.0:   Max counters: 1
[    0.459287] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.459288] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.460179] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    0.460181] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.460182] thunderbolt 0000:07:00.0:   Max counters: 1
[    0.460182] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.460183] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.461075] thunderbolt 0000:07:00.0:  Port 9: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    0.461077] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.461078] thunderbolt 0000:07:00.0:   Max counters: 1
[    0.461079] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.461080] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.461971] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    0.461973] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    0.461974] thunderbolt 0000:07:00.0:   Max counters: 1
[    0.461975] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.461976] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.463123] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[    0.463125] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    0.463126] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.463127] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.463128] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.464019] thunderbolt 0000:07:00.0:  Port 12: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0101))
[    0.464022] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    0.464023] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.464023] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.464024] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.464915] thunderbolt 0000:07:00.0:  Port 13: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0101))
[    0.464917] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    0.464918] thunderbolt 0000:07:00.0:   Max counters: 2
[    0.464919] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    0.464920] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    0.480715] thunderbolt 0000:07:00.0: 0: TMU: current mode: HiFi
[    0.480843] thunderbolt 0000:07:00.0: 0:1: is unplugged (state: 7)
[    0.480970] thunderbolt 0000:07:00.0: 0:3: is connected, link is up (state: 2)
[    0.481227] thunderbolt 0000:07:00.0: current switch config:
[    0.481228] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[    0.481229] thunderbolt 0000:07:00.0:   Max Port Number: 13
[    0.481230] thunderbolt 0000:07:00.0:   Config:
[    0.481231] thunderbolt 0000:07:00.0:    Upstream Port Number: 1 Depth: 1 Route String: 0x3 Enabled: 1, PlugEventsDelay: 255ms
[    0.481233] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[    0.485836] thunderbolt 0000:07:00.0: initializing Switch at 0x3 (depth: 1, up port: 1)
[    0.503245] thunderbolt 0000:07:00.0: 3: reading drom (length: 0x97)
[    0.708197] Freeing initrd memory: 27904K
[    0.996984] thunderbolt 0000:07:00.0: 3: DROM version: 1
[    0.998008] thunderbolt 0000:07:00.0: 3: uid: 0x1000100189170
[    1.000951] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.000956] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.000958] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.000960] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.000963] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.003895] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.003899] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.003901] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.003903] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.003906] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.006839] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.006843] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.006845] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.006847] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.006849] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.009783] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.009787] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.009789] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.009791] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.009793] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.009795] thunderbolt 0000:07:00.0: 3:5: disabled by eeprom
[    1.009798] thunderbolt 0000:07:00.0: 3:6: disabled by eeprom
[    1.010680] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.010683] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.010686] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.010688] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.010690] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.011576] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.011579] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.011581] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.011583] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.011585] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.011587] thunderbolt 0000:07:00.0: 3:9: disabled by eeprom
[    1.012472] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[    1.012475] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.012478] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.012479] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.012481] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.013624] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[    1.013628] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    1.013630] thunderbolt 0000:07:00.0:   Max counters: 2
[    1.013632] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.013634] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.013636] thunderbolt 0000:07:00.0: 3:c: disabled by eeprom
[    1.013638] thunderbolt 0000:07:00.0: 3:d: disabled by eeprom
[    1.031902] thunderbolt 0000:07:00.0: 3: TMU: current mode: bi-directional, HiFi
[    1.031934] thunderbolt 0-3: new device found, vendor=0x1 device=0x8002
[    1.031942] thunderbolt 0-3: Apple, Inc. Thunderbolt Display
[    1.032038] thunderbolt 0000:07:00.0: 3:3: is connected, link is up (state: 2)
[    1.032296] thunderbolt 0000:07:00.0: current switch config:
[    1.032299] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[    1.032302] thunderbolt 0000:07:00.0:   Max Port Number: 13
[    1.032304] thunderbolt 0000:07:00.0:   Config:
[    1.032306] thunderbolt 0000:07:00.0:    Upstream Port Number: 3 Depth: 2 Route String: 0x303 Enabled: 1, PlugEventsDelay: 255ms
[    1.032310] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[    1.036907] thunderbolt 0000:07:00.0: initializing Switch at 0x303 (depth: 2, up port: 3)
[    1.054314] thunderbolt 0000:07:00.0: 303: reading drom (length: 0x97)
[    1.309313] random: crng init done
[    1.548051] thunderbolt 0000:07:00.0: 303: DROM version: 1
[    1.549076] thunderbolt 0000:07:00.0: 303: uid: 0x100010102a740
[    1.552019] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.552023] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.552026] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.552028] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.552030] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.554963] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.554967] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.554969] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.554971] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.554973] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.557907] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.557911] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.557913] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.557915] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.557917] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.560852] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    1.560855] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[    1.560857] thunderbolt 0000:07:00.0:   Max counters: 32
[    1.560859] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[    1.560861] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[    1.560864] thunderbolt 0000:07:00.0: 303:5: disabled by eeprom
[    1.560866] thunderbolt 0000:07:00.0: 303:6: disabled by eeprom
[    1.561748] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.561751] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.561754] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.561756] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.561758] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.562644] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    1.562648] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.562650] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.562652] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.562654] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.562656] thunderbolt 0000:07:00.0: 303:9: disabled by eeprom
[    1.563540] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[    1.563544] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[    1.563546] thunderbolt 0000:07:00.0:   Max counters: 1
[    1.563548] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.563550] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.564692] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[    1.564696] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[    1.564698] thunderbolt 0000:07:00.0:   Max counters: 2
[    1.564700] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[    1.564702] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[    1.564704] thunderbolt 0000:07:00.0: 303:c: disabled by eeprom
[    1.564706] thunderbolt 0000:07:00.0: 303:d: disabled by eeprom
[    1.582632] thunderbolt 0000:07:00.0: 303: TMU: current mode: bi-directional, HiFi
[    1.582652] thunderbolt 0-303: new device found, vendor=0x1 device=0x8002
[    1.582659] thunderbolt 0-303: Apple, Inc. Thunderbolt Display
[    1.582757] thunderbolt 0000:07:00.0: 303:1: is unplugged (state: 7)
[    1.583015] thunderbolt 0000:07:00.0: 303:b: DP adapter HPD set, queuing hotplug
[    1.583271] thunderbolt 0000:07:00.0: 3:b: DP adapter HPD set, queuing hotplug
[    1.583783] thunderbolt 0000:07:00.0: discovering PCIe Up path starting from 0:7
[    1.583912] thunderbolt 0000:07:00.0: 0:7:  In HopID: 8 => Out port: 3 Out HopID: 8
[    1.583916] thunderbolt 0000:07:00.0: 0:7:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.583919] thunderbolt 0000:07:00.0: 0:7:    Counter enabled: 1 Counter index: 0
[    1.583922] thunderbolt 0000:07:00.0: 0:7:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.583925] thunderbolt 0000:07:00.0: 0:7:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.584040] thunderbolt 0000:07:00.0: 3:1:  In HopID: 8 => Out port: 10 Out HopID: 8
[    1.584043] thunderbolt 0000:07:00.0: 3:1:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.584046] thunderbolt 0000:07:00.0: 3:1:    Counter enabled: 1 Counter index: 0
[    1.584049] thunderbolt 0000:07:00.0: 3:1:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.584051] thunderbolt 0000:07:00.0: 3:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.584055] thunderbolt 0000:07:00.0: path discovery complete
[    1.584551] thunderbolt 0000:07:00.0: discovering PCIe Down path starting from 3:10
[    1.584679] thunderbolt 0000:07:00.0: 3:a:  In HopID: 8 => Out port: 1 Out HopID: 8
[    1.584683] thunderbolt 0000:07:00.0: 3:a:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.584686] thunderbolt 0000:07:00.0: 3:a:    Counter enabled: 1 Counter index: 0
[    1.584688] thunderbolt 0000:07:00.0: 3:a:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.584691] thunderbolt 0000:07:00.0: 3:a:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.584808] thunderbolt 0000:07:00.0: 0:3:  In HopID: 8 => Out port: 7 Out HopID: 8
[    1.584811] thunderbolt 0000:07:00.0: 0:3:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.584814] thunderbolt 0000:07:00.0: 0:3:    Counter enabled: 1 Counter index: 0
[    1.584816] thunderbolt 0000:07:00.0: 0:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.584819] thunderbolt 0000:07:00.0: 0:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.584822] thunderbolt 0000:07:00.0: path discovery complete
[    1.584936] thunderbolt 0000:07:00.0: 0:7 <-> 3:a (PCI): discovered
[    1.585959] thunderbolt 0000:07:00.0: discovering PCIe Up path starting from 3:7
[    1.586088] thunderbolt 0000:07:00.0: 3:7:  In HopID: 8 => Out port: 3 Out HopID: 8
[    1.586091] thunderbolt 0000:07:00.0: 3:7:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.586094] thunderbolt 0000:07:00.0: 3:7:    Counter enabled: 1 Counter index: 0
[    1.586096] thunderbolt 0000:07:00.0: 3:7:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.586099] thunderbolt 0000:07:00.0: 3:7:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.586215] thunderbolt 0000:07:00.0: 303:3:  In HopID: 8 => Out port: 10 Out HopID: 8
[    1.586219] thunderbolt 0000:07:00.0: 303:3:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.586222] thunderbolt 0000:07:00.0: 303:3:    Counter enabled: 1 Counter index: 0
[    1.586225] thunderbolt 0000:07:00.0: 303:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.586228] thunderbolt 0000:07:00.0: 303:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.586230] thunderbolt 0000:07:00.0: path discovery complete
[    1.586727] thunderbolt 0000:07:00.0: discovering PCIe Down path starting from 303:10
[    1.586855] thunderbolt 0000:07:00.0: 303:a:  In HopID: 8 => Out port: 3 Out HopID: 8
[    1.586858] thunderbolt 0000:07:00.0: 303:a:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.586861] thunderbolt 0000:07:00.0: 303:a:    Counter enabled: 1 Counter index: 0
[    1.586864] thunderbolt 0000:07:00.0: 303:a:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.586867] thunderbolt 0000:07:00.0: 303:a:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.586983] thunderbolt 0000:07:00.0: 3:3:  In HopID: 8 => Out port: 7 Out HopID: 8
[    1.586986] thunderbolt 0000:07:00.0: 3:3:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[    1.586989] thunderbolt 0000:07:00.0: 3:3:    Counter enabled: 1 Counter index: 0
[    1.586992] thunderbolt 0000:07:00.0: 3:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.586995] thunderbolt 0000:07:00.0: 3:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.586997] thunderbolt 0000:07:00.0: path discovery complete
[    1.587111] thunderbolt 0000:07:00.0: 3:7 <-> 303:a (PCI): discovered
[    1.587498] thunderbolt 0000:07:00.0: 0:c: DP IN resource available
[    1.587500] thunderbolt 0000:07:00.0: 0:d: DP IN resource available
[    1.587623] thunderbolt 0000:07:00.0: 303:b: DP OUT resource available
[    1.587627] thunderbolt 0000:07:00.0: looking for DP IN <-> DP OUT pairs:
[    1.587689] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer
[    1.587693] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[    1.587695] RAPL PMU: hw unit of domain package 2^-16 Joules
[    1.587697] RAPL PMU: hw unit of domain pp1-gpu 2^-16 Joules
[    1.587751] thunderbolt 0000:07:00.0: 0:c: DP IN available
[    1.587878] thunderbolt 0000:07:00.0: 303:b: DP OUT available
[    1.587881] thunderbolt 0000:07:00.0: 0: allocated DP resource for port 12
[    1.587883] thunderbolt 0000:07:00.0: 303:b: calculating available bandwidth
[    1.588006] thunderbolt 0000:07:00.0: 0:3: link total bandwidth 9000 Mb/s
[    1.588010] thunderbolt 0000:07:00.0: 3:1: link total bandwidth 9000 Mb/s
[    1.588132] Initialise system trusted keyrings
[    1.588134] thunderbolt 0000:07:00.0: 3:3: link total bandwidth 9000 Mb/s
[    1.588137] thunderbolt 0000:07:00.0: 303:3: link total bandwidth 9000 Mb/s
[    1.588139] thunderbolt 0000:07:00.0: available bandwidth for new DP tunnel 9000/9000 Mb/s
[    1.588144] thunderbolt 0000:07:00.0: 0:c <-> 303:b (DP): activating
[    1.588146] thunderbolt 0000:07:00.0: activating Video path from 0:12 to 303:11
[    1.588148] thunderbolt 0000:07:00.0: 303:4: adding 12 NFC credits to 0
[    1.588156] workingset: timestamp_bits=62 max_order=23 bucket_order=0
[    1.588260] thunderbolt 0000:07:00.0: 3:2: adding 12 NFC credits to 0
[    1.588388] thunderbolt 0000:07:00.0: 0:c: adding 5 NFC credits to 0
[    1.588644] thunderbolt 0000:07:00.0: 303:4: Writing hop 2
[    1.588645] thunderbolt 0000:07:00.0: 303:4:  In HopID: 8 => Out port: 11 Out HopID: 9
[    1.588647] thunderbolt 0000:07:00.0: 303:4:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.588648] thunderbolt 0000:07:00.0: 303:4:    Counter enabled: 0 Counter index: 2047
[    1.588650] thunderbolt 0000:07:00.0: 303:4:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.588651] thunderbolt 0000:07:00.0: 303:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.588860] Key type asymmetric registered
[    1.588864] Asymmetric key parser 'x509' registered
[    1.588875] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
[    1.588901] thunderbolt 0000:07:00.0: 3:2: Writing hop 1
[    1.588902] thunderbolt 0000:07:00.0: 3:2:  In HopID: 8 => Out port: 4 Out HopID: 8
[    1.588904] thunderbolt 0000:07:00.0: 3:2:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.588905] thunderbolt 0000:07:00.0: 3:2:    Counter enabled: 0 Counter index: 2047
[    1.588907] thunderbolt 0000:07:00.0: 3:2:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.588908] thunderbolt 0000:07:00.0: 3:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.589156] thunderbolt 0000:07:00.0: 0:c: Writing hop 0
[    1.589158] thunderbolt 0000:07:00.0: 0:c:  In HopID: 9 => Out port: 4 Out HopID: 8
[    1.589159] thunderbolt 0000:07:00.0: 0:c:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.589161] thunderbolt 0000:07:00.0: 0:c:    Counter enabled: 0 Counter index: 2047
[    1.589162] thunderbolt 0000:07:00.0: 0:c:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.589163] thunderbolt 0000:07:00.0: 0:c:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.589284] thunderbolt 0000:07:00.0: path activation complete
[    1.589285] thunderbolt 0000:07:00.0: activating AUX TX path from 0:12 to 303:11
[    1.589412] thunderbolt 0000:07:00.0: 303:4: Writing hop 2
[    1.589413] thunderbolt 0000:07:00.0: 303:4:  In HopID: 9 => Out port: 11 Out HopID: 8
[    1.589415] thunderbolt 0000:07:00.0: 303:4:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.589416] thunderbolt 0000:07:00.0: 303:4:    Counter enabled: 0 Counter index: 2047
[    1.589417] thunderbolt 0000:07:00.0: 303:4:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.589419] thunderbolt 0000:07:00.0: 303:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.589668] thunderbolt 0000:07:00.0: 3:2: Writing hop 1
[    1.589670] thunderbolt 0000:07:00.0: 3:2:  In HopID: 9 => Out port: 4 Out HopID: 9
[    1.589671] thunderbolt 0000:07:00.0: 3:2:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.589673] thunderbolt 0000:07:00.0: 3:2:    Counter enabled: 0 Counter index: 2047
[    1.589674] thunderbolt 0000:07:00.0: 3:2:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.589675] thunderbolt 0000:07:00.0: 3:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.589717] pcieport 0000:06:03.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.589910] pcieport 0000:06:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.589928] thunderbolt 0000:07:00.0: 0:c: Writing hop 0
[    1.589931] thunderbolt 0000:07:00.0: 0:c:  In HopID: 8 => Out port: 4 Out HopID: 9
[    1.589934] thunderbolt 0000:07:00.0: 0:c:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.589936] thunderbolt 0000:07:00.0: 0:c:    Counter enabled: 0 Counter index: 2047
[    1.589938] thunderbolt 0000:07:00.0: 0:c:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.589940] thunderbolt 0000:07:00.0: 0:c:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.590052] thunderbolt 0000:07:00.0: path activation complete
[    1.590054] thunderbolt 0000:07:00.0: activating AUX RX path from 303:11 to 0:12
[    1.590123] pcieport 0000:06:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.590182] thunderbolt 0000:07:00.0: 0:4: Writing hop 2
[    1.590184] thunderbolt 0000:07:00.0: 0:4:  In HopID: 8 => Out port: 12 Out HopID: 8
[    1.590185] thunderbolt 0000:07:00.0: 0:4:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.590187] thunderbolt 0000:07:00.0: 0:4:    Counter enabled: 0 Counter index: 2047
[    1.590188] thunderbolt 0000:07:00.0: 0:4:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.590189] thunderbolt 0000:07:00.0: 0:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.590336] pcieport 0000:06:06.0: pciehp: Slot #6 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.590437] thunderbolt 0000:07:00.0: 3:4: Writing hop 1
[    1.590439] thunderbolt 0000:07:00.0: 3:4:  In HopID: 8 => Out port: 2 Out HopID: 8
[    1.590440] thunderbolt 0000:07:00.0: 3:4:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.590441] thunderbolt 0000:07:00.0: 3:4:    Counter enabled: 0 Counter index: 2047
[    1.590443] thunderbolt 0000:07:00.0: 3:4:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.590444] thunderbolt 0000:07:00.0: 3:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.590693] thunderbolt 0000:07:00.0: 303:b: Writing hop 0
[    1.590694] thunderbolt 0000:07:00.0: 303:b:  In HopID: 8 => Out port: 4 Out HopID: 8
[    1.590695] thunderbolt 0000:07:00.0: 303:b:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.590697] thunderbolt 0000:07:00.0: 303:b:    Counter enabled: 0 Counter index: 2047
[    1.590698] thunderbolt 0000:07:00.0: 303:b:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.590699] thunderbolt 0000:07:00.0: 303:b:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.590822] thunderbolt 0000:07:00.0: path activation complete
[    1.591618] pcieport 0000:19:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.591826] pcieport 0000:19:05.0: enabling device (0000 -> 0001)
[    1.591845] thunderbolt 0000:07:00.0: Used link no : 1
[    1.591921] pcieport 0000:19:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.591974] thunderbolt 0000:07:00.0: 3:b: DP OUT resource available
[    1.591976] thunderbolt 0000:07:00.0: looking for DP IN <-> DP OUT pairs:
[    1.592101] thunderbolt 0000:07:00.0: 0:c: in use
[    1.592228] thunderbolt 0000:07:00.0: 0:d: DP IN available
[    1.592356] thunderbolt 0000:07:00.0: 303:b: in use
[    1.592484] thunderbolt 0000:07:00.0: 3:b: DP OUT available
[    1.592486] thunderbolt 0000:07:00.0: 0: allocated DP resource for port 13
[    1.592487] thunderbolt 0000:07:00.0: 3:b: calculating available bandwidth
[    1.592612] thunderbolt 0000:07:00.0: 0:3: link total bandwidth 9000 Mb/s
[    1.592614] thunderbolt 0000:07:00.0: 3:1: link total bandwidth 9000 Mb/s
[    1.592615] thunderbolt 0000:07:00.0: available bandwidth for new DP tunnel 9000/9000 Mb/s
[    1.592619] thunderbolt 0000:07:00.0: 0:d <-> 3:b (DP): activating
[    1.592621] thunderbolt 0000:07:00.0: activating Video path from 0:13 to 3:11
[    1.592622] thunderbolt 0000:07:00.0: 3:1: adding 12 NFC credits to 0
[    1.592740] thunderbolt 0000:07:00.0: 0:d: adding 5 NFC credits to 0
[    1.592996] thunderbolt 0000:07:00.0: 3:1: Writing hop 1
[    1.592998] thunderbolt 0000:07:00.0: 3:1:  In HopID: 9 => Out port: 11 Out HopID: 9
[    1.592999] thunderbolt 0000:07:00.0: 3:1:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.593000] thunderbolt 0000:07:00.0: 3:1:    Counter enabled: 0 Counter index: 2047
[    1.593002] thunderbolt 0000:07:00.0: 3:1:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.593003] thunderbolt 0000:07:00.0: 3:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.593253] thunderbolt 0000:07:00.0: 0:d: Writing hop 0
[    1.593254] thunderbolt 0000:07:00.0: 0:d:  In HopID: 9 => Out port: 3 Out HopID: 9
[    1.593255] thunderbolt 0000:07:00.0: 0:d:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    1.593257] thunderbolt 0000:07:00.0: 0:d:    Counter enabled: 0 Counter index: 2047
[    1.593258] thunderbolt 0000:07:00.0: 0:d:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    1.593259] thunderbolt 0000:07:00.0: 0:d:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.593380] thunderbolt 0000:07:00.0: path activation complete
[    1.593381] thunderbolt 0000:07:00.0: activating AUX TX path from 0:13 to 3:11
[    1.593509] thunderbolt 0000:07:00.0: 3:1: Writing hop 1
[    1.593510] thunderbolt 0000:07:00.0: 3:1:  In HopID: 10 => Out port: 11 Out HopID: 8
[    1.593512] thunderbolt 0000:07:00.0: 3:1:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.593513] thunderbolt 0000:07:00.0: 3:1:    Counter enabled: 0 Counter index: 2047
[    1.593514] thunderbolt 0000:07:00.0: 3:1:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.593515] thunderbolt 0000:07:00.0: 3:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.593764] thunderbolt 0000:07:00.0: 0:d: Writing hop 0
[    1.593766] thunderbolt 0000:07:00.0: 0:d:  In HopID: 8 => Out port: 3 Out HopID: 10
[    1.593767] thunderbolt 0000:07:00.0: 0:d:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.593768] thunderbolt 0000:07:00.0: 0:d:    Counter enabled: 0 Counter index: 2047
[    1.593770] thunderbolt 0000:07:00.0: 0:d:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.593771] thunderbolt 0000:07:00.0: 0:d:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.593825] pcieport 0000:20:04.0: enabling device (0000 -> 0003)
[    1.593893] thunderbolt 0000:07:00.0: path activation complete
[    1.593894] thunderbolt 0000:07:00.0: activating AUX RX path from 3:11 to 0:13
[    1.593948] pcieport 0000:20:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.594021] thunderbolt 0000:07:00.0: 0:3: Writing hop 1
[    1.594023] thunderbolt 0000:07:00.0: 0:3:  In HopID: 9 => Out port: 13 Out HopID: 8
[    1.594024] thunderbolt 0000:07:00.0: 0:3:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.594025] thunderbolt 0000:07:00.0: 0:3:    Counter enabled: 0 Counter index: 2047
[    1.594027] thunderbolt 0000:07:00.0: 0:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    1.594028] thunderbolt 0000:07:00.0: 0:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.594240] pcieport 0000:20:05.0: enabling device (0000 -> 0001)
[    1.594277] thunderbolt 0000:07:00.0: 3:b: Writing hop 0
[    1.594278] thunderbolt 0000:07:00.0: 3:b:  In HopID: 8 => Out port: 1 Out HopID: 9
[    1.594279] thunderbolt 0000:07:00.0: 3:b:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    1.594281] thunderbolt 0000:07:00.0: 3:b:    Counter enabled: 0 Counter index: 2047
[    1.594282] thunderbolt 0000:07:00.0: 3:b:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    1.594283] thunderbolt 0000:07:00.0: 3:b:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    1.594361] pcieport 0000:20:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    1.594406] thunderbolt 0000:07:00.0: path activation complete
[    1.595441] thunderbolt 0000:07:00.0: Used link no : 0
[    1.603740] brd: module loaded
[    1.603992] Intel(R) 2.5G Ethernet Linux Driver
[    1.603997] Copyright(c) 2018 Intel Corporation.
[    1.604054] i8042: PNP: No PS/2 controller found.
[    1.604086] mousedev: PS/2 mouse device common for all mice
[    1.604148] intel_pstate: Intel P-state driver initializing
[    1.604271] efifb: probing for efifb
[    1.604286] efifb: framebuffer at 0x90010000, using 14400k, total 14400k
[    1.604289] efifb: mode is 2560x1440x32, linelength=10240, pages=1
[    1.604291] efifb: scrolling: redraw
[    1.604292] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    1.613918] Console: switching to colour frame buffer device 320x90
[    1.623080] fb0: EFI VGA frame buffer device
[    1.623165] Key type dns_resolver registered
[    1.623218] microcode: sig=0x206a7, pf=0x2, revision=0x2f
[    1.623270] microcode: Microcode Update Driver: v2.2.
[    1.623273] IPI shorthand broadcast: enabled
[    1.623316] sched_clock: Marking stable (1622827346, 439879)->(1634544671, -11277446)
[    1.623388] registered taskstats version 1
[    1.623412] Loading compiled-in X.509 certificates
[    1.624537] Freeing unused kernel image (initmem) memory: 956K
[    1.673548] Write protecting the kernel read-only data: 12288k
[    1.674047] Freeing unused kernel image (text/rodata gap) memory: 2044K
[    1.674178] Freeing unused kernel image (rodata/data gap) memory: 204K
[    1.674209] Run /init as init process
[    1.674224]   with arguments:
[    1.674225]     /init
[    1.674226]   with environment:
[    1.674226]     HOME=/
[    1.674227]     TERM=linux
[    1.674228]     netconsole=6666@192.168.2.87/eth0,6666@192.168.2.208/dc:a6:32:61:33:da
[    1.718798] udevd[874]: starting version 3.2.9
[    1.719502] udevd[875]: starting eudev-3.2.9
[    1.733762] ACPI: bus type USB registered
[    1.733818] usbcore: registered new interface driver usbfs
[    1.733909] usbcore: registered new interface driver hub
[    1.733960] usbcore: registered new device driver usb
[    1.735822] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.735861] ACPI: bus type drm_connector registered
[    1.736160] ehci-pci: EHCI PCI platform driver
[    1.736350] ehci-pci 0000:00:1a.7: EHCI Host Controller
[    1.736386] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 1
[    1.736436] ehci-pci 0000:00:1a.7: debug port 2
[    1.736524] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.737163] uhci_hcd: USB Universal Host Controller Interface driver
[    1.739643] cryptd: max_cpu_qlen set to 1000
[    1.740130] ahci 0000:00:1f.2: version 3.0
[    1.740379] ehci-pci 0000:00:1a.7: irq 23, io mem 0xa8906c00
[    1.741137] AVX version of gcm_enc/dec engaged.
[    1.741182] AES CTR mode by8 optimization enabled
[    1.747717] radeon: unknown parameter 'pm' ignored
[    1.747824] [drm] radeon kernel modesetting enabled.
[    1.747873] checking generic (90010000 e10000) vs hw (90000000 10000000)
[    1.747874] fb0: switching to radeon from EFI VGA
[    1.747956] Console: switching to colour dummy device 80x25
[    1.748019] radeon 0000:01:00.0: vgaarb: deactivate vga console
[    1.748171] [drm] initializing kernel modesetting (BARTS 0x1002:0x6720 0x106B:0x0B00 0x00).
[    1.750684] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x7 impl SATA mode
[    1.750694] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst
[    1.763453] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[    1.763778] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
[    1.763784] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.763787] usb usb1: Product: EHCI Host Controller
[    1.763789] usb usb1: Manufacturer: Linux 5.17.1bkc1+ ehci_hcd
[    1.763792] usb usb1: SerialNumber: 0000:00:1a.7
[    1.763969] hub 1-0:1.0: USB hub found
[    1.763981] hub 1-0:1.0: 6 ports detected
[    1.764174] tg3 0000:02:00.0 eth0: Tigon3 [partno(BCM957765) rev 57785100] (PCI Express) MAC address 3c:07:54:14:b2:08
[    1.764184] tg3 0000:02:00.0 eth0: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    1.764192] tg3 0000:02:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    1.764198] tg3 0000:02:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[    1.764372] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[    1.764385] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 2
[    1.764430] uhci_hcd 0000:00:1a.0: detected 2 ports
[    1.764604] uhci_hcd 0000:00:1a.0: irq 21, io port 0x00003140
[    1.764761] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17
[    1.764769] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.764775] usb usb2: Product: UHCI Host Controller
[    1.764779] usb usb2: Manufacturer: Linux 5.17.1bkc1+ uhci_hcd
[    1.764783] usb usb2: SerialNumber: 0000:00:1a.0
[    1.764880] hub 2-0:1.0: USB hub found
[    1.764892] hub 2-0:1.0: 2 ports detected
[    1.765269] ehci-pci 0000:00:1d.7: EHCI Host Controller
[    1.765302] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 3
[    1.765489] ehci-pci 0000:00:1d.7: debug port 2
[    1.769560] ehci-pci 0000:00:1d.7: irq 22, io mem 0xa8906800
[    1.793404] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    1.793473] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
[    1.793477] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.793480] usb usb3: Product: EHCI Host Controller
[    1.793482] usb usb3: Manufacturer: Linux 5.17.1bkc1+ ehci_hcd
[    1.793484] usb usb3: SerialNumber: 0000:00:1d.7
[    1.793605] hub 3-0:1.0: USB hub found
[    1.793680] hub 3-0:1.0: 8 ports detected
[    1.794017] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    1.794025] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
[    1.794070] uhci_hcd 0000:00:1d.0: detected 2 ports
[    1.794210] uhci_hcd 0000:00:1d.0: irq 19, io port 0x000030e0
[    1.794331] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17
[    1.794336] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.794339] usb usb4: Product: UHCI Host Controller
[    1.794341] usb usb4: Manufacturer: Linux 5.17.1bkc1+ uhci_hcd
[    1.794343] usb usb4: SerialNumber: 0000:00:1d.0
[    1.794434] hub 4-0:1.0: USB hub found
[    1.794499] hub 4-0:1.0: 2 ports detected
[    1.794769] ehci-pci 0000:1c:00.2: EHCI Host Controller
[    1.794779] ehci-pci 0000:1c:00.2: new USB bus registered, assigned bus number 5
[    1.795103] ehci-pci 0000:1c:00.2: irq 17, io mem 0xb0b02000
[    1.803709] firewire_ohci 0000:04:00.0: added OHCI v1.10 device as card 0, 8 IR + 8 IT contexts, quirks 0x0, physUB
[    1.813900] scsi host0: ahci
[    1.814329] scsi host1: ahci
[    1.815268] scsi host2: ahci
[    1.816148] scsi host3: ahci
[    1.816999] scsi host4: ahci
[    1.817838] scsi host5: ahci
[    1.818277] ata1: SATA max UDMA/133 abar m2048@0xa8906000 port 0xa8906100 irq 52
[    1.818347] ata2: SATA max UDMA/133 abar m2048@0xa8906000 port 0xa8906180 irq 52
[    1.818379] ata3: SATA max UDMA/133 abar m2048@0xa8906000 port 0xa8906200 irq 52
[    1.818408] ata4: DUMMY
[    1.818420] ata5: DUMMY
[    1.818447] ata6: DUMMY
[    1.833398] ehci-pci 0000:1c:00.2: USB 2.0 started, EHCI 1.00
[    1.833719] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
[    1.833725] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.833728] usb usb5: Product: EHCI Host Controller
[    1.833730] usb usb5: Manufacturer: Linux 5.17.1bkc1+ ehci_hcd
[    1.833732] usb usb5: SerialNumber: 0000:1c:00.2
[    1.833909] hub 5-0:1.0: USB hub found
[    1.833948] hub 5-0:1.0: 4 ports detected
[    1.834595] ehci-pci 0000:23:00.2: EHCI Host Controller
[    1.834601] ehci-pci 0000:23:00.2: new USB bus registered, assigned bus number 6
[    1.834977] ehci-pci 0000:23:00.2: irq 17, io mem 0xb0f02000
[    1.856608] tg3 0000:1d:00.0 eth1: Tigon3 [partno(BCM957761) rev 57785100] (PCI Express) MAC address c8:2a:14:4f:80:3e
[    1.856620] tg3 0000:1d:00.0 eth1: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    1.856626] tg3 0000:1d:00.0 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    1.856632] tg3 0000:1d:00.0 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[    1.863391] ehci-pci 0000:23:00.2: USB 2.0 started, EHCI 1.00
[    1.863747] usb usb6: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
[    1.863753] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.863756] usb usb6: Product: EHCI Host Controller
[    1.863758] usb usb6: Manufacturer: Linux 5.17.1bkc1+ ehci_hcd
[    1.863760] usb usb6: SerialNumber: 0000:23:00.2
[    1.863858] hub 6-0:1.0: USB hub found
[    1.863891] hub 6-0:1.0: 4 ports detected
[    1.873647] firewire_ohci 0000:1e:00.0: added OHCI v1.10 device as card 1, 8 IR + 8 IT contexts, quirks 0x0, physUB
[    1.937666] tg3 0000:24:00.0 eth2: Tigon3 [partno(BCM957761) rev 57785100] (PCI Express) MAC address 38:c9:86:48:0c:c8
[    1.937672] tg3 0000:24:00.0 eth2: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    1.937676] tg3 0000:24:00.0 eth2: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    1.937679] tg3 0000:24:00.0 eth2: dma_rwctrl[00000001] dma_mask[64-bit]
[    1.953613] firewire_ohci 0000:25:00.0: added OHCI v1.10 device as card 2, 8 IR + 8 IT contexts, quirks 0x0, physUB
[    2.073580] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    2.079213] ATOM BIOS: Apple
[    2.079378] radeon 0000:01:00.0: VRAM: 1024M 0x0000000000000000 - 0x000000003FFFFFFF (1024M used)
[    2.079383] radeon 0000:01:00.0: GTT: 1024M 0x0000000040000000 - 0x000000007FFFFFFF
[    2.079389] [drm] Detected VRAM RAM=1024M, BAR=256M
[    2.079391] [drm] RAM width 256bits DDR
[    2.079405] [drm] radeon: 1024M of VRAM memory ready
[    2.079407] [drm] radeon: 1024M of GTT memory ready.
[    2.079411] [drm] Loading BARTS Microcode
[    2.079463] [drm] External GPIO thermal controller with fan control
[    2.079476] == power state 0 ==
[    2.079478] 	ui class: none
[    2.079479] 	internal class: boot
[    2.079482] 	caps:
[    2.079483] 	uvd    vclk: 0 dclk: 0
[    2.079485] 		power level 0    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    2.079487] 		power level 1    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    2.079489] 		power level 2    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    2.079491] 	status: c r b
[    2.079493] == power state 1 ==
[    2.079495] 	ui class: performance
[    2.079496] 	internal class: none
[    2.079498] 	caps:
[    2.079499] 	uvd    vclk: 0 dclk: 0
[    2.079500] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    2.079502] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    2.079504] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    2.079506] 	status:
[    2.079507] == power state 2 ==
[    2.079509] 	ui class: none
[    2.079510] 	internal class: uvd
[    2.079511] 	caps: video
[    2.079513] 	uvd    vclk: 54000 dclk: 40000
[    2.079514] 		power level 0    sclk: 29800 mclk: 90000 vddc: 950 vddci: 1100
[    2.079516] 		power level 1    sclk: 29800 mclk: 90000 vddc: 950 vddci: 1100
[    2.079518] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    2.079520] 	status:
[    2.079521] == power state 3 ==
[    2.079523] 	ui class: none
[    2.079524] 	internal class: uvd_mvc
[    2.079525] 	caps: video
[    2.079527] 	uvd    vclk: 70000 dclk: 56000
[    2.079528] 		power level 0    sclk: 50200 mclk: 90000 vddc: 1050 vddci: 1100
[    2.079530] 		power level 1    sclk: 50200 mclk: 90000 vddc: 1050 vddci: 1100
[    2.079532] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    2.079534] 	status:
[    2.079535] == power state 4 ==
[    2.079536] 	ui class: battery
[    2.079537] 	internal class: none
[    2.079539] 	caps:
[    2.079540] 	uvd    vclk: 0 dclk: 0
[    2.079541] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    2.079543] 		power level 1    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    2.079545] 		power level 2    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    2.079547] 	status:
[    2.084407] [drm] radeon: dpm initialized
[    2.084462] [drm] GART: num cpu pages 262144, num gpu pages 262144
[    2.084820] [drm] enabling PCIE gen 2 link speeds, disable with radeon.pcie_gen2=0
[    2.088483] [drm] PCIE GART of 1024M enabled (table at 0x0000000000162000).
[    2.088583] radeon 0000:01:00.0: WB enabled
[    2.088586] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000040000c00
[    2.088589] radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000040000c0c
[    2.089360] radeon 0000:01:00.0: fence driver on ring 5 use gpu addr 0x0000000000072118
[    2.089901] radeon 0000:01:00.0: radeon: MSI limited to 32-bit
[    2.089938] radeon 0000:01:00.0: radeon: using MSI.
[    2.089967] [drm] radeon: irq initialized.
[    2.103377] usb 3-1: new high-speed USB device number 2 using ehci-pci
[    2.106310] [drm] ring test on 0 succeeded in 3 usecs
[    2.106322] [drm] ring test on 3 succeeded in 7 usecs
[    2.143371] usb 5-1: new high-speed USB device number 2 using ehci-pci
[    2.144719] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    2.144740] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    2.146252] ata1.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    2.146312] ata1.00: supports DRM functions and may not be fully accessible
[    2.146317] ata1.00: ATA-9: Samsung SSD 850 PRO 256GB, EXM03B6Q, max UDMA/133
[    2.146562] ata3.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    2.146568] ata3.00: ATAPI: OPTIARC DVD RW AD-5690H, 4AH5, max UDMA/100
[    2.146888] ata1.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 32), AA
[    2.148619] ata3.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    2.148627] ata3.00: configured for UDMA/100
[    2.148949] ata1.00: Features: Trust Dev-Sleep NCQ-sndrcv
[    2.149235] ata1.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    2.149307] ata1.00: supports DRM functions and may not be fully accessible
[    2.152215] ata1.00: configured for UDMA/133
[    2.152396] scsi 0:0:0:0: Direct-Access     ATA      Samsung SSD 850  3B6Q PQ: 0 ANSI: 5
[    2.154666] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    2.156248] ata2.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    2.156305] ata2.00: supports DRM functions and may not be fully accessible
[    2.156310] ata2.00: ATA-9: Samsung SSD 850 EVO 500GB, EMT02B6Q, max UDMA/133
[    2.156921] ata2.00: 976773168 sectors, multi 1: LBA48 NCQ (depth 32), AA
[    2.158898] ata2.00: Features: Trust Dev-Sleep NCQ-sndrcv
[    2.159197] ata2.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
[    2.159251] ata2.00: supports DRM functions and may not be fully accessible
[    2.162083] ata2.00: configured for UDMA/133
[    2.162208] scsi 1:0:0:0: Direct-Access     ATA      Samsung SSD 850  2B6Q PQ: 0 ANSI: 5
[    2.163362] usb 6-1: new high-speed USB device number 2 using ehci-pci
[    2.273807] usb 1-1: New USB device found, idVendor=0424, idProduct=2514, bcdDevice= 0.03
[    2.273813] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.274077] hub 1-1:1.0: USB hub found
[    2.274145] hub 1-1:1.0: 3 ports detected
[    2.283436] [drm] ring test on 5 succeeded in 2 usecs
[    2.283454] [drm] UVD initialized successfully.
[    2.283579] [drm] ib test on ring 0 succeeded in 0 usecs
[    2.283683] [drm] ib test on ring 3 succeeded in 0 usecs
[    2.284263] scsi 2:0:0:0: CD-ROM            OPTIARC  DVD RW AD-5690H  4AH5 PQ: 0 ANSI: 5
[    2.303794] usb 3-1: New USB device found, idVendor=0424, idProduct=2514, bcdDevice= 0.03
[    2.303800] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.304076] hub 3-1:1.0: USB hub found
[    2.304120] hub 3-1:1.0: 4 ports detected
[    2.313439] firewire_core 0000:04:00.0: created device fw0: GUID a4b197fffe3f2da2, S800
[    2.313459] firewire_core 0000:04:00.0: phy config: new root=ffc0, gap_count=63
[    2.344085] usb 5-1: New USB device found, idVendor=05ac, idProduct=9127, bcdDevice= 1.00
[    2.344091] usb 5-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.344476] hub 5-1:1.0: USB hub found
[    2.344691] hub 5-1:1.0: 7 ports detected
[    2.364311] usb 6-1: New USB device found, idVendor=05ac, idProduct=9127, bcdDevice= 1.00
[    2.364317] usb 6-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.364721] hub 6-1:1.0: USB hub found
[    2.364934] hub 6-1:1.0: 7 ports detected
[    2.433364] usb 1-2: new high-speed USB device number 3 using ehci-pci
[    2.463467] firewire_core 0000:25:00.0: created device fw1: GUID 000a2702006cfdfb, S800
[    2.463484] firewire_core 0000:25:00.0: phy config: new root=ffc0, gap_count=63
[    2.524970] ohci-pci: OHCI PCI platform driver
[    2.525076] ohci-pci 0000:1c:00.0: OHCI PCI host controller
[    2.525087] ohci-pci 0000:1c:00.0: new USB bus registered, assigned bus number 7
[    2.525117] ohci-pci 0000:1c:00.0: irq 19, io mem 0xb0b00000
[    2.527336] sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[    2.527352] sd 0:0:0:0: [sda] Write Protect is off
[    2.527358] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.527377] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.527378] sd 1:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[    2.527397] sd 1:0:0:0: [sdb] Write Protect is off
[    2.527403] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    2.527426] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.529810] sd 1:0:0:0: [sdb] supports TCG Opal
[    2.529814] sd 1:0:0:0: [sdb] Attached SCSI disk
[    2.529826]  sda: sda1 sda2 sda3 sda4 sda5 sda6
[    2.530680] sd 0:0:0:0: [sda] supports TCG Opal
[    2.530684] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.531202] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    2.531287] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    2.531353] sr 2:0:0:0: Attached scsi generic sg2 type 5
[    2.583580] firewire_core 0000:1e:00.0: created device fw2: GUID 000a27020040c4ba, S800
[    2.583611] firewire_core 0000:1e:00.0: phy config: new root=ffc0, gap_count=63
[    2.597512] usb usb7: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17
[    2.597518] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.597521] usb usb7: Product: OHCI PCI host controller
[    2.597523] usb usb7: Manufacturer: Linux 5.17.1bkc1+ ohci_hcd
[    2.597525] usb usb7: SerialNumber: 0000:1c:00.0
[    2.597653] hub 7-0:1.0: USB hub found
[    2.597668] hub 7-0:1.0: 2 ports detected
[    2.597854] ohci-pci 0000:1c:00.1: OHCI PCI host controller
[    2.597860] ohci-pci 0000:1c:00.1: new USB bus registered, assigned bus number 8
[    2.597887] ohci-pci 0000:1c:00.1: irq 16, io mem 0xb0b01000
[    2.605504] sr 2:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda caddy
[    2.605510] cdrom: Uniform CD-ROM driver Revision: 3.20
[    2.623397] usb 3-1.1: new high-speed USB device number 3 using ehci-pci
[    2.633393] tsc: Refined TSC clocksource calibration: 3400.023 MHz
[    2.633409] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x31026473058, max_idle_ns: 440795314252 ns
[    2.633518] clocksource: Switched to clocksource tsc
[    2.647443] usb 1-2: New USB device found, idVendor=05ac, idProduct=850b, bcdDevice= 7.55
[    2.647449] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.647451] usb 1-2: Product: FaceTime HD Camera (Built-in)
[    2.647453] usb 1-2: Manufacturer: Apple Inc.
[    2.647455] usb 1-2: SerialNumber: CCGB8K062WDDJRLX
[    2.663384] usb 5-1.4: new full-speed USB device number 3 using ehci-pci
[    2.677469] usb usb8: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17
[    2.677475] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.677478] usb usb8: Product: OHCI PCI host controller
[    2.677480] usb usb8: Manufacturer: Linux 5.17.1bkc1+ ohci_hcd
[    2.677482] usb usb8: SerialNumber: 0000:1c:00.1
[    2.677604] hub 8-0:1.0: USB hub found
[    2.677620] hub 8-0:1.0: 2 ports detected
[    2.677813] ohci-pci 0000:23:00.0: OHCI PCI host controller
[    2.677818] ohci-pci 0000:23:00.0: new USB bus registered, assigned bus number 9
[    2.677844] ohci-pci 0000:23:00.0: irq 19, io mem 0xb0f00000
[    2.683394] usb 6-1.4: new full-speed USB device number 3 using ehci-pci
[    2.724493] sr 2:0:0:0: Attached scsi CD-ROM sr0
[    2.733395] usb 1-1.1: new full-speed USB device number 4 using ehci-pci
[    2.747523] usb usb9: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17
[    2.747528] usb usb9: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.747531] usb usb9: Product: OHCI PCI host controller
[    2.747533] usb usb9: Manufacturer: Linux 5.17.1bkc1+ ohci_hcd
[    2.747535] usb usb9: SerialNumber: 0000:23:00.0
[    2.747660] hub 9-0:1.0: USB hub found
[    2.747678] hub 9-0:1.0: 2 ports detected
[    2.747872] ohci-pci 0000:23:00.1: OHCI PCI host controller
[    2.747878] ohci-pci 0000:23:00.1: new USB bus registered, assigned bus number 10
[    2.747903] ohci-pci 0000:23:00.1: irq 16, io mem 0xb0f01000
[    2.779184] usb 3-1.1: New USB device found, idVendor=05ac, idProduct=8403, bcdDevice=98.33
[    2.779189] usb 3-1.1: New USB device strings: Mfr=3, Product=4, SerialNumber=2
[    2.779192] usb 3-1.1: Product: Card Reader
[    2.779194] usb 3-1.1: Manufacturer: Apple
[    2.779196] usb 3-1.1: SerialNumber: 000000009833
[    2.817537] usb usb10: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17
[    2.817543] usb usb10: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.817546] usb usb10: Product: OHCI PCI host controller
[    2.817548] usb usb10: Manufacturer: Linux 5.17.1bkc1+ ohci_hcd
[    2.817550] usb usb10: SerialNumber: 0000:23:00.1
[    2.817672] hub 10-0:1.0: USB hub found
[    2.817691] hub 10-0:1.0: 2 ports detected
[    2.822973] usb 5-1.4: New USB device found, idVendor=05ac, idProduct=1107, bcdDevice= 2.09
[    2.822979] usb 5-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.822982] usb 5-1.4: Product: Display Audio
[    2.822984] usb 5-1.4: Manufacturer: Apple Inc.
[    2.822986] usb 5-1.4: SerialNumber: 152303D9
[    2.824712] hid: raw HID events driver (C) Jiri Kosina
[    2.836474] usbcore: registered new interface driver usbhid
[    2.836478] usbhid: USB HID core driver
[    2.837084] input: Apple Inc. Display Audio as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:04.0/0000:18:00.0/0000:19:00.0/0000:1a:00.0/0000:1b:03.0/0000:1c:00.2/usb5/5-1/5-1.4/5-1.4:1.3/0003:05AC:1107.0001/input/input0
[    2.837110] hid-generic 0003:05AC:1107.0001: input,hidraw0: USB HID v1.11 Device [Apple Inc. Display Audio] on usb-0000:1c:00.2-1.4/input3
[    2.843091] usb 6-1.4: New USB device found, idVendor=05ac, idProduct=1107, bcdDevice= 2.09
[    2.843097] usb 6-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.843100] usb 6-1.4: Product: Display Audio
[    2.843102] usb 6-1.4: Manufacturer: Apple Inc.
[    2.843104] usb 6-1.4: SerialNumber: 1A0E0738
[    2.854944] input: Apple Inc. Display Audio as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:04.0/0000:18:00.0/0000:19:04.0/0000:1f:00.0/0000:20:00.0/0000:21:00.0/0000:22:03.0/0000:23:00.2/usb6/6-1/6-1.4/6-1.4:1.3/0003:05AC:1107.0002/input/input1
[    2.854982] hid-generic 0003:05AC:1107.0002: input,hidraw1: USB HID v1.11 Device [Apple Inc. Display Audio] on usb-0000:23:00.2-1.4/input3
[    2.873398] usb 3-1.2: new low-speed USB device number 4 using ehci-pci
[    2.895818] usb 1-1.1: New USB device found, idVendor=0a5c, idProduct=4500, bcdDevice= 1.00
[    2.895832] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.895838] usb 1-1.1: Product: BRCM2046 Hub
[    2.895843] usb 1-1.1: Manufacturer: Apple Inc.
[    2.896114] hub 1-1.1:1.0: USB hub found
[    2.896301] hub 1-1.1:1.0: 3 ports detected
[    2.923395] usb 5-1.5: new high-speed USB device number 4 using ehci-pci
[    2.943439] [drm] ib test on ring 5 succeeded
[    2.953407] usb 6-1.5: new high-speed USB device number 4 using ehci-pci
[    2.993395] usb 1-1.2: new high-speed USB device number 5 using ehci-pci
[    3.013402] [drm] radeon atom DIG backlight initialized
[    3.013413] [drm] Radeon Display Connectors
[    3.013417] [drm] Connector 0:
[    3.013420] [drm]   eDP-1
[    3.013424] [drm]   HPD3
[    3.013426] [drm]   DDC: 0x6450 0x6450 0x6454 0x6454 0x6458 0x6458 0x645c 0x645c
[    3.013433] [drm]   Encoders:
[    3.013436] [drm]     LCD1: INTERNAL_UNIPHY2
[    3.013439] [drm] Connector 1:
[    3.013442] [drm]   DP-1
[    3.013445] [drm]   HPD1
[    3.013447] [drm]   DDC: 0x6430 0x6430 0x6434 0x6434 0x6438 0x6438 0x643c 0x643c
[    3.013453] [drm]   Encoders:
[    3.013456] [drm]     DFP1: INTERNAL_UNIPHY1
[    3.013459] [drm] Connector 2:
[    3.013462] [drm]   DP-2
[    3.013464] [drm]   HPD2
[    3.013467] [drm]   DDC: 0x6440 0x6440 0x6444 0x6444 0x6448 0x6448 0x644c 0x644c
[    3.013473] [drm]   Encoders:
[    3.013475] [drm]     DFP2: INTERNAL_UNIPHY1
[    3.013478] [drm] Connector 3:
[    3.013481] [drm]   DP-3
[    3.013483] [drm]   HPD4
[    3.013493] [drm]   DDC: 0x6460 0x6460 0x6464 0x6464 0x6468 0x6468 0x646c 0x646c
[    3.013495] [drm]   Encoders:
[    3.013496] [drm]     DFP3: INTERNAL_UNIPHY2
[    3.013498] [drm] Connector 4:
[    3.013499] [drm]   DP-4
[    3.013500] [drm]   HPD5
[    3.013501] [drm]   DDC: 0x6470 0x6470 0x6474 0x6474 0x6478 0x6478 0x647c 0x647c
[    3.013503] [drm]   Encoders:
[    3.013505] [drm]     DFP4: INTERNAL_UNIPHY
[    3.013506] [drm] Connector 5:
[    3.013507] [drm]   VGA-1
[    3.013508] [drm]   DDC: 0x64d8 0x64d8 0x64dc 0x64dc 0x64e0 0x64e0 0x64e4 0x64e4
[    3.013510] [drm]   Encoders:
[    3.013512] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[    3.030183] usb 3-1.2: New USB device found, idVendor=05ac, idProduct=8242, bcdDevice= 0.16
[    3.030189] usb 3-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.030192] usb 3-1.2: Product: IR Receiver
[    3.030194] usb 3-1.2: Manufacturer: Apple Computer, Inc.
[    3.043784] switching from power state:
[    3.043788] 	ui class: none
[    3.043790] 	internal class: boot
[    3.043792] 	caps:
[    3.043793] 	uvd    vclk: 0 dclk: 0
[    3.043795] 		power level 0    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    3.043797] 		power level 1    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    3.043799] 		power level 2    sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[    3.043801] 	status: c b
[    3.043803] switching to power state:
[    3.043804] 	ui class: performance
[    3.043806] 	internal class: none
[    3.043807] 	caps:
[    3.043808] 	uvd    vclk: 0 dclk: 0
[    3.043810] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    3.043812] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    3.043814] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    3.043816] 	status: r
[    3.090659] usb 5-1.5: New USB device found, idVendor=05ac, idProduct=1112, bcdDevice=71.60
[    3.090665] usb 5-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.090668] usb 5-1.5: Product: FaceTime HD Camera (Display)
[    3.090670] usb 5-1.5: Manufacturer: Apple Inc.
[    3.090672] usb 5-1.5: SerialNumber: CCGB690CKUDJ9DFX
[    3.120778] usb 6-1.5: New USB device found, idVendor=05ac, idProduct=1112, bcdDevice=71.60
[    3.120785] usb 6-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.120788] usb 6-1.5: Product: FaceTime HD Camera (Display)
[    3.120790] usb 6-1.5: Manufacturer: Apple Inc.
[    3.120792] usb 6-1.5: SerialNumber: CC2G3101FFDJ9FLP
[    3.153394] usb 3-1.4: new low-speed USB device number 5 using ehci-pci
[    3.161894] usb 1-1.2: New USB device found, idVendor=05ac, idProduct=1006, bcdDevice=96.15
[    3.161899] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.161903] usb 1-1.2: Product: Keyboard Hub
[    3.161905] usb 1-1.2: Manufacturer: Apple, Inc.
[    3.161907] usb 1-1.2: SerialNumber: 000000000000
[    3.162056] hub 1-1.2:1.0: USB hub found
[    3.162144] hub 1-1.2:1.0: 3 ports detected
[    3.193369] usb 5-1.7: new full-speed USB device number 5 using ehci-pci
[    3.223381] usb 6-1.7: new full-speed USB device number 5 using ehci-pci
[    3.253372] usb 1-1.1.1: new full-speed USB device number 6 using ehci-pci
[    3.329172] usb 3-1.4: New USB device found, idVendor=047d, idProduct=1020, bcdDevice= 1.06
[    3.329179] usb 3-1.4: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    3.329190] usb 3-1.4: Product: Kensington Expert Mouse
[    3.332083] input: Kensington Expert Mouse as /devices/pci0000:00/0000:00:1d.7/usb3/3-1/3-1.4/3-1.4:1.0/0003:047D:1020.0004/input/input2
[    3.332133] hid-generic 0003:047D:1020.0004: input,hidraw2: USB HID v1.11 Mouse [Kensington Expert Mouse] on usb-0000:00:1d.7-1.4/input0
[    3.333638] input: Apple Computer, Inc. IR Receiver as /devices/pci0000:00/0000:00:1d.7/usb3/3-1/3-1.2/3-1.2:1.0/0003:05AC:8242.0003/input/input3
[    3.334172] usb-storage 3-1.1:1.0: USB Mass Storage device detected
[    3.334319] scsi host6: usb-storage 3-1.1:1.0
[    3.334445] usbcore: registered new interface driver usb-storage
[    3.334742] usbcore: registered new interface driver uas
[    3.345287] usb 5-1.7: New USB device found, idVendor=05ac, idProduct=9227, bcdDevice= 1.37
[    3.345292] usb 5-1.7: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.345295] usb 5-1.7: Product: Apple Thunderbolt Display
[    3.345298] usb 5-1.7: Manufacturer: Apple Inc.
[    3.345300] usb 5-1.7: SerialNumber: 152303D9
[    3.347303] hid-generic 0003:05AC:9227.0005: hiddev96,hidraw3: USB HID v1.11 Device [Apple Inc. Apple Thunderbolt Display] on usb-0000:1c:00.2-1.7/input0
[    3.375560] usb 6-1.7: New USB device found, idVendor=05ac, idProduct=9227, bcdDevice= 1.39
[    3.375566] usb 6-1.7: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.375569] usb 6-1.7: Product: Apple Thunderbolt Display
[    3.375571] usb 6-1.7: Manufacturer: Apple Inc.
[    3.375573] usb 6-1.7: SerialNumber: 1A0E0738
[    3.377584] hid-generic 0003:05AC:9227.0006: hiddev97,hidraw4: USB HID v1.11 Device [Apple Inc. Apple Thunderbolt Display] on usb-0000:23:00.2-1.7/input0
[    3.403421] appleir 0003:05AC:8242.0003: input,hiddev98,hidraw5: USB HID v1.11 Device [Apple Computer, Inc. IR Receiver] on usb-0000:00:1d.7-1.2/input0
[    3.407391] usb 1-1.1.1: New USB device found, idVendor=05ac, idProduct=8215, bcdDevice= 2.08
[    3.407397] usb 1-1.1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.407400] usb 1-1.1.1: Product: Bluetooth USB Host Controller
[    3.407403] usb 1-1.1.1: Manufacturer: Apple Inc.
[    3.407405] usb 1-1.1.1: SerialNumber: 3451C9ED7F9B
[    3.503360] usb 1-1.3: new full-speed USB device number 7 using ehci-pci
[    3.654139] usb 1-1.3: New USB device found, idVendor=067b, idProduct=2303, bcdDevice= 4.00
[    3.654144] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.654148] usb 1-1.3: Product: USB-Serial Controller C
[    3.654150] usb 1-1.3: Manufacturer: Prolific Technology Inc.
[    3.753360] usb 1-1.2.2: new low-speed USB device number 8 using ehci-pci
[    3.910139] usb 1-1.2.2: New USB device found, idVendor=05ac, idProduct=0220, bcdDevice= 0.71
[    3.910144] usb 1-1.2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.910147] usb 1-1.2.2: Product: Apple Keyboard
[    3.910150] usb 1-1.2.2: Manufacturer: Apple, Inc
[    3.917881] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/0003:05AC:0220.0007/input/input4
[    3.983422] apple 0003:05AC:0220.0007: input,hidraw6: USB HID v1.11 Keyboard [Apple, Inc Apple Keyboard] on usb-0000:00:1a.7-1.2.2/input0
[    3.983495] apple 0003:05AC:0220.0008: Fn key not found (Apple Wireless Keyboard clone?), disabling Fn key handling
[    3.983525] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.1/0003:05AC:0220.0008/input/input5
[    4.003364] usb 1-1.1.2: new full-speed USB device number 9 using ehci-pci
[    4.053398] apple 0003:05AC:0220.0008: input,hidraw7: USB HID v1.11 Device [Apple, Inc Apple Keyboard] on usb-0000:00:1a.7-1.2.2/input1
[    4.156952] usb 1-1.1.2: New USB device found, idVendor=05ac, idProduct=820a, bcdDevice= 1.00
[    4.156958] usb 1-1.1.2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.158811] input: HID 05ac:820a as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.1/1-1.1.2/1-1.1.2:1.0/0003:05AC:820A.0009/input/input6
[    4.223436] hid-generic 0003:05AC:820A.0009: input,hidraw8: USB HID v1.11 Keyboard [HID 05ac:820a] on usb-0000:00:1a.7-1.1.2/input0
[    4.323381] usb 1-1.1.3: new full-speed USB device number 10 using ehci-pci
[    4.395456] scsi 6:0:0:0: Direct-Access     APPLE    SD Card Reader   1.00 PQ: 0 ANSI: 0
[    4.395617] sd 6:0:0:0: Attached scsi generic sg3 type 0
[    4.396291] sd 6:0:0:0: [sdc] Media removed, stopped polling
[    4.397154] sd 6:0:0:0: [sdc] Attached SCSI removable disk
[    4.446863] [drm] fb mappable at 0x90363000
[    4.446867] [drm] vram apper at 0x90000000
[    4.446868] [drm] size 14745600
[    4.446869] [drm] fb depth is 24
[    4.446871] [drm]    pitch is 10240
[    4.446963] fbcon: radeondrmfb (fb0) is primary device
[    4.486791] usb 1-1.1.3: New USB device found, idVendor=05ac, idProduct=820b, bcdDevice= 1.00
[    4.486794] usb 1-1.1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.488506] input: HID 05ac:820b as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.1/1-1.1.3/1-1.1.3:1.0/0003:05AC:820B.000A/input/input7
[    4.488555] hid-generic 0003:05AC:820B.000A: input,hidraw9: USB HID v1.11 Mouse [HID 05ac:820b] on usb-0000:00:1a.7-1.1.3/input0
[    5.129427] switching from power state:
[    5.129428] 	ui class: performance
[    5.129429] 	internal class: none
[    5.129430] 	caps:
[    5.129431] 	uvd    vclk: 0 dclk: 0
[    5.129432] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    5.129440] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    5.129441] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    5.129442] 	status: c r
[    5.129443] switching to power state:
[    5.129443] 	ui class: performance
[    5.129443] 	internal class: none
[    5.129444] 	caps:
[    5.129444] 	uvd    vclk: 0 dclk: 0
[    5.129445] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    5.129446] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    5.129446] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    5.129447] 	status: c r
[    6.243864] switching from power state:
[    6.243865] 	ui class: performance
[    6.243866] 	internal class: none
[    6.243867] 	caps:
[    6.243867] 	uvd    vclk: 0 dclk: 0
[    6.243868] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    6.243869] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    6.243870] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    6.243871] 	status: c r
[    6.243871] switching to power state:
[    6.243872] 	ui class: performance
[    6.243872] 	internal class: none
[    6.243873] 	caps:
[    6.243873] 	uvd    vclk: 0 dclk: 0
[    6.243874] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[    6.243874] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[    6.243875] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[    6.243876] 	status: c r
[    6.356048] Console: switching to colour frame buffer device 320x90
[    6.362874] radeon 0000:01:00.0: [drm] fb0: radeondrmfb frame buffer device
[    6.393508] [drm] Initialized radeon 2.50.0 20080528 for 0000:01:00.0 on minor 0
[    6.420994] [drm] amdgpu kernel modesetting enabled.
[    6.455429] netpoll: netconsole: local port 6666
[    6.455450] netpoll: netconsole: local IPv4 address 192.168.2.87
[    6.455471] netpoll: netconsole: interface 'eth0'
[    6.455486] netpoll: netconsole: remote port 6666
[    6.455501] netpoll: netconsole: remote IPv4 address 192.168.2.208
[    6.455520] netpoll: netconsole: remote ethernet address dc:a6:32:61:33:da
[    6.455545] netpoll: netconsole: device eth0 not up yet, forcing it
[   10.151283] tg3 0000:02:00.0 eth0: Link is up at 1000 Mbps, full duplex
[   10.151306] tg3 0000:02:00.0 eth0: Flow control is off for TX and off for RX
[   10.151327] tg3 0000:02:00.0 eth0: EEE is enabled
[   10.183122] printk: console [netcon0] enabled
[   10.183139] netconsole: network logging started
[   17.367570]  sdb: sdb1
[   17.394559] process '/usr/bin/fstype' started with executable stack
[   17.429243] EXT4-fs (sda6): mounted filesystem with ordered data mode. Quota mode: none.
[   17.588020] udevd[1277]: starting version 3.2.9
[   17.610785] udevd[1278]: starting eudev-3.2.9
[   17.643563] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input8
[   17.646302] ACPI: button: Power Button [PWRB]
[   17.648898] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input9
[   17.651273] ACPI: button: Sleep Button [SLPB]
[   17.652974] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input10
[   17.659137] udevd[1328]: Error changing net interface name eth1 to eth2: File exists
[   17.661043] udevd[1328]: could not rename interface '3' from 'eth1' to 'eth2': File exists
[   17.677219] mc: Linux media interface: v0.10
[   17.682802] videodev: Linux video capture interface: v2.00
[   17.687852] udevd[1328]: Error changing net interface name eth2 to eth1: File exists
[   17.689825] udevd[1328]: could not rename interface '4' from 'eth2' to 'eth1': File exists
[   17.692682] snd_hda_intel 0000:00:1b.0: enabling device (0000 -> 0002)
[   17.694583] ACPI: button: Power Button [PWRF]
[   17.696235] snd_hda_intel 0000:01:00.1: enabling device (0000 -> 0002)
[   17.699646] usb 1-2: Found UVC 1.00 device FaceTime HD Camera (Built-in) (05ac:850b)
[   17.707845] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input11
[   17.710642] usbcore: registered new interface driver usbserial_generic
[   17.712664] usb 5-1.4: 1:1: cannot get freq at ep 0x4
[   17.712769] usbserial: USB Serial support registered for generic
[   17.717023] Bluetooth: Core ver 2.22
[   17.718696] NET: Registered PF_BLUETOOTH protocol family
[   17.720105] Bluetooth: HCI device and connection manager initialized
[   17.722035] Bluetooth: HCI socket layer initialized
[   17.723960] Bluetooth: L2CAP socket layer initialized
[   17.724050] usbcore: registered new interface driver pl2303
[   17.726040] Bluetooth: SCO socket layer initialized
[   17.728087] usbserial: USB Serial support registered for pl2303
[   17.730796] input: FaceTime HD Camera (Built-in):  as /devices/pci0000:00/0000:00:1a.7/usb1/1-2/1-2:1.0/input/input12
[   17.732092] pl2303 1-1.3:1.0: pl2303 converter detected
[   17.734736] snd_hda_codec_cirrus hdaudioC0D0: autoconfig for CS4206: line_outs=2 (0x9/0xb/0x0/0x0/0x0) type:speaker
[   17.735440] usb 5-1.5: Found UVC 1.00 device FaceTime HD Camera (Display) (05ac:1112)
[   17.737973] usb 1-1.3: pl2303 converter now attached to ttyUSB0
[   17.739496] snd_hda_codec_cirrus hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   17.743848] snd_hda_codec_cirrus hdaudioC0D0:    hp_outs=1 (0xa/0x0/0x0/0x0/0x0)
[   17.745581] snd_hda_codec_cirrus hdaudioC0D0:    mono: mono_out=0x0
[   17.747409] snd_hda_codec_cirrus hdaudioC0D0:    dig-out=0x10/0x0
[   17.749122] snd_hda_codec_cirrus hdaudioC0D0:    inputs:
[   17.750651] snd_hda_codec_cirrus hdaudioC0D0:      Mic=0xd
[   17.752311] snd_hda_codec_cirrus hdaudioC0D0:      Line=0xc
[   17.754464] snd_hda_codec_cirrus hdaudioC0D0:    dig-in=0xf
[   17.759997] usbcore: registered new interface driver btusb
[   17.766057] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
[   17.768168] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
[   17.770188] input: HDA Intel PCH SPDIF In as /devices/pci0000:00/0000:00:1b.0/sound/card0/input15
[   17.797074] applesmc: key=332 fan=3 temp=50 index=49 acc=0 lux=2 kbd=0
[   17.797204] applesmc applesmc.768: hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[   17.871085] usb 1-1.1.2: USB disconnect, device number 9
[   17.884700] usb 5-1.4: 1:2: cannot get freq at ep 0x4
[   17.889386] input: FaceTime HD Camera (Display): F as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:04.0/0000:18:00.0/0000:19:00.0/0000:1a:00.0/0000:1b:03.0/0000:1c:00.2/usb5/5-1/5-1.5/5-1.5:1.0/input/input16
[   17.892182] usb 6-1.5: Found UVC 1.00 device FaceTime HD Camera (Display) (05ac:1112)
[   17.893708] usb 5-1.4: 2:1: cannot get freq at ep 0x84
[   17.894702] Bluetooth: hci0: BCM: chip id 254 build 0518
[   17.898677] Bluetooth: hci0: BCM: product 05ac:8215
[   17.901707] Bluetooth: hci0: BCM: features 0x00
[   17.918204] input: FaceTime HD Camera (Display): F as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:04.0/0000:18:00.0/0000:19:04.0/0000:1f:00.0/0000:20:00.0/0000:21:00.0/0000:22:03.0/0000:23:00.2/usb6/6-1/6-1.5/6-1.5:1.0/input/input17
[   17.919711] Bluetooth: hci0: Bluetooth USB Host Controller
[   17.933718] usb 5-1.4: Warning! Unlikely big volume range (=16384), cval->res is probably wrong.
[   17.935359] usb 5-1.4: [2] FU [PCM Playback Volume] ch = 2, val = -16384/0/1
[   17.972797] usb 5-1.4: Warning! Unlikely big volume range (=15872), cval->res is probably wrong.
[   17.974548] usb 5-1.4: [5] FU [Mic Capture Volume] ch = 1, val = -11264/4608/1
[   17.989178] usb 6-1.4: 1:1: cannot get freq at ep 0x4
[   18.159210] usb 6-1.4: 1:2: cannot get freq at ep 0x4
[   18.169216] usb 6-1.4: 2:1: cannot get freq at ep 0x84
[   18.173543] usbcore: registered new interface driver uvcvideo
[   18.209101] usb 6-1.4: Warning! Unlikely big volume range (=16384), cval->res is probably wrong.
[   18.210688] usb 6-1.4: [2] FU [PCM Playback Volume] ch = 2, val = -16384/0/1
[   18.248209] usb 6-1.4: Warning! Unlikely big volume range (=15872), cval->res is probably wrong.
[   18.249802] usb 6-1.4: [5] FU [Mic Capture Volume] ch = 1, val = -11264/4608/1
[   18.251719] usbcore: registered new interface driver snd-usb-audio
[   18.373821] usb 1-1.1.3: USB disconnect, device number 10
[   19.337596] Adding 16777212k swap on /dev/sda5.  Priority:-2 extents:1 across:16777212k SS
[   19.357009] EXT4-fs (sda6): re-mounted. Quota mode: none.
[   19.445476] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com
[   22.642957] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Quota mode: none.
[   23.168011] NET: Registered PF_PACKET protocol family
[   26.350010] tg3 0000:02:00.0 eth0: Link is up at 1000 Mbps, full duplex
[   26.351504] tg3 0000:02:00.0 eth0: Flow control is off for TX and off for RX
[   26.352974] tg3 0000:02:00.0 eth0: EEE is enabled
[   30.216074] RPC: Registered named UNIX socket transport module.
[   30.217542] RPC: Registered udp transport module.
[   30.219020] RPC: Registered tcp transport module.
[   30.220490] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   30.225006] FS-Cache: Loaded
[   30.238954] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[   30.260263] NFS: Registering the id_resolver key type
[   30.261693] Key type id_resolver registered
[   30.263074] Key type id_legacy registered
[   31.740721] elogind-daemon[3137]: New seat seat0.
[   33.328265] switching from power state:
[   33.328272] 	ui class: performance
[   33.328274] 	internal class: none
[   33.328277] 	caps:
[   33.328278] 	uvd    vclk: 0 dclk: 0
[   33.328280] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   33.328282] 		power level 1    sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[   33.328283] 		power level 2    sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[   33.328285] 	status: c
[   33.328286] switching to power state:
[   33.328287] 	ui class: battery
[   33.328289] 	internal class: none
[   33.328290] 	caps:
[   33.328292] 	uvd    vclk: 0 dclk: 0
[   33.328293] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   33.328295] 		power level 1    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   33.328296] 		power level 2    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   33.328297] 	status: r
[   40.140157] elogind-daemon[3137]: New session c1 of user brad.
[   52.259837] thunderbolt 0000:07:00.0: acking hot unplug event on 0:3
[   52.259850] thunderbolt 0000:07:00.0: acking hot unplug event on 0:4
[   52.303768] pcieport 0000:19:04.0: pciehp: pciehp_isr: no response from device
[   52.303804] thunderbolt 0000:07:00.0: 0:3: switch unplugged
[   52.305249] pcieport 0000:20:04.0: pciehp: pciehp_isr: no response from device
[   52.305250] thunderbolt 0000:07:00.0: 0:7 <-> 3:a (PCI): deactivating
[   52.353830] ohci-pci 0000:1c:00.1: HC died; cleaning up
[   52.403883] ohci-pci 0000:23:00.1: HC died; cleaning up
[   52.403894] pcieport 0000:19:04.0: pciehp: pciehp_isr: no response from device
[   52.403896] pcieport 0000:20:04.0: pciehp: pciehp_isr: no response from device
[   52.403908] pcieport 0000:06:04.0: pciehp: Slot(4-1): Link Down
[   52.403917] pcieport 0000:06:04.0: pciehp: Slot(4-1): Card not present
[   52.403921] thunderbolt 0000:07:00.0: deactivating PCIe Down path from 3:10 to 0:7
[   52.403925] pcieport 0000:19:05.0: can't change power state from D3cold to D0 (config space inaccessible)
[   52.404145] pcieport 0000:20:05.0: can't change power state from D3cold to D0 (config space inaccessible)
[   52.405122] thunderbolt 0000:07:00.0: deactivating PCIe Up path from 0:7 to 3:10
[   52.405531] thunderbolt 0000:07:00.0: 3:7 <-> 303:a (PCI): deactivating
[   52.405535] thunderbolt 0000:07:00.0: deactivating PCIe Down path from 303:10 to 3:7
[   52.405537] thunderbolt 0000:07:00.0: deactivating PCIe Up path from 3:7 to 303:10
[   52.405539] thunderbolt 0000:07:00.0: 0:c <-> 303:b (DP): deactivating
[   52.406269] thunderbolt 0000:07:00.0: deactivating Video path from 0:12 to 303:11
[   52.407648] pcieport 0000:20:04.0: can't change power state from D3cold to D0 (config space inaccessible)
[   52.409396] thunderbolt 0000:07:00.0: 0:c: adding -5 NFC credits to 5
[   52.604345] firewire_ohci 0000:25:00.0: removed fw-ohci device
[   52.605254] thunderbolt 0000:07:00.0: deactivating AUX TX path from 0:12 to 303:11
[   52.614561] thunderbolt 0000:07:00.0: deactivating AUX RX path from 303:11 to 0:12
[   52.614930] thunderbolt 0000:07:00.0: 0: released DP resource for port 12
[   52.614937] thunderbolt 0000:07:00.0: 0:d <-> 3:b (DP): deactivating
[   52.615723] thunderbolt 0000:07:00.0: deactivating Video path from 0:13 to 3:11
[   52.616107] thunderbolt 0000:07:00.0: 0:d: adding -5 NFC credits to 5
[   52.616233] thunderbolt 0000:07:00.0: deactivating AUX TX path from 0:13 to 3:11
[   52.616618] thunderbolt 0000:07:00.0: deactivating AUX RX path from 3:11 to 0:13
[   52.617001] thunderbolt 0000:07:00.0: 0: released DP resource for port 13
[   52.617005] thunderbolt 0000:07:00.0: 303:b: DP OUT resource unavailable
[   52.617006] thunderbolt 0000:07:00.0: 3:b: DP OUT resource unavailable
[   52.617057] thunderbolt 0-303: device disconnected
[   52.617101] thunderbolt 0-3: device disconnected
[   52.617136] thunderbolt 0000:07:00.0: looking for DP IN <-> DP OUT pairs:
[   52.617149] thunderbolt 0000:07:00.0: 0:c: DP IN available
[   52.617361] thunderbolt 0000:07:00.0: 0:d: DP IN available
[   52.617363] thunderbolt 0000:07:00.0: no suitable DP IN adapter available, not tunneling
[   52.617367] thunderbolt 0000:07:00.0: 0:4: got unplug event for disconnected port, ignoring
[   52.724230] ehci-pci 0000:23:00.2: HC died; cleaning up
[   52.774314] ehci-pci 0000:23:00.2: remove, state 1
[   52.775501] usb usb6: USB disconnect, device number 1
[   52.775503] usb 6-1: USB disconnect, device number 2
[   52.775504] usb 6-1.4: USB disconnect, device number 3
[   52.834421] usb 6-1.5: USB disconnect, device number 4
[   52.955083] usb 6-1.7: USB disconnect, device number 5
[   53.404884] clocksource: timekeeping watchdog on CPU1: hpet retried 2 times before success
[   53.454897] ehci-pci 0000:23:00.2: USB bus 6 deregistered
[   53.457640] ohci-pci 0000:23:00.1: remove, state 4
[   53.457643] usb usb10: USB disconnect, device number 1
[   53.905080] clocksource: timekeeping watchdog on CPU2: hpet retried 2 times before success
[   54.105211] ohci-pci 0000:23:00.1: USB bus 10 deregistered
[   54.155234] ohci-pci 0000:23:00.0: HC died; cleaning up
[   54.156638] ohci-pci 0000:23:00.0: remove, state 4
[   54.156640] usb usb9: USB disconnect, device number 1
[   54.205250] sched: RT throttling activated
[   54.804554] ohci-pci 0000:23:00.0: USB bus 9 deregistered
[   55.004306] firewire_ohci 0000:1e:00.0: removed fw-ohci device
[   55.091236] switching from power state:
[   55.092520] 	ui class: battery
[   55.093808] 	internal class: none
[   55.095133] 	caps:
[   55.096443] 	uvd    vclk: 0 dclk: 0
[   55.096444] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   55.096445] 		power level 1    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   55.096446] 		power level 2    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   55.096447] 	status: c r
[   55.096448] switching to power state:
[   55.096448] 	ui class: battery
[   55.096448] 	internal class: none
[   55.096449] 	caps:
[   55.096450] 	uvd    vclk: 0 dclk: 0
[   55.096450] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   55.096451] 		power level 1    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   55.096451] 		power level 2    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   55.096460] 	status: c r
[   55.144085] ehci-pci 0000:1c:00.2: HC died; cleaning up
[   55.204094] ehci-pci 0000:1c:00.2: remove, state 1
[   55.204097] usb usb5: USB disconnect, device number 1
[   55.204099] usb 5-1: USB disconnect, device number 2
[   55.204100] usb 5-1.4: USB disconnect, device number 3
[   55.274533] usb 5-1.5: USB disconnect, device number 4
[   55.474887] usb 5-1.7: USB disconnect, device number 5
[   55.974179] ehci-pci 0000:1c:00.2: USB bus 5 deregistered
[   55.974266] ohci-pci 0000:1c:00.1: remove, state 4
[   55.974270] usb usb8: USB disconnect, device number 1
[   56.624866] ohci-pci 0000:1c:00.1: USB bus 8 deregistered
[   56.674897] ohci-pci 0000:1c:00.0: HC died; cleaning up
[   56.676005] ohci-pci 0000:1c:00.0: remove, state 4
[   56.677114] usb usb7: USB disconnect, device number 1
[   57.325627] ohci-pci 0000:1c:00.0: USB bus 7 deregistered
[   57.328782] pci_bus 0000:1c: busn_res: [bus 1c] is released
[   57.328869] pci_bus 0000:1b: busn_res: [bus 1b-1c] is released
[   57.328967] pci_bus 0000:1a: busn_res: [bus 1a-1c] is released
[   57.329248] pci_bus 0000:1d: busn_res: [bus 1d] is released
[   57.329462] pci_bus 0000:1e: busn_res: [bus 1e] is released
[   57.329919] pci_bus 0000:23: busn_res: [bus 23] is released
[   57.337128] pci_bus 0000:22: busn_res: [bus 22-23] is released
[   57.337201] pci_bus 0000:21: busn_res: [bus 21-23] is released
[   57.339548] pci_bus 0000:24: busn_res: [bus 24] is released
[   57.339661] pci_bus 0000:25: busn_res: [bus 25] is released
[   57.340350] pci_bus 0000:26: busn_res: [bus 26-35] is released
[   57.340941] pci_bus 0000:36: busn_res: [bus 36-45] is released
[   57.341415] pci_bus 0000:20: busn_res: [bus 20-45] is released
[   57.341940] pci_bus 0000:1f: busn_res: [bus 1f-45] is released
[   57.348065] pci_bus 0000:46: busn_res: [bus 46-55] is released
[   57.348094] pci_bus 0000:19: busn_res: [bus 19-55] is released
[   65.303796] thunderbolt 0000:07:00.0: acking hot plug event on 0:4
[   65.303926] thunderbolt 0000:07:00.0: 0:4: hotplug: scanning
[   65.303929] thunderbolt 0000:07:00.0: 0:4: hotplug: no switch found
[   65.319235] thunderbolt 0000:07:00.0: acking hot plug event on 0:3
[   65.319362] thunderbolt 0000:07:00.0: 0:3: hotplug: scanning
[   65.319445] thunderbolt 0000:07:00.0: 0:3: is connected, link is up (state: 2)
[   65.319733] thunderbolt 0000:07:00.0: current switch config:
[   65.319739] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[   65.319744] thunderbolt 0000:07:00.0:   Max Port Number: 13
[   65.319753] thunderbolt 0000:07:00.0:   Config:
[   65.319754] thunderbolt 0000:07:00.0:    Upstream Port Number: 0 Depth: 0 Route String: 0x0 Enabled: 0, PlugEventsDelay: 10ms
[   65.319756] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[   65.324455] thunderbolt 0000:07:00.0: initializing Switch at 0x3 (depth: 1, up port: 1)
[   65.350998] thunderbolt 0000:07:00.0: 3: reading drom (length: 0x97)
[   65.421826] thunderbolt 0000:07:00.0: acking hot plug event on 3:4
[   65.425278] thunderbolt 0000:07:00.0: acking hot plug event on 3:3
[   65.846126] thunderbolt 0000:07:00.0: 3: DROM version: 1
[   65.847153] thunderbolt 0000:07:00.0: 3: uid: 0x1000100189170
[   65.850062] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   65.850070] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   65.850073] thunderbolt 0000:07:00.0:   Max counters: 32
[   65.850075] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   65.850077] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   65.853004] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   65.853008] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   65.853010] thunderbolt 0000:07:00.0:   Max counters: 32
[   65.853012] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   65.853014] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   65.867434] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   65.867449] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   65.867450] thunderbolt 0000:07:00.0:   Max counters: 32
[   65.867451] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   65.867452] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   65.870314] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   65.870322] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   65.870325] thunderbolt 0000:07:00.0:   Max counters: 32
[   65.870327] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   65.870330] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   65.870332] thunderbolt 0000:07:00.0: 3:5: disabled by eeprom
[   65.870335] thunderbolt 0000:07:00.0: 3:6: disabled by eeprom
[   65.871208] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[   65.871213] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[   65.871215] thunderbolt 0000:07:00.0:   Max counters: 1
[   65.871217] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   65.871219] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   65.872104] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[   65.872108] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[   65.872111] thunderbolt 0000:07:00.0:   Max counters: 1
[   65.872112] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   65.872115] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   65.872117] thunderbolt 0000:07:00.0: 3:9: disabled by eeprom
[   65.873000] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[   65.873004] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[   65.873006] thunderbolt 0000:07:00.0:   Max counters: 1
[   65.873008] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   65.873010] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   65.874155] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[   65.874162] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[   65.874166] thunderbolt 0000:07:00.0:   Max counters: 2
[   65.874169] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   65.874172] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   65.874176] thunderbolt 0000:07:00.0: 3:c: disabled by eeprom
[   65.874179] thunderbolt 0000:07:00.0: 3:d: disabled by eeprom
[   65.892324] thunderbolt 0000:07:00.0: 3: TMU: current mode: bi-directional, HiFi
[   65.892355] thunderbolt 0-3: new device found, vendor=0x1 device=0x8002
[   65.892357] thunderbolt 0-3: Apple, Inc. Thunderbolt Display
[   65.892621] thunderbolt 0000:07:00.0: 3:3: is connected, link is up (state: 2)
[   65.892763] thunderbolt 0000:07:00.0: current switch config:
[   65.892764] thunderbolt 0000:07:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[   65.892766] thunderbolt 0000:07:00.0:   Max Port Number: 13
[   65.892767] thunderbolt 0000:07:00.0:   Config:
[   65.892767] thunderbolt 0000:07:00.0:    Upstream Port Number: 0 Depth: 0 Route String: 0x0 Enabled: 0, PlugEventsDelay: 10ms
[   65.892769] thunderbolt 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[   65.897372] thunderbolt 0000:07:00.0: initializing Switch at 0x303 (depth: 2, up port: 3)
[   65.914808] thunderbolt 0000:07:00.0: 303: reading drom (length: 0x97)
[   66.059033] thunderbolt 0000:07:00.0: acking hot plug event on 3:b
[   66.059038] thunderbolt 0000:07:00.0: acking hot plug event on 3:b
[   66.160280] thunderbolt 0000:07:00.0: acking hot plug event on 303:b
[   66.160285] thunderbolt 0000:07:00.0: acking hot plug event on 303:b
[   66.408501] thunderbolt 0000:07:00.0: 303: DROM version: 1
[   66.409497] thunderbolt 0000:07:00.0: 303: uid: 0x100010102a740
[   66.412439] thunderbolt 0000:07:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   66.412442] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   66.412443] thunderbolt 0000:07:00.0:   Max counters: 32
[   66.412444] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   66.412445] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   66.415384] thunderbolt 0000:07:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   66.415388] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   66.415389] thunderbolt 0000:07:00.0:   Max counters: 32
[   66.415390] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   66.415391] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   66.418328] thunderbolt 0000:07:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   66.418331] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   66.418333] thunderbolt 0000:07:00.0:   Max counters: 32
[   66.418333] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   66.418334] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   66.421271] thunderbolt 0000:07:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   66.421273] thunderbolt 0000:07:00.0:   Max hop id (in/out): 63/63
[   66.421274] thunderbolt 0000:07:00.0:   Max counters: 32
[   66.421275] thunderbolt 0000:07:00.0:   NFC Credits: 0x3c00000
[   66.421276] thunderbolt 0000:07:00.0:   Credits (total/control): 60/2
[   66.421277] thunderbolt 0000:07:00.0: 303:5: disabled by eeprom
[   66.421278] thunderbolt 0000:07:00.0: 303:6: disabled by eeprom
[   66.422167] thunderbolt 0000:07:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[   66.422169] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[   66.422170] thunderbolt 0000:07:00.0:   Max counters: 1
[   66.422171] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   66.422172] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   66.423063] thunderbolt 0000:07:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[   66.423065] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[   66.423066] thunderbolt 0000:07:00.0:   Max counters: 1
[   66.423066] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   66.423067] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   66.423068] thunderbolt 0000:07:00.0: 303:9: disabled by eeprom
[   66.423959] thunderbolt 0000:07:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[   66.423961] thunderbolt 0000:07:00.0:   Max hop id (in/out): 8/8
[   66.423962] thunderbolt 0000:07:00.0:   Max counters: 1
[   66.423962] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   66.423963] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   66.425112] thunderbolt 0000:07:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[   66.425114] thunderbolt 0000:07:00.0:   Max hop id (in/out): 9/9
[   66.425115] thunderbolt 0000:07:00.0:   Max counters: 2
[   66.425115] thunderbolt 0000:07:00.0:   NFC Credits: 0x700000
[   66.425116] thunderbolt 0000:07:00.0:   Credits (total/control): 7/0
[   66.425117] thunderbolt 0000:07:00.0: 303:c: disabled by eeprom
[   66.425118] thunderbolt 0000:07:00.0: 303:d: disabled by eeprom
[   66.443584] thunderbolt 0000:07:00.0: 303: TMU: current mode: bi-directional, HiFi
[   66.443604] thunderbolt 0-303: new device found, vendor=0x1 device=0x8002
[   66.443606] thunderbolt 0-303: Apple, Inc. Thunderbolt Display
[   66.443713] thunderbolt 0000:07:00.0: 303:1: is unplugged (state: 7)
[   66.443968] thunderbolt 0000:07:00.0: 303:b: DP adapter HPD set, queuing hotplug
[   66.444256] thunderbolt 0000:07:00.0: 3:b: DP adapter HPD set, queuing hotplug
[   66.446344] thunderbolt 0000:07:00.0: 3:4: got plug event for connected port, ignoring
[   66.446345] thunderbolt 0000:07:00.0: 3:3: got plug event for connected port, ignoring
[   66.446406] thunderbolt 0000:07:00.0: 3:b: DP OUT resource available
[   66.446409] thunderbolt 0000:07:00.0: looking for DP IN <-> DP OUT pairs:
[   66.446541] thunderbolt 0000:07:00.0: 0:c: DP IN available
[   66.446673] thunderbolt 0000:07:00.0: 3:b: DP OUT available
[   66.446676] thunderbolt 0000:07:00.0: 0: allocated DP resource for port 12
[   66.446677] thunderbolt 0000:07:00.0: 3:b: calculating available bandwidth
[   66.446800] thunderbolt 0000:07:00.0: 0:3: link total bandwidth 9000 Mb/s
[   66.446803] thunderbolt 0000:07:00.0: 3:1: link total bandwidth 9000 Mb/s
[   66.446804] thunderbolt 0000:07:00.0: available bandwidth for new DP tunnel 9000/9000 Mb/s
[   66.446809] thunderbolt 0000:07:00.0: 0:c <-> 3:b (DP): activating
[   66.446811] thunderbolt 0000:07:00.0: activating Video path from 0:12 to 3:11
[   66.446812] thunderbolt 0000:07:00.0: 3:2: adding 12 NFC credits to 0
[   66.446935] thunderbolt 0000:07:00.0: 0:c: adding 5 NFC credits to 0
[   66.447132] thunderbolt 0000:07:00.0: 3:2: Writing hop 1
[   66.447134] thunderbolt 0000:07:00.0: 3:2:  In HopID: 8 => Out port: 11 Out HopID: 9
[   66.447136] thunderbolt 0000:07:00.0: 3:2:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[   66.447138] thunderbolt 0000:07:00.0: 3:2:    Counter enabled: 0 Counter index: 2047
[   66.447139] thunderbolt 0000:07:00.0: 3:2:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[   66.447140] thunderbolt 0000:07:00.0: 3:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   66.447407] thunderbolt 0000:07:00.0: 0:c: Writing hop 0
[   66.447408] thunderbolt 0000:07:00.0: 0:c:  In HopID: 9 => Out port: 4 Out HopID: 8
[   66.447410] thunderbolt 0000:07:00.0: 0:c:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[   66.447411] thunderbolt 0000:07:00.0: 0:c:    Counter enabled: 0 Counter index: 2047
[   66.447412] thunderbolt 0000:07:00.0: 0:c:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[   66.447413] thunderbolt 0000:07:00.0: 0:c:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   66.447515] thunderbolt 0000:07:00.0: path activation complete
[   66.447515] thunderbolt 0000:07:00.0: activating AUX TX path from 0:12 to 3:11
[   66.447643] thunderbolt 0000:07:00.0: 3:2: Writing hop 1
[   66.447644] thunderbolt 0000:07:00.0: 3:2:  In HopID: 9 => Out port: 11 Out HopID: 8
[   66.447645] thunderbolt 0000:07:00.0: 3:2:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   66.447646] thunderbolt 0000:07:00.0: 3:2:    Counter enabled: 0 Counter index: 2047
[   66.447647] thunderbolt 0000:07:00.0: 3:2:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   66.447648] thunderbolt 0000:07:00.0: 3:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   66.447899] thunderbolt 0000:07:00.0: 0:c: Writing hop 0
[   66.447900] thunderbolt 0000:07:00.0: 0:c:  In HopID: 8 => Out port: 4 Out HopID: 9
[   66.447901] thunderbolt 0000:07:00.0: 0:c:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   66.447902] thunderbolt 0000:07:00.0: 0:c:    Counter enabled: 0 Counter index: 2047
[   66.447903] thunderbolt 0000:07:00.0: 0:c:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   66.447904] thunderbolt 0000:07:00.0: 0:c:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   66.448026] thunderbolt 0000:07:00.0: path activation complete
[   66.448027] thunderbolt 0000:07:00.0: activating AUX RX path from 3:11 to 0:12
[   66.448155] thunderbolt 0000:07:00.0: 0:4: Writing hop 1
[   66.448156] thunderbolt 0000:07:00.0: 0:4:  In HopID: 8 => Out port: 12 Out HopID: 8
[   66.448157] thunderbolt 0000:07:00.0: 0:4:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   66.448158] thunderbolt 0000:07:00.0: 0:4:    Counter enabled: 0 Counter index: 2047
[   66.448159] thunderbolt 0000:07:00.0: 0:4:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   66.448160] thunderbolt 0000:07:00.0: 0:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   66.448410] thunderbolt 0000:07:00.0: 3:b: Writing hop 0
[   66.448411] thunderbolt 0000:07:00.0: 3:b:  In HopID: 8 => Out port: 2 Out HopID: 8
[   66.448412] thunderbolt 0000:07:00.0: 3:b:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   66.448414] thunderbolt 0000:07:00.0: 3:b:    Counter enabled: 0 Counter index: 2047
[   66.448415] thunderbolt 0000:07:00.0: 3:b:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   66.448416] thunderbolt 0000:07:00.0: 3:b:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   66.448538] thunderbolt 0000:07:00.0: path activation complete
[   66.449562] thunderbolt 0000:07:00.0: Used link no : 1
[   66.449724] thunderbolt 0000:07:00.0: 0:7 <-> 3:a (PCI): activating
[   66.449727] thunderbolt 0000:07:00.0: activating PCIe Down path from 0:7 to 3:10
[   66.449848] thunderbolt 0000:07:00.0: 3:1: Writing hop 1
[   66.449850] thunderbolt 0000:07:00.0: 3:1:  In HopID: 8 => Out port: 10 Out HopID: 8
[   66.449852] thunderbolt 0000:07:00.0: 3:1:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   66.449854] thunderbolt 0000:07:00.0: 3:1:    Counter enabled: 0 Counter index: 2047
[   66.449855] thunderbolt 0000:07:00.0: 3:1:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   66.449856] thunderbolt 0000:07:00.0: 3:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   66.450105] thunderbolt 0000:07:00.0: 0:7: Writing hop 0
[   66.450107] thunderbolt 0000:07:00.0: 0:7:  In HopID: 8 => Out port: 3 Out HopID: 8
[   66.450109] thunderbolt 0000:07:00.0: 0:7:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   66.450110] thunderbolt 0000:07:00.0: 0:7:    Counter enabled: 0 Counter index: 2047
[   66.450112] thunderbolt 0000:07:00.0: 0:7:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   66.450113] thunderbolt 0000:07:00.0: 0:7:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   66.450232] thunderbolt 0000:07:00.0: path activation complete
[   66.450234] thunderbolt 0000:07:00.0: activating PCIe Up path from 3:10 to 0:7
[   66.450362] thunderbolt 0000:07:00.0: 0:3: Writing hop 1
[   66.450364] thunderbolt 0000:07:00.0: 0:3:  In HopID: 8 => Out port: 7 Out HopID: 8
[   66.450366] thunderbolt 0000:07:00.0: 0:3:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   66.450367] thunderbolt 0000:07:00.0: 0:3:    Counter enabled: 0 Counter index: 2047
[   66.450368] thunderbolt 0000:07:00.0: 0:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   66.450370] thunderbolt 0000:07:00.0: 0:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   66.450587] thunderbolt 0000:07:00.0: 3:a: Writing hop 0
[   66.450588] thunderbolt 0000:07:00.0: 3:a:  In HopID: 8 => Out port: 1 Out HopID: 8
[   66.450589] thunderbolt 0000:07:00.0: 3:a:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   66.450590] thunderbolt 0000:07:00.0: 3:a:    Counter enabled: 0 Counter index: 2047
[   66.450591] thunderbolt 0000:07:00.0: 3:a:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   66.450593] thunderbolt 0000:07:00.0: 3:a:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   66.450714] thunderbolt 0000:07:00.0: path activation complete
[   66.450740] pcieport 0000:06:04.0: pciehp: Slot(4-1): Card present
[   66.451227] thunderbolt 0000:07:00.0: 303:b: DP OUT resource available
[   66.452063] thunderbolt 0000:07:00.0: looking for DP IN <-> DP OUT pairs:
[   66.452079] thunderbolt 0000:07:00.0: 0:c: in use
[   66.452204] thunderbolt 0000:07:00.0: 0:d: DP IN available
[   66.452331] thunderbolt 0000:07:00.0: 3:b: in use
[   66.452459] thunderbolt 0000:07:00.0: 303:b: DP OUT available
[   66.452461] thunderbolt 0000:07:00.0: 0: allocated DP resource for port 13
[   66.452462] thunderbolt 0000:07:00.0: 303:b: calculating available bandwidth
[   66.452587] thunderbolt 0000:07:00.0: 0:3: link total bandwidth 9000 Mb/s
[   66.452589] thunderbolt 0000:07:00.0: 3:1: link total bandwidth 9000 Mb/s
[   66.452715] thunderbolt 0000:07:00.0: 3:3: link total bandwidth 9000 Mb/s
[   66.452716] thunderbolt 0000:07:00.0: 303:3: link total bandwidth 9000 Mb/s
[   66.452717] thunderbolt 0000:07:00.0: available bandwidth for new DP tunnel 9000/9000 Mb/s
[   66.452721] thunderbolt 0000:07:00.0: 0:d <-> 303:b (DP): activating
[   66.452723] thunderbolt 0000:07:00.0: activating Video path from 0:13 to 303:11
[   66.452724] thunderbolt 0000:07:00.0: 303:3: adding 12 NFC credits to 0
[   66.452843] thunderbolt 0000:07:00.0: 3:1: adding 12 NFC credits to 0
[   66.452971] thunderbolt 0000:07:00.0: 0:d: adding 5 NFC credits to 0
[   66.453227] thunderbolt 0000:07:00.0: 303:3: Writing hop 2
[   66.453228] thunderbolt 0000:07:00.0: 303:3:  In HopID: 8 => Out port: 11 Out HopID: 9
[   66.453229] thunderbolt 0000:07:00.0: 303:3:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[   66.453231] thunderbolt 0000:07:00.0: 303:3:    Counter enabled: 0 Counter index: 2047
[   66.453232] thunderbolt 0000:07:00.0: 303:3:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[   66.453233] thunderbolt 0000:07:00.0: 303:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   66.453483] thunderbolt 0000:07:00.0: 3:1: Writing hop 1
[   66.453484] thunderbolt 0000:07:00.0: 3:1:  In HopID: 9 => Out port: 3 Out HopID: 8
[   66.453485] thunderbolt 0000:07:00.0: 3:1:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[   66.453487] thunderbolt 0000:07:00.0: 3:1:    Counter enabled: 0 Counter index: 2047
[   66.453488] thunderbolt 0000:07:00.0: 3:1:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[   66.453489] thunderbolt 0000:07:00.0: 3:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   66.453739] thunderbolt 0000:07:00.0: 0:d: Writing hop 0
[   66.453740] thunderbolt 0000:07:00.0: 0:d:  In HopID: 9 => Out port: 3 Out HopID: 9
[   66.453741] thunderbolt 0000:07:00.0: 0:d:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[   66.453743] thunderbolt 0000:07:00.0: 0:d:    Counter enabled: 0 Counter index: 2047
[   66.453744] thunderbolt 0000:07:00.0: 0:d:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[   66.453745] thunderbolt 0000:07:00.0: 0:d:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   66.453867] thunderbolt 0000:07:00.0: path activation complete
[   66.453868] thunderbolt 0000:07:00.0: activating AUX TX path from 0:13 to 303:11
[   66.456654] thunderbolt 0000:07:00.0: 303:3: Writing hop 2
[   66.456656] thunderbolt 0000:07:00.0: 303:3:  In HopID: 9 => Out port: 11 Out HopID: 8
[   66.456657] thunderbolt 0000:07:00.0: 303:3:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   66.456658] thunderbolt 0000:07:00.0: 303:3:    Counter enabled: 0 Counter index: 2047
[   66.456659] thunderbolt 0000:07:00.0: 303:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   66.456660] thunderbolt 0000:07:00.0: 303:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   66.456909] thunderbolt 0000:07:00.0: 3:1: Writing hop 1
[   66.456910] thunderbolt 0000:07:00.0: 3:1:  In HopID: 10 => Out port: 3 Out HopID: 9
[   66.456911] thunderbolt 0000:07:00.0: 3:1:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   66.456912] thunderbolt 0000:07:00.0: 3:1:    Counter enabled: 0 Counter index: 2047
[   66.456913] thunderbolt 0000:07:00.0: 3:1:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   66.456914] thunderbolt 0000:07:00.0: 3:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   66.457165] thunderbolt 0000:07:00.0: 0:d: Writing hop 0
[   66.457166] thunderbolt 0000:07:00.0: 0:d:  In HopID: 8 => Out port: 3 Out HopID: 10
[   66.457167] thunderbolt 0000:07:00.0: 0:d:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   66.457168] thunderbolt 0000:07:00.0: 0:d:    Counter enabled: 0 Counter index: 2047
[   66.457169] thunderbolt 0000:07:00.0: 0:d:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   66.457171] thunderbolt 0000:07:00.0: 0:d:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   66.457293] thunderbolt 0000:07:00.0: path activation complete
[   66.457294] thunderbolt 0000:07:00.0: activating AUX RX path from 303:11 to 0:13
[   66.457421] thunderbolt 0000:07:00.0: 0:3: Writing hop 2
[   66.457422] thunderbolt 0000:07:00.0: 0:3:  In HopID: 9 => Out port: 13 Out HopID: 8
[   66.457423] thunderbolt 0000:07:00.0: 0:3:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   66.457424] thunderbolt 0000:07:00.0: 0:3:    Counter enabled: 0 Counter index: 2047
[   66.457425] thunderbolt 0000:07:00.0: 0:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   66.457426] thunderbolt 0000:07:00.0: 0:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   66.457677] thunderbolt 0000:07:00.0: 3:3: Writing hop 1
[   66.457678] thunderbolt 0000:07:00.0: 3:3:  In HopID: 8 => Out port: 1 Out HopID: 9
[   66.457679] thunderbolt 0000:07:00.0: 3:3:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   66.457680] thunderbolt 0000:07:00.0: 3:3:    Counter enabled: 0 Counter index: 2047
[   66.457681] thunderbolt 0000:07:00.0: 3:3:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   66.457683] thunderbolt 0000:07:00.0: 3:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   66.457933] thunderbolt 0000:07:00.0: 303:b: Writing hop 0
[   66.457934] thunderbolt 0000:07:00.0: 303:b:  In HopID: 8 => Out port: 3 Out HopID: 8
[   66.457935] thunderbolt 0000:07:00.0: 303:b:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   66.457936] thunderbolt 0000:07:00.0: 303:b:    Counter enabled: 0 Counter index: 2047
[   66.457937] thunderbolt 0000:07:00.0: 303:b:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   66.457939] thunderbolt 0000:07:00.0: 303:b:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   66.458061] thunderbolt 0000:07:00.0: path activation complete
[   66.459085] thunderbolt 0000:07:00.0: Used link no : 0
[   66.459472] thunderbolt 0000:07:00.0: 3:7 <-> 303:a (PCI): activating
[   66.459475] thunderbolt 0000:07:00.0: activating PCIe Down path from 3:7 to 303:10
[   66.459597] thunderbolt 0000:07:00.0: 303:3: Writing hop 1
[   66.459598] thunderbolt 0000:07:00.0: 303:3:  In HopID: 10 => Out port: 10 Out HopID: 8
[   66.459599] thunderbolt 0000:07:00.0: 303:3:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   66.459601] thunderbolt 0000:07:00.0: 303:3:    Counter enabled: 0 Counter index: 2047
[   66.459602] thunderbolt 0000:07:00.0: 303:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   66.459603] thunderbolt 0000:07:00.0: 303:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   66.459852] thunderbolt 0000:07:00.0: 3:7: Writing hop 0
[   66.459854] thunderbolt 0000:07:00.0: 3:7:  In HopID: 8 => Out port: 3 Out HopID: 10
[   66.459855] thunderbolt 0000:07:00.0: 3:7:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   66.459856] thunderbolt 0000:07:00.0: 3:7:    Counter enabled: 0 Counter index: 2047
[   66.459857] thunderbolt 0000:07:00.0: 3:7:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   66.459858] thunderbolt 0000:07:00.0: 3:7:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   66.459980] thunderbolt 0000:07:00.0: path activation complete
[   66.459981] thunderbolt 0000:07:00.0: activating PCIe Up path from 303:10 to 3:7
[   66.460108] thunderbolt 0000:07:00.0: 3:3: Writing hop 1
[   66.460109] thunderbolt 0000:07:00.0: 3:3:  In HopID: 9 => Out port: 7 Out HopID: 8
[   66.460110] thunderbolt 0000:07:00.0: 3:3:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   66.460112] thunderbolt 0000:07:00.0: 3:3:    Counter enabled: 0 Counter index: 2047
[   66.460113] thunderbolt 0000:07:00.0: 3:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   66.460114] thunderbolt 0000:07:00.0: 3:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   66.460364] thunderbolt 0000:07:00.0: 303:a: Writing hop 0
[   66.460365] thunderbolt 0000:07:00.0: 303:a:  In HopID: 8 => Out port: 3 Out HopID: 9
[   66.460366] thunderbolt 0000:07:00.0: 303:a:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   66.460367] thunderbolt 0000:07:00.0: 303:a:    Counter enabled: 0 Counter index: 2047
[   66.460368] thunderbolt 0000:07:00.0: 303:a:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   66.460370] thunderbolt 0000:07:00.0: 303:a:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   66.460492] thunderbolt 0000:07:00.0: path activation complete
[   66.654186] pci 0000:18:00.0: [8086:1513] type 01 class 0x060400
[   66.654289] pci 0000:18:00.0: enabling Extended Tags
[   66.656622] pci 0000:18:00.0: supports D1 D2
[   66.656623] pci 0000:18:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   66.656794] pcieport 0000:06:04.0: ASPM: current common clock configuration is inconsistent, reconfiguring
[   66.684159] pci 0000:18:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   66.684329] pci 0000:19:00.0: [8086:1513] type 01 class 0x060400
[   66.684436] pci 0000:19:00.0: enabling Extended Tags
[   66.684626] pci 0000:19:00.0: supports D1 D2
[   66.689038] pci 0000:19:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   66.689211] pci 0000:19:01.0: [8086:1513] type 01 class 0x060400
[   66.691457] pci 0000:19:01.0: enabling Extended Tags
[   66.691644] pci 0000:19:01.0: supports D1 D2
[   66.691645] pci 0000:19:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[   66.691811] pci 0000:19:02.0: [8086:1513] type 01 class 0x060400
[   66.691917] pci 0000:19:02.0: enabling Extended Tags
[   66.692104] pci 0000:19:02.0: supports D1 D2
[   66.692104] pci 0000:19:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[   66.692273] pci 0000:19:04.0: [8086:1513] type 01 class 0x060400
[   66.692379] pci 0000:19:04.0: enabling Extended Tags
[   66.692569] pci 0000:19:04.0: supports D1 D2
[   66.692569] pci 0000:19:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[   66.692738] pci 0000:19:05.0: [8086:1513] type 01 class 0x060400
[   66.706857] pci 0000:19:05.0: enabling Extended Tags
[   66.707042] pci 0000:19:05.0: supports D1 D2
[   66.707043] pci 0000:19:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[   66.707227] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[   66.707241] pci 0000:18:00.0:   bridge window [io  0x0000-0x0fff]
[   66.707247] pci 0000:18:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   66.707260] pci 0000:18:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   66.707264] pci 0000:19:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   66.707280] pci 0000:19:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   66.707295] pci 0000:19:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   66.707310] pci 0000:19:04.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   66.707325] pci 0000:19:05.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   66.707519] pci 0000:1a:00.0: [12d8:400c] type 01 class 0x060400
[   66.707893] pci 0000:1a:00.0: supports D1 D2
[   66.707894] pci 0000:1a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   66.734173] pci 0000:19:00.0: PCI bridge to [bus 1a-55]
[   66.734186] pci 0000:19:00.0:   bridge window [io  0x0000-0x0fff]
[   66.734193] pci 0000:19:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   66.734206] pci 0000:19:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   66.734211] pci 0000:1a:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   66.734451] pci 0000:1b:03.0: [12d8:400c] type 01 class 0x060400
[   66.734774] pci 0000:1b:03.0: supports D1 D2
[   66.742819] pci 0000:1b:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[   66.743035] pci 0000:1a:00.0: PCI bridge to [bus 1b-55]
[   66.745207] pci 0000:1a:00.0:   bridge window [io  0x0000-0x0fff]
[   66.745223] pci 0000:1a:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   66.745239] pci 0000:1a:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   66.748864] pci 0000:1b:03.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   66.749092] pci 0000:1c:00.0: [12d8:400e] type 00 class 0x0c0310
[   66.751379] pci 0000:1c:00.0: reg 0x10: [mem 0x00000000-0x00000fff]
[   66.751661] pci 0000:1c:00.0: supports D1 D2
[   66.751662] pci 0000:1c:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   66.751829] pci 0000:1c:00.1: [12d8:400e] type 00 class 0x0c0310
[   66.751872] pci 0000:1c:00.1: reg 0x10: [mem 0x00000000-0x00000fff]
[   66.752146] pci 0000:1c:00.1: supports D1 D2
[   66.752146] pci 0000:1c:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[   66.752281] pci 0000:1c:00.2: [12d8:400f] type 00 class 0x0c0320
[   66.752323] pci 0000:1c:00.2: reg 0x10: [mem 0x00000000-0x000000ff]
[   66.752597] pci 0000:1c:00.2: supports D1 D2
[   66.752598] pci 0000:1c:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[   66.752864] pci 0000:1b:03.0: PCI bridge to [bus 1c-55]
[   66.767031] pci 0000:1b:03.0:   bridge window [io  0x0000-0x0fff]
[   66.767039] pci 0000:1b:03.0:   bridge window [mem 0x00000000-0x000fffff]
[   66.767055] pci 0000:1b:03.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   66.770533] pci_bus 0000:1c: busn_res: [bus 1c-55] end is updated to 1c
[   66.770542] pci_bus 0000:1b: busn_res: [bus 1b-55] end is updated to 1c
[   66.770559] pci_bus 0000:1a: busn_res: [bus 1a-55] end is updated to 1c
[   66.770730] pci 0000:1d:00.0: [14e4:16b0] type 00 class 0x020000
[   66.775224] pci 0000:1d:00.0: reg 0x10: [mem 0x00000000-0x0000ffff 64bit pref]
[   66.775291] pci 0000:1d:00.0: reg 0x18: [mem 0x00000000-0x0000ffff 64bit pref]
[   66.777924] pci 0000:1d:00.0: PME# supported from D0 D3hot D3cold
[   66.804192] pci 0000:19:01.0: PCI bridge to [bus 1d-55]
[   66.804206] pci 0000:19:01.0:   bridge window [io  0x0000-0x0fff]
[   66.804213] pci 0000:19:01.0:   bridge window [mem 0x00000000-0x000fffff]
[   66.804225] pci 0000:19:01.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   66.804227] pci_bus 0000:1d: busn_res: [bus 1d-55] end is updated to 1d
[   66.804386] pci 0000:1e:00.0: [11c1:5901] type 00 class 0x0c0010
[   66.811383] pci 0000:1e:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[   66.811713] pci 0000:1e:00.0: supports D1 D2
[   66.811714] pci 0000:1e:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   66.834193] pci 0000:19:02.0: PCI bridge to [bus 1e-55]
[   66.834207] pci 0000:19:02.0:   bridge window [io  0x0000-0x0fff]
[   66.834214] pci 0000:19:02.0:   bridge window [mem 0x00000000-0x000fffff]
[   66.834227] pci 0000:19:02.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   66.834228] pci_bus 0000:1e: busn_res: [bus 1e-55] end is updated to 1e
[   66.834414] pci 0000:1f:00.0: [8086:1513] type 01 class 0x060400
[   66.834561] pci 0000:1f:00.0: enabling Extended Tags
[   66.834827] pci 0000:1f:00.0: supports D1 D2
[   66.844598] pci 0000:1f:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   66.874182] pci 0000:19:04.0: PCI bridge to [bus 1f-55]
[   66.874196] pci 0000:19:04.0:   bridge window [io  0x0000-0x0fff]
[   66.874203] pci 0000:19:04.0:   bridge window [mem 0x00000000-0x000fffff]
[   66.874216] pci 0000:19:04.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   66.874221] pci 0000:1f:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   66.874455] pci 0000:20:00.0: [8086:1513] type 01 class 0x060400
[   66.874622] pci 0000:20:00.0: enabling Extended Tags
[   66.874885] pci 0000:20:00.0: supports D1 D2
[   66.874886] pci 0000:20:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   66.875120] pci 0000:20:01.0: [8086:1513] type 01 class 0x060400
[   66.875275] pci 0000:20:01.0: enabling Extended Tags
[   66.875543] pci 0000:20:01.0: supports D1 D2
[   66.875543] pci 0000:20:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[   66.875771] pci 0000:20:02.0: [8086:1513] type 01 class 0x060400
[   66.892801] pci 0000:20:02.0: enabling Extended Tags
[   66.893062] pci 0000:20:02.0: supports D1 D2
[   66.893063] pci 0000:20:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[   66.893301] pci 0000:20:04.0: [8086:1513] type 01 class 0x060400
[   66.893454] pci 0000:20:04.0: enabling Extended Tags
[   66.893725] pci 0000:20:04.0: supports D1 D2
[   66.893726] pci 0000:20:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[   66.893961] pci 0000:20:05.0: [8086:1513] type 01 class 0x060400
[   66.903532] pci 0000:20:05.0: enabling Extended Tags
[   66.903797] pci 0000:20:05.0: supports D1 D2
[   66.903797] pci 0000:20:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[   66.904061] pci 0000:1f:00.0: PCI bridge to [bus 20-55]
[   66.904079] pci 0000:1f:00.0:   bridge window [io  0x0000-0x0fff]
[   66.904088] pci 0000:1f:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   66.904113] pci 0000:1f:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   66.904118] pci 0000:20:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   66.904144] pci 0000:20:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   66.904167] pci 0000:20:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   66.904196] pci 0000:20:04.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   66.904217] pci 0000:20:05.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   66.904447] pci 0000:21:00.0: [12d8:400c] type 01 class 0x060400
[   66.904945] pci 0000:21:00.0: supports D1 D2
[   66.920223] pci 0000:21:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   66.920523] pci 0000:20:00.0: PCI bridge to [bus 21-55]
[   66.922474] pci 0000:20:00.0:   bridge window [io  0x0000-0x0fff]
[   66.922483] pci 0000:20:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   66.924698] pci 0000:20:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   66.924704] pci 0000:21:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   66.925048] pci 0000:22:03.0: [12d8:400c] type 01 class 0x060400
[   66.928631] pci 0000:22:03.0: supports D1 D2
[   66.928632] pci 0000:22:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[   66.928900] pci 0000:21:00.0: PCI bridge to [bus 22-55]
[   66.928922] pci 0000:21:00.0:   bridge window [io  0x0000-0x0fff]
[   66.928933] pci 0000:21:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   66.928954] pci 0000:21:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   66.928960] pci 0000:22:03.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   66.929231] pci 0000:23:00.0: [12d8:400e] type 00 class 0x0c0310
[   66.929288] pci 0000:23:00.0: reg 0x10: [mem 0x00000000-0x00000fff]
[   66.929645] pci 0000:23:00.0: supports D1 D2
[   66.940715] pci 0000:23:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   66.940949] pci 0000:23:00.1: [12d8:400e] type 00 class 0x0c0310
[   66.943067] pci 0000:23:00.1: reg 0x10: [mem 0x00000000-0x00000fff]
[   66.943441] pci 0000:23:00.1: supports D1 D2
[   66.943442] pci 0000:23:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[   66.943614] pci 0000:23:00.2: [12d8:400f] type 00 class 0x0c0320
[   66.943671] pci 0000:23:00.2: reg 0x10: [mem 0x00000000-0x000000ff]
[   66.944028] pci 0000:23:00.2: supports D1 D2
[   66.944029] pci 0000:23:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[   66.944423] pci 0000:22:03.0: PCI bridge to [bus 23-55]
[   66.953512] pci 0000:22:03.0:   bridge window [io  0x0000-0x0fff]
[   66.953524] pci 0000:22:03.0:   bridge window [mem 0x00000000-0x000fffff]
[   66.953545] pci 0000:22:03.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   66.957244] pci_bus 0000:23: busn_res: [bus 23-55] end is updated to 23
[   66.957256] pci_bus 0000:22: busn_res: [bus 22-55] end is updated to 23
[   66.959655] pci_bus 0000:21: busn_res: [bus 21-55] end is updated to 23
[   66.959860] pci 0000:24:00.0: [14e4:16b0] type 00 class 0x020000
[   66.959940] pci 0000:24:00.0: reg 0x10: [mem 0x00000000-0x0000ffff 64bit pref]
[   66.959988] pci 0000:24:00.0: reg 0x18: [mem 0x00000000-0x0000ffff 64bit pref]
[   66.960418] pci 0000:24:00.0: PME# supported from D0 D3hot D3cold
[   66.960743] pci 0000:20:01.0: PCI bridge to [bus 24-55]
[   66.960760] pci 0000:20:01.0:   bridge window [io  0x0000-0x0fff]
[   66.960770] pci 0000:20:01.0:   bridge window [mem 0x00000000-0x000fffff]
[   66.960788] pci 0000:20:01.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   66.960789] pci_bus 0000:24: busn_res: [bus 24-55] end is updated to 24
[   66.961002] pci 0000:25:00.0: [11c1:5901] type 00 class 0x0c0010
[   66.974099] pci 0000:25:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[   66.974554] pci 0000:25:00.0: supports D1 D2
[   66.974555] pci 0000:25:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   66.974866] pci 0000:20:02.0: PCI bridge to [bus 25-55]
[   66.974883] pci 0000:20:02.0:   bridge window [io  0x0000-0x0fff]
[   66.974893] pci 0000:20:02.0:   bridge window [mem 0x00000000-0x000fffff]
[   66.974910] pci 0000:20:02.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   66.974911] pci_bus 0000:25: busn_res: [bus 25-55] end is updated to 25
[   66.975045] pci 0000:20:04.0: PCI bridge to [bus 26-55]
[   66.975063] pci 0000:20:04.0:   bridge window [io  0x0000-0x0fff]
[   66.975072] pci 0000:20:04.0:   bridge window [mem 0x00000000-0x000fffff]
[   66.975097] pci 0000:20:04.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   66.975098] pci_bus 0000:26: busn_res: [bus 26-55] end is updated to 35
[   66.975241] pci 0000:20:05.0: PCI bridge to [bus 36-55]
[   66.975266] pci 0000:20:05.0:   bridge window [io  0x0000-0x0fff]
[   66.975275] pci 0000:20:05.0:   bridge window [mem 0x00000000-0x000fffff]
[   66.975293] pci 0000:20:05.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   66.975294] pci_bus 0000:36: busn_res: [bus 36-55] end is updated to 45
[   66.975303] pci_bus 0000:20: busn_res: [bus 20-55] end is updated to 45
[   66.975313] pci_bus 0000:1f: busn_res: [bus 1f-55] end is updated to 45
[   66.975452] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[   67.000098] pci 0000:19:05.0:   bridge window [io  0x0000-0x0fff]
[   67.001263] pci 0000:19:05.0:   bridge window [mem 0x00000000-0x000fffff]
[   67.001276] pci 0000:19:05.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   67.001277] pci_bus 0000:46: busn_res: [bus 46-55] end is updated to 55
[   67.004907] pci_bus 0000:19: busn_res: [bus 19-55] end is updated to 55
[   67.004918] pci 0000:20:04.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 26-35] add_size 3ff00000 add_align 100000
[   67.004920] pci 0000:20:04.0: bridge window [mem 0x00100000-0x001fffff] to [bus 26-35] add_size 7f00000 add_align 100000
[   67.004929] pci 0000:20:05.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 36-45] add_size 3ff00000 add_align 100000
[   67.004931] pci 0000:20:05.0: bridge window [mem 0x00100000-0x001fffff] to [bus 36-45] add_size 7f00000 add_align 100000
[   67.004933] pci 0000:1f:00.0: bridge window [mem 0x00100000-0x005fffff 64bit pref] to [bus 20-45] add_size 7fe00000 add_align 100000
[   67.004935] pci 0000:1f:00.0: bridge window [mem 0x00100000-0x005fffff] to [bus 20-45] add_size fe00000 add_align 100000
[   67.004936] pci 0000:19:04.0: bridge window [mem 0x00100000-0x005fffff 64bit pref] to [bus 1f-45] add_size bf900000 add_align 100000
[   67.004938] pci 0000:19:04.0: bridge window [mem 0x00100000-0x005fffff] to [bus 1f-45] add_size 17900000 add_align 100000
[   67.004939] pci 0000:19:05.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 46-55] add_size 3ff00000 add_align 100000
[   67.004941] pci 0000:19:05.0: bridge window [mem 0x00100000-0x001fffff] to [bus 46-55] add_size 7f00000 add_align 100000
[   67.004943] pci 0000:18:00.0: bridge window [mem 0x00100000-0x009fffff 64bit pref] to [bus 19-55] add_size ff800000 add_align 100000
[   67.004945] pci 0000:18:00.0: bridge window [mem 0x00100000-0x009fffff] to [bus 19-55] add_size 1f800000 add_align 100000
[   67.020931] pcieport 0000:06:04.0: bridge window [mem 0x00100000-0x009fffff 64bit pref] to [bus 18-55] add_size 13ef00000 add_align 100000
[   67.020938] pcieport 0000:06:04.0: BAR 9: no space for [mem size 0x00900000 64bit pref]
[   67.020939] pcieport 0000:06:04.0: BAR 9: failed to assign [mem size 0x00900000 64bit pref]
[   67.020941] pcieport 0000:06:04.0: BAR 9: no space for [mem size 0x00900000 64bit pref]
[   67.020942] pcieport 0000:06:04.0: BAR 9: failed to assign [mem size 0x00900000 64bit pref]
[   67.020952] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[   67.020953] pci 0000:18:00.0: BAR 9: no space for [mem size 0x00900000 64bit pref]
[   67.020954] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0x00900000 64bit pref]
[   67.020956] pci 0000:18:00.0: BAR 7: assigned [io  0x5000-0x9fff]
[   67.020957] pci 0000:18:00.0: BAR 8: assigned [mem 0xb0b00000-0xc90fffff]
[   67.020958] pci 0000:18:00.0: BAR 9: no space for [mem size 0x00900000 64bit pref]
[   67.020960] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0x00900000 64bit pref]
[   67.020964] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[   67.020966] pci 0000:19:00.0: BAR 9: assigned [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   67.020967] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0d00000-0xb0dfffff]
[   67.020968] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0e00000-0xb0efffff 64bit pref]
[   67.020970] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[   67.020971] pci 0000:19:02.0: BAR 9: assigned [mem 0xb1000000-0xb10fffff 64bit pref]
[   67.020972] pci 0000:19:04.0: BAR 8: assigned [mem 0xb1100000-0xbd27ffff]
[   67.020974] pci 0000:19:04.0: BAR 9: assigned [mem 0xbd300000-0xbd5fffff 64bit pref]
[   67.020975] pci 0000:19:05.0: BAR 8: no space for [mem size 0x0c100000]
[   67.020976] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x0c100000]
[   67.020977] pci 0000:19:05.0: BAR 9: assigned [mem 0xbd600000-0xbd8fffff 64bit pref]
[   67.020979] pci 0000:19:00.0: BAR 7: assigned [io  0x5000-0x5fff]
[   67.020980] pci 0000:19:01.0: BAR 7: assigned [io  0x6000-0x6fff]
[   67.020981] pci 0000:19:02.0: BAR 7: assigned [io  0x7000-0x7fff]
[   67.020982] pci 0000:19:04.0: BAR 7: assigned [io  0x8000-0x8fff]
[   67.020983] pci 0000:19:05.0: BAR 7: assigned [io  0x9000-0x9fff]
[   67.020985] pci 0000:19:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[   67.020987] pci 0000:19:00.0: BAR 9: assigned [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   67.020988] pci 0000:19:01.0: BAR 8: assigned [mem 0xb0d00000-0xb0dfffff]
[   67.020989] pci 0000:19:01.0: BAR 9: assigned [mem 0xb0e00000-0xb0efffff 64bit pref]
[   67.020990] pci 0000:19:02.0: BAR 8: assigned [mem 0xb0f00000-0xb0ffffff]
[   67.020992] pci 0000:19:02.0: BAR 9: assigned [mem 0xb1000000-0xb10fffff 64bit pref]
[   67.020993] pci 0000:19:04.0: BAR 8: assigned [mem 0xb1100000-0xbd27ffff]
[   67.020994] pci 0000:19:04.0: BAR 9: assigned [mem 0xbd300000-0xbd5fffff 64bit pref]
[   67.020995] pci 0000:19:05.0: BAR 8: no space for [mem size 0x0c100000]
[   67.020996] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x0c100000]
[   67.020998] pci 0000:19:05.0: BAR 9: assigned [mem 0xbd600000-0xbd8fffff 64bit pref]
[   67.021000] pci 0000:1a:00.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[   67.021001] pci 0000:1a:00.0: BAR 9: assigned [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   67.021002] pci 0000:1a:00.0: BAR 7: assigned [io  0x5000-0x5fff]
[   67.021004] pci 0000:1b:03.0: BAR 8: assigned [mem 0xb0b00000-0xb0bfffff]
[   67.021005] pci 0000:1b:03.0: BAR 9: assigned [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   67.021006] pci 0000:1b:03.0: BAR 7: assigned [io  0x5000-0x5fff]
[   67.021008] pci 0000:1c:00.0: BAR 0: assigned [mem 0xb0b00000-0xb0b00fff]
[   67.021017] pci 0000:1c:00.1: BAR 0: assigned [mem 0xb0b01000-0xb0b01fff]
[   67.021033] pci 0000:1c:00.2: BAR 0: assigned [mem 0xb0b02000-0xb0b020ff]
[   67.021042] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[   67.021047] pci 0000:1b:03.0:   bridge window [io  0x5000-0x5fff]
[   67.021066] pci 0000:1b:03.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[   67.021075] pci 0000:1b:03.0:   bridge window [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   67.021091] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[   67.021096] pci 0000:1a:00.0:   bridge window [io  0x5000-0x5fff]
[   67.021108] pci 0000:1a:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[   67.021116] pci 0000:1a:00.0:   bridge window [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   67.021132] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[   67.021136] pci 0000:19:00.0:   bridge window [io  0x5000-0x5fff]
[   67.021145] pci 0000:19:00.0:   bridge window [mem 0xb0b00000-0xb0bfffff]
[   67.021152] pci 0000:19:00.0:   bridge window [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   67.021165] pci 0000:1d:00.0: BAR 0: assigned [mem 0xb0e00000-0xb0e0ffff 64bit pref]
[   67.021193] pci 0000:1d:00.0: BAR 2: assigned [mem 0xb0e10000-0xb0e1ffff 64bit pref]
[   67.021222] pci 0000:19:01.0: PCI bridge to [bus 1d]
[   67.021225] pci 0000:19:01.0:   bridge window [io  0x6000-0x6fff]
[   67.021234] pci 0000:19:01.0:   bridge window [mem 0xb0d00000-0xb0dfffff]
[   67.021241] pci 0000:19:01.0:   bridge window [mem 0xb0e00000-0xb0efffff 64bit pref]
[   67.021254] pci 0000:1e:00.0: BAR 0: assigned [mem 0xb0f00000-0xb0f00fff 64bit]
[   67.021282] pci 0000:19:02.0: PCI bridge to [bus 1e]
[   67.021286] pci 0000:19:02.0:   bridge window [io  0x7000-0x7fff]
[   67.021295] pci 0000:19:02.0:   bridge window [mem 0xb0f00000-0xb0ffffff]
[   67.021302] pci 0000:19:02.0:   bridge window [mem 0xb1000000-0xb10fffff 64bit pref]
[   67.021315] pci 0000:1f:00.0: BAR 8: assigned [mem 0xb1100000-0xbd27ffff]
[   67.021316] pci 0000:1f:00.0: BAR 9: assigned [mem 0xbd300000-0xbd5fffff 64bit pref]
[   67.021317] pci 0000:1f:00.0: BAR 7: assigned [io  0x8000-0x8fff]
[   67.021320] pci 0000:20:00.0: BAR 8: assigned [mem 0xb1100000-0xb11fffff]
[   67.021321] pci 0000:20:00.0: BAR 9: assigned [mem 0xbd300000-0xbd3fffff 64bit pref]
[   67.021322] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[   67.021324] pci 0000:20:01.0: BAR 9: assigned [mem 0xbd400000-0xbd4fffff 64bit pref]
[   67.021325] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1300000-0xb13fffff]
[   67.021326] pci 0000:20:02.0: BAR 9: assigned [mem 0xbd500000-0xbd5fffff 64bit pref]
[   67.021327] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1400000-0xb733ffff]
[   67.021329] pci 0000:20:04.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[   67.021330] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[   67.021332] pci 0000:20:05.0: BAR 8: assigned [mem 0xb7400000-0xbd27ffff]
[   67.021333] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[   67.021335] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[   67.021336] pci 0000:20:00.0: BAR 7: assigned [io  0x8000-0x8fff]
[   67.021337] pci 0000:20:01.0: BAR 7: no space for [io  size 0x1000]
[   67.021338] pci 0000:20:01.0: BAR 7: failed to assign [io  size 0x1000]
[   67.021339] pci 0000:20:02.0: BAR 7: no space for [io  size 0x1000]
[   67.021340] pci 0000:20:02.0: BAR 7: failed to assign [io  size 0x1000]
[   67.021341] pci 0000:20:04.0: BAR 7: no space for [io  size 0x1000]
[   67.021342] pci 0000:20:04.0: BAR 7: failed to assign [io  size 0x1000]
[   67.021343] pci 0000:20:05.0: BAR 7: no space for [io  size 0x1000]
[   67.021344] pci 0000:20:05.0: BAR 7: failed to assign [io  size 0x1000]
[   67.021346] pci 0000:20:00.0: BAR 8: assigned [mem 0xb1100000-0xb11fffff]
[   67.021347] pci 0000:20:00.0: BAR 9: assigned [mem 0xbd300000-0xbd3fffff 64bit pref]
[   67.021348] pci 0000:20:01.0: BAR 8: assigned [mem 0xb1200000-0xb12fffff]
[   67.021350] pci 0000:20:01.0: BAR 9: assigned [mem 0xbd400000-0xbd4fffff 64bit pref]
[   67.021351] pci 0000:20:02.0: BAR 8: assigned [mem 0xb1300000-0xb13fffff]
[   67.021352] pci 0000:20:02.0: BAR 9: assigned [mem 0xbd500000-0xbd5fffff 64bit pref]
[   67.021353] pci 0000:20:04.0: BAR 8: assigned [mem 0xb1400000-0xb733ffff]
[   67.021355] pci 0000:20:04.0: BAR 9: assigned [mem 0xb7400000-0xb74fffff 64bit pref]
[   67.021356] pci 0000:20:05.0: BAR 8: no space for [mem size 0x05e80000]
[   67.021357] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x05e80000]
[   67.021359] pci 0000:20:05.0: BAR 9: assigned [mem 0xb7500000-0xb75fffff 64bit pref]
[   67.021360] pci 0000:20:00.0: BAR 7: assigned [io  0x8000-0x8fff]
[   67.021361] pci 0000:20:01.0: BAR 7: no space for [io  size 0x1000]
[   67.021362] pci 0000:20:01.0: BAR 7: failed to assign [io  size 0x1000]
[   67.021363] pci 0000:20:02.0: BAR 7: no space for [io  size 0x1000]
[   67.021364] pci 0000:20:02.0: BAR 7: failed to assign [io  size 0x1000]
[   67.021365] pci 0000:20:04.0: BAR 7: no space for [io  size 0x1000]
[   67.021366] pci 0000:20:04.0: BAR 7: failed to assign [io  size 0x1000]
[   67.021367] pci 0000:20:05.0: BAR 7: no space for [io  size 0x1000]
[   67.021368] pci 0000:20:05.0: BAR 7: failed to assign [io  size 0x1000]
[   67.021370] pci 0000:20:05.0: BAR 9: [mem 0xb7500000-0xb75fffff 64bit pref] (failed to expand by 0x3ff00000)
[   67.021371] pci 0000:20:05.0: failed to add 3ff00000 res[9]=[mem 0xb7500000-0xb75fffff 64bit pref]
[   67.021374] pci 0000:20:04.0: BAR 9: [mem 0xb7400000-0xb74fffff 64bit pref] (failed to expand by 0x3ff00000)
[   67.021375] pci 0000:20:04.0: failed to add 3ff00000 res[9]=[mem 0xb7400000-0xb74fffff 64bit pref]
[   67.021377] pci 0000:21:00.0: BAR 8: assigned [mem 0xb1100000-0xb11fffff]
[   67.021378] pci 0000:21:00.0: BAR 9: assigned [mem 0xbd300000-0xbd3fffff 64bit pref]
[   67.021379] pci 0000:21:00.0: BAR 7: assigned [io  0x8000-0x8fff]
[   67.021381] pci 0000:22:03.0: BAR 8: assigned [mem 0xb1100000-0xb11fffff]
[   67.021382] pci 0000:22:03.0: BAR 9: assigned [mem 0xbd300000-0xbd3fffff 64bit pref]
[   67.021383] pci 0000:22:03.0: BAR 7: assigned [io  0x8000-0x8fff]
[   67.021385] pci 0000:23:00.0: BAR 0: assigned [mem 0xb1100000-0xb1100fff]
[   67.021396] pci 0000:23:00.1: BAR 0: assigned [mem 0xb1101000-0xb1101fff]
[   67.021407] pci 0000:23:00.2: BAR 0: assigned [mem 0xb1102000-0xb11020ff]
[   67.021418] pci 0000:22:03.0: PCI bridge to [bus 23]
[   67.021424] pci 0000:22:03.0:   bridge window [io  0x8000-0x8fff]
[   67.021440] pci 0000:22:03.0:   bridge window [mem 0xb1100000-0xb11fffff]
[   67.021451] pci 0000:22:03.0:   bridge window [mem 0xbd300000-0xbd3fffff 64bit pref]
[   67.021472] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[   67.021478] pci 0000:21:00.0:   bridge window [io  0x8000-0x8fff]
[   67.021494] pci 0000:21:00.0:   bridge window [mem 0xb1100000-0xb11fffff]
[   67.021505] pci 0000:21:00.0:   bridge window [mem 0xbd300000-0xbd3fffff 64bit pref]
[   67.021527] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[   67.021532] pci 0000:20:00.0:   bridge window [io  0x8000-0x8fff]
[   67.021545] pci 0000:20:00.0:   bridge window [mem 0xb1100000-0xb11fffff]
[   67.021554] pci 0000:20:00.0:   bridge window [mem 0xbd300000-0xbd3fffff 64bit pref]
[   67.021572] pci 0000:24:00.0: BAR 0: assigned [mem 0xbd400000-0xbd40ffff 64bit pref]
[   67.021609] pci 0000:24:00.0: BAR 2: assigned [mem 0xbd410000-0xbd41ffff 64bit pref]
[   67.021647] pci 0000:20:01.0: PCI bridge to [bus 24]
[   67.021660] pci 0000:20:01.0:   bridge window [mem 0xb1200000-0xb12fffff]
[   67.021669] pci 0000:20:01.0:   bridge window [mem 0xbd400000-0xbd4fffff 64bit pref]
[   67.021687] pci 0000:25:00.0: BAR 0: assigned [mem 0xb1300000-0xb1300fff 64bit]
[   67.021725] pci 0000:20:02.0: PCI bridge to [bus 25]
[   67.021738] pci 0000:20:02.0:   bridge window [mem 0xb1300000-0xb13fffff]
[   67.021747] pci 0000:20:02.0:   bridge window [mem 0xbd500000-0xbd5fffff 64bit pref]
[   67.021764] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[   67.021777] pci 0000:20:04.0:   bridge window [mem 0xb1400000-0xb733ffff]
[   67.021786] pci 0000:20:04.0:   bridge window [mem 0xb7400000-0xb74fffff 64bit pref]
[   67.021804] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[   67.021825] pci 0000:20:05.0:   bridge window [mem 0xb7500000-0xb75fffff 64bit pref]
[   67.021842] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[   67.021847] pci 0000:1f:00.0:   bridge window [io  0x8000-0x8fff]
[   67.021860] pci 0000:1f:00.0:   bridge window [mem 0xb1100000-0xbd27ffff]
[   67.021869] pci 0000:1f:00.0:   bridge window [mem 0xbd300000-0xbd5fffff 64bit pref]
[   67.021886] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[   67.021890] pci 0000:19:04.0:   bridge window [io  0x8000-0x8fff]
[   67.021899] pci 0000:19:04.0:   bridge window [mem 0xb1100000-0xbd27ffff]
[   67.021906] pci 0000:19:04.0:   bridge window [mem 0xbd300000-0xbd5fffff 64bit pref]
[   67.021918] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[   67.021922] pci 0000:19:05.0:   bridge window [io  0x9000-0x9fff]
[   67.021937] pci 0000:19:05.0:   bridge window [mem 0xbd600000-0xbd8fffff 64bit pref]
[   67.021949] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[   67.021952] pci 0000:18:00.0:   bridge window [io  0x5000-0x9fff]
[   67.021961] pci 0000:18:00.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[   67.021979] pcieport 0000:06:04.0: PCI bridge to [bus 18-55]
[   67.021982] pcieport 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[   67.021987] pcieport 0000:06:04.0:   bridge window [mem 0xb0b00000-0xc90fffff]
[   67.021997] PCI: No. 2 try to assign unassigned res
[   67.021998] pci 0000:22:03.0: resource 7 [io  0x8000-0x8fff] released
[   67.021999] pci 0000:22:03.0: PCI bridge to [bus 23]
[   67.022021] pci 0000:21:00.0: resource 7 [io  0x8000-0x8fff] released
[   67.022022] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[   67.022043] pci 0000:20:00.0: resource 7 [io  0x8000-0x8fff] released
[   67.022043] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[   67.022061] pci 0000:1f:00.0: resource 7 [io  0x8000-0x8fff] released
[   67.022062] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[   67.022079] release child resource [mem 0xb1100000-0xb1100fff]
[   67.022080] release child resource [mem 0xb1101000-0xb1101fff]
[   67.022080] release child resource [mem 0xb1102000-0xb11020ff]
[   67.022081] pci 0000:22:03.0: resource 8 [mem 0xb1100000-0xb11fffff] released
[   67.022082] pci 0000:22:03.0: PCI bridge to [bus 23]
[   67.022093] pci 0000:21:00.0: resource 8 [mem 0xb1100000-0xb11fffff] released
[   67.022094] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[   67.022105] pci 0000:20:00.0: resource 8 [mem 0xb1100000-0xb11fffff] released
[   67.022106] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[   67.022115] pci 0000:20:01.0: resource 8 [mem 0xb1200000-0xb12fffff] released
[   67.022116] pci 0000:20:01.0: PCI bridge to [bus 24]
[   67.022125] release child resource [mem 0xb1300000-0xb1300fff 64bit]
[   67.022125] pci 0000:20:02.0: resource 8 [mem 0xb1300000-0xb13fffff] released
[   67.022126] pci 0000:20:02.0: PCI bridge to [bus 25]
[   67.022135] pci 0000:20:04.0: resource 8 [mem 0xb1400000-0xb733ffff] released
[   67.022136] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[   67.022145] release child resource [mem 0xb7400000-0xb74fffff 64bit pref]
[   67.022146] release child resource [mem 0xb7500000-0xb75fffff 64bit pref]
[   67.022146] pci 0000:1f:00.0: resource 8 [mem 0xb1100000-0xbd27ffff] released
[   67.022147] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[   67.022156] release child resource [mem 0xb0b00000-0xb0b00fff]
[   67.022157] release child resource [mem 0xb0b01000-0xb0b01fff]
[   67.022157] release child resource [mem 0xb0b02000-0xb0b020ff]
[   67.022158] pci 0000:1b:03.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[   67.022159] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[   67.022167] pci 0000:1a:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[   67.022168] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[   67.022177] pci 0000:19:00.0: resource 8 [mem 0xb0b00000-0xb0bfffff] released
[   67.022178] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[   67.022184] pci 0000:19:01.0: resource 8 [mem 0xb0d00000-0xb0dfffff] released
[   67.022185] pci 0000:19:01.0: PCI bridge to [bus 1d]
[   67.022191] release child resource [mem 0xb0f00000-0xb0f00fff 64bit]
[   67.022192] pci 0000:19:02.0: resource 8 [mem 0xb0f00000-0xb0ffffff] released
[   67.022193] pci 0000:19:02.0: PCI bridge to [bus 1e]
[   67.022200] pci 0000:19:04.0: resource 8 [mem 0xb1100000-0xbd27ffff] released
[   67.022201] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[   67.022207] release child resource [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   67.022208] release child resource [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   67.022208] release child resource [mem 0xb0c00000-0xb0cfffff 64bit pref]
[   67.022209] release child resource [mem 0xb0e00000-0xb0e0ffff 64bit pref]
[   67.022209] release child resource [mem 0xb0e10000-0xb0e1ffff 64bit pref]
[   67.022210] release child resource [mem 0xb0e00000-0xb0efffff 64bit pref]
[   67.022210] release child resource [mem 0xb1000000-0xb10fffff 64bit pref]
[   67.022211] release child resource [mem 0xbd300000-0xbd3fffff 64bit pref]
[   67.022212] release child resource [mem 0xbd300000-0xbd3fffff 64bit pref]
[   67.022212] release child resource [mem 0xbd300000-0xbd3fffff 64bit pref]
[   67.022213] release child resource [mem 0xbd400000-0xbd40ffff 64bit pref]
[   67.022213] release child resource [mem 0xbd410000-0xbd41ffff 64bit pref]
[   67.022214] release child resource [mem 0xbd400000-0xbd4fffff 64bit pref]
[   67.022214] release child resource [mem 0xbd500000-0xbd5fffff 64bit pref]
[   67.022215] release child resource [mem 0xbd300000-0xbd5fffff 64bit pref]
[   67.022216] release child resource [mem 0xbd300000-0xbd5fffff 64bit pref]
[   67.022216] release child resource [mem 0xbd600000-0xbd8fffff 64bit pref]
[   67.022217] pci 0000:18:00.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[   67.022218] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[   67.022224] pcieport 0000:06:04.0: resource 8 [mem 0xb0b00000-0xc90fffff] released
[   67.022225] pcieport 0000:06:04.0: PCI bridge to [bus 18-55]
[   67.022230] release child resource [mem 0xa8a00000-0xa8a3ffff]
[   67.022230] release child resource [mem 0xa8a00000-0xa8a3ffff]
[   67.022231] release child resource [mem 0xa8a40000-0xa8a40fff]
[   67.022231] pcieport 0000:06:00.0: resource 8 [mem 0xa8a00000-0xa8afffff] released
[   67.022232] pcieport 0000:06:00.0: PCI bridge to [bus 07]
[   67.022236] pcieport 0000:06:03.0: resource 8 [mem 0xa8b00000-0xb0afffff] released
[   67.022237] pcieport 0000:06:03.0: PCI bridge to [bus 08-17]
[   67.022242] pcieport 0000:06:05.0: resource 8 [mem 0xc9100000-0xd10fffff] released
[   67.022243] pcieport 0000:06:05.0: PCI bridge to [bus 56-65]
[   67.022247] pcieport 0000:06:06.0: resource 8 [mem 0xd1100000-0xd90fffff] released
[   67.022248] pcieport 0000:06:06.0: PCI bridge to [bus 66-75]
[   67.022252] pcieport 0000:05:00.0: resource 8 [mem 0xa8a00000-0xd90fffff] released
[   67.022253] pcieport 0000:05:00.0: PCI bridge to [bus 06-75]
[   67.022260] pci 0000:20:04.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 26-35] add_size 3ff00000 add_align 100000
[   67.022262] pci 0000:20:04.0: bridge window [mem 0x00100000-0x060fffff] to [bus 26-35] add_size 2000000 add_align 100000
[   67.022263] pci 0000:20:05.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 36-45] add_size 3ff00000 add_align 100000
[   67.022265] pci 0000:20:05.0: bridge window [mem 0x00100000-0x05ffffff] to [bus 36-45] add_size 2100000 add_align 100000
[   67.022266] pci 0000:1f:00.0: bridge window [mem 0x00100000-0x005fffff 64bit pref] to [bus 20-45] add_size 7fe00000 add_align 100000
[   67.022268] pci 0000:1f:00.0: bridge window [mem 0x00100000-0x0c2fffff] to [bus 20-45] add_size 4100000 add_align 100000
[   67.022270] pci 0000:19:04.0: bridge window [mem 0x00100000-0x005fffff 64bit pref] to [bus 1f-45] add_size bf900000 add_align 100000
[   67.022271] pci 0000:19:04.0: bridge window [mem 0x00100000-0x0c2fffff] to [bus 1f-45] add_size 4100000 add_align 100000
[   67.022273] pci 0000:19:05.0: bridge window [mem 0x00100000-0x003fffff 64bit pref] to [bus 46-55] add_size 3fd00000 add_align 100000
[   67.022275] pci 0000:18:00.0: bridge window [mem 0x00100000-0x00bfffff 64bit pref] to [bus 19-55] add_size ff600000 add_align 100000
[   67.022276] pci 0000:18:00.0: bridge window [mem 0x00100000-0x186fffff] to [bus 19-55] add_size 4100000 add_align 100000
[   67.022278] pcieport 0000:06:04.0: bridge window [mem 0x00100000-0x00bfffff 64bit pref] to [bus 18-55] add_size 13eb00000 add_align 100000
[   67.022279] pcieport 0000:06:04.0: bridge window [mem 0x00100000-0x186fffff] to [bus 18-55] add_size 4100000 add_align 100000
[   67.022282] pcieport 0000:06:04.0: BAR 8: no space for [mem size 0x18600000]
[   67.022284] pcieport 0000:06:04.0: BAR 8: failed to assign [mem size 0x18600000]
[   67.022285] pcieport 0000:06:04.0: BAR 9: no space for [mem size 0x00b00000 64bit pref]
[   67.022286] pcieport 0000:06:04.0: BAR 9: failed to assign [mem size 0x00b00000 64bit pref]
[   67.022287] pcieport 0000:06:04.0: BAR 8: no space for [mem size 0x18600000]
[   67.022288] pcieport 0000:06:04.0: BAR 8: failed to assign [mem size 0x18600000]
[   67.022290] pcieport 0000:06:04.0: BAR 9: no space for [mem size 0x00b00000 64bit pref]
[   67.022291] pcieport 0000:06:04.0: BAR 9: failed to assign [mem size 0x00b00000 64bit pref]
[   67.022292] pci 0000:18:00.0: BAR 8: no space for [mem size 0x18600000]
[   67.022293] pci 0000:18:00.0: BAR 8: failed to assign [mem size 0x18600000]
[   67.022294] pci 0000:18:00.0: BAR 9: no space for [mem size 0x00b00000 64bit pref]
[   67.022295] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0x00b00000 64bit pref]
[   67.022296] pci 0000:18:00.0: BAR 8: no space for [mem size 0x18600000]
[   67.022297] pci 0000:18:00.0: BAR 8: failed to assign [mem size 0x18600000]
[   67.022298] pci 0000:18:00.0: BAR 9: no space for [mem size 0x00b00000 64bit pref]
[   67.022300] pci 0000:18:00.0: BAR 9: failed to assign [mem size 0x00b00000 64bit pref]
[   67.084574] switching from power state:
[   67.084882] pci 0000:19:00.0: BAR 8: no space for [mem size 0x00100000]
[   67.086010] 	ui class: battery
[   67.087114] pci 0000:19:00.0: BAR 8: failed to assign [mem size 0x00100000]
[   67.088220] 	internal class:
[   67.089322] pci 0000:19:00.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   67.090429]  none
[   67.091538] pci 0000:19:00.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]

[   67.093741] pci 0000:19:01.0: BAR 8: no space for [mem size 0x00100000]
[   67.094876] 	caps:
[   67.095999] pci 0000:19:01.0: BAR 8: failed to assign [mem size 0x00100000]

[   67.098217] pci 0000:19:01.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   67.099313] 	uvd    vclk: 0 dclk: 0
[   67.100410] pci 0000:19:01.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   67.101499] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   67.102591] pci 0000:19:02.0: BAR 8: no space for [mem size 0x00100000]
[   67.103675] 		power level 1    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   67.104806] pci 0000:19:02.0: BAR 8: failed to assign [mem size 0x00100000]
[   67.105930] 		power level 2    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   67.107041] pci 0000:19:02.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   67.108142] 	status:
[   67.109223] pci 0000:19:02.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   67.110284]  c
[   67.111327] pci 0000:19:04.0: BAR 8: no space for [mem size 0x0c180000]
[   67.112376]  r
[   67.113401] pci 0000:19:04.0: BAR 8: failed to assign [mem size 0x0c180000]

[   67.114440] switching to power state:
[   67.114440] 	ui class: battery
[   67.114440] 	internal class: none
[   67.114441] 	caps:
[   67.115507] pci 0000:19:04.0: BAR 9: no space for [mem size 0x00400000 64bit pref]

[   67.116519] 	uvd    vclk: 0 dclk: 0
[   67.117516] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x00400000 64bit pref]
[   67.118511] 		power level 0    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   67.119497] pci 0000:19:05.0: BAR 8: no space for [mem size 0x0c100000]
[   67.120480] 		power level 1    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   67.121459] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x0c100000]
[   67.122436] 		power level 2    sclk: 20000 mclk: 30000 vddc: 950 vddci: 950
[   67.123403] pci 0000:19:05.0: BAR 9: no space for [mem size 0x00400000 64bit pref]
[   67.124392] 	status: c
[   67.125383] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x00400000 64bit pref]
[   67.126308]  r
[   67.127220] pci 0000:19:00.0: BAR 8: no space for [mem size 0x00100000]

[   67.129040] pci 0000:19:00.0: BAR 8: failed to assign [mem size 0x00100000]
[   67.356041] pci 0000:19:00.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   67.356042] pci 0000:19:00.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   67.356043] pci 0000:19:01.0: BAR 8: no space for [mem size 0x00100000]
[   67.356044] pci 0000:19:01.0: BAR 8: failed to assign [mem size 0x00100000]
[   67.356045] pci 0000:19:01.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   67.356046] pci 0000:19:01.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   67.356047] pci 0000:19:02.0: BAR 8: no space for [mem size 0x00100000]
[   67.356048] pci 0000:19:02.0: BAR 8: failed to assign [mem size 0x00100000]
[   67.356049] pci 0000:19:02.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   67.356058] pci 0000:19:02.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   67.356059] pci 0000:19:04.0: BAR 8: no space for [mem size 0x0c180000]
[   67.356060] pci 0000:19:04.0: BAR 8: failed to assign [mem size 0x0c180000]
[   67.356061] pci 0000:19:04.0: BAR 9: no space for [mem size 0x00400000 64bit pref]
[   67.356062] pci 0000:19:04.0: BAR 9: failed to assign [mem size 0x00400000 64bit pref]
[   67.356063] pci 0000:19:05.0: BAR 8: no space for [mem size 0x0c100000]
[   67.356064] pci 0000:19:05.0: BAR 8: failed to assign [mem size 0x0c100000]
[   67.356065] pci 0000:19:05.0: BAR 9: no space for [mem size 0x00400000 64bit pref]
[   67.356066] pci 0000:19:05.0: BAR 9: failed to assign [mem size 0x00400000 64bit pref]
[   67.356068] pci 0000:1a:00.0: BAR 8: no space for [mem size 0x00100000]
[   67.356069] pci 0000:1a:00.0: BAR 8: failed to assign [mem size 0x00100000]
[   67.356070] pci 0000:1a:00.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   67.356071] pci 0000:1a:00.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   67.356072] pci 0000:1a:00.0: BAR 8: no space for [mem size 0x00100000]
[   67.389604] pci 0000:1a:00.0: BAR 8: failed to assign [mem size 0x00100000]
[   67.389605] pci 0000:1a:00.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   67.389607] pci 0000:1a:00.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   67.389608] pci 0000:1b:03.0: BAR 8: no space for [mem size 0x00100000]
[   67.395283] pci 0000:1b:03.0: BAR 8: failed to assign [mem size 0x00100000]
[   67.395284] pci 0000:1b:03.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   67.395285] pci 0000:1b:03.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   67.395286] pci 0000:1b:03.0: BAR 8: no space for [mem size 0x00100000]
[   67.395287] pci 0000:1b:03.0: BAR 8: failed to assign [mem size 0x00100000]
[   67.395288] pci 0000:1b:03.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   67.395289] pci 0000:1b:03.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   67.395299] pci 0000:1c:00.0: BAR 0: no space for [mem size 0x00001000]
[   67.395300] pci 0000:1c:00.0: BAR 0: failed to assign [mem size 0x00001000]
[   67.395301] pci 0000:1c:00.1: BAR 0: no space for [mem size 0x00001000]
[   67.395302] pci 0000:1c:00.1: BAR 0: failed to assign [mem size 0x00001000]
[   67.395303] pci 0000:1c:00.2: BAR 0: no space for [mem size 0x00000100]
[   67.395304] pci 0000:1c:00.2: BAR 0: failed to assign [mem size 0x00000100]
[   67.395305] pci 0000:1c:00.0: BAR 0: no space for [mem size 0x00001000]
[   67.395306] pci 0000:1c:00.0: BAR 0: failed to assign [mem size 0x00001000]
[   67.395307] pci 0000:1c:00.1: BAR 0: no space for [mem size 0x00001000]
[   67.395308] pci 0000:1c:00.1: BAR 0: failed to assign [mem size 0x00001000]
[   67.419398] pci 0000:1c:00.2: BAR 0: no space for [mem size 0x00000100]
[   67.419399] pci 0000:1c:00.2: BAR 0: failed to assign [mem size 0x00000100]
[   67.419401] pci 0000:1b:03.0: PCI bridge to [bus 1c]
[   67.419406] pci 0000:1b:03.0:   bridge window [io  0x5000-0x5fff]
[   67.424998] pci 0000:1a:00.0: PCI bridge to [bus 1b-1c]
[   67.425004] pci 0000:1a:00.0:   bridge window [io  0x5000-0x5fff]
[   67.425061] pci 0000:19:00.0: PCI bridge to [bus 1a-1c]
[   67.425065] pci 0000:19:00.0:   bridge window [io  0x5000-0x5fff]
[   67.425107] pci 0000:1d:00.0: BAR 0: no space for [mem size 0x00010000 64bit pref]
[   67.425109] pci 0000:1d:00.0: BAR 0: failed to assign [mem size 0x00010000 64bit pref]
[   67.425110] pci 0000:1d:00.0: BAR 2: no space for [mem size 0x00010000 64bit pref]
[   67.425111] pci 0000:1d:00.0: BAR 2: failed to assign [mem size 0x00010000 64bit pref]
[   67.425112] pci 0000:1d:00.0: BAR 0: no space for [mem size 0x00010000 64bit pref]
[   67.425113] pci 0000:1d:00.0: BAR 0: failed to assign [mem size 0x00010000 64bit pref]
[   67.425114] pci 0000:1d:00.0: BAR 2: no space for [mem size 0x00010000 64bit pref]
[   67.425115] pci 0000:1d:00.0: BAR 2: failed to assign [mem size 0x00010000 64bit pref]
[   67.425116] pci 0000:19:01.0: PCI bridge to [bus 1d]
[   67.425120] pci 0000:19:01.0:   bridge window [io  0x6000-0x6fff]
[   67.425147] pci 0000:1e:00.0: BAR 0: no space for [mem size 0x00001000 64bit]
[   67.425148] pci 0000:1e:00.0: BAR 0: failed to assign [mem size 0x00001000 64bit]
[   67.425149] pci 0000:1e:00.0: BAR 0: no space for [mem size 0x00001000 64bit]
[   67.425150] pci 0000:1e:00.0: BAR 0: failed to assign [mem size 0x00001000 64bit]
[   67.425151] pci 0000:19:02.0: PCI bridge to [bus 1e]
[   67.425155] pci 0000:19:02.0:   bridge window [io  0x7000-0x7fff]
[   67.425182] pci 0000:1f:00.0: BAR 8: no space for [mem size 0x0c180000]
[   67.425183] pci 0000:1f:00.0: BAR 8: failed to assign [mem size 0x0c180000]
[   67.425184] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x00400000 64bit pref]
[   67.425185] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x00400000 64bit pref]
[   67.425187] pci 0000:1f:00.0: BAR 7: no space for [io  size 0x2800]
[   67.425188] pci 0000:1f:00.0: BAR 7: failed to assign [io  size 0x2800]
[   67.425189] pci 0000:1f:00.0: BAR 8: no space for [mem size 0x0c180000]
[   67.425190] pci 0000:1f:00.0: BAR 8: failed to assign [mem size 0x0c180000]
[   67.425191] pci 0000:1f:00.0: BAR 9: no space for [mem size 0x00400000 64bit pref]
[   67.425192] pci 0000:1f:00.0: BAR 9: failed to assign [mem size 0x00400000 64bit pref]
[   67.425193] pci 0000:1f:00.0: BAR 7: no space for [io  size 0x2800]
[   67.425194] pci 0000:1f:00.0: BAR 7: failed to assign [io  size 0x2800]
[   67.425198] pci 0000:20:00.0: BAR 8: no space for [mem size 0x00100000]
[   67.425199] pci 0000:20:00.0: BAR 8: failed to assign [mem size 0x00100000]
[   67.425200] pci 0000:20:00.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   67.425201] pci 0000:20:00.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   67.425202] pci 0000:20:01.0: BAR 8: no space for [mem size 0x00100000]
[   67.425203] pci 0000:20:01.0: BAR 8: failed to assign [mem size 0x00100000]
[   67.425204] pci 0000:20:01.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   67.425205] pci 0000:20:01.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   67.425206] pci 0000:20:02.0: BAR 8: no space for [mem size 0x00100000]
[   67.425207] pci 0000:20:02.0: BAR 8: failed to assign [mem size 0x00100000]
[   67.425208] pci 0000:20:02.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   67.425209] pci 0000:20:02.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   67.425210] pci 0000:20:04.0: BAR 8: no space for [mem size 0x05f40000]
[   67.425211] pci 0000:20:04.0: BAR 8: failed to assign [mem size 0x05f40000]
[   67.425212] pci 0000:20:04.0: BAR 9: no space for [mem size 0x00080000 64bit pref]
[   67.425213] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x00080000 64bit pref]
[   67.425214] pci 0000:20:05.0: BAR 8: no space for [mem size 0x05e80000]
[   67.425215] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x05e80000]
[   67.425216] pci 0000:20:05.0: BAR 9: no space for [mem size 0x40000000 64bit pref]
[   67.425217] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x40000000 64bit pref]
[   67.425219] pci 0000:20:00.0: BAR 7: no space for [io  size 0x1000]
[   67.425219] pci 0000:20:00.0: BAR 7: failed to assign [io  size 0x1000]
[   67.425220] pci 0000:20:01.0: BAR 7: no space for [io  size 0x1000]
[   67.425221] pci 0000:20:01.0: BAR 7: failed to assign [io  size 0x1000]
[   67.425222] pci 0000:20:02.0: BAR 7: no space for [io  size 0x1000]
[   67.425223] pci 0000:20:02.0: BAR 7: failed to assign [io  size 0x1000]
[   67.425224] pci 0000:20:04.0: BAR 7: no space for [io  size 0x1000]
[   67.425225] pci 0000:20:04.0: BAR 7: failed to assign [io  size 0x1000]
[   67.425226] pci 0000:20:05.0: BAR 7: no space for [io  size 0x1000]
[   67.425227] pci 0000:20:05.0: BAR 7: failed to assign [io  size 0x1000]
[   67.425229] pci 0000:20:00.0: BAR 8: no space for [mem size 0x00100000]
[   67.425230] pci 0000:20:00.0: BAR 8: failed to assign [mem size 0x00100000]
[   67.425231] pci 0000:20:00.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   67.425232] pci 0000:20:00.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   67.425233] pci 0000:20:01.0: BAR 8: no space for [mem size 0x00100000]
[   67.425234] pci 0000:20:01.0: BAR 8: failed to assign [mem size 0x00100000]
[   67.425235] pci 0000:20:01.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   67.425236] pci 0000:20:01.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   67.425237] pci 0000:20:02.0: BAR 8: no space for [mem size 0x00100000]
[   67.425238] pci 0000:20:02.0: BAR 8: failed to assign [mem size 0x00100000]
[   67.425239] pci 0000:20:02.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   67.425240] pci 0000:20:02.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   67.425241] pci 0000:20:04.0: BAR 8: no space for [mem size 0x05f40000]
[   67.425242] pci 0000:20:04.0: BAR 8: failed to assign [mem size 0x05f40000]
[   67.425243] pci 0000:20:04.0: BAR 9: no space for [mem size 0x00080000 64bit pref]
[   67.425244] pci 0000:20:04.0: BAR 9: failed to assign [mem size 0x00080000 64bit pref]
[   67.425245] pci 0000:20:05.0: BAR 8: no space for [mem size 0x05e80000]
[   67.425246] pci 0000:20:05.0: BAR 8: failed to assign [mem size 0x05e80000]
[   67.425247] pci 0000:20:05.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   67.425248] pci 0000:20:05.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   67.425249] pci 0000:20:00.0: BAR 7: no space for [io  size 0x1000]
[   67.425250] pci 0000:20:00.0: BAR 7: failed to assign [io  size 0x1000]
[   67.425251] pci 0000:20:01.0: BAR 7: no space for [io  size 0x1000]
[   67.425252] pci 0000:20:01.0: BAR 7: failed to assign [io  size 0x1000]
[   67.425253] pci 0000:20:02.0: BAR 7: no space for [io  size 0x1000]
[   67.425254] pci 0000:20:02.0: BAR 7: failed to assign [io  size 0x1000]
[   67.425255] pci 0000:20:04.0: BAR 7: no space for [io  size 0x1000]
[   67.425256] pci 0000:20:04.0: BAR 7: failed to assign [io  size 0x1000]
[   67.425257] pci 0000:20:05.0: BAR 7: no space for [io  size 0x1000]
[   67.425258] pci 0000:20:05.0: BAR 7: failed to assign [io  size 0x1000]
[   67.425260] pci 0000:21:00.0: BAR 8: no space for [mem size 0x00100000]
[   67.425261] pci 0000:21:00.0: BAR 8: failed to assign [mem size 0x00100000]
[   67.425262] pci 0000:21:00.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   67.425263] pci 0000:21:00.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   67.425264] pci 0000:21:00.0: BAR 7: no space for [io  size 0x1000]
[   67.425265] pci 0000:21:00.0: BAR 7: failed to assign [io  size 0x1000]
[   67.425266] pci 0000:22:03.0: BAR 8: no space for [mem size 0x00100000]
[   67.425267] pci 0000:22:03.0: BAR 8: failed to assign [mem size 0x00100000]
[   67.425268] pci 0000:22:03.0: BAR 9: no space for [mem size 0x00100000 64bit pref]
[   67.425269] pci 0000:22:03.0: BAR 9: failed to assign [mem size 0x00100000 64bit pref]
[   67.425270] pci 0000:22:03.0: BAR 7: no space for [io  size 0x1000]
[   67.425271] pci 0000:22:03.0: BAR 7: failed to assign [io  size 0x1000]
[   67.425272] pci 0000:23:00.0: BAR 0: no space for [mem size 0x00001000]
[   67.425273] pci 0000:23:00.0: BAR 0: failed to assign [mem size 0x00001000]
[   67.425274] pci 0000:23:00.1: BAR 0: no space for [mem size 0x00001000]
[   67.425275] pci 0000:23:00.1: BAR 0: failed to assign [mem size 0x00001000]
[   67.425276] pci 0000:23:00.2: BAR 0: no space for [mem size 0x00000100]
[   67.425277] pci 0000:23:00.2: BAR 0: failed to assign [mem size 0x00000100]
[   67.425278] pci 0000:22:03.0: PCI bridge to [bus 23]
[   67.425327] pci 0000:21:00.0: PCI bridge to [bus 22-23]
[   67.425376] pci 0000:20:00.0: PCI bridge to [bus 21-23]
[   67.425416] pci 0000:24:00.0: BAR 0: no space for [mem size 0x00010000 64bit pref]
[   67.425417] pci 0000:24:00.0: BAR 0: failed to assign [mem size 0x00010000 64bit pref]
[   67.425418] pci 0000:24:00.0: BAR 2: no space for [mem size 0x00010000 64bit pref]
[   67.425419] pci 0000:24:00.0: BAR 2: failed to assign [mem size 0x00010000 64bit pref]
[   67.425420] pci 0000:20:01.0: PCI bridge to [bus 24]
[   67.425460] pci 0000:25:00.0: BAR 0: no space for [mem size 0x00001000 64bit]
[   67.425461] pci 0000:25:00.0: BAR 0: failed to assign [mem size 0x00001000 64bit]
[   67.425462] pci 0000:20:02.0: PCI bridge to [bus 25]
[   67.425502] pci 0000:20:04.0: PCI bridge to [bus 26-35]
[   67.425542] pci 0000:20:05.0: PCI bridge to [bus 36-45]
[   67.425583] pci 0000:1f:00.0: PCI bridge to [bus 20-45]
[   67.425622] pci 0000:19:04.0: PCI bridge to [bus 1f-45]
[   67.425626] pci 0000:19:04.0:   bridge window [io  0x8000-0x8fff]
[   67.425653] pci 0000:19:05.0: PCI bridge to [bus 46-55]
[   67.425657] pci 0000:19:05.0:   bridge window [io  0x9000-0x9fff]
[   67.425684] pci 0000:18:00.0: PCI bridge to [bus 19-55]
[   67.425687] pci 0000:18:00.0:   bridge window [io  0x5000-0x9fff]
[   67.425714] pcieport 0000:06:04.0: PCI bridge to [bus 18-55]
[   67.425716] pcieport 0000:06:04.0:   bridge window [io  0x5000-0x9fff]
[   67.425759] pcieport 0000:18:00.0: enabling device (0000 -> 0001)
[   67.426102] pcieport 0000:19:00.0: enabling device (0000 -> 0001)
[   67.426428] pcieport 0000:19:01.0: enabling device (0000 -> 0001)
[   67.426861] pcieport 0000:19:02.0: enabling device (0000 -> 0001)
[   67.580384] pcieport 0000:19:04.0: enabling device (0000 -> 0001)
[   67.580593] pcieport 0000:19:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[   67.581015] pcieport 0000:19:05.0: enabling device (0000 -> 0001)
[   67.581219] pcieport 0000:19:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[   67.581582] pcieport 0000:1a:00.0: enabling device (0000 -> 0001)
[   67.581708] pcieport 0000:1b:03.0: enabling device (0000 -> 0001)
[   67.581859] pci 0000:1c:00.0: MSI is not implemented on this device, disabling it
[   67.581860] pci 0000:1c:00.0: PME# is unreliable, disabling it
[   67.581998] ohci-pci 0000:1c:00.0: init 0000:1c:00.0 fail, -16
[   67.591703] ohci-pci: probe of 0000:1c:00.0 failed with error -16
[   67.591707] pci 0000:1c:00.1: MSI is not implemented on this device, disabling it
[   67.591708] pci 0000:1c:00.1: PME# is unreliable, disabling it
[   67.591842] ohci-pci 0000:1c:00.1: init 0000:1c:00.1 fail, -16
[   67.596204] ohci-pci: probe of 0000:1c:00.1 failed with error -16
[   67.596208] pci 0000:1c:00.2: MSI is not implemented on this device, disabling it
[   67.596209] pci 0000:1c:00.2: PME# is unreliable, disabling it
[   67.596784] ehci-pci 0000:1c:00.2: init 0000:1c:00.2 fail, -16
[   67.600713] ehci-pci: probe of 0000:1c:00.2 failed with error -16
[   67.600776] tg3 0000:1d:00.0: can't ioremap BAR 0: [??? 0x00000000 flags 0x0]
[   67.603079] tg3 0000:1d:00.0: Cannot map device registers, aborting
[   67.603111] tg3: probe of 0000:1d:00.0 failed with error -12
[   67.603174] firewire_ohci 0000:1e:00.0: invalid MMIO resource
[   67.608988] pcieport 0000:20:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[   67.609725] pcieport 0000:20:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[   67.610485] pci 0000:23:00.0: MSI is not implemented on this device, disabling it
[   67.614221] pci 0000:23:00.0: PME# is unreliable, disabling it
[   67.614403] ohci-pci 0000:23:00.0: init 0000:23:00.0 fail, -16
[   67.616784] ohci-pci: probe of 0000:23:00.0 failed with error -16
[   67.616789] pci 0000:23:00.1: MSI is not implemented on this device, disabling it
[   67.616789] pci 0000:23:00.1: PME# is unreliable, disabling it
[   67.616915] ohci-pci 0000:23:00.1: init 0000:23:00.1 fail, -16
[   67.621680] ohci-pci: probe of 0000:23:00.1 failed with error -16
[   67.621684] pci 0000:23:00.2: MSI is not implemented on this device, disabling it
[   67.621685] pci 0000:23:00.2: PME# is unreliable, disabling it
[   67.621828] ehci-pci 0000:23:00.2: init 0000:23:00.2 fail, -16
[   67.626804] ehci-pci: probe of 0000:23:00.2 failed with error -16
[   67.626869] tg3 0000:24:00.0: can't ioremap BAR 0: [??? 0x00000000 flags 0x0]
[   67.629370] tg3 0000:24:00.0: Cannot map device registers, aborting
[   67.629404] tg3: probe of 0000:24:00.0 failed with error -12
[   67.629478] firewire_ohci 0000:25:00.0: invalid MMIO resource

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-04-06  2:51                                   ` Brad Campbell
@ 2022-04-06 14:56                                     ` Mika Westerberg
  2022-08-05  7:41                                       ` Brad Campbell
  0 siblings, 1 reply; 47+ messages in thread
From: Mika Westerberg @ 2022-04-06 14:56 UTC (permalink / raw)
  To: Brad Campbell; +Cc: linux-kernel

Hi,

On Wed, Apr 06, 2022 at 10:51:41AM +0800, Brad Campbell wrote:
> Both included in-line.
> 
> This is cold boot with the chain plugged in. I've re-added the dbg to
> print the link number, and I've included your path discovery debugs.
> Boot with chain plugged in, wait for it to settle, unplug and replug.
> First head in the chain fails with :
> 
> [   65.778129] [drm:radeon_dp_link_train [radeon]] *ERROR* displayport link status failed
> [   65.778158] [drm:radeon_dp_link_train [radeon]] *ERROR* clock recovery failed

Thanks for the logs! 

The DP tunnels look pretty much the same except that the Apple EFI CM
seems to assign 7 buffers for the AUX RX path first hop whereas we
always use 1 buffer. Not sure if that really makes a difference and we
could try to use the same number but first, I realized that the PCI
resource allocation seems not to work properly.

Can you disable PCIe tunneling (if you use Ubuntu/Fedora or similar
there is the "Thunderbolt -> Direct Access" switch that you can turn
off) and try again? Please also take 'sudo lspci -vv' for the resulting
topology. I suspect this might also affect the other issues (the
timeouts) you are seeing. Note this makes the peripherals connected to
the monitors unusable too.

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-04-06 14:56                                     ` Mika Westerberg
@ 2022-08-05  7:41                                       ` Brad Campbell
  2022-08-05 11:30                                         ` Mika Westerberg
  0 siblings, 1 reply; 47+ messages in thread
From: Brad Campbell @ 2022-08-05  7:41 UTC (permalink / raw)
  To: Mika Westerberg; +Cc: linux-kernel

On 6/4/22 22:56, Mika Westerberg wrote:
> Hi,
> 
> On Wed, Apr 06, 2022 at 10:51:41AM +0800, Brad Campbell wrote:
>> Both included in-line.
>>
>> This is cold boot with the chain plugged in. I've re-added the dbg to
>> print the link number, and I've included your path discovery debugs.
>> Boot with chain plugged in, wait for it to settle, unplug and replug.
>> First head in the chain fails with :
>>
>> [   65.778129] [drm:radeon_dp_link_train [radeon]] *ERROR* displayport link status failed
>> [   65.778158] [drm:radeon_dp_link_train [radeon]] *ERROR* clock recovery failed
> 
> Thanks for the logs!
> 
> The DP tunnels look pretty much the same except that the Apple EFI CM
> seems to assign 7 buffers for the AUX RX path first hop whereas we
> always use 1 buffer. Not sure if that really makes a difference and we
> could try to use the same number but first, I realized that the PCI
> resource allocation seems not to work properly.
> 
> Can you disable PCIe tunneling (if you use Ubuntu/Fedora or similar
> there is the "Thunderbolt -> Direct Access" switch that you can turn
> off) and try again? Please also take 'sudo lspci -vv' for the resulting
> topology. I suspect this might also affect the other issues (the
> timeouts) you are seeing. Note this makes the peripherals connected to
> the monitors unusable too.
> 

G'day Mika,

Unfortunately before I had a chance to progress this my poor iMac GPU finally turned
up its toes.

I have now replaced it with a Gigabyte B550 Vision-d-p which happily drives the Apple
Thunderbolt displays. This has a Titan Ridge controller and I'm running a 5.18.16 vanilla kernel.

When cold booted, this fires up, routes both PCIe and Displayport and both displays work.

With this configuration the kernel locks up when doing a warm reboot (black screen, no information). It
also fails on reset, and only a power cycle will allow the kernel to complete the boot.

If I disable the PCIe tunneling and just leave DP then it cold boots and then warm boots without issue.

If I build thunderbolt as a module and blacklist it to prevent it auto loading, I can
load it the first time which establishes the DP and PCIe tunnels. They then remain established
across a warm boot, and provided I don't try and load the thunderbolt module the system will just keep
running. I can run different kernels, memtest, whatever. The EFI doesn't break the tunnels
and the kernel works with them.

If I then try and load the thunderbolt module I get this :

[  618.242923] ACPI: bus type thunderbolt registered
[  618.242957] thunderbolt 0000:05:00.0: enabling device (0000 -> 0002)
[  618.242983] thunderbolt 0000:05:00.0: total paths: 12
[  618.243147] thunderbolt 0000:05:00.0: allocating TX ring 0 of size 10
[  618.243163] thunderbolt 0000:05:00.0: allocating RX ring 0 of size 10
[  618.243176] thunderbolt 0000:05:00.0: control channel created
[  618.243180] thunderbolt 0000:05:00.0: ICM not supported on this controller
[  618.243187] thunderbolt 0000:05:00.0: freeing RX ring 0
[  618.243193] thunderbolt 0000:05:00.0: freeing TX ring 0
[  618.243202] thunderbolt 0000:05:00.0: allocating TX ring 0 of size 10
[  618.243210] thunderbolt 0000:05:00.0: allocating RX ring 0 of size 10
[  618.243218] thunderbolt 0000:05:00.0: control channel created
[  618.243220] thunderbolt 0000:05:00.0: using software connection manager
[  618.243221] thunderbolt 0000:05:00.0: NHI initialized, starting thunderbolt
[  618.243222] thunderbolt 0000:05:00.0: control channel starting...
[  618.243223] thunderbolt 0000:05:00.0: starting TX ring 0
[  618.243231] thunderbolt 0000:05:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[  618.243233] thunderbolt 0000:05:00.0: starting RX ring 0
[  618.243241] thunderbolt 0000:05:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[  618.243245] thunderbolt 0000:05:00.0: security level set to user
[  618.243458] thunderbolt 0000:05:00.0: current switch config:
[  618.243460] thunderbolt 0000:05:00.0:  Thunderbolt 3 Switch: 8086:15ea (Revision: 6, TB Version: 16)
[  618.243461] thunderbolt 0000:05:00.0:   Max Port Number: 13
[  618.243463] thunderbolt 0000:05:00.0:   Config:
[  618.243463] thunderbolt 0000:05:00.0:    Upstream Port Number: 7 Depth: 0 Route String: 0x0 Enabled: 1, PlugEventsDelay: 255ms
[  618.243465] thunderbolt 0000:05:00.0:    unknown1: 0x0 unknown4: 0x0
[  618.248577] thunderbolt 0000:05:00.0: initializing Switch at 0x0 (depth: 0, up port: 7)
[  618.288517] thunderbolt 0000:05:00.0: 0: uid: 0xedd9a650496900
[  618.290436] thunderbolt 0000:05:00.0:  Port 1: 8086:15ea (Revision: 6, TB Version: 1, Type: Port (0x1))
[  618.290438] thunderbolt 0000:05:00.0:   Max hop id (in/out): 19/19
[  618.290439] thunderbolt 0000:05:00.0:   Max counters: 16
[  618.290440] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[  618.290441] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[  618.292352] thunderbolt 0000:05:00.0:  Port 2: 8086:15ea (Revision: 6, TB Version: 1, Type: Port (0x1))
[  618.292354] thunderbolt 0000:05:00.0:   Max hop id (in/out): 19/19
[  618.292354] thunderbolt 0000:05:00.0:   Max counters: 16
[  618.292355] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[  618.292355] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[  618.294277] thunderbolt 0000:05:00.0:  Port 3: 8086:15ea (Revision: 6, TB Version: 1, Type: Port (0x1))
[  618.294277] thunderbolt 0000:05:00.0:   Max hop id (in/out): 19/19
[  618.294278] thunderbolt 0000:05:00.0:   Max counters: 16
[  618.294278] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[  618.294279] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[  618.296197] thunderbolt 0000:05:00.0:  Port 4: 8086:15ea (Revision: 6, TB Version: 1, Type: Port (0x1))
[  618.296198] thunderbolt 0000:05:00.0:   Max hop id (in/out): 19/19
[  618.296198] thunderbolt 0000:05:00.0:   Max counters: 16
[  618.296199] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[  618.296199] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[  618.296449] thunderbolt 0000:05:00.0:  Port 5: 8086:15ea (Revision: 6, TB Version: 1, Type: DP/HDMI (0xe0101))
[  618.296450] thunderbolt 0000:05:00.0:   Max hop id (in/out): 255/255
[  618.296450] thunderbolt 0000:05:00.0:   Max counters: 2
[  618.296451] thunderbolt 0000:05:00.0:   NFC Credits: 0x180000c
[  618.296451] thunderbolt 0000:05:00.0:   Credits (total/control): 24/0
[  618.296764] thunderbolt 0000:05:00.0:  Port 6: 8086:15ea (Revision: 6, TB Version: 1, Type: DP/HDMI (0xe0101))
[  618.296765] thunderbolt 0000:05:00.0:   Max hop id (in/out): 255/255
[  618.296766] thunderbolt 0000:05:00.0:   Max counters: 2
[  618.296766] thunderbolt 0000:05:00.0:   NFC Credits: 0x180000c
[  618.296767] thunderbolt 0000:05:00.0:   Credits (total/control): 24/0
[  618.297477] thunderbolt 0000:05:00.0:  Port 7: 8086:15ea (Revision: 6, TB Version: 1, Type: NHI (0x2))
[  618.297478] thunderbolt 0000:05:00.0:   Max hop id (in/out): 11/11
[  618.297478] thunderbolt 0000:05:00.0:   Max counters: 16
[  618.297479] thunderbolt 0000:05:00.0:   NFC Credits: 0x1800000
[  618.297479] thunderbolt 0000:05:00.0:   Credits (total/control): 24/0
[  618.297730] thunderbolt 0000:05:00.0:  Port 8: 8086:15ea (Revision: 6, TB Version: 1, Type: PCIe (0x100101))
[  618.297731] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[  618.297731] thunderbolt 0000:05:00.0:   Max counters: 2
[  618.297732] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
[  618.297732] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
[  618.297992] thunderbolt 0000:05:00.0:  Port 9: 8086:15ea (Revision: 6, TB Version: 1, Type: PCIe (0x100101))
[  618.297993] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[  618.297993] thunderbolt 0000:05:00.0:   Max counters: 2
[  618.297994] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
[  618.297994] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
[  618.298496] thunderbolt 0000:05:00.0:  Port 10: 8086:15ea (Revision: 6, TB Version: 1, Type: DP/HDMI (0xe0102))
[  618.298497] thunderbolt 0000:05:00.0:   Max hop id (in/out): 9/9
[  618.298498] thunderbolt 0000:05:00.0:   Max counters: 2
[  618.298498] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
[  618.298499] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
[  618.299012] thunderbolt 0000:05:00.0:  Port 11: 8086:15ea (Revision: 6, TB Version: 1, Type: DP/HDMI (0xe0102))
[  618.299013] thunderbolt 0000:05:00.0:   Max hop id (in/out): 9/9
[  618.299014] thunderbolt 0000:05:00.0:   Max counters: 2
[  618.299014] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
[  618.299015] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
[  618.299269] thunderbolt 0000:05:00.0:  Port 12: 8086:15ea (Revision: 6, TB Version: 1, Type: Inactive (0x0))
[  618.299270] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[  618.299270] thunderbolt 0000:05:00.0:   Max counters: 2
[  618.299271] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
[  618.299271] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
[  618.299524] thunderbolt 0000:05:00.0:  Port 13: 8086:15ea (Revision: 6, TB Version: 1, Type: Inactive (0x0))
[  618.299525] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[  618.299526] thunderbolt 0000:05:00.0:   Max counters: 2
[  618.299526] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
[  618.299527] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
[  618.299527] thunderbolt 0000:05:00.0: 0: linked ports 1 <-> 2
[  618.299528] thunderbolt 0000:05:00.0: 0: linked ports 3 <-> 4
[  618.304645] thunderbolt 0000:05:00.0: 0: TMU: supports uni-directional mode
[  618.304645] thunderbolt 0000:05:00.0: 0: TMU: current mode: HiFi
[  618.304769] thunderbolt 0000:05:00.0: 0:1: is unplugged (state: 7)
[  618.304897] thunderbolt 0000:05:00.0: 0:3: is connected, link is up (state: 2)
[  618.305182] thunderbolt 0000:05:00.0: current switch config:
[  618.305183] thunderbolt 0000:05:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[  618.305184] thunderbolt 0000:05:00.0:   Max Port Number: 13
[  618.305184] thunderbolt 0000:05:00.0:   Config:
[  618.305184] thunderbolt 0000:05:00.0:    Upstream Port Number: 1 Depth: 1 Route String: 0x3 Enabled: 1, PlugEventsDelay: 255ms
[  618.305186] thunderbolt 0000:05:00.0:    unknown1: 0x0 unknown4: 0x0
[  618.309761] thunderbolt 0000:05:00.0: initializing Switch at 0x3 (depth: 1, up port: 1)
[  618.327174] thunderbolt 0000:05:00.0: 3: reading drom (length: 0x97)
[  618.820874] thunderbolt 0000:05:00.0: 3: DROM version: 1
[  618.821902] thunderbolt 0000:05:00.0: 3: uid: 0x1000100189170
[  618.824842] thunderbolt 0000:05:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[  618.824845] thunderbolt 0000:05:00.0:   Max hop id (in/out): 63/63
[  618.824845] thunderbolt 0000:05:00.0:   Max counters: 32
[  618.824846] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c0000c
[  618.824847] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[  618.827786] thunderbolt 0000:05:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[  618.827787] thunderbolt 0000:05:00.0:   Max hop id (in/out): 63/63
[  618.827788] thunderbolt 0000:05:00.0:   Max counters: 32
[  618.827788] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c0000c
[  618.827789] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[  618.830731] thunderbolt 0000:05:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[  618.830732] thunderbolt 0000:05:00.0:   Max hop id (in/out): 63/63
[  618.830732] thunderbolt 0000:05:00.0:   Max counters: 32
[  618.830733] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[  618.830733] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[  618.833678] thunderbolt 0000:05:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[  618.833680] thunderbolt 0000:05:00.0:   Max hop id (in/out): 63/63
[  618.833680] thunderbolt 0000:05:00.0:   Max counters: 32
[  618.833681] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[  618.833681] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[  618.833682] thunderbolt 0000:05:00.0: 3:5: disabled by eeprom
[  618.833683] thunderbolt 0000:05:00.0: 3:6: disabled by eeprom
[  618.834570] thunderbolt 0000:05:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[  618.834572] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[  618.834573] thunderbolt 0000:05:00.0:   Max counters: 1
[  618.834573] thunderbolt 0000:05:00.0:   NFC Credits: 0x700000
[  618.834574] thunderbolt 0000:05:00.0:   Credits (total/control): 7/0
[  618.835468] thunderbolt 0000:05:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[  618.835469] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[  618.835469] thunderbolt 0000:05:00.0:   Max counters: 1
[  618.835470] thunderbolt 0000:05:00.0:   NFC Credits: 0x700000
[  618.835470] thunderbolt 0000:05:00.0:   Credits (total/control): 7/0
[  618.835471] thunderbolt 0000:05:00.0: 3:9: disabled by eeprom
[  618.836360] thunderbolt 0000:05:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[  618.836361] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[  618.836362] thunderbolt 0000:05:00.0:   Max counters: 1
[  618.836363] thunderbolt 0000:05:00.0:   NFC Credits: 0x700000
[  618.836363] thunderbolt 0000:05:00.0:   Credits (total/control): 7/0
[  618.837518] thunderbolt 0000:05:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[  618.837519] thunderbolt 0000:05:00.0:   Max hop id (in/out): 9/9
[  618.837520] thunderbolt 0000:05:00.0:   Max counters: 2
[  618.837520] thunderbolt 0000:05:00.0:   NFC Credits: 0x700000
[  618.837521] thunderbolt 0000:05:00.0:   Credits (total/control): 7/0
[  618.837521] thunderbolt 0000:05:00.0: 3:c: disabled by eeprom
[  618.837522] thunderbolt 0000:05:00.0: 3:d: disabled by eeprom
[  618.855589] thunderbolt 0000:05:00.0: 3: TMU: current mode: bi-directional, HiFi
[  618.855600] thunderbolt 0-3: new device found, vendor=0x1 device=0x8002
[  618.855602] thunderbolt 0-3: Apple, Inc. Thunderbolt Display
[  618.856101] thunderbolt 0000:05:00.0: 3:3: is connected, link is up (state: 2)
[  618.856357] thunderbolt 0000:05:00.0: current switch config:
[  618.856357] thunderbolt 0000:05:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[  618.856359] thunderbolt 0000:05:00.0:   Max Port Number: 13
[  618.856359] thunderbolt 0000:05:00.0:   Config:
[  618.856360] thunderbolt 0000:05:00.0:    Upstream Port Number: 3 Depth: 2 Route String: 0x303 Enabled: 1, PlugEventsDelay: 255ms
[  618.856361] thunderbolt 0000:05:00.0:    unknown1: 0x0 unknown4: 0x0
[  618.860965] thunderbolt 0000:05:00.0: initializing Switch at 0x303 (depth: 2, up port: 3)
[  618.878375] thunderbolt 0000:05:00.0: 303: reading drom (length: 0x97)
[  620.072070] pcieport 0000:2a:05.0: can't change power state from D3cold to D0 (config space inaccessible)
[  620.676124] pcieport 0000:2a:05.0: pciehp: pcie_do_write_cmd: no response from device
[  621.903381] hrtimer: interrupt took 604006559 ns
[  622.296070] pcieport 0000:2a:05.0: pciehp: pcie_do_write_cmd: no response from device
[  622.698769] pcieport 0000:31:05.0: can't change power state from D3cold to D0 (config space inaccessible)
[  623.302796] pcieport 0000:31:05.0: pciehp: pcie_do_write_cmd: no response from device
[  623.906840] pcieport 0000:31:04.0: can't change power state from D3cold to D0 (config space inaccessible)
[  624.511090] pcieport 0000:31:04.0: pciehp: pcie_do_write_cmd: no response from device
[  625.115091] pcieport 0000:04:01.0: can't change power state from D3cold to D0 (config space inaccessible)
[  625.719304] pcieport 0000:04:01.0: pciehp: pcie_do_write_cmd: no response from device
[  625.920747] thunderbolt 0000:05:00.0: 303: timeout writing config space 2 to 0x28
[  625.920752] thunderbolt 0-303: reading DROM failed: -5
[  625.920753] thunderbolt 0000:05:00.0: 303: uid: 0x0
[  626.524964] pcieport 0000:31:05.0: pciehp: pcie_do_write_cmd: no response from device
[  626.726306] pcieport 0000:31:04.0: pciehp: pcie_do_write_cmd: no response from device
[  626.927661] pcieport 0000:04:01.0: pciehp: pcie_do_write_cmd: no response from device
[  627.330332] pcieport 0000:04:02.0: can't change power state from D3cold to D0 (config space inaccessible)
[  627.837000] thunderbolt 0000:05:00.0: 303: timeout reading config space 1 from 0x0
[  627.837005] thunderbolt 0-303: failed to initialize port 1
[  628.277015] thunderbolt 0000:05:00.0: 3: timeout reading config space 1 from 0x3b
[  628.716825] thunderbolt 0000:05:00.0: 0: timeout reading config space 1 from 0x3b
[  629.156976] thunderbolt 0000:05:00.0: 0: timeout reading config space 1 from 0x3b
[  629.597002] thunderbolt 0000:05:00.0: 0: timeout reading config space 1 from 0x39
[  630.037013] thunderbolt 0000:05:00.0: 0: timeout reading config space 1 from 0x39
[  630.477032] thunderbolt 0000:05:00.0: 0: timeout reading config space 1 from 0x39
[  630.916994] thunderbolt 0000:05:00.0: 0: timeout reading config space 1 from 0x39
[  631.356836] thunderbolt 0000:05:00.0: 3: timeout reading config space 1 from 0x39
[  631.806792] thunderbolt 0000:05:00.0: 3: timeout reading config space 1 from 0x39
[  632.246828] thunderbolt 0000:05:00.0: 0: timeout reading config space 2 from 0x10f
[  632.686977] thunderbolt 0000:05:00.0: 0: timeout reading config space 2 from 0x10f

I'm dangerously *assuming* that when trying to configure an already configured system the thunderbolt
driver is getting stuck because booting without trying to load the driver works fine.

If I try and warm boot when its in this state, the machine doesn't reach the EFI and I have to
hard reset or power cycle.

My questions are :
A) Since I have a viable but hacky work-around, is this something you'd be interested in helping chase down?
B) If so, what debugging information can I supply?

I have made up a serial console cable, but as I can reproduce the fault by loading the module
I thought perhaps it'd be easier to debug.

Regards,
Brad

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-08-05  7:41                                       ` Brad Campbell
@ 2022-08-05 11:30                                         ` Mika Westerberg
  2022-08-05 12:43                                           ` Brad Campbell
  0 siblings, 1 reply; 47+ messages in thread
From: Mika Westerberg @ 2022-08-05 11:30 UTC (permalink / raw)
  To: Brad Campbell; +Cc: linux-kernel

Hi,

On Fri, Aug 05, 2022 at 03:41:14PM +0800, Brad Campbell wrote:
> [  620.072070] pcieport 0000:2a:05.0: can't change power state from D3cold to D0 (config space inaccessible)
> [  620.676124] pcieport 0000:2a:05.0: pciehp: pcie_do_write_cmd: no response from device
> [  621.903381] hrtimer: interrupt took 604006559 ns
> [  622.296070] pcieport 0000:2a:05.0: pciehp: pcie_do_write_cmd: no response from device
> [  622.698769] pcieport 0000:31:05.0: can't change power state from D3cold to D0 (config space inaccessible)
> [  623.302796] pcieport 0000:31:05.0: pciehp: pcie_do_write_cmd: no response from device
> [  623.906840] pcieport 0000:31:04.0: can't change power state from D3cold to D0 (config space inaccessible)
> [  624.511090] pcieport 0000:31:04.0: pciehp: pcie_do_write_cmd: no response from device
> [  625.115091] pcieport 0000:04:01.0: can't change power state from D3cold to D0 (config space inaccessible)
> [  625.719304] pcieport 0000:04:01.0: pciehp: pcie_do_write_cmd: no response from device
> [  625.920747] thunderbolt 0000:05:00.0: 303: timeout writing config space 2 to 0x28
> [  625.920752] thunderbolt 0-303: reading DROM failed: -5
> [  625.920753] thunderbolt 0000:05:00.0: 303: uid: 0x0
> [  626.524964] pcieport 0000:31:05.0: pciehp: pcie_do_write_cmd: no response from device
> [  626.726306] pcieport 0000:31:04.0: pciehp: pcie_do_write_cmd: no response from device
> [  626.927661] pcieport 0000:04:01.0: pciehp: pcie_do_write_cmd: no response from device
> [  627.330332] pcieport 0000:04:02.0: can't change power state from D3cold to D0 (config space inaccessible)
> [  627.837000] thunderbolt 0000:05:00.0: 303: timeout reading config space 1 from 0x0
> [  627.837005] thunderbolt 0-303: failed to initialize port 1
> [  628.277015] thunderbolt 0000:05:00.0: 3: timeout reading config space 1 from 0x3b
> [  628.716825] thunderbolt 0000:05:00.0: 0: timeout reading config space 1 from 0x3b
> [  629.156976] thunderbolt 0000:05:00.0: 0: timeout reading config space 1 from 0x3b
> [  629.597002] thunderbolt 0000:05:00.0: 0: timeout reading config space 1 from 0x39
> [  630.037013] thunderbolt 0000:05:00.0: 0: timeout reading config space 1 from 0x39
> [  630.477032] thunderbolt 0000:05:00.0: 0: timeout reading config space 1 from 0x39
> [  630.916994] thunderbolt 0000:05:00.0: 0: timeout reading config space 1 from 0x39
> [  631.356836] thunderbolt 0000:05:00.0: 3: timeout reading config space 1 from 0x39
> [  631.806792] thunderbolt 0000:05:00.0: 3: timeout reading config space 1 from 0x39
> [  632.246828] thunderbolt 0000:05:00.0: 0: timeout reading config space 2 from 0x10f
> [  632.686977] thunderbolt 0000:05:00.0: 0: timeout reading config space 2 from 0x10f
> 
> I'm dangerously *assuming* that when trying to configure an already configured system the thunderbolt
> driver is getting stuck because booting without trying to load the driver works fine.
> 
> If I try and warm boot when its in this state, the machine doesn't reach the EFI and I have to
> hard reset or power cycle.
> 
> My questions are :
> A) Since I have a viable but hacky work-around, is this something
> you'd be interested in helping chase down?

I can try yes.

> B) If so, what debugging information can I supply?

Well can you try so that you disable PCIe PM for starters? Pass
"pcie_port_pm=off" in the command line and see if anything changes. Of
course this prevents low power states.

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-08-05 11:30                                         ` Mika Westerberg
@ 2022-08-05 12:43                                           ` Brad Campbell
  2022-08-05 13:01                                             ` Mika Westerberg
  0 siblings, 1 reply; 47+ messages in thread
From: Brad Campbell @ 2022-08-05 12:43 UTC (permalink / raw)
  To: Mika Westerberg; +Cc: linux-kernel

On 5/8/22 19:30, Mika Westerberg wrote:
> Hi,
> 
> On Fri, Aug 05, 2022 at 03:41:14PM +0800, Brad Campbell wrote:
>> [  620.072070] pcieport 0000:2a:05.0: can't change power state from D3cold to D0 (config space inaccessible)
>> [  620.676124] pcieport 0000:2a:05.0: pciehp: pcie_do_write_cmd: no response from device
>> [  621.903381] hrtimer: interrupt took 604006559 ns
>> [  622.296070] pcieport 0000:2a:05.0: pciehp: pcie_do_write_cmd: no response from device
>> [  622.698769] pcieport 0000:31:05.0: can't change power state from D3cold to D0 (config space inaccessible)
>> [  623.302796] pcieport 0000:31:05.0: pciehp: pcie_do_write_cmd: no response from device
>> [  623.906840] pcieport 0000:31:04.0: can't change power state from D3cold to D0 (config space inaccessible)
>> [  624.511090] pcieport 0000:31:04.0: pciehp: pcie_do_write_cmd: no response from device
>> [  625.115091] pcieport 0000:04:01.0: can't change power state from D3cold to D0 (config space inaccessible)
>> [  625.719304] pcieport 0000:04:01.0: pciehp: pcie_do_write_cmd: no response from device
>> [  625.920747] thunderbolt 0000:05:00.0: 303: timeout writing config space 2 to 0x28
>> [  625.920752] thunderbolt 0-303: reading DROM failed: -5
>> [  625.920753] thunderbolt 0000:05:00.0: 303: uid: 0x0
>> [  626.524964] pcieport 0000:31:05.0: pciehp: pcie_do_write_cmd: no response from device
>> [  626.726306] pcieport 0000:31:04.0: pciehp: pcie_do_write_cmd: no response from device
>> [  626.927661] pcieport 0000:04:01.0: pciehp: pcie_do_write_cmd: no response from device
>> [  627.330332] pcieport 0000:04:02.0: can't change power state from D3cold to D0 (config space inaccessible)
>> [  627.837000] thunderbolt 0000:05:00.0: 303: timeout reading config space 1 from 0x0
>> [  627.837005] thunderbolt 0-303: failed to initialize port 1
>> [  628.277015] thunderbolt 0000:05:00.0: 3: timeout reading config space 1 from 0x3b
>> [  628.716825] thunderbolt 0000:05:00.0: 0: timeout reading config space 1 from 0x3b
>> [  629.156976] thunderbolt 0000:05:00.0: 0: timeout reading config space 1 from 0x3b
>> [  629.597002] thunderbolt 0000:05:00.0: 0: timeout reading config space 1 from 0x39
>> [  630.037013] thunderbolt 0000:05:00.0: 0: timeout reading config space 1 from 0x39
>> [  630.477032] thunderbolt 0000:05:00.0: 0: timeout reading config space 1 from 0x39
>> [  630.916994] thunderbolt 0000:05:00.0: 0: timeout reading config space 1 from 0x39
>> [  631.356836] thunderbolt 0000:05:00.0: 3: timeout reading config space 1 from 0x39
>> [  631.806792] thunderbolt 0000:05:00.0: 3: timeout reading config space 1 from 0x39
>> [  632.246828] thunderbolt 0000:05:00.0: 0: timeout reading config space 2 from 0x10f
>> [  632.686977] thunderbolt 0000:05:00.0: 0: timeout reading config space 2 from 0x10f
>>
>> I'm dangerously *assuming* that when trying to configure an already configured system the thunderbolt
>> driver is getting stuck because booting without trying to load the driver works fine.
>>
>> If I try and warm boot when its in this state, the machine doesn't reach the EFI and I have to
>> hard reset or power cycle.
>>
>> My questions are :
>> A) Since I have a viable but hacky work-around, is this something
>> you'd be interested in helping chase down?
> 
> I can try yes.
> 
>> B) If so, what debugging information can I supply?
> 
> Well can you try so that you disable PCIe PM for starters? Pass
> "pcie_port_pm=off" in the command line and see if anything changes. Of
> course this prevents low power states.
> 

That allows me to modprobe thunderbolt from an xterm :

[   79.123662] ACPI: bus type thunderbolt registered
[   79.123692] thunderbolt 0000:05:00.0: enabling device (0000 -> 0002)
[   79.123744] thunderbolt 0000:05:00.0: total paths: 12
[   79.123751] thunderbolt 0000:05:00.0: IOMMU DMA protection is disabled
[   79.123886] thunderbolt 0000:05:00.0: allocating TX ring 0 of size 10
[   79.123899] thunderbolt 0000:05:00.0: allocating RX ring 0 of size 10
[   79.123908] thunderbolt 0000:05:00.0: control channel created
[   79.123911] thunderbolt 0000:05:00.0: ICM not supported on this controller
[   79.123918] thunderbolt 0000:05:00.0: freeing RX ring 0
[   79.123923] thunderbolt 0000:05:00.0: freeing TX ring 0
[   79.123928] thunderbolt 0000:05:00.0: allocating TX ring 0 of size 10
[   79.123934] thunderbolt 0000:05:00.0: allocating RX ring 0 of size 10
[   79.123941] thunderbolt 0000:05:00.0: control channel created
[   79.123941] thunderbolt 0000:05:00.0: using software connection manager
[   79.123942] thunderbolt 0000:05:00.0: NHI initialized, starting thunderbolt
[   79.123942] thunderbolt 0000:05:00.0: control channel starting...
[   79.123943] thunderbolt 0000:05:00.0: starting TX ring 0
[   79.123950] thunderbolt 0000:05:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[   79.123952] thunderbolt 0000:05:00.0: starting RX ring 0
[   79.123959] thunderbolt 0000:05:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[   79.123963] thunderbolt 0000:05:00.0: security level set to user
[   79.124115] thunderbolt 0000:05:00.0: current switch config:
[   79.124116] thunderbolt 0000:05:00.0:  Thunderbolt 3 Switch: 8086:15ea (Revision: 6, TB Version: 16)
[   79.124117] thunderbolt 0000:05:00.0:   Max Port Number: 13
[   79.124117] thunderbolt 0000:05:00.0:   Config:
[   79.124118] thunderbolt 0000:05:00.0:    Upstream Port Number: 7 Depth: 0 Route String: 0x0 Enabled: 1, PlugEventsDelay: 255ms
[   79.124119] thunderbolt 0000:05:00.0:    unknown1: 0x0 unknown4: 0x0
[   79.129236] thunderbolt 0000:05:00.0: initializing Switch at 0x0 (depth: 0, up port: 7)
[   79.169173] thunderbolt 0000:05:00.0: 0: uid: 0xedd9a650496900
[   79.171088] thunderbolt 0000:05:00.0:  Port 1: 8086:15ea (Revision: 6, TB Version: 1, Type: Port (0x1))
[   79.171090] thunderbolt 0000:05:00.0:   Max hop id (in/out): 19/19
[   79.171090] thunderbolt 0000:05:00.0:   Max counters: 16
[   79.171091] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[   79.171092] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[   79.173008] thunderbolt 0000:05:00.0:  Port 2: 8086:15ea (Revision: 6, TB Version: 1, Type: Port (0x1))
[   79.173009] thunderbolt 0000:05:00.0:   Max hop id (in/out): 19/19
[   79.173010] thunderbolt 0000:05:00.0:   Max counters: 16
[   79.173010] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[   79.173011] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[   79.174932] thunderbolt 0000:05:00.0:  Port 3: 8086:15ea (Revision: 6, TB Version: 1, Type: Port (0x1))
[   79.174933] thunderbolt 0000:05:00.0:   Max hop id (in/out): 19/19
[   79.174933] thunderbolt 0000:05:00.0:   Max counters: 16
[   79.174934] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[   79.174934] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[   79.176852] thunderbolt 0000:05:00.0:  Port 4: 8086:15ea (Revision: 6, TB Version: 1, Type: Port (0x1))
[   79.176853] thunderbolt 0000:05:00.0:   Max hop id (in/out): 19/19
[   79.176853] thunderbolt 0000:05:00.0:   Max counters: 16
[   79.176854] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[   79.176854] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[   79.177104] thunderbolt 0000:05:00.0:  Port 5: 8086:15ea (Revision: 6, TB Version: 1, Type: DP/HDMI (0xe0101))
[   79.177106] thunderbolt 0000:05:00.0:   Max hop id (in/out): 255/255
[   79.177107] thunderbolt 0000:05:00.0:   Max counters: 2
[   79.177107] thunderbolt 0000:05:00.0:   NFC Credits: 0x180000c
[   79.177107] thunderbolt 0000:05:00.0:   Credits (total/control): 24/0
[   79.177364] thunderbolt 0000:05:00.0:  Port 6: 8086:15ea (Revision: 6, TB Version: 1, Type: DP/HDMI (0xe0101))
[   79.177365] thunderbolt 0000:05:00.0:   Max hop id (in/out): 255/255
[   79.177366] thunderbolt 0000:05:00.0:   Max counters: 2
[   79.177366] thunderbolt 0000:05:00.0:   NFC Credits: 0x180000c
[   79.177366] thunderbolt 0000:05:00.0:   Credits (total/control): 24/0
[   79.178134] thunderbolt 0000:05:00.0:  Port 7: 8086:15ea (Revision: 6, TB Version: 1, Type: NHI (0x2))
[   79.178135] thunderbolt 0000:05:00.0:   Max hop id (in/out): 11/11
[   79.178136] thunderbolt 0000:05:00.0:   Max counters: 16
[   79.178136] thunderbolt 0000:05:00.0:   NFC Credits: 0x1800000
[   79.178137] thunderbolt 0000:05:00.0:   Credits (total/control): 24/0
[   79.178388] thunderbolt 0000:05:00.0:  Port 8: 8086:15ea (Revision: 6, TB Version: 1, Type: PCIe (0x100101))
[   79.178389] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[   79.178390] thunderbolt 0000:05:00.0:   Max counters: 2
[   79.178390] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
[   79.178391] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
[   79.178644] thunderbolt 0000:05:00.0:  Port 9: 8086:15ea (Revision: 6, TB Version: 1, Type: PCIe (0x100101))
[   79.178645] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[   79.178645] thunderbolt 0000:05:00.0:   Max counters: 2
[   79.178646] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
[   79.178646] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
[   79.179156] thunderbolt 0000:05:00.0:  Port 10: 8086:15ea (Revision: 6, TB Version: 1, Type: DP/HDMI (0xe0102))
[   79.179157] thunderbolt 0000:05:00.0:   Max hop id (in/out): 9/9
[   79.179158] thunderbolt 0000:05:00.0:   Max counters: 2
[   79.179158] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
[   79.179159] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
[   79.179668] thunderbolt 0000:05:00.0:  Port 11: 8086:15ea (Revision: 6, TB Version: 1, Type: DP/HDMI (0xe0102))
[   79.179669] thunderbolt 0000:05:00.0:   Max hop id (in/out): 9/9
[   79.179669] thunderbolt 0000:05:00.0:   Max counters: 2
[   79.179670] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
[   79.179670] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
[   79.179924] thunderbolt 0000:05:00.0:  Port 12: 8086:15ea (Revision: 6, TB Version: 1, Type: Inactive (0x0))
[   79.179925] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[   79.179926] thunderbolt 0000:05:00.0:   Max counters: 2
[   79.179926] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
[   79.179926] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
[   79.180180] thunderbolt 0000:05:00.0:  Port 13: 8086:15ea (Revision: 6, TB Version: 1, Type: Inactive (0x0))
[   79.180181] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[   79.180181] thunderbolt 0000:05:00.0:   Max counters: 2
[   79.180182] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
[   79.180182] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
[   79.180183] thunderbolt 0000:05:00.0: 0: linked ports 1 <-> 2
[   79.180183] thunderbolt 0000:05:00.0: 0: linked ports 3 <-> 4
[   79.185300] thunderbolt 0000:05:00.0: 0: TMU: supports uni-directional mode
[   79.185301] thunderbolt 0000:05:00.0: 0: TMU: current mode: HiFi
[   79.185425] thunderbolt 0000:05:00.0: 0:1: is unplugged (state: 7)
[   79.185556] thunderbolt 0000:05:00.0: 0:3: is connected, link is up (state: 2)
[   79.185810] thunderbolt 0000:05:00.0: current switch config:
[   79.185811] thunderbolt 0000:05:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[   79.185812] thunderbolt 0000:05:00.0:   Max Port Number: 13
[   79.185813] thunderbolt 0000:05:00.0:   Config:
[   79.185813] thunderbolt 0000:05:00.0:    Upstream Port Number: 1 Depth: 1 Route String: 0x3 Enabled: 1, PlugEventsDelay: 255ms
[   79.185814] thunderbolt 0000:05:00.0:    unknown1: 0x0 unknown4: 0x0
[   79.190417] thunderbolt 0000:05:00.0: initializing Switch at 0x3 (depth: 1, up port: 1)
[   79.207829] thunderbolt 0000:05:00.0: 3: reading drom (length: 0x97)
[   79.701533] thunderbolt 0000:05:00.0: 3: DROM version: 1
[   79.702553] thunderbolt 0000:05:00.0: 3: uid: 0x1000100189170
[   79.705501] thunderbolt 0000:05:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   79.705503] thunderbolt 0000:05:00.0:   Max hop id (in/out): 63/63
[   79.705504] thunderbolt 0000:05:00.0:   Max counters: 32
[   79.705504] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c0000c
[   79.705505] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[   79.708445] thunderbolt 0000:05:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   79.708447] thunderbolt 0000:05:00.0:   Max hop id (in/out): 63/63
[   79.708448] thunderbolt 0000:05:00.0:   Max counters: 32
[   79.708448] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c0000c
[   79.708449] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[   79.711384] thunderbolt 0000:05:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   79.711385] thunderbolt 0000:05:00.0:   Max hop id (in/out): 63/63
[   79.711385] thunderbolt 0000:05:00.0:   Max counters: 32
[   79.711386] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[   79.711386] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[   79.714329] thunderbolt 0000:05:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   79.714330] thunderbolt 0000:05:00.0:   Max hop id (in/out): 63/63
[   79.714331] thunderbolt 0000:05:00.0:   Max counters: 32
[   79.714331] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[   79.714332] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[   79.714332] thunderbolt 0000:05:00.0: 3:5: disabled by eeprom
[   79.714333] thunderbolt 0000:05:00.0: 3:6: disabled by eeprom
[   79.715229] thunderbolt 0000:05:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[   79.715230] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[   79.715231] thunderbolt 0000:05:00.0:   Max counters: 1
[   79.715231] thunderbolt 0000:05:00.0:   NFC Credits: 0x700000
[   79.715232] thunderbolt 0000:05:00.0:   Credits (total/control): 7/0
[   79.716121] thunderbolt 0000:05:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[   79.716122] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[   79.716123] thunderbolt 0000:05:00.0:   Max counters: 1
[   79.716123] thunderbolt 0000:05:00.0:   NFC Credits: 0x700000
[   79.716123] thunderbolt 0000:05:00.0:   Credits (total/control): 7/0
[   79.716124] thunderbolt 0000:05:00.0: 3:9: disabled by eeprom
[   79.717017] thunderbolt 0000:05:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[   79.717018] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[   79.717018] thunderbolt 0000:05:00.0:   Max counters: 1
[   79.717019] thunderbolt 0000:05:00.0:   NFC Credits: 0x700000
[   79.717019] thunderbolt 0000:05:00.0:   Credits (total/control): 7/0
[   79.718168] thunderbolt 0000:05:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[   79.718170] thunderbolt 0000:05:00.0:   Max hop id (in/out): 9/9
[   79.718170] thunderbolt 0000:05:00.0:   Max counters: 2
[   79.718171] thunderbolt 0000:05:00.0:   NFC Credits: 0x700000
[   79.718171] thunderbolt 0000:05:00.0:   Credits (total/control): 7/0
[   79.718172] thunderbolt 0000:05:00.0: 3:12: disabled by eeprom
[   79.718173] thunderbolt 0000:05:00.0: 3:13: disabled by eeprom
[   79.736492] thunderbolt 0000:05:00.0: 3: TMU: current mode: bi-directional, HiFi
[   79.736504] thunderbolt 0-3: new device found, vendor=0x1 device=0x8002
[   79.736506] thunderbolt 0-3: Apple, Inc. Thunderbolt Display
[   79.737004] thunderbolt 0000:05:00.0: 3:3: is connected, link is up (state: 2)
[   79.737260] thunderbolt 0000:05:00.0: current switch config:
[   79.737260] thunderbolt 0000:05:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[   79.737262] thunderbolt 0000:05:00.0:   Max Port Number: 13
[   79.737262] thunderbolt 0000:05:00.0:   Config:
[   79.737262] thunderbolt 0000:05:00.0:    Upstream Port Number: 3 Depth: 2 Route String: 0x303 Enabled: 1, PlugEventsDelay: 255ms
[   79.737264] thunderbolt 0000:05:00.0:    unknown1: 0x0 unknown4: 0x0
[   79.741868] thunderbolt 0000:05:00.0: initializing Switch at 0x303 (depth: 2, up port: 3)
[   79.759278] thunderbolt 0000:05:00.0: 303: reading drom (length: 0x97)
[   80.252978] thunderbolt 0000:05:00.0: 303: DROM version: 1
[   80.254002] thunderbolt 0000:05:00.0: 303: uid: 0x100010102a740
[   80.256943] thunderbolt 0000:05:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   80.256945] thunderbolt 0000:05:00.0:   Max hop id (in/out): 63/63
[   80.256946] thunderbolt 0000:05:00.0:   Max counters: 32
[   80.256947] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[   80.256947] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[   80.259889] thunderbolt 0000:05:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   80.259891] thunderbolt 0000:05:00.0:   Max hop id (in/out): 63/63
[   80.259892] thunderbolt 0000:05:00.0:   Max counters: 32
[   80.259892] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[   80.259893] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[   80.262833] thunderbolt 0000:05:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   80.262834] thunderbolt 0000:05:00.0:   Max hop id (in/out): 63/63
[   80.262835] thunderbolt 0000:05:00.0:   Max counters: 32
[   80.262835] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[   80.262836] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[   80.265777] thunderbolt 0000:05:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   80.265778] thunderbolt 0000:05:00.0:   Max hop id (in/out): 63/63
[   80.265779] thunderbolt 0000:05:00.0:   Max counters: 32
[   80.265779] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c0000c
[   80.265780] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[   80.265780] thunderbolt 0000:05:00.0: 303:5: disabled by eeprom
[   80.265781] thunderbolt 0000:05:00.0: 303:6: disabled by eeprom
[   80.266674] thunderbolt 0000:05:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[   80.266675] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[   80.266675] thunderbolt 0000:05:00.0:   Max counters: 1
[   80.266676] thunderbolt 0000:05:00.0:   NFC Credits: 0x700000
[   80.266676] thunderbolt 0000:05:00.0:   Credits (total/control): 7/0
[   80.267580] thunderbolt 0000:05:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[   80.267583] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[   80.267584] thunderbolt 0000:05:00.0:   Max counters: 1
[   80.267585] thunderbolt 0000:05:00.0:   NFC Credits: 0x700000
[   80.267585] thunderbolt 0000:05:00.0:   Credits (total/control): 7/0
[   80.267586] thunderbolt 0000:05:00.0: 303:9: disabled by eeprom
[   80.268472] thunderbolt 0000:05:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[   80.268480] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[   80.268481] thunderbolt 0000:05:00.0:   Max counters: 1
[   80.268482] thunderbolt 0000:05:00.0:   NFC Credits: 0x700000
[   80.268482] thunderbolt 0000:05:00.0:   Credits (total/control): 7/0
[   80.269617] thunderbolt 0000:05:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[   80.269619] thunderbolt 0000:05:00.0:   Max hop id (in/out): 9/9
[   80.269619] thunderbolt 0000:05:00.0:   Max counters: 2
[   80.269620] thunderbolt 0000:05:00.0:   NFC Credits: 0x700000
[   80.269620] thunderbolt 0000:05:00.0:   Credits (total/control): 7/0
[   80.269621] thunderbolt 0000:05:00.0: 303:12: disabled by eeprom
[   80.269622] thunderbolt 0000:05:00.0: 303:13: disabled by eeprom
[   80.288377] thunderbolt 0000:05:00.0: 303: TMU: current mode: bi-directional, HiFi
[   80.288394] thunderbolt 0-303: new device found, vendor=0x1 device=0x8002
[   80.288396] thunderbolt 0-303: Apple, Inc. Thunderbolt Display
[   80.288508] thunderbolt 0000:05:00.0: 303:1: is unplugged (state: 7)
[   80.289784] thunderbolt 0000:05:00.0: discovering Video path starting from 0:5
[   80.289913] thunderbolt 0000:05:00.0: 0:5:  In HopID: 9 => Out port: 4 Out HopID: 8
[   80.289914] thunderbolt 0000:05:00.0: 0:5:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[   80.289915] thunderbolt 0000:05:00.0: 0:5:    Counter enabled: 0 Counter index: 2047
[   80.289916] thunderbolt 0000:05:00.0: 0:5:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[   80.289917] thunderbolt 0000:05:00.0: 0:5:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   80.290041] thunderbolt 0000:05:00.0: 3:2:  In HopID: 8 => Out port: 4 Out HopID: 8
[   80.290042] thunderbolt 0000:05:00.0: 3:2:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[   80.290042] thunderbolt 0000:05:00.0: 3:2:    Counter enabled: 0 Counter index: 2047
[   80.290043] thunderbolt 0000:05:00.0: 3:2:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[   80.290044] thunderbolt 0000:05:00.0: 3:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   80.290168] thunderbolt 0000:05:00.0: 303:4:  In HopID: 8 => Out port: 11 Out HopID: 9
[   80.290169] thunderbolt 0000:05:00.0: 303:4:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[   80.290170] thunderbolt 0000:05:00.0: 303:4:    Counter enabled: 0 Counter index: 2047
[   80.290171] thunderbolt 0000:05:00.0: 303:4:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[   80.290171] thunderbolt 0000:05:00.0: 303:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   80.290172] thunderbolt 0000:05:00.0: path discovery complete
[   80.290552] thunderbolt 0000:05:00.0: discovering AUX TX path starting from 0:5
[   80.290681] thunderbolt 0000:05:00.0: 0:5:  In HopID: 8 => Out port: 4 Out HopID: 9
[   80.290681] thunderbolt 0000:05:00.0: 0:5:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   80.290682] thunderbolt 0000:05:00.0: 0:5:    Counter enabled: 0 Counter index: 2047
[   80.290683] thunderbolt 0000:05:00.0: 0:5:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   80.290684] thunderbolt 0000:05:00.0: 0:5:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   80.290808] thunderbolt 0000:05:00.0: 3:2:  In HopID: 9 => Out port: 4 Out HopID: 9
[   80.290809] thunderbolt 0000:05:00.0: 3:2:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   80.290810] thunderbolt 0000:05:00.0: 3:2:    Counter enabled: 0 Counter index: 2047
[   80.290810] thunderbolt 0000:05:00.0: 3:2:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   80.290811] thunderbolt 0000:05:00.0: 3:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   80.290937] thunderbolt 0000:05:00.0: 303:4:  In HopID: 9 => Out port: 11 Out HopID: 8
[   80.290937] thunderbolt 0000:05:00.0: 303:4:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   80.290938] thunderbolt 0000:05:00.0: 303:4:    Counter enabled: 0 Counter index: 2047
[   80.290939] thunderbolt 0000:05:00.0: 303:4:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   80.290939] thunderbolt 0000:05:00.0: 303:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   80.290940] thunderbolt 0000:05:00.0: path discovery complete
[   80.291704] thunderbolt 0000:05:00.0: discovering AUX RX path starting from 303:11
[   80.291832] thunderbolt 0000:05:00.0: 303:11:  In HopID: 8 => Out port: 4 Out HopID: 8
[   80.291833] thunderbolt 0000:05:00.0: 303:11:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   80.291834] thunderbolt 0000:05:00.0: 303:11:    Counter enabled: 0 Counter index: 2047
[   80.291834] thunderbolt 0000:05:00.0: 303:11:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   80.291835] thunderbolt 0000:05:00.0: 303:11:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   80.291960] thunderbolt 0000:05:00.0: 3:4:  In HopID: 8 => Out port: 2 Out HopID: 8
[   80.291961] thunderbolt 0000:05:00.0: 3:4:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   80.291962] thunderbolt 0000:05:00.0: 3:4:    Counter enabled: 0 Counter index: 2047
[   80.291962] thunderbolt 0000:05:00.0: 3:4:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   80.291963] thunderbolt 0000:05:00.0: 3:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   80.292088] thunderbolt 0000:05:00.0: 0:4:  In HopID: 8 => Out port: 5 Out HopID: 8
[   80.292089] thunderbolt 0000:05:00.0: 0:4:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   80.292090] thunderbolt 0000:05:00.0: 0:4:    Counter enabled: 0 Counter index: 2047
[   80.292090] thunderbolt 0000:05:00.0: 0:4:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   80.292091] thunderbolt 0000:05:00.0: 0:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   80.292091] thunderbolt 0000:05:00.0: path discovery complete
[   80.292344] thunderbolt 0000:05:00.0: 0:5 <-> 303:b (DP): discovered
[   80.292728] thunderbolt 0000:05:00.0: discovering Video path starting from 0:6
[   80.292856] thunderbolt 0000:05:00.0: 0:6:  In HopID: 9 => Out port: 3 Out HopID: 8
[   80.292857] thunderbolt 0000:05:00.0: 0:6:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[   80.292858] thunderbolt 0000:05:00.0: 0:6:    Counter enabled: 0 Counter index: 2047
[   80.292858] thunderbolt 0000:05:00.0: 0:6:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[   80.292859] thunderbolt 0000:05:00.0: 0:6:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   80.292984] thunderbolt 0000:05:00.0: 3:1:  In HopID: 8 => Out port: 11 Out HopID: 9
[   80.292985] thunderbolt 0000:05:00.0: 3:1:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[   80.292986] thunderbolt 0000:05:00.0: 3:1:    Counter enabled: 0 Counter index: 2047
[   80.292986] thunderbolt 0000:05:00.0: 3:1:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[   80.292987] thunderbolt 0000:05:00.0: 3:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   80.292988] thunderbolt 0000:05:00.0: path discovery complete
[   80.293240] thunderbolt 0000:05:00.0: discovering AUX TX path starting from 0:6
[   80.293368] thunderbolt 0000:05:00.0: 0:6:  In HopID: 8 => Out port: 3 Out HopID: 9
[   80.293369] thunderbolt 0000:05:00.0: 0:6:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   80.293370] thunderbolt 0000:05:00.0: 0:6:    Counter enabled: 0 Counter index: 2047
[   80.293370] thunderbolt 0000:05:00.0: 0:6:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   80.293371] thunderbolt 0000:05:00.0: 0:6:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   80.293496] thunderbolt 0000:05:00.0: 3:1:  In HopID: 9 => Out port: 11 Out HopID: 8
[   80.293497] thunderbolt 0000:05:00.0: 3:1:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   80.293498] thunderbolt 0000:05:00.0: 3:1:    Counter enabled: 0 Counter index: 2047
[   80.293498] thunderbolt 0000:05:00.0: 3:1:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   80.293499] thunderbolt 0000:05:00.0: 3:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   80.293500] thunderbolt 0000:05:00.0: path discovery complete
[   80.294008] thunderbolt 0000:05:00.0: discovering AUX RX path starting from 3:11
[   80.294136] thunderbolt 0000:05:00.0: 3:11:  In HopID: 8 => Out port: 1 Out HopID: 8
[   80.294137] thunderbolt 0000:05:00.0: 3:11:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   80.294138] thunderbolt 0000:05:00.0: 3:11:    Counter enabled: 0 Counter index: 2047
[   80.294138] thunderbolt 0000:05:00.0: 3:11:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   80.294139] thunderbolt 0000:05:00.0: 3:11:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   80.294264] thunderbolt 0000:05:00.0: 0:3:  In HopID: 8 => Out port: 6 Out HopID: 8
[   80.294265] thunderbolt 0000:05:00.0: 0:3:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[   80.294266] thunderbolt 0000:05:00.0: 0:3:    Counter enabled: 0 Counter index: 2047
[   80.294266] thunderbolt 0000:05:00.0: 0:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   80.294267] thunderbolt 0000:05:00.0: 0:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   80.294268] thunderbolt 0000:05:00.0: path discovery complete
[   80.294520] thunderbolt 0000:05:00.0: 0:6 <-> 3:b (DP): discovered
[   80.295032] thunderbolt 0000:05:00.0: discovering PCIe Up path starting from 0:9
[   80.295160] thunderbolt 0000:05:00.0: 0:9:  In HopID: 8 => Out port: 3 Out HopID: 10
[   80.295161] thunderbolt 0000:05:00.0: 0:9:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   80.295162] thunderbolt 0000:05:00.0: 0:9:    Counter enabled: 0 Counter index: 2047
[   80.295162] thunderbolt 0000:05:00.0: 0:9:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   80.295163] thunderbolt 0000:05:00.0: 0:9:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   80.295288] thunderbolt 0000:05:00.0: 3:1:  In HopID: 10 => Out port: 10 Out HopID: 8
[   80.295289] thunderbolt 0000:05:00.0: 3:1:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   80.295290] thunderbolt 0000:05:00.0: 3:1:    Counter enabled: 0 Counter index: 2047
[   80.295291] thunderbolt 0000:05:00.0: 3:1:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   80.295291] thunderbolt 0000:05:00.0: 3:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   80.295292] thunderbolt 0000:05:00.0: path discovery complete
[   80.295800] thunderbolt 0000:05:00.0: discovering PCIe Down path starting from 3:10
[   80.295928] thunderbolt 0000:05:00.0: 3:10:  In HopID: 8 => Out port: 1 Out HopID: 9
[   80.295929] thunderbolt 0000:05:00.0: 3:10:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   80.295930] thunderbolt 0000:05:00.0: 3:10:    Counter enabled: 0 Counter index: 2047
[   80.295930] thunderbolt 0000:05:00.0: 3:10:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   80.295931] thunderbolt 0000:05:00.0: 3:10:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   80.296056] thunderbolt 0000:05:00.0: 0:3:  In HopID: 9 => Out port: 9 Out HopID: 8
[   80.296057] thunderbolt 0000:05:00.0: 0:3:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   80.296058] thunderbolt 0000:05:00.0: 0:3:    Counter enabled: 0 Counter index: 2047
[   80.296058] thunderbolt 0000:05:00.0: 0:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   80.296059] thunderbolt 0000:05:00.0: 0:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   80.296060] thunderbolt 0000:05:00.0: path discovery complete
[   80.296184] thunderbolt 0000:05:00.0: 0:9 <-> 3:a (PCI): discovered
[   80.296569] thunderbolt 0000:05:00.0: discovering PCIe Up path starting from 3:7
[   80.296696] thunderbolt 0000:05:00.0: 3:7:  In HopID: 8 => Out port: 3 Out HopID: 8
[   80.296697] thunderbolt 0000:05:00.0: 3:7:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   80.296698] thunderbolt 0000:05:00.0: 3:7:    Counter enabled: 0 Counter index: 2047
[   80.296698] thunderbolt 0000:05:00.0: 3:7:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   80.296699] thunderbolt 0000:05:00.0: 3:7:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   80.296824] thunderbolt 0000:05:00.0: 303:3:  In HopID: 8 => Out port: 10 Out HopID: 8
[   80.296825] thunderbolt 0000:05:00.0: 303:3:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   80.296826] thunderbolt 0000:05:00.0: 303:3:    Counter enabled: 0 Counter index: 2047
[   80.296826] thunderbolt 0000:05:00.0: 303:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   80.296827] thunderbolt 0000:05:00.0: 303:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   80.296828] thunderbolt 0000:05:00.0: path discovery complete
[   80.297339] thunderbolt 0000:05:00.0: discovering PCIe Down path starting from 303:10
[   80.297466] thunderbolt 0000:05:00.0: 303:10:  In HopID: 8 => Out port: 3 Out HopID: 8
[   80.297467] thunderbolt 0000:05:00.0: 303:10:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   80.297469] thunderbolt 0000:05:00.0: 303:10:    Counter enabled: 0 Counter index: 2047
[   80.297469] thunderbolt 0000:05:00.0: 303:10:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   80.297470] thunderbolt 0000:05:00.0: 303:10:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   80.297593] thunderbolt 0000:05:00.0: 3:3:  In HopID: 8 => Out port: 7 Out HopID: 8
[   80.297594] thunderbolt 0000:05:00.0: 3:3:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   80.297595] thunderbolt 0000:05:00.0: 3:3:    Counter enabled: 0 Counter index: 2047
[   80.297596] thunderbolt 0000:05:00.0: 3:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   80.297597] thunderbolt 0000:05:00.0: 3:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   80.297597] thunderbolt 0000:05:00.0: path discovery complete
[   80.297720] thunderbolt 0000:05:00.0: 3:7 <-> 303:a (PCI): discovered
[   80.298232] thunderbolt 0000:05:00.0: 0:5: DP IN resource available
[   80.298360] thunderbolt 0000:05:00.0: 0:6: DP IN resource available
[   80.682432] [drm] perform_link_training_with_retries: Link(2) training attempt 1 of 4 failed @ rate(10) x lane(4) : fail reason:(8)
[   80.982402] [drm] perform_link_training_with_retries: Link(2) training attempt 2 of 4 failed @ rate(10) x lane(4) : fail reason:(8)
[   81.332421] [drm] perform_link_training_with_retries: Link(2) training attempt 3 of 4 failed @ rate(10) x lane(4) : fail reason:(8)
[   81.732436] [drm] enabling link 2 failed: 15

Unfortunately things either work normally for a while and then lock up hard (all screens/input devices) frozen, or it fails to
reboot (performs shut down, tries to reboot and everything stays dark). On the other hand, a reset will bring it back whereas
previously I had to power cycle the box.

If I leave thunderbolt compiled in or don't have the module blacklisted it will reliably lock up on warm boot.

It looks I'm going to have to break out the serial console.

Regards,
Brad

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-08-05 12:43                                           ` Brad Campbell
@ 2022-08-05 13:01                                             ` Mika Westerberg
  2022-08-05 14:13                                               ` Brad Campbell
  0 siblings, 1 reply; 47+ messages in thread
From: Mika Westerberg @ 2022-08-05 13:01 UTC (permalink / raw)
  To: Brad Campbell; +Cc: linux-kernel

On Fri, Aug 05, 2022 at 08:43:08PM +0800, Brad Campbell wrote:
> > Well can you try so that you disable PCIe PM for starters? Pass
> > "pcie_port_pm=off" in the command line and see if anything changes. Of
> > course this prevents low power states.
> > 
> 
> That allows me to modprobe thunderbolt from an xterm :

Okay does it work any better if you don't have anything attached to the
TBT ports when you boot up? If it does, how about just adding a single
device (no display connected)?

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-08-05 13:01                                             ` Mika Westerberg
@ 2022-08-05 14:13                                               ` Brad Campbell
  2022-08-05 14:21                                                 ` Mika Westerberg
  0 siblings, 1 reply; 47+ messages in thread
From: Brad Campbell @ 2022-08-05 14:13 UTC (permalink / raw)
  To: Mika Westerberg; +Cc: linux-kernel

On 5/8/22 21:01, Mika Westerberg wrote:
> On Fri, Aug 05, 2022 at 08:43:08PM +0800, Brad Campbell wrote:
>>> Well can you try so that you disable PCIe PM for starters? Pass
>>> "pcie_port_pm=off" in the command line and see if anything changes. Of
>>> course this prevents low power states.
>>>
>>
>> That allows me to modprobe thunderbolt from an xterm :
> 
> Okay does it work any better if you don't have anything attached to the
> TBT ports when you boot up? If it does, how about just adding a single
> device (no display connected)?
> 

Yes, with nothing attached to the Tb ports it's fine. Been working that way for months.

With a non-display TB device it appears to work ok also.

The only device I have that will work on an Apple TB1<->TB2 adapter without external power is
an Apple TB1->GBe dongle. But that sets up, works and does repeated warn boots. The BIOS even detects
the network port once Linux has set it up the first time.

Again, module manually loaded after warm boot :

[   76.239198] ACPI: bus type thunderbolt registered
[   76.239225] thunderbolt 0000:05:00.0: enabling device (0000 -> 0002)
[   76.239275] thunderbolt 0000:05:00.0: total paths: 12
[   76.239278] thunderbolt 0000:05:00.0: IOMMU DMA protection is disabled
[   76.239409] thunderbolt 0000:05:00.0: allocating TX ring 0 of size 10
[   76.239422] thunderbolt 0000:05:00.0: allocating RX ring 0 of size 10
[   76.239433] thunderbolt 0000:05:00.0: control channel created
[   76.239436] thunderbolt 0000:05:00.0: ICM not supported on this controller
[   76.239442] thunderbolt 0000:05:00.0: freeing RX ring 0
[   76.239447] thunderbolt 0000:05:00.0: freeing TX ring 0
[   76.239453] thunderbolt 0000:05:00.0: allocating TX ring 0 of size 10
[   76.239460] thunderbolt 0000:05:00.0: allocating RX ring 0 of size 10
[   76.239466] thunderbolt 0000:05:00.0: control channel created
[   76.239467] thunderbolt 0000:05:00.0: using software connection manager
[   76.239467] thunderbolt 0000:05:00.0: NHI initialized, starting thunderbolt
[   76.239468] thunderbolt 0000:05:00.0: control channel starting...
[   76.239468] thunderbolt 0000:05:00.0: starting TX ring 0
[   76.239475] thunderbolt 0000:05:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[   76.239477] thunderbolt 0000:05:00.0: starting RX ring 0
[   76.239484] thunderbolt 0000:05:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[   76.239487] thunderbolt 0000:05:00.0: security level set to user
[   76.239678] thunderbolt 0000:05:00.0: current switch config:
[   76.239678] thunderbolt 0000:05:00.0:  Thunderbolt 3 Switch: 8086:15ea (Revision: 6, TB Version: 16)
[   76.239679] thunderbolt 0000:05:00.0:   Max Port Number: 13
[   76.239680] thunderbolt 0000:05:00.0:   Config:
[   76.239680] thunderbolt 0000:05:00.0:    Upstream Port Number: 7 Depth: 0 Route String: 0x0 Enabled: 1, PlugEventsDelay: 255ms
[   76.239681] thunderbolt 0000:05:00.0:    unknown1: 0x0 unknown4: 0x0
[   76.244798] thunderbolt 0000:05:00.0: initializing Switch at 0x0 (depth: 0, up port: 7)
[   76.284740] thunderbolt 0000:05:00.0: 0: uid: 0xedd9a650496900
[   76.286660] thunderbolt 0000:05:00.0:  Port 1: 8086:15ea (Revision: 6, TB Version: 1, Type: Port (0x1))
[   76.286663] thunderbolt 0000:05:00.0:   Max hop id (in/out): 19/19
[   76.286663] thunderbolt 0000:05:00.0:   Max counters: 16
[   76.286664] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[   76.286664] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[   76.288580] thunderbolt 0000:05:00.0:  Port 2: 8086:15ea (Revision: 6, TB Version: 1, Type: Port (0x1))
[   76.288581] thunderbolt 0000:05:00.0:   Max hop id (in/out): 19/19
[   76.288582] thunderbolt 0000:05:00.0:   Max counters: 16
[   76.288582] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[   76.288583] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[   76.290500] thunderbolt 0000:05:00.0:  Port 3: 8086:15ea (Revision: 6, TB Version: 1, Type: Port (0x1))
[   76.290500] thunderbolt 0000:05:00.0:   Max hop id (in/out): 19/19
[   76.290501] thunderbolt 0000:05:00.0:   Max counters: 16
[   76.290501] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[   76.290502] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[   76.292416] thunderbolt 0000:05:00.0:  Port 4: 8086:15ea (Revision: 6, TB Version: 1, Type: Port (0x1))
[   76.292417] thunderbolt 0000:05:00.0:   Max hop id (in/out): 19/19
[   76.292417] thunderbolt 0000:05:00.0:   Max counters: 16
[   76.292417] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[   76.292418] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[   76.292677] thunderbolt 0000:05:00.0:  Port 5: 8086:15ea (Revision: 6, TB Version: 1, Type: DP/HDMI (0xe0101))
[   76.292678] thunderbolt 0000:05:00.0:   Max hop id (in/out): 255/255
[   76.292679] thunderbolt 0000:05:00.0:   Max counters: 2
[   76.292679] thunderbolt 0000:05:00.0:   NFC Credits: 0x1800000
[   76.292680] thunderbolt 0000:05:00.0:   Credits (total/control): 24/0
[   76.292932] thunderbolt 0000:05:00.0:  Port 6: 8086:15ea (Revision: 6, TB Version: 1, Type: DP/HDMI (0xe0101))
[   76.292933] thunderbolt 0000:05:00.0:   Max hop id (in/out): 255/255
[   76.292933] thunderbolt 0000:05:00.0:   Max counters: 2
[   76.292934] thunderbolt 0000:05:00.0:   NFC Credits: 0x1800000
[   76.292934] thunderbolt 0000:05:00.0:   Credits (total/control): 24/0
[   76.293700] thunderbolt 0000:05:00.0:  Port 7: 8086:15ea (Revision: 6, TB Version: 1, Type: NHI (0x2))
[   76.293701] thunderbolt 0000:05:00.0:   Max hop id (in/out): 11/11
[   76.293701] thunderbolt 0000:05:00.0:   Max counters: 16
[   76.293702] thunderbolt 0000:05:00.0:   NFC Credits: 0x1800000
[   76.293702] thunderbolt 0000:05:00.0:   Credits (total/control): 24/0
[   76.293956] thunderbolt 0000:05:00.0:  Port 8: 8086:15ea (Revision: 6, TB Version: 1, Type: PCIe (0x100101))
[   76.293957] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[   76.293957] thunderbolt 0000:05:00.0:   Max counters: 2
[   76.293958] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
[   76.293958] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
[   76.294212] thunderbolt 0000:05:00.0:  Port 9: 8086:15ea (Revision: 6, TB Version: 1, Type: PCIe (0x100101))
[   76.294212] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[   76.294213] thunderbolt 0000:05:00.0:   Max counters: 2
[   76.294213] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
[   76.294214] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
[   76.294724] thunderbolt 0000:05:00.0:  Port 10: 8086:15ea (Revision: 6, TB Version: 1, Type: DP/HDMI (0xe0102))
[   76.294725] thunderbolt 0000:05:00.0:   Max hop id (in/out): 9/9
[   76.294725] thunderbolt 0000:05:00.0:   Max counters: 2
[   76.294726] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
[   76.294726] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
[   76.295232] thunderbolt 0000:05:00.0:  Port 11: 8086:15ea (Revision: 6, TB Version: 1, Type: DP/HDMI (0xe0102))
[   76.295233] thunderbolt 0000:05:00.0:   Max hop id (in/out): 9/9
[   76.295234] thunderbolt 0000:05:00.0:   Max counters: 2
[   76.295234] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
[   76.295235] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
[   76.295488] thunderbolt 0000:05:00.0:  Port 12: 8086:15ea (Revision: 6, TB Version: 1, Type: Inactive (0x0))
[   76.295489] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[   76.295489] thunderbolt 0000:05:00.0:   Max counters: 2
[   76.295490] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
[   76.295490] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
[   76.295743] thunderbolt 0000:05:00.0:  Port 13: 8086:15ea (Revision: 6, TB Version: 1, Type: Inactive (0x0))
[   76.295743] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[   76.295744] thunderbolt 0000:05:00.0:   Max counters: 2
[   76.295744] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
[   76.295745] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
[   76.295745] thunderbolt 0000:05:00.0: 0: linked ports 1 <-> 2
[   76.295746] thunderbolt 0000:05:00.0: 0: linked ports 3 <-> 4
[   76.300868] thunderbolt 0000:05:00.0: 0: TMU: supports uni-directional mode
[   76.300869] thunderbolt 0000:05:00.0: 0: TMU: current mode: HiFi
[   76.300993] thunderbolt 0000:05:00.0: 0:1: is unplugged (state: 7)
[   76.301120] thunderbolt 0000:05:00.0: 0:3: is connected, link is up (state: 2)
[   76.301376] thunderbolt 0000:05:00.0: current switch config:
[   76.301377] thunderbolt 0000:05:00.0:  Thunderbolt 1 Switch: 8086:1549 (Revision: 0, TB Version: 1)
[   76.301378] thunderbolt 0000:05:00.0:   Max Port Number: 2
[   76.301378] thunderbolt 0000:05:00.0:   Config:
[   76.301378] thunderbolt 0000:05:00.0:    Upstream Port Number: 1 Depth: 1 Route String: 0x3 Enabled: 1, PlugEventsDelay: 255ms
[   76.301379] thunderbolt 0000:05:00.0:    unknown1: 0x0 unknown4: 0x0
[   76.304961] thunderbolt 0000:05:00.0: 3: unknown capability 0xef at 0x95
[   76.306373] thunderbolt 0000:05:00.0: initializing Switch at 0x3 (depth: 1, up port: 1)
[   76.323781] thunderbolt 0000:05:00.0: 3: reading drom (length: 0x7b)
[   76.727884] thunderbolt 0000:05:00.0: 3: DROM version: 1
[   76.728135] thunderbolt 0000:05:00.0: 3: uid: 0x1000206596ce0
[   76.730061] thunderbolt 0000:05:00.0:  Port 1: 8086:1549 (Revision: 0, TB Version: 1, Type: Port (0x1))
[   76.730062] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[   76.730063] thunderbolt 0000:05:00.0:   Max counters: 4
[   76.730063] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[   76.730064] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[   76.730315] thunderbolt 0000:05:00.0:  Port 2: 8086:1549 (Revision: 0, TB Version: 1, Type: PCIe (0x100102))
[   76.730316] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[   76.730316] thunderbolt 0000:05:00.0:   Max counters: 2
[   76.730317] thunderbolt 0000:05:00.0:   NFC Credits: 0x700000
[   76.730317] thunderbolt 0000:05:00.0:   Credits (total/control): 7/0
[   76.731467] thunderbolt 0000:05:00.0: 3: TMU: current mode: bi-directional, HiFi
[   76.731475] thunderbolt 0-3: new device found, vendor=0x1 device=0x8003
[   76.731477] thunderbolt 0-3: Apple, Inc. Thunderbolt to Gigabit Ethernet Adapter
[   76.732870] thunderbolt 0000:05:00.0: discovering PCIe Up path starting from 0:9
[   76.733000] thunderbolt 0000:05:00.0: 0:9:  In HopID: 8 => Out port: 3 Out HopID: 8
[   76.733001] thunderbolt 0000:05:00.0: 0:9:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   76.733002] thunderbolt 0000:05:00.0: 0:9:    Counter enabled: 0 Counter index: 2047
[   76.733003] thunderbolt 0000:05:00.0: 0:9:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   76.733004] thunderbolt 0000:05:00.0: 0:9:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   76.733127] thunderbolt 0000:05:00.0: 3:1:  In HopID: 8 => Out port: 2 Out HopID: 8
[   76.733128] thunderbolt 0000:05:00.0: 3:1:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   76.733129] thunderbolt 0000:05:00.0: 3:1:    Counter enabled: 0 Counter index: 2047
[   76.733129] thunderbolt 0000:05:00.0: 3:1:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   76.733130] thunderbolt 0000:05:00.0: 3:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   76.733131] thunderbolt 0000:05:00.0: path discovery complete
[   76.733639] thunderbolt 0000:05:00.0: discovering PCIe Down path starting from 3:2
[   76.733768] thunderbolt 0000:05:00.0: 3:2:  In HopID: 8 => Out port: 1 Out HopID: 8
[   76.733769] thunderbolt 0000:05:00.0: 3:2:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   76.733770] thunderbolt 0000:05:00.0: 3:2:    Counter enabled: 0 Counter index: 2047
[   76.733770] thunderbolt 0000:05:00.0: 3:2:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   76.733771] thunderbolt 0000:05:00.0: 3:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   76.733893] thunderbolt 0000:05:00.0: 0:3:  In HopID: 8 => Out port: 9 Out HopID: 8
[   76.733894] thunderbolt 0000:05:00.0: 0:3:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   76.733894] thunderbolt 0000:05:00.0: 0:3:    Counter enabled: 0 Counter index: 2047
[   76.733895] thunderbolt 0000:05:00.0: 0:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   76.733896] thunderbolt 0000:05:00.0: 0:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   76.733897] thunderbolt 0000:05:00.0: path discovery complete
[   76.734028] thunderbolt 0000:05:00.0: 0:9 <-> 3:2 (PCI): discovered
[   76.734150] thunderbolt 0000:05:00.0: 0:5: DP IN resource available
[   76.734277] thunderbolt 0000:05:00.0: 0:6: DP IN resource available

I now wonder if it's one of the PCIe connected devices in the Thunderbolt displays not "playing nice" ?

Regards,
Brad

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-08-05 14:13                                               ` Brad Campbell
@ 2022-08-05 14:21                                                 ` Mika Westerberg
  2022-08-05 14:43                                                   ` Brad Campbell
  0 siblings, 1 reply; 47+ messages in thread
From: Mika Westerberg @ 2022-08-05 14:21 UTC (permalink / raw)
  To: Brad Campbell; +Cc: linux-kernel

On Fri, Aug 05, 2022 at 10:13:53PM +0800, Brad Campbell wrote:
> On 5/8/22 21:01, Mika Westerberg wrote:
> > On Fri, Aug 05, 2022 at 08:43:08PM +0800, Brad Campbell wrote:
> > > > Well can you try so that you disable PCIe PM for starters? Pass
> > > > "pcie_port_pm=off" in the command line and see if anything changes. Of
> > > > course this prevents low power states.
> > > > 
> > > 
> > > That allows me to modprobe thunderbolt from an xterm :
> > 
> > Okay does it work any better if you don't have anything attached to the
> > TBT ports when you boot up? If it does, how about just adding a single
> > device (no display connected)?
> > 
> 
> Yes, with nothing attached to the Tb ports it's fine. Been working that way for months.
> 
> With a non-display TB device it appears to work ok also.
> 
> The only device I have that will work on an Apple TB1<->TB2 adapter without external power is
> an Apple TB1->GBe dongle. But that sets up, works and does repeated warn boots. The BIOS even detects
> the network port once Linux has set it up the first time.
> 
> Again, module manually loaded after warm boot :
> 
> [   76.239198] ACPI: bus type thunderbolt registered
> [   76.239225] thunderbolt 0000:05:00.0: enabling device (0000 -> 0002)
> [   76.239275] thunderbolt 0000:05:00.0: total paths: 12
> [   76.239278] thunderbolt 0000:05:00.0: IOMMU DMA protection is disabled
> [   76.239409] thunderbolt 0000:05:00.0: allocating TX ring 0 of size 10
> [   76.239422] thunderbolt 0000:05:00.0: allocating RX ring 0 of size 10
> [   76.239433] thunderbolt 0000:05:00.0: control channel created
> [   76.239436] thunderbolt 0000:05:00.0: ICM not supported on this controller
> [   76.239442] thunderbolt 0000:05:00.0: freeing RX ring 0
> [   76.239447] thunderbolt 0000:05:00.0: freeing TX ring 0
> [   76.239453] thunderbolt 0000:05:00.0: allocating TX ring 0 of size 10
> [   76.239460] thunderbolt 0000:05:00.0: allocating RX ring 0 of size 10
> [   76.239466] thunderbolt 0000:05:00.0: control channel created
> [   76.239467] thunderbolt 0000:05:00.0: using software connection manager
> [   76.239467] thunderbolt 0000:05:00.0: NHI initialized, starting thunderbolt
> [   76.239468] thunderbolt 0000:05:00.0: control channel starting...
> [   76.239468] thunderbolt 0000:05:00.0: starting TX ring 0
> [   76.239475] thunderbolt 0000:05:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
> [   76.239477] thunderbolt 0000:05:00.0: starting RX ring 0
> [   76.239484] thunderbolt 0000:05:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
> [   76.239487] thunderbolt 0000:05:00.0: security level set to user
> [   76.239678] thunderbolt 0000:05:00.0: current switch config:
> [   76.239678] thunderbolt 0000:05:00.0:  Thunderbolt 3 Switch: 8086:15ea (Revision: 6, TB Version: 16)
> [   76.239679] thunderbolt 0000:05:00.0:   Max Port Number: 13
> [   76.239680] thunderbolt 0000:05:00.0:   Config:
> [   76.239680] thunderbolt 0000:05:00.0:    Upstream Port Number: 7 Depth: 0 Route String: 0x0 Enabled: 1, PlugEventsDelay: 255ms
> [   76.239681] thunderbolt 0000:05:00.0:    unknown1: 0x0 unknown4: 0x0
> [   76.244798] thunderbolt 0000:05:00.0: initializing Switch at 0x0 (depth: 0, up port: 7)
> [   76.284740] thunderbolt 0000:05:00.0: 0: uid: 0xedd9a650496900
> [   76.286660] thunderbolt 0000:05:00.0:  Port 1: 8086:15ea (Revision: 6, TB Version: 1, Type: Port (0x1))
> [   76.286663] thunderbolt 0000:05:00.0:   Max hop id (in/out): 19/19
> [   76.286663] thunderbolt 0000:05:00.0:   Max counters: 16
> [   76.286664] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
> [   76.286664] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
> [   76.288580] thunderbolt 0000:05:00.0:  Port 2: 8086:15ea (Revision: 6, TB Version: 1, Type: Port (0x1))
> [   76.288581] thunderbolt 0000:05:00.0:   Max hop id (in/out): 19/19
> [   76.288582] thunderbolt 0000:05:00.0:   Max counters: 16
> [   76.288582] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
> [   76.288583] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
> [   76.290500] thunderbolt 0000:05:00.0:  Port 3: 8086:15ea (Revision: 6, TB Version: 1, Type: Port (0x1))
> [   76.290500] thunderbolt 0000:05:00.0:   Max hop id (in/out): 19/19
> [   76.290501] thunderbolt 0000:05:00.0:   Max counters: 16
> [   76.290501] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
> [   76.290502] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
> [   76.292416] thunderbolt 0000:05:00.0:  Port 4: 8086:15ea (Revision: 6, TB Version: 1, Type: Port (0x1))
> [   76.292417] thunderbolt 0000:05:00.0:   Max hop id (in/out): 19/19
> [   76.292417] thunderbolt 0000:05:00.0:   Max counters: 16
> [   76.292417] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
> [   76.292418] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
> [   76.292677] thunderbolt 0000:05:00.0:  Port 5: 8086:15ea (Revision: 6, TB Version: 1, Type: DP/HDMI (0xe0101))
> [   76.292678] thunderbolt 0000:05:00.0:   Max hop id (in/out): 255/255
> [   76.292679] thunderbolt 0000:05:00.0:   Max counters: 2
> [   76.292679] thunderbolt 0000:05:00.0:   NFC Credits: 0x1800000
> [   76.292680] thunderbolt 0000:05:00.0:   Credits (total/control): 24/0
> [   76.292932] thunderbolt 0000:05:00.0:  Port 6: 8086:15ea (Revision: 6, TB Version: 1, Type: DP/HDMI (0xe0101))
> [   76.292933] thunderbolt 0000:05:00.0:   Max hop id (in/out): 255/255
> [   76.292933] thunderbolt 0000:05:00.0:   Max counters: 2
> [   76.292934] thunderbolt 0000:05:00.0:   NFC Credits: 0x1800000
> [   76.292934] thunderbolt 0000:05:00.0:   Credits (total/control): 24/0
> [   76.293700] thunderbolt 0000:05:00.0:  Port 7: 8086:15ea (Revision: 6, TB Version: 1, Type: NHI (0x2))
> [   76.293701] thunderbolt 0000:05:00.0:   Max hop id (in/out): 11/11
> [   76.293701] thunderbolt 0000:05:00.0:   Max counters: 16
> [   76.293702] thunderbolt 0000:05:00.0:   NFC Credits: 0x1800000
> [   76.293702] thunderbolt 0000:05:00.0:   Credits (total/control): 24/0
> [   76.293956] thunderbolt 0000:05:00.0:  Port 8: 8086:15ea (Revision: 6, TB Version: 1, Type: PCIe (0x100101))
> [   76.293957] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
> [   76.293957] thunderbolt 0000:05:00.0:   Max counters: 2
> [   76.293958] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
> [   76.293958] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
> [   76.294212] thunderbolt 0000:05:00.0:  Port 9: 8086:15ea (Revision: 6, TB Version: 1, Type: PCIe (0x100101))
> [   76.294212] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
> [   76.294213] thunderbolt 0000:05:00.0:   Max counters: 2
> [   76.294213] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
> [   76.294214] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
> [   76.294724] thunderbolt 0000:05:00.0:  Port 10: 8086:15ea (Revision: 6, TB Version: 1, Type: DP/HDMI (0xe0102))
> [   76.294725] thunderbolt 0000:05:00.0:   Max hop id (in/out): 9/9
> [   76.294725] thunderbolt 0000:05:00.0:   Max counters: 2
> [   76.294726] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
> [   76.294726] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
> [   76.295232] thunderbolt 0000:05:00.0:  Port 11: 8086:15ea (Revision: 6, TB Version: 1, Type: DP/HDMI (0xe0102))
> [   76.295233] thunderbolt 0000:05:00.0:   Max hop id (in/out): 9/9
> [   76.295234] thunderbolt 0000:05:00.0:   Max counters: 2
> [   76.295234] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
> [   76.295235] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
> [   76.295488] thunderbolt 0000:05:00.0:  Port 12: 8086:15ea (Revision: 6, TB Version: 1, Type: Inactive (0x0))
> [   76.295489] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
> [   76.295489] thunderbolt 0000:05:00.0:   Max counters: 2
> [   76.295490] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
> [   76.295490] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
> [   76.295743] thunderbolt 0000:05:00.0:  Port 13: 8086:15ea (Revision: 6, TB Version: 1, Type: Inactive (0x0))
> [   76.295743] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
> [   76.295744] thunderbolt 0000:05:00.0:   Max counters: 2
> [   76.295744] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
> [   76.295745] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
> [   76.295745] thunderbolt 0000:05:00.0: 0: linked ports 1 <-> 2
> [   76.295746] thunderbolt 0000:05:00.0: 0: linked ports 3 <-> 4
> [   76.300868] thunderbolt 0000:05:00.0: 0: TMU: supports uni-directional mode
> [   76.300869] thunderbolt 0000:05:00.0: 0: TMU: current mode: HiFi
> [   76.300993] thunderbolt 0000:05:00.0: 0:1: is unplugged (state: 7)
> [   76.301120] thunderbolt 0000:05:00.0: 0:3: is connected, link is up (state: 2)
> [   76.301376] thunderbolt 0000:05:00.0: current switch config:
> [   76.301377] thunderbolt 0000:05:00.0:  Thunderbolt 1 Switch: 8086:1549 (Revision: 0, TB Version: 1)
> [   76.301378] thunderbolt 0000:05:00.0:   Max Port Number: 2
> [   76.301378] thunderbolt 0000:05:00.0:   Config:
> [   76.301378] thunderbolt 0000:05:00.0:    Upstream Port Number: 1 Depth: 1 Route String: 0x3 Enabled: 1, PlugEventsDelay: 255ms
> [   76.301379] thunderbolt 0000:05:00.0:    unknown1: 0x0 unknown4: 0x0
> [   76.304961] thunderbolt 0000:05:00.0: 3: unknown capability 0xef at 0x95
> [   76.306373] thunderbolt 0000:05:00.0: initializing Switch at 0x3 (depth: 1, up port: 1)
> [   76.323781] thunderbolt 0000:05:00.0: 3: reading drom (length: 0x7b)
> [   76.727884] thunderbolt 0000:05:00.0: 3: DROM version: 1
> [   76.728135] thunderbolt 0000:05:00.0: 3: uid: 0x1000206596ce0
> [   76.730061] thunderbolt 0000:05:00.0:  Port 1: 8086:1549 (Revision: 0, TB Version: 1, Type: Port (0x1))
> [   76.730062] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
> [   76.730063] thunderbolt 0000:05:00.0:   Max counters: 4
> [   76.730063] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
> [   76.730064] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
> [   76.730315] thunderbolt 0000:05:00.0:  Port 2: 8086:1549 (Revision: 0, TB Version: 1, Type: PCIe (0x100102))
> [   76.730316] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
> [   76.730316] thunderbolt 0000:05:00.0:   Max counters: 2
> [   76.730317] thunderbolt 0000:05:00.0:   NFC Credits: 0x700000
> [   76.730317] thunderbolt 0000:05:00.0:   Credits (total/control): 7/0
> [   76.731467] thunderbolt 0000:05:00.0: 3: TMU: current mode: bi-directional, HiFi
> [   76.731475] thunderbolt 0-3: new device found, vendor=0x1 device=0x8003
> [   76.731477] thunderbolt 0-3: Apple, Inc. Thunderbolt to Gigabit Ethernet Adapter
> [   76.732870] thunderbolt 0000:05:00.0: discovering PCIe Up path starting from 0:9
> [   76.733000] thunderbolt 0000:05:00.0: 0:9:  In HopID: 8 => Out port: 3 Out HopID: 8
> [   76.733001] thunderbolt 0000:05:00.0: 0:9:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
> [   76.733002] thunderbolt 0000:05:00.0: 0:9:    Counter enabled: 0 Counter index: 2047
> [   76.733003] thunderbolt 0000:05:00.0: 0:9:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
> [   76.733004] thunderbolt 0000:05:00.0: 0:9:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
> [   76.733127] thunderbolt 0000:05:00.0: 3:1:  In HopID: 8 => Out port: 2 Out HopID: 8
> [   76.733128] thunderbolt 0000:05:00.0: 3:1:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
> [   76.733129] thunderbolt 0000:05:00.0: 3:1:    Counter enabled: 0 Counter index: 2047
> [   76.733129] thunderbolt 0000:05:00.0: 3:1:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
> [   76.733130] thunderbolt 0000:05:00.0: 3:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
> [   76.733131] thunderbolt 0000:05:00.0: path discovery complete
> [   76.733639] thunderbolt 0000:05:00.0: discovering PCIe Down path starting from 3:2
> [   76.733768] thunderbolt 0000:05:00.0: 3:2:  In HopID: 8 => Out port: 1 Out HopID: 8
> [   76.733769] thunderbolt 0000:05:00.0: 3:2:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
> [   76.733770] thunderbolt 0000:05:00.0: 3:2:    Counter enabled: 0 Counter index: 2047
> [   76.733770] thunderbolt 0000:05:00.0: 3:2:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
> [   76.733771] thunderbolt 0000:05:00.0: 3:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
> [   76.733893] thunderbolt 0000:05:00.0: 0:3:  In HopID: 8 => Out port: 9 Out HopID: 8
> [   76.733894] thunderbolt 0000:05:00.0: 0:3:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
> [   76.733894] thunderbolt 0000:05:00.0: 0:3:    Counter enabled: 0 Counter index: 2047
> [   76.733895] thunderbolt 0000:05:00.0: 0:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
> [   76.733896] thunderbolt 0000:05:00.0: 0:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
> [   76.733897] thunderbolt 0000:05:00.0: path discovery complete
> [   76.734028] thunderbolt 0000:05:00.0: 0:9 <-> 3:2 (PCI): discovered
> [   76.734150] thunderbolt 0000:05:00.0: 0:5: DP IN resource available
> [   76.734277] thunderbolt 0000:05:00.0: 0:6: DP IN resource available
> 
> I now wonder if it's one of the PCIe connected devices in the Thunderbolt displays not "playing nice" ?

They are pretty standard so I suspect myself the display side of things.
Not sure if it is possible (I think it is from sysfs /sys/class/drm/*)
to disable the tunneled DP connections and see if that makes it not
hang. Alternatively you can try to comment out the call to
tb_tunnel_dp() from the driver. Let me know if you want me to make hack
patch that does it for you.

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-08-05 14:21                                                 ` Mika Westerberg
@ 2022-08-05 14:43                                                   ` Brad Campbell
  2022-08-06  6:13                                                     ` Mika Westerberg
  0 siblings, 1 reply; 47+ messages in thread
From: Brad Campbell @ 2022-08-05 14:43 UTC (permalink / raw)
  To: Mika Westerberg; +Cc: linux-kernel

On 5/8/22 22:21, Mika Westerberg wrote:

> They are pretty standard so I suspect myself the display side of things.
> Not sure if it is possible (I think it is from sysfs /sys/class/drm/*)
> to disable the tunneled DP connections and see if that makes it not
> hang. Alternatively you can try to comment out the call to
> tb_tunnel_dp() from the driver. Let me know if you want me to make hack
> patch that does it for you.
> 

I used this :

iff --git a/drivers/thunderbolt/tb.c b/drivers/thunderbolt/tb.c
index 9a3214fb5038..eae7523af78b 100644
--- a/drivers/thunderbolt/tb.c
+++ b/drivers/thunderbolt/tb.c
@@ -865,7 +865,7 @@ static void tb_tunnel_dp(struct tb *tb)
         struct tb_cm *tcm = tb_priv(tb);
         struct tb_port *port, *in, *out;
         struct tb_tunnel *tunnel;
-
+       return;
         if (!tb_acpi_may_tunnel_dp()) {
                 tb_dbg(tb, "DP tunneling disabled, not creating tunnel\n");
                 return;

I'm now using Linus GIT head. No change in behaviour really.

No tunnels were created. None of the TB displays light up in Linux or BIOS. System still locks
up on reboot and the first time I attempted to compose this reply it locked up hard before I
had a chance to finish it because I attempted to verify the devices were present with an lspci -tv.

If I do an lspci -tv after the module load, it locks hard instantly and reproducibly.

[   79.583747] ACPI: bus type thunderbolt registered
[   79.583776] thunderbolt 0000:05:00.0: enabling device (0000 -> 0002)
[   79.583830] thunderbolt 0000:05:00.0: total paths: 12
[   79.583836] thunderbolt 0000:05:00.0: IOMMU DMA protection is disabled
[   79.583975] thunderbolt 0000:05:00.0: allocating TX ring 0 of size 10
[   79.583987] thunderbolt 0000:05:00.0: allocating RX ring 0 of size 10
[   79.583997] thunderbolt 0000:05:00.0: control channel created
[   79.584000] thunderbolt 0000:05:00.0: ICM not supported on this controller
[   79.584006] thunderbolt 0000:05:00.0: freeing RX ring 0
[   79.584012] thunderbolt 0000:05:00.0: freeing TX ring 0
[   79.584018] thunderbolt 0000:05:00.0: allocating TX ring 0 of size 10
[   79.584025] thunderbolt 0000:05:00.0: allocating RX ring 0 of size 10
[   79.584031] thunderbolt 0000:05:00.0: control channel created
[   79.584032] thunderbolt 0000:05:00.0: using software connection manager
[   79.584033] thunderbolt 0000:05:00.0: NHI initialized, starting thunderbolt
[   79.584033] thunderbolt 0000:05:00.0: control channel starting...
[   79.584033] thunderbolt 0000:05:00.0: starting TX ring 0
[   79.584041] thunderbolt 0000:05:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[   79.584042] thunderbolt 0000:05:00.0: starting RX ring 0
[   79.584050] thunderbolt 0000:05:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[   79.584053] thunderbolt 0000:05:00.0: security level set to user
[   79.584207] thunderbolt 0000:05:00.0: current switch config:
[   79.584207] thunderbolt 0000:05:00.0:  Thunderbolt 3 Switch: 8086:15ea (Revision: 6, TB Version: 16)
[   79.584208] thunderbolt 0000:05:00.0:   Max Port Number: 13
[   79.584209] thunderbolt 0000:05:00.0:   Config:
[   79.584209] thunderbolt 0000:05:00.0:    Upstream Port Number: 7 Depth: 0 Route String: 0x0 Enabled: 1, PlugEventsDelay: 255ms
[   79.584210] thunderbolt 0000:05:00.0:    unknown1: 0x0 unknown4: 0x0
[   79.589326] thunderbolt 0000:05:00.0: initializing Switch at 0x0 (depth: 0, up port: 7)
[   79.629264] thunderbolt 0000:05:00.0: 0: uid: 0xedd9a650496900
[   79.631185] thunderbolt 0000:05:00.0:  Port 1: 8086:15ea (Revision: 6, TB Version: 1, Type: Port (0x1))
[   79.631187] thunderbolt 0000:05:00.0:   Max hop id (in/out): 19/19
[   79.631188] thunderbolt 0000:05:00.0:   Max counters: 16
[   79.631188] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[   79.631189] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[   79.633105] thunderbolt 0000:05:00.0:  Port 2: 8086:15ea (Revision: 6, TB Version: 1, Type: Port (0x1))
[   79.633106] thunderbolt 0000:05:00.0:   Max hop id (in/out): 19/19
[   79.633107] thunderbolt 0000:05:00.0:   Max counters: 16
[   79.633107] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[   79.633108] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[   79.635021] thunderbolt 0000:05:00.0:  Port 3: 8086:15ea (Revision: 6, TB Version: 1, Type: Port (0x1))
[   79.635022] thunderbolt 0000:05:00.0:   Max hop id (in/out): 19/19
[   79.635022] thunderbolt 0000:05:00.0:   Max counters: 16
[   79.635023] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[   79.635023] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[   79.636946] thunderbolt 0000:05:00.0:  Port 4: 8086:15ea (Revision: 6, TB Version: 1, Type: Port (0x1))
[   79.636948] thunderbolt 0000:05:00.0:   Max hop id (in/out): 19/19
[   79.636949] thunderbolt 0000:05:00.0:   Max counters: 16
[   79.636949] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[   79.636950] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[   79.637201] thunderbolt 0000:05:00.0:  Port 5: 8086:15ea (Revision: 6, TB Version: 1, Type: DP/HDMI (0xe0101))
[   79.637202] thunderbolt 0000:05:00.0:   Max hop id (in/out): 255/255
[   79.637202] thunderbolt 0000:05:00.0:   Max counters: 2
[   79.637203] thunderbolt 0000:05:00.0:   NFC Credits: 0x1800000
[   79.637203] thunderbolt 0000:05:00.0:   Credits (total/control): 24/0
[   79.637457] thunderbolt 0000:05:00.0:  Port 6: 8086:15ea (Revision: 6, TB Version: 1, Type: DP/HDMI (0xe0101))
[   79.637458] thunderbolt 0000:05:00.0:   Max hop id (in/out): 255/255
[   79.637458] thunderbolt 0000:05:00.0:   Max counters: 2
[   79.637459] thunderbolt 0000:05:00.0:   NFC Credits: 0x1800000
[   79.637459] thunderbolt 0000:05:00.0:   Credits (total/control): 24/0
[   79.638225] thunderbolt 0000:05:00.0:  Port 7: 8086:15ea (Revision: 6, TB Version: 1, Type: NHI (0x2))
[   79.638225] thunderbolt 0000:05:00.0:   Max hop id (in/out): 11/11
[   79.638226] thunderbolt 0000:05:00.0:   Max counters: 16
[   79.638226] thunderbolt 0000:05:00.0:   NFC Credits: 0x1800000
[   79.638227] thunderbolt 0000:05:00.0:   Credits (total/control): 24/0
[   79.638481] thunderbolt 0000:05:00.0:  Port 8: 8086:15ea (Revision: 6, TB Version: 1, Type: PCIe (0x100101))
[   79.638482] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[   79.638482] thunderbolt 0000:05:00.0:   Max counters: 2
[   79.638483] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
[   79.638483] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
[   79.638737] thunderbolt 0000:05:00.0:  Port 9: 8086:15ea (Revision: 6, TB Version: 1, Type: PCIe (0x100101))
[   79.638738] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[   79.638738] thunderbolt 0000:05:00.0:   Max counters: 2
[   79.638739] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
[   79.638739] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
[   79.639248] thunderbolt 0000:05:00.0:  Port 10: 8086:15ea (Revision: 6, TB Version: 1, Type: DP/HDMI (0xe0102))
[   79.639249] thunderbolt 0000:05:00.0:   Max hop id (in/out): 9/9
[   79.639250] thunderbolt 0000:05:00.0:   Max counters: 2
[   79.639250] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
[   79.639251] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
[   79.639761] thunderbolt 0000:05:00.0:  Port 11: 8086:15ea (Revision: 6, TB Version: 1, Type: DP/HDMI (0xe0102))
[   79.639761] thunderbolt 0000:05:00.0:   Max hop id (in/out): 9/9
[   79.639762] thunderbolt 0000:05:00.0:   Max counters: 2
[   79.639762] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
[   79.639763] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
[   79.640017] thunderbolt 0000:05:00.0:  Port 12: 8086:15ea (Revision: 6, TB Version: 1, Type: Inactive (0x0))
[   79.640018] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[   79.640018] thunderbolt 0000:05:00.0:   Max counters: 2
[   79.640019] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
[   79.640019] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
[   79.640269] thunderbolt 0000:05:00.0:  Port 13: 8086:15ea (Revision: 6, TB Version: 1, Type: Inactive (0x0))
[   79.640270] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[   79.640270] thunderbolt 0000:05:00.0:   Max counters: 2
[   79.640271] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
[   79.640271] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
[   79.640272] thunderbolt 0000:05:00.0: 0: linked ports 1 <-> 2
[   79.640272] thunderbolt 0000:05:00.0: 0: linked ports 3 <-> 4
[   79.645393] thunderbolt 0000:05:00.0: 0: TMU: supports uni-directional mode
[   79.645393] thunderbolt 0000:05:00.0: 0: TMU: current mode: HiFi
[   79.645519] thunderbolt 0000:05:00.0: 0:1: is unplugged (state: 7)
[   79.645647] thunderbolt 0000:05:00.0: 0:3: is connected, link is up (state: 2)
[   79.645902] thunderbolt 0000:05:00.0: current switch config:
[   79.645902] thunderbolt 0000:05:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[   79.645903] thunderbolt 0000:05:00.0:   Max Port Number: 13
[   79.645903] thunderbolt 0000:05:00.0:   Config:
[   79.645904] thunderbolt 0000:05:00.0:    Upstream Port Number: 1 Depth: 1 Route String: 0x3 Enabled: 1, PlugEventsDelay: 255ms
[   79.645905] thunderbolt 0000:05:00.0:    unknown1: 0x0 unknown4: 0x0
[   79.650512] thunderbolt 0000:05:00.0: initializing Switch at 0x3 (depth: 1, up port: 1)
[   79.667922] thunderbolt 0000:05:00.0: 3: reading drom (length: 0x97)
[   80.161623] thunderbolt 0000:05:00.0: 3: DROM version: 1
[   80.162643] thunderbolt 0000:05:00.0: 3: uid: 0x1000100189170
[   80.165591] thunderbolt 0000:05:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   80.165592] thunderbolt 0000:05:00.0:   Max hop id (in/out): 63/63
[   80.165593] thunderbolt 0000:05:00.0:   Max counters: 32
[   80.165593] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[   80.165594] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[   80.168535] thunderbolt 0000:05:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   80.168536] thunderbolt 0000:05:00.0:   Max hop id (in/out): 63/63
[   80.168536] thunderbolt 0000:05:00.0:   Max counters: 32
[   80.168537] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[   80.168537] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[   80.171478] thunderbolt 0000:05:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   80.171479] thunderbolt 0000:05:00.0:   Max hop id (in/out): 63/63
[   80.171480] thunderbolt 0000:05:00.0:   Max counters: 32
[   80.171480] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[   80.171481] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[   80.174422] thunderbolt 0000:05:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   80.174425] thunderbolt 0000:05:00.0:   Max hop id (in/out): 63/63
[   80.174426] thunderbolt 0000:05:00.0:   Max counters: 32
[   80.174426] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[   80.174427] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[   80.174427] thunderbolt 0000:05:00.0: 3:5: disabled by eeprom
[   80.174428] thunderbolt 0000:05:00.0: 3:6: disabled by eeprom
[   80.175315] thunderbolt 0000:05:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[   80.175316] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[   80.175316] thunderbolt 0000:05:00.0:   Max counters: 1
[   80.175317] thunderbolt 0000:05:00.0:   NFC Credits: 0x700000
[   80.175317] thunderbolt 0000:05:00.0:   Credits (total/control): 7/0
[   80.176215] thunderbolt 0000:05:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[   80.176216] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[   80.176216] thunderbolt 0000:05:00.0:   Max counters: 1
[   80.176217] thunderbolt 0000:05:00.0:   NFC Credits: 0x700000
[   80.176217] thunderbolt 0000:05:00.0:   Credits (total/control): 7/0
[   80.176217] thunderbolt 0000:05:00.0: 3:9: disabled by eeprom
[   80.177111] thunderbolt 0000:05:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[   80.177112] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[   80.177113] thunderbolt 0000:05:00.0:   Max counters: 1
[   80.177113] thunderbolt 0000:05:00.0:   NFC Credits: 0x700000
[   80.177114] thunderbolt 0000:05:00.0:   Credits (total/control): 7/0
[   80.178262] thunderbolt 0000:05:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[   80.178265] thunderbolt 0000:05:00.0:   Max hop id (in/out): 9/9
[   80.178265] thunderbolt 0000:05:00.0:   Max counters: 2
[   80.178266] thunderbolt 0000:05:00.0:   NFC Credits: 0x700000
[   80.178266] thunderbolt 0000:05:00.0:   Credits (total/control): 7/0
[   80.178267] thunderbolt 0000:05:00.0: 3:12: disabled by eeprom
[   80.178268] thunderbolt 0000:05:00.0: 3:13: disabled by eeprom
[   80.196125] thunderbolt 0000:05:00.0: 3: TMU: current mode: bi-directional, HiFi
[   80.196137] thunderbolt 0-3: new device found, vendor=0x1 device=0x8002
[   80.196139] thunderbolt 0-3: Apple, Inc. Thunderbolt Display
[   80.196638] thunderbolt 0000:05:00.0: 3:3: is connected, link is up (state: 2)
[   80.196907] thunderbolt 0000:05:00.0: current switch config:
[   80.196908] thunderbolt 0000:05:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[   80.196909] thunderbolt 0000:05:00.0:   Max Port Number: 13
[   80.196909] thunderbolt 0000:05:00.0:   Config:
[   80.196910] thunderbolt 0000:05:00.0:    Upstream Port Number: 3 Depth: 2 Route String: 0x303 Enabled: 1, PlugEventsDelay: 255ms
[   80.196911] thunderbolt 0000:05:00.0:    unknown1: 0x0 unknown4: 0x0
[   80.201502] thunderbolt 0000:05:00.0: initializing Switch at 0x303 (depth: 2, up port: 3)
[   80.218910] thunderbolt 0000:05:00.0: 303: reading drom (length: 0x97)
[   80.712612] thunderbolt 0000:05:00.0: 303: DROM version: 1
[   80.713636] thunderbolt 0000:05:00.0: 303: uid: 0x100010102a740
[   80.716580] thunderbolt 0000:05:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   80.716581] thunderbolt 0000:05:00.0:   Max hop id (in/out): 63/63
[   80.716582] thunderbolt 0000:05:00.0:   Max counters: 32
[   80.716583] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[   80.716583] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[   80.719523] thunderbolt 0000:05:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   80.719525] thunderbolt 0000:05:00.0:   Max hop id (in/out): 63/63
[   80.719526] thunderbolt 0000:05:00.0:   Max counters: 32
[   80.719526] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[   80.719526] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[   80.722467] thunderbolt 0000:05:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   80.722468] thunderbolt 0000:05:00.0:   Max hop id (in/out): 63/63
[   80.722469] thunderbolt 0000:05:00.0:   Max counters: 32
[   80.722469] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[   80.722470] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[   80.725411] thunderbolt 0000:05:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[   80.725412] thunderbolt 0000:05:00.0:   Max hop id (in/out): 63/63
[   80.725413] thunderbolt 0000:05:00.0:   Max counters: 32
[   80.725413] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[   80.725414] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[   80.725414] thunderbolt 0000:05:00.0: 303:5: disabled by eeprom
[   80.725415] thunderbolt 0000:05:00.0: 303:6: disabled by eeprom
[   80.726307] thunderbolt 0000:05:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[   80.726308] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[   80.726309] thunderbolt 0000:05:00.0:   Max counters: 1
[   80.726309] thunderbolt 0000:05:00.0:   NFC Credits: 0x700000
[   80.726310] thunderbolt 0000:05:00.0:   Credits (total/control): 7/0
[   80.727201] thunderbolt 0000:05:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[   80.727202] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[   80.727203] thunderbolt 0000:05:00.0:   Max counters: 1
[   80.727203] thunderbolt 0000:05:00.0:   NFC Credits: 0x700000
[   80.727204] thunderbolt 0000:05:00.0:   Credits (total/control): 7/0
[   80.727204] thunderbolt 0000:05:00.0: 303:9: disabled by eeprom
[   80.728099] thunderbolt 0000:05:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[   80.728100] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[   80.728101] thunderbolt 0000:05:00.0:   Max counters: 1
[   80.728101] thunderbolt 0000:05:00.0:   NFC Credits: 0x700000
[   80.728102] thunderbolt 0000:05:00.0:   Credits (total/control): 7/0
[   80.729251] thunderbolt 0000:05:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[   80.729252] thunderbolt 0000:05:00.0:   Max hop id (in/out): 9/9
[   80.729253] thunderbolt 0000:05:00.0:   Max counters: 2
[   80.729253] thunderbolt 0000:05:00.0:   NFC Credits: 0x700000
[   80.729254] thunderbolt 0000:05:00.0:   Credits (total/control): 7/0
[   80.729254] thunderbolt 0000:05:00.0: 303:12: disabled by eeprom
[   80.729255] thunderbolt 0000:05:00.0: 303:13: disabled by eeprom
[   80.747201] thunderbolt 0000:05:00.0: 303: TMU: current mode: bi-directional, HiFi
[   80.747218] thunderbolt 0-303: new device found, vendor=0x1 device=0x8002
[   80.747220] thunderbolt 0-303: Apple, Inc. Thunderbolt Display
[   80.747333] thunderbolt 0000:05:00.0: 303:1: is unplugged (state: 7)
[   80.747585] thunderbolt 0000:05:00.0: 303:11: DP adapter HPD set, queuing hotplug
[   80.747840] thunderbolt 0000:05:00.0: 3:11: DP adapter HPD set, queuing hotplug
[   80.748864] thunderbolt 0000:05:00.0: discovering PCIe Up path starting from 0:9
[   80.748992] thunderbolt 0000:05:00.0: 0:9:  In HopID: 8 => Out port: 3 Out HopID: 8
[   80.748993] thunderbolt 0000:05:00.0: 0:9:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   80.748994] thunderbolt 0000:05:00.0: 0:9:    Counter enabled: 0 Counter index: 2047
[   80.748995] thunderbolt 0000:05:00.0: 0:9:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   80.748996] thunderbolt 0000:05:00.0: 0:9:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   80.749120] thunderbolt 0000:05:00.0: 3:1:  In HopID: 8 => Out port: 10 Out HopID: 8
[   80.749121] thunderbolt 0000:05:00.0: 3:1:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   80.749122] thunderbolt 0000:05:00.0: 3:1:    Counter enabled: 0 Counter index: 2047
[   80.749122] thunderbolt 0000:05:00.0: 3:1:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   80.749123] thunderbolt 0000:05:00.0: 3:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   80.749124] thunderbolt 0000:05:00.0: path discovery complete
[   80.749632] thunderbolt 0000:05:00.0: discovering PCIe Down path starting from 3:10
[   80.749760] thunderbolt 0000:05:00.0: 3:10:  In HopID: 8 => Out port: 1 Out HopID: 8
[   80.749761] thunderbolt 0000:05:00.0: 3:10:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   80.749761] thunderbolt 0000:05:00.0: 3:10:    Counter enabled: 0 Counter index: 2047
[   80.749762] thunderbolt 0000:05:00.0: 3:10:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   80.749763] thunderbolt 0000:05:00.0: 3:10:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   80.749888] thunderbolt 0000:05:00.0: 0:3:  In HopID: 8 => Out port: 9 Out HopID: 8
[   80.749888] thunderbolt 0000:05:00.0: 0:3:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   80.749889] thunderbolt 0000:05:00.0: 0:3:    Counter enabled: 0 Counter index: 2047
[   80.749890] thunderbolt 0000:05:00.0: 0:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   80.749890] thunderbolt 0000:05:00.0: 0:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   80.749891] thunderbolt 0000:05:00.0: path discovery complete
[   80.750016] thunderbolt 0000:05:00.0: 0:9 <-> 3:a (PCI): discovered
[   80.750400] thunderbolt 0000:05:00.0: discovering PCIe Up path starting from 3:7
[   80.750528] thunderbolt 0000:05:00.0: 3:7:  In HopID: 8 => Out port: 3 Out HopID: 8
[   80.750529] thunderbolt 0000:05:00.0: 3:7:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   80.750529] thunderbolt 0000:05:00.0: 3:7:    Counter enabled: 0 Counter index: 2047
[   80.750530] thunderbolt 0000:05:00.0: 3:7:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   80.750531] thunderbolt 0000:05:00.0: 3:7:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   80.750656] thunderbolt 0000:05:00.0: 303:3:  In HopID: 8 => Out port: 10 Out HopID: 8
[   80.750657] thunderbolt 0000:05:00.0: 303:3:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   80.750657] thunderbolt 0000:05:00.0: 303:3:    Counter enabled: 0 Counter index: 2047
[   80.750658] thunderbolt 0000:05:00.0: 303:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   80.750659] thunderbolt 0000:05:00.0: 303:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   80.750659] thunderbolt 0000:05:00.0: path discovery complete
[   80.751168] thunderbolt 0000:05:00.0: discovering PCIe Down path starting from 303:10
[   80.751296] thunderbolt 0000:05:00.0: 303:10:  In HopID: 8 => Out port: 3 Out HopID: 8
[   80.751297] thunderbolt 0000:05:00.0: 303:10:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   80.751297] thunderbolt 0000:05:00.0: 303:10:    Counter enabled: 0 Counter index: 2047
[   80.751298] thunderbolt 0000:05:00.0: 303:10:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   80.751299] thunderbolt 0000:05:00.0: 303:10:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   80.751424] thunderbolt 0000:05:00.0: 3:3:  In HopID: 8 => Out port: 7 Out HopID: 8
[   80.751425] thunderbolt 0000:05:00.0: 3:3:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   80.751426] thunderbolt 0000:05:00.0: 3:3:    Counter enabled: 0 Counter index: 2047
[   80.751427] thunderbolt 0000:05:00.0: 3:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   80.751427] thunderbolt 0000:05:00.0: 3:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   80.751428] thunderbolt 0000:05:00.0: path discovery complete
[   80.751552] thunderbolt 0000:05:00.0: 3:7 <-> 303:a (PCI): discovered
[   80.752064] thunderbolt 0000:05:00.0: 0:5: DP IN resource available
[   80.752192] thunderbolt 0000:05:00.0: 0:6: DP IN resource available
[   80.752330] thunderbolt 0000:05:00.0: 303:11: DP OUT resource available
[   80.752451] thunderbolt 0000:05:00.0: 3:11: DP OUT resource available


Regards,
Brad

^ permalink raw reply related	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-08-05 14:43                                                   ` Brad Campbell
@ 2022-08-06  6:13                                                     ` Mika Westerberg
  2022-08-06  9:41                                                       ` Brad Campbell
  0 siblings, 1 reply; 47+ messages in thread
From: Mika Westerberg @ 2022-08-06  6:13 UTC (permalink / raw)
  To: Brad Campbell; +Cc: linux-kernel

Hi Brad,

On Fri, Aug 05, 2022 at 10:43:54PM +0800, Brad Campbell wrote:
> On 5/8/22 22:21, Mika Westerberg wrote:
> 
> > They are pretty standard so I suspect myself the display side of things.
> > Not sure if it is possible (I think it is from sysfs /sys/class/drm/*)
> > to disable the tunneled DP connections and see if that makes it not
> > hang. Alternatively you can try to comment out the call to
> > tb_tunnel_dp() from the driver. Let me know if you want me to make hack
> > patch that does it for you.
> > 
> 
> I used this :
> 
> iff --git a/drivers/thunderbolt/tb.c b/drivers/thunderbolt/tb.c
> index 9a3214fb5038..eae7523af78b 100644
> --- a/drivers/thunderbolt/tb.c
> +++ b/drivers/thunderbolt/tb.c
> @@ -865,7 +865,7 @@ static void tb_tunnel_dp(struct tb *tb)
>         struct tb_cm *tcm = tb_priv(tb);
>         struct tb_port *port, *in, *out;
>         struct tb_tunnel *tunnel;
> -
> +       return;
>         if (!tb_acpi_may_tunnel_dp()) {
>                 tb_dbg(tb, "DP tunneling disabled, not creating tunnel\n");
>                 return;
> 
> I'm now using Linus GIT head. No change in behaviour really.
> 
> No tunnels were created. None of the TB displays light up in Linux or BIOS. System still locks
> up on reboot and the first time I attempted to compose this reply it locked up hard before I
> had a chance to finish it because I attempted to verify the devices were present with an lspci -tv.
> 
> If I do an lspci -tv after the module load, it locks hard instantly and reproducibly.

Okay, let's try to deal with one issue at the time so first the hang
that appears after the OS is booted up. Do you still have the
"pcie_port_pm=off" in the kernel command line? The hang that happens
afterwards sounds exactly like that the runtime PM would kick in but the
parameter should prevent that from happening. Since you are connecting
Thunderbolt 1 devices there is really no PM we can do for them at all
and the TBT driver should block it too.

Is it possible to narrow this down to a single device connected and then
get me the full dmesg output (with CONFIG_PCI_DEBUG=y) and output of
'sudo lspci -vv'?

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-08-06  6:13                                                     ` Mika Westerberg
@ 2022-08-06  9:41                                                       ` Brad Campbell
  2022-08-08  9:51                                                         ` Mika Westerberg
  0 siblings, 1 reply; 47+ messages in thread
From: Brad Campbell @ 2022-08-06  9:41 UTC (permalink / raw)
  To: Mika Westerberg; +Cc: linux-kernel

On 6/8/22 14:13, Mika Westerberg wrote:
> Hi Brad,
> 
> On Fri, Aug 05, 2022 at 10:43:54PM +0800, Brad Campbell wrote:
>> On 5/8/22 22:21, Mika Westerberg wrote:
>>
>>> They are pretty standard so I suspect myself the display side of things.
>>> Not sure if it is possible (I think it is from sysfs /sys/class/drm/*)
>>> to disable the tunneled DP connections and see if that makes it not
>>> hang. Alternatively you can try to comment out the call to
>>> tb_tunnel_dp() from the driver. Let me know if you want me to make hack
>>> patch that does it for you.
>>>
>>
>> I used this :
>>
>> iff --git a/drivers/thunderbolt/tb.c b/drivers/thunderbolt/tb.c
>> index 9a3214fb5038..eae7523af78b 100644
>> --- a/drivers/thunderbolt/tb.c
>> +++ b/drivers/thunderbolt/tb.c
>> @@ -865,7 +865,7 @@ static void tb_tunnel_dp(struct tb *tb)
>>          struct tb_cm *tcm = tb_priv(tb);
>>          struct tb_port *port, *in, *out;
>>          struct tb_tunnel *tunnel;
>> -
>> +       return;
>>          if (!tb_acpi_may_tunnel_dp()) {
>>                  tb_dbg(tb, "DP tunneling disabled, not creating tunnel\n");
>>                  return;
>>
>> I'm now using Linus GIT head. No change in behaviour really.
>>
>> No tunnels were created. None of the TB displays light up in Linux or BIOS. System still locks
>> up on reboot and the first time I attempted to compose this reply it locked up hard before I
>> had a chance to finish it because I attempted to verify the devices were present with an lspci -tv.
>>
>> If I do an lspci -tv after the module load, it locks hard instantly and reproducibly.
> 
> Okay, let's try to deal with one issue at the time so first the hang
> that appears after the OS is booted up. Do you still have the
> "pcie_port_pm=off" in the kernel command line? 

Yes, I still have/had that present.

> The hang that happens
> afterwards sounds exactly like that the runtime PM would kick in but the
> parameter should prevent that from happening. Since you are connecting
> Thunderbolt 1 devices there is really no PM we can do for them at all
> and the TBT driver should block it too.
> 
> Is it possible to narrow this down to a single device connected and then
> get me the full dmesg output (with CONFIG_PCI_DEBUG=y) and output of
> 'sudo lspci -vv'?
> 

I've left in the patch to not set up the DP tunnel and recompiled with CONFIG_PCI_DEBUG=y

The minimum I can use to reproduce the fault is a single Thunderbolt display. The Apple TB->GBe dongle doesn't do it
and I have a TB->USB3+eSATA dongle that won't run on the TB3->TB1 adapter due to insufficient power.

This is captured with serial console. It's a cold boot with a single TB display connected. Boots to desktop and I immediately issue a reboot.

 From -> [   15.337689] xhci_hcd 0000:53:00.3: xHCI Host Controller <- on the second boot, the console output slows to
about 1-2 characters per second (nothing updates on the monitor) and eventually the machine reboots by itself. I don't have reboot on panic set.

[    0.000000] Linux version 5.19.0+ (brad@bkd) (gcc (Debian 10.2.1-6) 10.2.1 20210110, GNU ld (GNU Binutils for Debian) 2.35.2) #55 SMP PREEMPT_DYNAMIC Sat Aug 6 16:55:17 AWST 2022
[    0.000000] Command line: ro root=UUID=c6cf971d-5412-4826-851d-5677ad7997c0 thunderbolt.dyndbg pcie_port_pm=off console=ttyS0,115200 console=tty0 nogpu initrd=\initrd.img-5.19.0+
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
[    0.000000] x86/fpu: Enabled xstate features 0x207, context size is 840 bytes, using 'compacted' format.
[    0.000000] signal: max sigframe size: 3376
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000009c3efff] usable
[    0.000000] BIOS-e820: [mem 0x0000000009c3f000-0x0000000009ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000a000000-0x000000000a1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000000a200000-0x000000000a20cfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000a20d000-0x000000000affffff] usable
[    0.000000] BIOS-e820: [mem 0x000000000b000000-0x000000000b01ffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000b020000-0x000000007a076fff] usable
[    0.000000] BIOS-e820: [mem 0x000000007a077000-0x000000007a077fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007a078000-0x000000007a098fff] usable
[    0.000000] BIOS-e820: [mem 0x000000007a099000-0x000000007a099fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007a09a000-0x000000009754cfff] usable
[    0.000000] BIOS-e820: [mem 0x000000009754d000-0x000000009a086fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000009a087000-0x000000009a0ddfff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000009a0de000-0x000000009bb5bfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000009bb5c000-0x000000009cdfefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000009cdff000-0x000000009dffffff] usable
[    0.000000] BIOS-e820: [mem 0x000000009e000000-0x000000009fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd200000-0x00000000fd2fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd600000-0x00000000fd6fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fea00000-0x00000000fea0ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec30000-0x00000000fec30fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000083e2fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000083e300000-0x000000085fffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000009c3efff] usable
[    0.000000] reserve setup_data: [mem 0x0000000009c3f000-0x0000000009ffffff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000a000000-0x000000000a1fffff] usable
[    0.000000] reserve setup_data: [mem 0x000000000a200000-0x000000000a20cfff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000000a20d000-0x000000000affffff] usable
[    0.000000] reserve setup_data: [mem 0x000000000b000000-0x000000000b01ffff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000b020000-0x000000007a076fff] usable
[    0.000000] reserve setup_data: [mem 0x000000007a077000-0x000000007a077fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000007a078000-0x000000007a098fff] usable
[    0.000000] reserve setup_data: [mem 0x000000007a099000-0x000000007a099fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000007a09a000-0x00000000936f5017] usable
[    0.000000] reserve setup_data: [mem 0x00000000936f5018-0x0000000093702857] usable
[    0.000000] reserve setup_data: [mem 0x0000000093702858-0x0000000093732017] usable
[    0.000000] reserve setup_data: [mem 0x0000000093732018-0x0000000093741057] usable
[    0.000000] reserve setup_data: [mem 0x0000000093741058-0x0000000093cbf017] usable
[    0.000000] reserve setup_data: [mem 0x0000000093cbf018-0x0000000093ccc857] usable
[    0.000000] reserve setup_data: [mem 0x0000000093ccc858-0x000000009754cfff] usable
[    0.000000] reserve setup_data: [mem 0x000000009754d000-0x000000009a086fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000009a087000-0x000000009a0ddfff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000009a0de000-0x000000009bb5bfff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000009bb5c000-0x000000009cdfefff] reserved
[    0.000000] reserve setup_data: [mem 0x000000009cdff000-0x000000009dffffff] usable
[    0.000000] reserve setup_data: [mem 0x000000009e000000-0x000000009fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fd200000-0x00000000fd2fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fd600000-0x00000000fd6fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fea00000-0x00000000fea0ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec30000-0x00000000fec30fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000083e2fffff] usable
[    0.000000] reserve setup_data: [mem 0x000000083e300000-0x000000085fffffff] reserved
[    0.000000] efi: EFI v2.70 by American Megatrends
[    0.000000] efi: ACPI=0x9bb45000 ACPI 2.0=0x9bb45014 SMBIOS=0x9cc2b000 SMBIOS 3.0=0x9cc2a000 MEMATTR=0x93ccd018 ESRT=0x96088c18 RNG=0x9cc27498
[    0.000000] efi: seeding entropy pool
[    0.000000] SMBIOS 3.3.0 present.
[    0.000000] DMI: Gigabyte Technology Co., Ltd. B550 VISION D-P/B550 VISION D-P, BIOS F15d 07/20/2022
[    0.000000] last_pfn = 0x83e300 max_arch_pfn = 0x400000000
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT
[    0.000000] last_pfn = 0x9e000 max_arch_pfn = 0x400000000
[    0.000000] esrt: Reserving ESRT space from 0x0000000096088c18 to 0x0000000096088c50.
[    0.000000] Using GB pages for direct mapping
[    0.000000] Secure boot disabled
[    0.000000] RAMDISK: [mem 0x7f171000-0x7fffffff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x000000009BB45014 000024 (v02 ALASKA)
[    0.000000] ACPI: XSDT 0x000000009BB44728 0000D4 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.000000] ACPI: FACP 0x000000009A0C5000 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: DSDT 0x000000009A096000 006227 (v02 ALASKA A M I    01072009 INTL 20190509)
[    0.000000] ACPI: FACS 0x000000009AB3F000 000040
[    0.000000] ACPI: SSDT 0x000000009A0D4000 009FFD (v02 GBT    GSWApp   00000001 INTL 20190509)
[    0.000000] ACPI: IVRS 0x000000009A0D3000 0000D0 (v02 AMD    AmdTable 00000001 AMD  00000001)
[    0.000000] ACPI: SSDT 0x000000009A0CB000 0072B0 (v02 AMD    Artic    00000002 MSFT 04000000)
[    0.000000] ACPI: SSDT 0x000000009A0C7000 003D74 (v01 AMD    AMD AOD  00000001 INTL 20190509)
[    0.000000] ACPI: SSDT 0x000000009A0C6000 0001AD (v02 ALASKA CPUSSDT  01072009 AMI  01072009)
[    0.000000] ACPI: FIDT 0x000000009A0BE000 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: MCFG 0x000000009A0BD000 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
[    0.000000] ACPI: HPET 0x000000009A0BC000 000038 (v01 ALASKA A M I    01072009 AMI  00000005)
[    0.000000] ACPI: FPDT 0x000000009A0BB000 000044 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.000000] ACPI: VFCT 0x000000009A0AD000 00D884 (v01 ALASKA A M I    00000001 AMD  31504F47)
[    0.000000] ACPI: SSDT 0x000000009A0A9000 003E88 (v02 AMD    AmdTable 00000001 AMD  00000001)
[    0.000000] ACPI: CRAT 0x000000009A0A8000 000B68 (v01 AMD    AmdTable 00000001 AMD  00000001)
[    0.000000] ACPI: CDIT 0x000000009A0A7000 000029 (v01 AMD    AmdTable 00000001 AMD  00000001)
[    0.000000] ACPI: SSDT 0x000000009A0A5000 001486 (v01 AMD    ArticIG2 00000001 INTL 20190509)
[    0.000000] ACPI: SSDT 0x000000009A0A3000 0014FD (v01 AMD    ArticTPX 00000001 INTL 20190509)
[    0.000000] ACPI: SSDT 0x000000009A09F000 0039F7 (v01 AMD    ArticN   00000001 INTL 20190509)
[    0.000000] ACPI: WSMT 0x000000009A09E000 000028 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: APIC 0x000000009A09D000 00015E (v04 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: SSDT 0x000000009A0C4000 0008A4 (v01 AMD    ArticPRN 00000001 INTL 20190509)
[    0.000000] ACPI: SSDT 0x000000009A0C2000 00147F (v01 AMD    ArticC   00000001 INTL 20190509)
[    0.000000] ACPI: SSDT 0x000000009A0C1000 0000BF (v01 AMD    AmdTable 00001000 INTL 20190509)
[    0.000000] ACPI: Reserving FACP table memory at [mem 0x9a0c5000-0x9a0c5113]
[    0.000000] ACPI: Reserving DSDT table memory at [mem 0x9a096000-0x9a09c226]
[    0.000000] ACPI: Reserving FACS table memory at [mem 0x9ab3f000-0x9ab3f03f]
[    0.000000] ACPI: Reserving SSDT table memory at [mem 0x9a0d4000-0x9a0ddffc]
[    0.000000] ACPI: Reserving IVRS table memory at [mem 0x9a0d3000-0x9a0d30cf]
[    0.000000] ACPI: Reserving SSDT table memory at [mem 0x9a0cb000-0x9a0d22af]
[    0.000000] ACPI: Reserving SSDT table memory at [mem 0x9a0c7000-0x9a0cad73]
[    0.000000] ACPI: Reserving SSDT table memory at [mem 0x9a0c6000-0x9a0c61ac]
[    0.000000] ACPI: Reserving FIDT table memory at [mem 0x9a0be000-0x9a0be09b]
[    0.000000] ACPI: Reserving MCFG table memory at [mem 0x9a0bd000-0x9a0bd03b]
[    0.000000] ACPI: Reserving HPET table memory at [mem 0x9a0bc000-0x9a0bc037]
[    0.000000] ACPI: Reserving FPDT table memory at [mem 0x9a0bb000-0x9a0bb043]
[    0.000000] ACPI: Reserving VFCT table memory at [mem 0x9a0ad000-0x9a0ba883]
[    0.000000] ACPI: Reserving SSDT table memory at [mem 0x9a0a9000-0x9a0ace87]
[    0.000000] ACPI: Reserving CRAT table memory at [mem 0x9a0a8000-0x9a0a8b67]
[    0.000000] ACPI: Reserving CDIT table memory at [mem 0x9a0a7000-0x9a0a7028]
[    0.000000] ACPI: Reserving SSDT table memory at [mem 0x9a0a5000-0x9a0a6485]
[    0.000000] ACPI: Reserving SSDT table memory at [mem 0x9a0a3000-0x9a0a44fc]
[    0.000000] ACPI: Reserving SSDT table memory at [mem 0x9a09f000-0x9a0a29f6]
[    0.000000] ACPI: Reserving WSMT table memory at [mem 0x9a09e000-0x9a09e027]
[    0.000000] ACPI: Reserving APIC table memory at [mem 0x9a09d000-0x9a09d15d]
[    0.000000] ACPI: Reserving SSDT table memory at [mem 0x9a0c4000-0x9a0c48a3]
[    0.000000] ACPI: Reserving SSDT table memory at [mem 0x9a0c2000-0x9a0c347e]
[    0.000000] ACPI: Reserving SSDT table memory at [mem 0x9a0c1000-0x9a0c10be]
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000083e2fffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x83e2fe000-0x83e2fffff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000083e2fffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x0000000009c3efff]
[    0.000000]   node   0: [mem 0x000000000a000000-0x000000000a1fffff]
[    0.000000]   node   0: [mem 0x000000000a20d000-0x000000000affffff]
[    0.000000]   node   0: [mem 0x000000000b020000-0x000000007a076fff]
[    0.000000]   node   0: [mem 0x000000007a078000-0x000000007a098fff]
[    0.000000]   node   0: [mem 0x000000007a09a000-0x000000009754cfff]
[    0.000000]   node   0: [mem 0x000000009cdff000-0x000000009dffffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000083e2fffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000083e2fffff]
[    0.000000] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.000000] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.000000] On node 0, zone DMA32: 961 pages in unavailable ranges
[    0.000000] On node 0, zone DMA32: 13 pages in unavailable ranges
[    0.000000] On node 0, zone DMA32: 32 pages in unavailable ranges
[    0.000000] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.000000] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.000000] On node 0, zone DMA32: 22706 pages in unavailable ranges
[    0.000000] On node 0, zone Normal: 8192 pages in unavailable ranges
[    0.000000] On node 0, zone Normal: 7424 pages in unavailable ranges
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 13, version 33, address 0xfec00000, GSI 0-23
[    0.000000] IOAPIC[1]: apic_id 14, version 33, address 0xfec01000, GSI 24-55
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.000000] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.000000] smpboot: 32 Processors exceeds NR_CPUS limit of 16
[    0.000000] smpboot: Allowing 16 CPUs, 4 hotplug CPUs
[    0.000000] [mem 0xa0000000-0xefffffff] available for PCI devices
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.000000] setup_percpu: NR_CPUS:16 nr_cpumask_bits:16 nr_cpu_ids:16 nr_node_ids:1
[    0.000000] percpu: Embedded 44 pages/cpu s139880 r8192 d32152 u262144
[    0.000000] Fallback order for Node 0: 0
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 8089540
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: ro root=UUID=c6cf971d-5412-4826-851d-5677ad7997c0 thunderbolt.dyndbg pcie_port_pm=off console=ttyS0,115200 console=tty0 nogpu initrd=\initrd.img-5.19.0+
[    0.000000] Unknown kernel command line parameters "nogpu", will be passed to user space.
[    0.000000] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.000000] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] Memory: 32128216K/32872436K available (8192K kernel code, 2309K rwdata, 1868K rodata, 952K init, 944K bss, 743964K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
[    0.000000] Dynamic Preempt: voluntary
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] rcu: 	RCU event tracing is enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[    0.000000] NR_IRQS: 4352, nr_irqs: 1096, preallocated irqs: 16
[    0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.000000] Console: colour dummy device 80x25
[    0.000000] printk: console [tty0] enabled
[    0.000000] printk: console [ttyS0] enabled
[    0.000000] ACPI: Core revision 20220331
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    0.000000] APIC: Switch to symmetric I/O mode setup
[    0.000000] Switched APIC routing to physical flat.
[    0.010000] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.070000] tsc: PIT calibration matches HPET. 1 loops
[    0.070000] tsc: Detected 3900.162 MHz processor
[    0.000002] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x706fe8311dd, max_idle_ns: 881591200866 ns
[    0.010494] Calibrating delay loop (skipped), value calculated using timer frequency.. 7800.32 BogoMIPS (lpj=39001620)
[    0.020493] pid_max: default: 32768 minimum: 301
[    0.026329] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.030523] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.040576] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    0.047092] LVT offset 1 assigned for vector 0xf9
[    0.050555] LVT offset 2 assigned for vector 0xf4
[    0.055258] process: using mwait in idle threads
[    0.060493] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
[    0.066307] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[    0.070494] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.080493] Spectre V2 : Kernel not compiled with retpoline; no mitigation available!
[    0.080494] Spectre V2 : Vulnerable
[    0.093975] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.100493] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    0.110493] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.118899] Spectre V2 : User space: Mitigation: STIBP always-on protection
[    0.120493] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.130654] Freeing SMP alternatives memory: 24K
[    0.259642] smpboot: CPU0: AMD Ryzen 5 5600G with Radeon Graphics (family: 0x19, model: 0x50, stepping: 0x0)
[    0.260492] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[    0.260493] ... version:                0
[    0.270493] ... bit width:              48
[    0.274578] ... generic registers:      6
[    0.278571] ... value mask:             0000ffffffffffff
[    0.280493] ... max period:             00007fffffffffff
[    0.285789] ... fixed-purpose events:   0
[    0.290493] ... event mask:             000000000000003f
[    0.295822] rcu: Hierarchical SRCU implementation.
[    0.300493] rcu: 	Max phase no-delay instances is 1000.
[    0.305908] smp: Bringing up secondary CPUs ...
[    0.310550] x86: Booting SMP configuration:
[    0.314719] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6
[    0.330523] Spectre V2 : Update user space SMT mitigation: STIBP always-on
[    0.340567]   #7  #8  #9 #10 #11
[    0.352640] smp: Brought up 1 node, 12 CPUs
[    0.360494] smpboot: Max logical packages: 3
[    0.364752] smpboot: Total of 12 processors activated (93603.88 BogoMIPS)
[    0.371121] devtmpfs: initialized
[    0.373879] ACPI: PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20cfff] (53248 bytes)
[    0.380494] ACPI: PM: Registering ACPI NVS region [mem 0x9a0de000-0x9bb5bfff] (27779072 bytes)
[    0.390717] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.400495] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
[    0.410708] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.416660] thermal_sys: Registered thermal governor 'step_wise'
[    0.416661] thermal_sys: Registered thermal governor 'user_space'
[    0.420504] cpuidle: using governor ladder
[    0.430502] cpuidle: using governor menu
[    0.434418] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.440510] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000)
[    0.450494] PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved in E820
[    0.457264] PCI: Using configuration type 1 for base access
[    0.460951] ACPI: Added _OSI(Module Device)
[    0.464686] ACPI: Added _OSI(Processor Device)
[    0.470493] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.475186] ACPI: Added _OSI(Processor Aggregator Device)
[    0.480493] ACPI: Added _OSI(Linux-Dell-Video)
[    0.484924] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.490493] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.504626] ACPI: 12 ACPI AML tables successfully acquired and loaded
[    0.511195] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.521914] ACPI: Interpreter enabled
[    0.524503] ACPI: PM: (supports S0 S3 S5)
[    0.528499] ACPI: Using IOAPIC for interrupt routing
[    0.530657] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.540493] PCI: Using E820 reservations for host bridge windows
[    0.546664] ACPI: Enabled 7 GPEs in block 00 to 1F
[    0.554327] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.560495] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    0.570547] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability LTR]
[    0.580498] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-7f] only partially covers this bridge
[    0.590609] PCI host bridge to bus 0000:00
[    0.594692] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    0.600493] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    0.610493] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    0.617250] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.620493] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
[    0.630493] pci_bus 0000:00: root bus resource [mem 0xa0000000-0xefffffff window]
[    0.637941] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.640502] pci 0000:00:00.0: [1022:1630] type 00 class 0x060000
[    0.650547] pci 0000:00:00.2: [1022:1631] type 00 class 0x080600
[    0.656594] pci 0000:00:01.0: [1022:1632] type 00 class 0x060000
[    0.660533] pci 0000:00:02.0: [1022:1632] type 00 class 0x060000
[    0.666549] pci 0000:00:02.1: [1022:1634] type 01 class 0x060400
[    0.670513] pci 0000:00:02.1: enabling Extended Tags
[    0.675496] pci 0000:00:02.1: PME# supported from D0 D3hot D3cold
[    0.680538] pci 0000:00:02.2: [1022:1634] type 01 class 0x060400
[    0.690541] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[    0.696651] pci 0000:00:08.0: [1022:1632] type 00 class 0x060000
[    0.700526] pci 0000:00:08.1: [1022:1635] type 01 class 0x060400
[    0.706523] pci 0000:00:08.1: enabling Extended Tags
[    0.710518] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    0.720549] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
[    0.726623] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
[    0.730592] pci 0000:00:18.0: [1022:166a] type 00 class 0x060000
[    0.736594] pci 0000:00:18.1: [1022:166b] type 00 class 0x060000
[    0.740508] pci 0000:00:18.2: [1022:166c] type 00 class 0x060000
[    0.750509] pci 0000:00:18.3: [1022:166d] type 00 class 0x060000
[    0.756504] pci 0000:00:18.4: [1022:166e] type 00 class 0x060000
[    0.760508] pci 0000:00:18.5: [1022:166f] type 00 class 0x060000
[    0.766505] pci 0000:00:18.6: [1022:1670] type 00 class 0x060000
[    0.770509] pci 0000:00:18.7: [1022:1671] type 00 class 0x060000
[    0.780553] pci 0000:01:00.0: [1022:43ee] type 00 class 0x0c0330
[    0.786553] pci 0000:01:00.0: reg 0x10: [mem 0xef7a0000-0xef7a7fff 64bit]
[    0.790528] pci 0000:01:00.0: enabling Extended Tags
[    0.795525] pci 0000:01:00.0: PME# supported from D3hot D3cold
[    0.800557] pci 0000:01:00.1: [1022:43eb] type 00 class 0x010601
[    0.810534] pci 0000:01:00.1: reg 0x24: [mem 0xef780000-0xef79ffff]
[    0.816783] pci 0000:01:00.1: reg 0x30: [mem 0xef700000-0xef77ffff pref]
[    0.820498] pci 0000:01:00.1: enabling Extended Tags
[    0.825481] pci 0000:01:00.1: PME# supported from D3hot D3cold
[    0.830540] pci 0000:01:00.2: [1022:43e9] type 01 class 0x060400
[    0.840531] pci 0000:01:00.2: enabling Extended Tags
[    0.845520] pci 0000:01:00.2: PME# supported from D3hot D3cold
[    0.850544] pci 0000:00:02.1: PCI bridge to [bus 01-51]
[    0.855749] pci 0000:00:02.1:   bridge window [io  0xf000-0xffff]
[    0.860494] pci 0000:00:02.1:   bridge window [mem 0xdf000000-0xef7fffff]
[    0.867260] pci 0000:00:02.1:   bridge window [mem 0xa0000000-0xb1ffffff 64bit pref]
[    0.870553] pci 0000:02:00.0: [1022:43ea] type 01 class 0x060400
[    0.880534] pci 0000:02:00.0: enabling Extended Tags
[    0.885529] pci 0000:02:00.0: PME# supported from D3hot D3cold
[    0.890549] pci 0000:02:04.0: [1022:43ea] type 01 class 0x060400
[    0.896574] pci 0000:02:04.0: enabling Extended Tags
[    0.900543] pci 0000:02:04.0: PME# supported from D3hot D3cold
[    0.910547] pci 0000:02:08.0: [1022:43ea] type 01 class 0x060400
[    0.916576] pci 0000:02:08.0: enabling Extended Tags
[    0.920543] pci 0000:02:08.0: PME# supported from D3hot D3cold
[    0.926406] pci 0000:02:09.0: [1022:43ea] type 01 class 0x060400
[    0.930535] pci 0000:02:09.0: enabling Extended Tags
[    0.935536] pci 0000:02:09.0: PME# supported from D3hot D3cold
[    0.940552] pci 0000:01:00.2: PCI bridge to [bus 02-51]
[    0.945758] pci 0000:01:00.2:   bridge window [io  0xf000-0xffff]
[    0.950495] pci 0000:01:00.2:   bridge window [mem 0xdf000000-0xef6fffff]
[    0.960496] pci 0000:01:00.2:   bridge window [mem 0xa0000000-0xb1ffffff 64bit pref]
[    0.970550] pci 0000:03:00.0: [8086:15ea] type 01 class 0x060400
[    0.976598] pci 0000:03:00.0: enabling Extended Tags
[    0.980624] pci 0000:03:00.0: supports D1 D2
[    0.984882] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.990583] pci 0000:02:00.0: PCI bridge to [bus 03-4a]
[    0.995796] pci 0000:02:00.0:   bridge window [mem 0xdf000000-0xef1fffff]
[    1.000497] pci 0000:02:00.0:   bridge window [mem 0xa0000000-0xb1ffffff 64bit pref]
[    1.010565] pci 0000:04:00.0: [8086:15ea] type 01 class 0x060400
[    1.016620] pci 0000:04:00.0: enabling Extended Tags
[    1.020627] pci 0000:04:00.0: supports D1 D2
[    1.024884] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.030589] pci 0000:04:01.0: [8086:15ea] type 01 class 0x060400
[    1.040562] pci 0000:04:01.0: enabling Extended Tags
[    1.045638] pci 0000:04:01.0: supports D1 D2
[    1.049894] pci 0000:04:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.050588] pci 0000:04:02.0: [8086:15ea] type 01 class 0x060400
[    1.060562] pci 0000:04:02.0: enabling Extended Tags
[    1.065646] pci 0000:04:02.0: supports D1 D2
[    1.070493] pci 0000:04:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.077184] pci 0000:04:04.0: [8086:15ea] type 01 class 0x060400
[    1.080562] pci 0000:04:04.0: enabling Extended Tags
[    1.085643] pci 0000:04:04.0: supports D1 D2
[    1.090493] pci 0000:04:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.100600] pci 0000:03:00.0: PCI bridge to [bus 04-4a]
[    1.105815] pci 0000:03:00.0:   bridge window [mem 0xdf000000-0xef1fffff]
[    1.110499] pci 0000:03:00.0:   bridge window [mem 0xa0000000-0xb1ffffff 64bit pref]
[    1.120572] pci 0000:05:00.0: [8086:15eb] type 00 class 0x088000
[    1.126580] pci 0000:05:00.0: reg 0x10: [mem 0xef100000-0xef13ffff]
[    1.130502] pci 0000:05:00.0: reg 0x14: [mem 0xef140000-0xef140fff]
[    1.136805] pci 0000:05:00.0: enabling Extended Tags
[    1.140625] pci 0000:05:00.0: supports D1 D2
[    1.144884] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.150604] pci 0000:04:00.0: PCI bridge to [bus 05]
[    1.155564] pci 0000:04:00.0:   bridge window [mem 0xef100000-0xef1fffff]
[    1.160548] pci 0000:04:01.0: PCI bridge to [bus 06-27]
[    1.170502] pci 0000:04:01.0:   bridge window [mem 0xe7000000-0xeeffffff]
[    1.177265] pci 0000:04:01.0:   bridge window [mem 0xb0000000-0xb1ffffff 64bit pref]
[    1.180577] pci 0000:28:00.0: [8086:15ec] type 00 class 0x0c0330
[    1.190519] pci 0000:28:00.0: reg 0x10: [mem 0xef000000-0xef00ffff]
[    1.196854] pci 0000:28:00.0: enabling Extended Tags
[    1.200642] pci 0000:28:00.0: supports D1 D2
[    1.204900] pci 0000:28:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.210552] pci 0000:28:00.0: 8.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x4 link at 0000:04:02.0 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
[    1.220549] pci 0000:04:02.0: PCI bridge to [bus 28]
[    1.230502] pci 0000:04:02.0:   bridge window [mem 0xef000000-0xef0fffff]
[    1.240548] pci 0000:04:04.0: PCI bridge to [bus 29-4a]
[    1.245763] pci 0000:04:04.0:   bridge window [mem 0xdf000000-0xe6ffffff]
[    1.250499] pci 0000:04:04.0:   bridge window [mem 0xa0000000-0xa1ffffff 64bit pref]
[    1.260578] pci 0000:4b:00.0: [2646:2262] type 00 class 0x010802
[    1.266591] pci 0000:4b:00.0: reg 0x10: [mem 0xef600000-0xef603fff 64bit]
[    1.270712] pci 0000:02:04.0: PCI bridge to [bus 4b]
[    1.275668] pci 0000:02:04.0:   bridge window [mem 0xef600000-0xef6fffff]
[    1.280558] pci 0000:4c:00.0: [1b21:1806] type 01 class 0x060400
[    1.290562] pci 0000:4c:00.0: enabling Extended Tags
[    1.295622] pci 0000:4c:00.0: PME# supported from D0 D3hot D3cold
[    1.300533] pci 0000:4c:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x1 link at 0000:02:08.0 (capable of 15.752 Gb/s with 8.0 GT/s PCIe x2 link)
[    1.310543] pci 0000:02:08.0: PCI bridge to [bus 4c-50]
[    1.320497] pci 0000:02:08.0:   bridge window [io  0xf000-0xffff]
[    1.326567] pci 0000:02:08.0:   bridge window [mem 0xef500000-0xef5fffff]
[    1.330558] pci 0000:4d:00.0: [1b21:1806] type 01 class 0x060400
[    1.340564] pci 0000:4d:00.0: enabling Extended Tags
[    1.345618] pci 0000:4d:00.0: PME# supported from D0 D3hot D3cold
[    1.350588] pci 0000:4d:06.0: [1b21:1806] type 01 class 0x060400
[    1.356647] pci 0000:4d:06.0: enabling Extended Tags
[    1.360600] pci 0000:4d:06.0: PME# supported from D0 D3hot D3cold
[    1.370579] pci 0000:4d:0e.0: [1b21:1806] type 01 class 0x060400
[    1.376630] pci 0000:4d:0e.0: enabling Extended Tags
[    1.380600] pci 0000:4d:0e.0: PME# supported from D0 D3hot D3cold
[    1.386754] pci 0000:4c:00.0: PCI bridge to [bus 4d-50]
[    1.390499] pci 0000:4c:00.0:   bridge window [io  0xf000-0xffff]
[    1.396569] pci 0000:4c:00.0:   bridge window [mem 0xef500000-0xef5fffff]
[    1.400568] pci 0000:4e:00.0: [10ec:8125] type 00 class 0x020000
[    1.410522] pci 0000:4e:00.0: reg 0x10: [io  0xf000-0xf0ff]
[    1.416117] pci 0000:4e:00.0: reg 0x18: [mem 0xef500000-0xef50ffff 64bit]
[    1.420517] pci 0000:4e:00.0: reg 0x20: [mem 0xef510000-0xef513fff 64bit]
[    1.430678] pci 0000:4e:00.0: supports D1 D2
[    1.434935] pci 0000:4e:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.440642] pci 0000:4d:00.0: PCI bridge to [bus 4e]
[    1.445598] pci 0000:4d:00.0:   bridge window [io  0xf000-0xffff]
[    1.450496] pci 0000:4d:00.0:   bridge window [mem 0xef500000-0xef5fffff]
[    1.460543] pci 0000:4d:06.0: PCI bridge to [bus 4f]
[    1.465547] pci 0000:4d:0e.0: PCI bridge to [bus 50]
[    1.470601] pci 0000:51:00.0: [8086:15f3] type 00 class 0x020000
[    1.476608] pci 0000:51:00.0: reg 0x10: [mem 0xef300000-0xef3fffff]
[    1.480527] pci 0000:51:00.0: reg 0x1c: [mem 0xef400000-0xef403fff]
[    1.486917] pci 0000:51:00.0: PME# supported from D0 D3hot D3cold
[    1.490588] pci 0000:02:09.0: PCI bridge to [bus 51]
[    1.500498] pci 0000:02:09.0:   bridge window [mem 0xef300000-0xef4fffff]
[    1.507338] pci 0000:52:00.0: [c0a9:540a] type 00 class 0x010802
[    1.510535] pci 0000:52:00.0: reg 0x10: [mem 0xefd00000-0xefd03fff 64bit]
[    1.520663] pci 0000:00:02.2: PCI bridge to [bus 52]
[    1.525613] pci 0000:00:02.2:   bridge window [mem 0xefd00000-0xefdfffff]
[    1.530530] pci 0000:53:00.0: [1002:1638] type 00 class 0x030000
[    1.536525] pci 0000:53:00.0: reg 0x10: [mem 0xc0000000-0xcfffffff 64bit pref]
[    1.540498] pci 0000:53:00.0: reg 0x18: [mem 0xd0000000-0xd01fffff 64bit pref]
[    1.550496] pci 0000:53:00.0: reg 0x20: [io  0xe000-0xe0ff]
[    1.556052] pci 0000:53:00.0: reg 0x24: [mem 0xefc00000-0xefc7ffff]
[    1.560499] pci 0000:53:00.0: enabling Extended Tags
[    1.565453] pci 0000:53:00.0: BAR 0: assigned to efifb
[    1.570527] pci 0000:53:00.0: PME# supported from D1 D2 D3hot D3cold
[    1.580505] pci 0000:53:00.0: 126.016 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x16 link at 0000:00:08.1 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[    1.590521] pci 0000:53:00.1: [1002:1637] type 00 class 0x040300
[    1.600498] pci 0000:53:00.1: reg 0x10: [mem 0xefc88000-0xefc8bfff]
[    1.606756] pci 0000:53:00.1: enabling Extended Tags
[    1.610517] pci 0000:53:00.1: PME# supported from D1 D2 D3hot D3cold
[    1.616884] pci 0000:53:00.2: [1022:15df] type 00 class 0x108000
[    1.620503] pci 0000:53:00.2: reg 0x18: [mem 0xefb00000-0xefbfffff]
[    1.630501] pci 0000:53:00.2: reg 0x24: [mem 0xefc8c000-0xefc8dfff]
[    1.636745] pci 0000:53:00.2: enabling Extended Tags
[    1.640550] pci 0000:53:00.3: [1022:1639] type 00 class 0x0c0330
[    1.646539] pci 0000:53:00.3: reg 0x10: [mem 0xefa00000-0xefafffff 64bit]
[    1.650513] pci 0000:53:00.3: enabling Extended Tags
[    1.660519] pci 0000:53:00.3: PME# supported from D0 D3hot D3cold
[    1.666626] pci 0000:53:00.4: [1022:1639] type 00 class 0x0c0330
[    1.670501] pci 0000:53:00.4: reg 0x10: [mem 0xef900000-0xef9fffff 64bit]
[    1.677285] pci 0000:53:00.4: enabling Extended Tags
[    1.680519] pci 0000:53:00.4: PME# supported from D0 D3hot D3cold
[    1.690529] pci 0000:53:00.6: [1022:15e3] type 00 class 0x040300
[    1.696521] pci 0000:53:00.6: reg 0x10: [mem 0xefc80000-0xefc87fff]
[    1.700511] pci 0000:53:00.6: enabling Extended Tags
[    1.705485] pci 0000:53:00.6: PME# supported from D0 D3hot D3cold
[    1.710541] pci 0000:00:08.1: PCI bridge to [bus 53]
[    1.715489] pci 0000:00:08.1:   bridge window [io  0xe000-0xefff]
[    1.720494] pci 0000:00:08.1:   bridge window [mem 0xef900000-0xefcfffff]
[    1.730494] pci 0000:00:08.1:   bridge window [mem 0xc0000000-0xd01fffff 64bit pref]
[    1.738466] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    1.740518] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    1.750513] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    1.756437] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    1.760516] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    1.766431] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    1.770512] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    1.780512] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    1.786753] SCSI subsystem initialized
[    1.790518] Registered efivars operations
[    1.794561] PCI: Using ACPI for IRQ routing
[    1.804855] pci 0000:53:00.0: vgaarb: setting as boot VGA device
[    1.806479] pci 0000:53:00.0: vgaarb: bridge control possible
[    1.810492] pci 0000:53:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    1.810494] vgaarb: loaded
[    1.813203] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    1.820494] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    1.828336] clocksource: Switched to clocksource tsc-early
[    1.828336] VFS: Disk quotas dquot_6.6.0
[    1.829891] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.836758] pnp: PnP ACPI init
[    1.839839] system 00:00: [mem 0xf0000000-0xf7ffffff] has been reserved
[    1.846453] system 00:01: [mem 0x840000000-0x85fffffff window] has been reserved
[    1.853917] system 00:03: [io  0x0a00-0x0a2f] has been reserved
[    1.859819] system 00:03: [io  0x0a30-0x0a3f] has been reserved
[    1.865720] system 00:03: [io  0x0a40-0x0a4f] has been reserved
[    1.871623] system 00:03: [mem 0xfe000000-0xfe00ffff] has been reserved
[    1.878455] system 00:05: [io  0x04d0-0x04d1] has been reserved
[    1.884356] system 00:05: [io  0x040b] has been reserved
[    1.889652] system 00:05: [io  0x04d6] has been reserved
[    1.894941] system 00:05: [io  0x0c00-0x0c01] has been reserved
[    1.900842] system 00:05: [io  0x0c14] has been reserved
[    1.906137] system 00:05: [io  0x0c50-0x0c51] has been reserved
[    1.912031] system 00:05: [io  0x0c52] has been reserved
[    1.917326] system 00:05: [io  0x0c6c] has been reserved
[    1.922622] system 00:05: [io  0x0c6f] has been reserved
[    1.927910] system 00:05: [io  0x0cd8-0x0cdf] has been reserved
[    1.933805] system 00:05: [io  0x0800-0x089f] has been reserved
[    1.939705] system 00:05: [io  0x0b00-0x0b0f] has been reserved
[    1.945600] system 00:05: [io  0x0b20-0x0b3f] has been reserved
[    1.951500] system 00:05: [io  0x0900-0x090f] has been reserved
[    1.957394] system 00:05: [io  0x0910-0x091f] has been reserved
[    1.963296] system 00:05: [mem 0xfec00000-0xfec00fff] could not be reserved
[    1.970231] system 00:05: [mem 0xfec01000-0xfec01fff] could not be reserved
[    1.977164] system 00:05: [mem 0xfedc0000-0xfedc0fff] has been reserved
[    1.983756] system 00:05: [mem 0xfee00000-0xfee00fff] has been reserved
[    1.990345] system 00:05: [mem 0xfed80000-0xfed8ffff] could not be reserved
[    1.997275] system 00:05: [mem 0xfec10000-0xfec10fff] has been reserved
[    2.003874] system 00:05: [mem 0xff000000-0xffffffff] has been reserved
[    2.010735] pnp: PnP ACPI: found 6 devices
[    2.020326] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    2.029179] NET: Registered PF_INET protocol family
[    2.034147] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    2.043518] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    2.052199] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    2.059916] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    2.068102] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    2.075522] TCP: Hash tables configured (established 262144 bind 65536)
[    2.082120] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    2.088999] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    2.096328] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    2.101970] pci 0000:04:01.0: bridge window [io  0x1000-0x0fff] to [bus 06-27] add_size 1000
[    2.110370] pci 0000:04:04.0: bridge window [io  0x1000-0x0fff] to [bus 29-4a] add_size 1000
[    2.118777] pci 0000:03:00.0: bridge window [io  0x1000-0x0fff] to [bus 04-4a] add_size 2000
[    2.127178] pci 0000:02:00.0: bridge window [io  0x1000-0x0fff] to [bus 03-4a] add_size 2000
[    2.135589] pci 0000:02:00.0: BAR 7: no space for [io  size 0x2000]
[    2.141832] pci 0000:02:00.0: BAR 7: failed to assign [io  size 0x2000]
[    2.148425] pci 0000:02:00.0: BAR 7: no space for [io  size 0x2000]
[    2.154672] pci 0000:02:00.0: BAR 7: failed to assign [io  size 0x2000]
[    2.161265] pci 0000:03:00.0: BAR 7: no space for [io  size 0x2000]
[    2.167509] pci 0000:03:00.0: BAR 7: failed to assign [io  size 0x2000]
[    2.174093] pci 0000:03:00.0: BAR 7: no space for [io  size 0x2000]
[    2.180342] pci 0000:03:00.0: BAR 7: failed to assign [io  size 0x2000]
[    2.186935] pci 0000:04:01.0: BAR 7: no space for [io  size 0x1000]
[    2.193181] pci 0000:04:01.0: BAR 7: failed to assign [io  size 0x1000]
[    2.199773] pci 0000:04:04.0: BAR 7: no space for [io  size 0x1000]
[    2.206019] pci 0000:04:04.0: BAR 7: failed to assign [io  size 0x1000]
[    2.212613] pci 0000:04:04.0: BAR 7: no space for [io  size 0x1000]
[    2.218860] pci 0000:04:04.0: BAR 7: failed to assign [io  size 0x1000]
[    2.225452] pci 0000:04:01.0: BAR 7: no space for [io  size 0x1000]
[    2.231700] pci 0000:04:01.0: BAR 7: failed to assign [io  size 0x1000]
[    2.238291] pci 0000:04:00.0: PCI bridge to [bus 05]
[    2.243248] pci 0000:04:00.0:   bridge window [mem 0xef100000-0xef1fffff]
[    2.250016] pci 0000:04:01.0: PCI bridge to [bus 06-27]
[    2.255223] pci 0000:04:01.0:   bridge window [mem 0xe7000000-0xeeffffff]
[    2.261985] pci 0000:04:01.0:   bridge window [mem 0xb0000000-0xb1ffffff 64bit pref]
[    2.269706] pci 0000:04:02.0: PCI bridge to [bus 28]
[    2.274654] pci 0000:04:02.0:   bridge window [mem 0xef000000-0xef0fffff]
[    2.281427] pci 0000:04:04.0: PCI bridge to [bus 29-4a]
[    2.286640] pci 0000:04:04.0:   bridge window [mem 0xdf000000-0xe6ffffff]
[    2.293403] pci 0000:04:04.0:   bridge window [mem 0xa0000000-0xa1ffffff 64bit pref]
[    2.301121] pci 0000:03:00.0: PCI bridge to [bus 04-4a]
[    2.306331] pci 0000:03:00.0:   bridge window [mem 0xdf000000-0xef1fffff]
[    2.313094] pci 0000:03:00.0:   bridge window [mem 0xa0000000-0xb1ffffff 64bit pref]
[    2.320817] pci 0000:02:00.0: PCI bridge to [bus 03-4a]
[    2.326020] pci 0000:02:00.0:   bridge window [mem 0xdf000000-0xef1fffff]
[    2.332786] pci 0000:02:00.0:   bridge window [mem 0xa0000000-0xb1ffffff 64bit pref]
[    2.340507] pci 0000:02:04.0: PCI bridge to [bus 4b]
[    2.345452] pci 0000:02:04.0:   bridge window [mem 0xef600000-0xef6fffff]
[    2.352223] pci 0000:4d:00.0: PCI bridge to [bus 4e]
[    2.357170] pci 0000:4d:00.0:   bridge window [io  0xf000-0xffff]
[    2.363248] pci 0000:4d:00.0:   bridge window [mem 0xef500000-0xef5fffff]
[    2.370020] pci 0000:4d:06.0: PCI bridge to [bus 4f]
[    2.374983] pci 0000:4d:0e.0: PCI bridge to [bus 50]
[    2.379942] pci 0000:4c:00.0: PCI bridge to [bus 4d-50]
[    2.385147] pci 0000:4c:00.0:   bridge window [io  0xf000-0xffff]
[    2.391224] pci 0000:4c:00.0:   bridge window [mem 0xef500000-0xef5fffff]
[    2.397992] pci 0000:02:08.0: PCI bridge to [bus 4c-50]
[    2.403198] pci 0000:02:08.0:   bridge window [io  0xf000-0xffff]
[    2.409271] pci 0000:02:08.0:   bridge window [mem 0xef500000-0xef5fffff]
[    2.416043] pci 0000:02:09.0: PCI bridge to [bus 51]
[    2.420990] pci 0000:02:09.0:   bridge window [mem 0xef300000-0xef4fffff]
[    2.427758] pci 0000:01:00.2: PCI bridge to [bus 02-51]
[    2.432964] pci 0000:01:00.2:   bridge window [io  0xf000-0xffff]
[    2.439037] pci 0000:01:00.2:   bridge window [mem 0xdf000000-0xef6fffff]
[    2.445804] pci 0000:01:00.2:   bridge window [mem 0xa0000000-0xb1ffffff 64bit pref]
[    2.453523] pci 0000:00:02.1: PCI bridge to [bus 01-51]
[    2.458728] pci 0000:00:02.1:   bridge window [io  0xf000-0xffff]
[    2.464804] pci 0000:00:02.1:   bridge window [mem 0xdf000000-0xef7fffff]
[    2.471567] pci 0000:00:02.1:   bridge window [mem 0xa0000000-0xb1ffffff 64bit pref]
[    2.479284] pci 0000:00:02.2: PCI bridge to [bus 52]
[    2.484234] pci 0000:00:02.2:   bridge window [mem 0xefd00000-0xefdfffff]
[    2.491002] pci 0000:00:08.1: PCI bridge to [bus 53]
[    2.495950] pci 0000:00:08.1:   bridge window [io  0xe000-0xefff]
[    2.502025] pci 0000:00:08.1:   bridge window [mem 0xef900000-0xefcfffff]
[    2.508790] pci 0000:00:08.1:   bridge window [mem 0xc0000000-0xd01fffff 64bit pref]
[    2.516507] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    2.522668] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    2.528827] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    2.534982] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[    2.541142] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
[    2.547992] pci_bus 0000:00: resource 9 [mem 0xa0000000-0xefffffff window]
[    2.554837] pci_bus 0000:01: resource 0 [io  0xf000-0xffff]
[    2.560392] pci_bus 0000:01: resource 1 [mem 0xdf000000-0xef7fffff]
[    2.566633] pci_bus 0000:01: resource 2 [mem 0xa0000000-0xb1ffffff 64bit pref]
[    2.573829] pci_bus 0000:02: resource 0 [io  0xf000-0xffff]
[    2.579387] pci_bus 0000:02: resource 1 [mem 0xdf000000-0xef6fffff]
[    2.585634] pci_bus 0000:02: resource 2 [mem 0xa0000000-0xb1ffffff 64bit pref]
[    2.592830] pci_bus 0000:03: resource 1 [mem 0xdf000000-0xef1fffff]
[    2.599068] pci_bus 0000:03: resource 2 [mem 0xa0000000-0xb1ffffff 64bit pref]
[    2.606257] pci_bus 0000:04: resource 1 [mem 0xdf000000-0xef1fffff]
[    2.612495] pci_bus 0000:04: resource 2 [mem 0xa0000000-0xb1ffffff 64bit pref]
[    2.619684] pci_bus 0000:05: resource 1 [mem 0xef100000-0xef1fffff]
[    2.625934] pci_bus 0000:06: resource 1 [mem 0xe7000000-0xeeffffff]
[    2.632179] pci_bus 0000:06: resource 2 [mem 0xb0000000-0xb1ffffff 64bit pref]
[    2.639377] pci_bus 0000:28: resource 1 [mem 0xef000000-0xef0fffff]
[    2.645626] pci_bus 0000:29: resource 1 [mem 0xdf000000-0xe6ffffff]
[    2.651874] pci_bus 0000:29: resource 2 [mem 0xa0000000-0xa1ffffff 64bit pref]
[    2.659070] pci_bus 0000:4b: resource 1 [mem 0xef600000-0xef6fffff]
[    2.665311] pci_bus 0000:4c: resource 0 [io  0xf000-0xffff]
[    2.670867] pci_bus 0000:4c: resource 1 [mem 0xef500000-0xef5fffff]
[    2.677106] pci_bus 0000:4d: resource 0 [io  0xf000-0xffff]
[    2.682653] pci_bus 0000:4d: resource 1 [mem 0xef500000-0xef5fffff]
[    2.688891] pci_bus 0000:4e: resource 0 [io  0xf000-0xffff]
[    2.694440] pci_bus 0000:4e: resource 1 [mem 0xef500000-0xef5fffff]
[    2.700687] pci_bus 0000:51: resource 1 [mem 0xef300000-0xef4fffff]
[    2.706934] pci_bus 0000:52: resource 1 [mem 0xefd00000-0xefdfffff]
[    2.713181] pci_bus 0000:53: resource 0 [io  0xe000-0xefff]
[    2.718736] pci_bus 0000:53: resource 1 [mem 0xef900000-0xefcfffff]
[    2.724984] pci_bus 0000:53: resource 2 [mem 0xc0000000-0xd01fffff 64bit pref]
[    2.732418] pci 0000:53:00.1: D0 power state depends on 0000:53:00.0
[    2.738752] pci 0000:53:00.3: extending delay after power-on from D3hot to 20 msec
[    2.746369] pci 0000:53:00.4: extending delay after power-on from D3hot to 20 msec
[    2.753935] PCI: CLS 64 bytes, default 64
[    2.757934] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    2.757990] Trying to unpack rootfs image as initramfs...
[    2.764355] software IO TLB: mapped [mem 0x000000008d000000-0x0000000091000000] (64MB)
[    2.777623] LVT offset 0 assigned for vector 0x400
[    2.782456] perf: AMD IBS detected (0x000003ff)
[    2.787172] workingset: timestamp_bits=60 max_order=23 bucket_order=0
[    2.796064] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    2.803436] io scheduler mq-deadline registered
[    2.808079] pcieport 0000:00:02.1: PME: Signaling with IRQ 27
[    2.813904] pcieport 0000:00:02.2: PME: Signaling with IRQ 28
[    2.819709] pcieport 0000:00:08.1: PME: Signaling with IRQ 29
[    2.826376] pcieport 0000:04:01.0: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.840228] pcieport 0000:04:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    2.854565] Estimated ratio of average max frequency by base frequency (times 1024): 1098
[    2.862728] ACPI: \_SB_.PLTF.C000: Found 3 idle states
[    2.867898] ACPI: \_SB_.PLTF.C002: Found 3 idle states
[    2.874070] Freeing initrd memory: 14908K
[    2.878073] ACPI: \_SB_.PLTF.C004: Found 3 idle states
[    2.883260] ACPI: \_SB_.PLTF.C006: Found 3 idle states
[    2.888433] ACPI: \_SB_.PLTF.C008: Found 3 idle states
[    2.893625] ACPI: \_SB_.PLTF.C00A: Found 3 idle states
[    2.898788] ACPI: \_SB_.PLTF.C001: Found 3 idle states
[    2.903973] ACPI: \_SB_.PLTF.C003: Found 3 idle states
[    2.909167] ACPI: \_SB_.PLTF.C005: Found 3 idle states
[    2.914350] ACPI: \_SB_.PLTF.C007: Found 3 idle states
[    2.919534] ACPI: \_SB_.PLTF.C009: Found 3 idle states
[    2.924726] ACPI: \_SB_.PLTF.C00B: Found 3 idle states
[    2.938277] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    2.965236] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    2.974007] brd: module loaded
[    2.977200] nvme nvme0: pci function 0000:4b:00.0
[    2.981937] nvme nvme1: pci function 0000:52:00.0
[    2.986703] Intel(R) 2.5G Ethernet Linux Driver
[    2.991233] Copyright(c) 2018 Intel Corporation.
[    2.995907] igc 0000:51:00.0: PCIe PTM not supported by PCIe bus/controller
[    3.002887] nvme nvme0: missing or invalid SUBNQN field.
[    3.010839] nvme nvme0: 15/0/0 default/read/poll queues
[    3.020347]  nvme0n1: p1 p2 p3
[    3.085754] igc 0000:51:00.0: 4.000 Gb/s available PCIe bandwidth (5.0 GT/s PCIe x1 link)
[    3.091454] nvme nvme1: missing or invalid SUBNQN field.
[    3.093909] igc 0000:51:00.0 eth0: MAC: d8:5e:d3:86:cc:c8
[    3.132361] r8169 0000:4e:00.0 eth1: RTL8125B, d8:5e:d3:86:cc:c6, XID 641, IRQ 68
[    3.139824] r8169 0000:4e:00.0 eth1: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[    3.148344] i8042: PNP: No PS/2 controller found.
[    3.151532] nvme nvme1: allocated 128 MiB host memory buffer.
[    3.153066] rtc_cmos 00:02: RTC can wake from S4
[    3.163556] rtc_cmos 00:02: registered as rtc0
[    3.168012] rtc_cmos 00:02: setting system clock to 2022-08-06T09:30:15 UTC (1659778215)
[    3.176083] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    3.184432] efifb: probing for efifb
[    3.188002] efifb: framebuffer at 0xc0000000, using 3072k, total 3072k
[    3.194505] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    3.200490] efifb: scrolling: redraw
[    3.204061] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    3.210108] Console: switching to colour frame buffer device 128x48
[    3.216810] fb0: EFI VGA frame buffer device
[    3.221103] ccp 0000:53:00.2: enabling device (0000 -> 0002)
[    3.236929] ccp 0000:53:00.2: tee enabled
[    3.240932] ccp 0000:53:00.2: psp enabled
[    3.245782] microcode: CPU0: patch_level=0x0a50000d
[    3.250651] microcode: CPU1: patch_level=0x0a50000d
[    3.255822] microcode: CPU2: patch_level=0x0a50000d
[    3.260868] microcode: CPU3: patch_level=0x0a50000d
[    3.265751] microcode: CPU4: patch_level=0x0a50000d
[    3.270822] microcode: CPU5: patch_level=0x0a50000d
[    3.275705] microcode: CPU6: patch_level=0x0a50000d
[    3.280577] microcode: CPU7: patch_level=0x0a50000d
[    3.285825] microcode: CPU8: patch_level=0x0a50000d
[    3.290820] microcode: CPU9: patch_level=0x0a50000d
[    3.295705] microcode: CPU10: patch_level=0x0a50000d
[    3.299750] nvme nvme1: 8/0/0 default/read/poll queues
[    3.300674] microcode: CPU11: patch_level=0x0a50000d
[    3.310746] microcode: Microcode Update Driver: v2.2.
[    3.310748] IPI shorthand broadcast: enabled
[    3.315666] nvme nvme1: Ignoring bogus Namespace Identifiers
[    3.315801] sched_clock: Marking stable (3380000455, -69507036)->(3339218003, -28724584)
[    3.321573]  nvme1n1: p1 p3 p4 p5
[    3.334203] registered taskstats version 1
[    3.341987] Freeing unused kernel image (initmem) memory: 952K
[    3.490756] Write protecting the kernel read-only data: 12288k
[    3.497378] Freeing unused kernel image (text/rodata gap) memory: 2044K
[    3.504561] Freeing unused kernel image (rodata/data gap) memory: 180K
[    3.511294] Run /init as init process
[    3.546751] udevd[941]: starting version 3.2.9
[    3.840516] tsc: Refined TSC clocksource calibration: 3899.998 MHz
[    3.846900] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x706eb38f3d8, max_idle_ns: 881591117856 ns
[    3.857444] clocksource: Switched to clocksource tsc
[    8.570501] random: crng init done
[    8.574788] udevd[943]: starting eudev-3.2.9
[    8.583856] ACPI: \_TZ_.UAD0: Invalid passive threshold
[    8.589440] thermal LNXTHERM:00: registered as thermal_zone0
[    8.595351] ACPI: thermal: Thermal Zone [UAD0] (17 C)
[    8.600751] cryptd: max_cpu_qlen set to 1000
[    8.605807] ACPI Warning: SystemIO range 0x0000000000000B00-0x0000000000000B08 conflicts with OpRegion 0x0000000000000B00-0x0000000000000B0F (\GSA1.SMBI) (20220331/utaddress-204)
[    8.622367] ACPI: OSL: Resource conflict; ACPI support missing from driver?
[    8.629730] AVX2 version of gcm_enc/dec engaged.
[    8.629731] ACPI: bus type USB registered
[    8.638862] usbcore: registered new interface driver usbfs
[    8.644580] usbcore: registered new interface driver hub
[    8.650137] usbcore: registered new device driver usb
[    8.655814] AES CTR mode by8 optimization enabled
[    8.662024] ACPI: bus type thunderbolt registered
[    8.666982] thunderbolt 0000:05:00.0: enabling device (0000 -> 0002)
[    8.667087] ahci 0000:01:00.1: SSS flag set, parallel bus scan disabled
[    8.667516] ahci 0000:01:00.1: AHCI 0001.0301 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
[    8.674002] ahci 0000:01:00.1: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part sxs deso sadm sds apst
[    8.680637] ACPI: bus type drm_connector registered
[    8.681137] scsi host0: ahci
[    8.699773] scsi host1: ahci
[    8.704864] scsi host2: ahci
[    8.705319] scsi host3: ahci
[    8.708428] scsi host4: ahci
[    8.711580] scsi host5: ahci
[    8.714631] ata1: SATA max UDMA/133 abar m131072@0xef780000 port 0xef780100 irq 79
[    8.717735] ata2: SATA max UDMA/133 abar m131072@0xef780000 port 0xef780180 irq 79
[    8.720852] ata3: SATA max UDMA/133 abar m131072@0xef780000 port 0xef780200 irq 79
[    8.723968] ata4: SATA max UDMA/133 abar m131072@0xef780000 port 0xef780280 irq 79
[    8.731762] ata5: SATA max UDMA/133 abar m131072@0xef780000 port 0xef780300 irq 79
[    8.754659] ata6: SATA max UDMA/133 abar m131072@0xef780000 port 0xef780380 irq 79
[    8.770030] xhci_hcd 0000:01:00.0: xHCI Host Controller
[    8.775470] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 1
[    8.838351] xhci_hcd 0000:01:00.0: hcc params 0x0200ef81 hci version 0x110 quirks 0x0000000000000410
[    8.848028] xhci_hcd 0000:01:00.0: xHCI Host Controller
[    8.853481] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 2
[    8.853730] xhci_hcd 0000:01:00.0: Host supports USB 3.1 Enhanced SuperSpeed
[    8.861441] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.19
[    8.868581] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.884241] usb usb1: Product: xHCI Host Controller
[    8.889330] usb usb1: Manufacturer: Linux 5.19.0+ xhci-hcd
[    8.895026] usb usb1: SerialNumber: 0000:01:00.0
[    8.899921] hub 1-0:1.0: USB hub found
[    8.903905] hub 1-0:1.0: 10 ports detected
[    8.908375] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.916678] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.19
[    8.925137] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.925367] usb usb2: Product: xHCI Host Controller
[    8.937652] usb usb2: Manufacturer: Linux 5.19.0+ xhci-hcd
[    8.937877] usb usb2: SerialNumber: 0000:01:00.0
[    8.943662] hub 2-0:1.0: USB hub found
[    8.948415] hub 2-0:1.0: 4 ports detected
[    8.956476] xhci_hcd 0000:28:00.0: xHCI Host Controller
[    8.961905] xhci_hcd 0000:28:00.0: new USB bus registered, assigned bus number 3
[    8.963340] xhci_hcd 0000:28:00.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000200009810
[    8.979057] xhci_hcd 0000:28:00.0: xHCI Host Controller
[    8.979277] xhci_hcd 0000:28:00.0: new USB bus registered, assigned bus number 4
[    8.984697] xhci_hcd 0000:28:00.0: Host supports USB 3.1 Enhanced SuperSpeed
[    8.992297] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.19
[    8.999516] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    9.007965] usb usb3: Product: xHCI Host Controller
[    9.020244] usb usb3: Manufacturer: Linux 5.19.0+ xhci-hcd
[    9.020465] usb usb3: SerialNumber: 0000:28:00.0
[    9.026240] hub 3-0:1.0: USB hub found
[    9.030987] hub 3-0:1.0: 2 ports detected
[    9.038981] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.19
[    9.047427] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    9.047648] usb usb4: Product: xHCI Host Controller
[    9.059922] usb usb4: Manufacturer: Linux 5.19.0+ xhci-hcd
[    9.060146] usb usb4: SerialNumber: 0000:28:00.0
[    9.066077] hub 4-0:1.0: USB hub found
[    9.074414] hub 4-0:1.0: 2 ports detected
[    9.078709] xhci_hcd 0000:53:00.3: xHCI Host Controller
[    9.084145] xhci_hcd 0000:53:00.3: new USB bus registered, assigned bus number 5
[    9.086213] ata1: SATA link down (SStatus 0 SControl 330)
[    9.091827] xhci_hcd 0000:53:00.3: hcc params 0x0268ffe5 hci version 0x110 quirks 0x0000020000000410
[    9.106840] xhci_hcd 0000:53:00.3: xHCI Host Controller
[    9.112305] xhci_hcd 0000:53:00.3: new USB bus registered, assigned bus number 6
[    9.119928] xhci_hcd 0000:53:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    9.127208] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.19
[    9.135713] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    9.143155] usb usb5: Product: xHCI Host Controller
[    9.148262] usb usb5: Manufacturer: Linux 5.19.0+ xhci-hcd
[    9.153975] usb usb5: SerialNumber: 0000:53:00.3
[    9.158873] hub 5-0:1.0: USB hub found
[    9.162871] hub 5-0:1.0: 4 ports detected
[    9.167179] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
[    9.175504] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.19
[    9.183982] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    9.184246] usb usb6: Product: xHCI Host Controller
[    9.191708] usb usb6: Manufacturer: Linux 5.19.0+ xhci-hcd
[    9.196836] usb usb6: SerialNumber: 0000:53:00.3
[    9.202621] hub 6-0:1.0: USB hub found
[    9.207411] hub 6-0:1.0: 2 ports detected
[    9.211386] usb 1-6: new high-speed USB device number 2 using xhci_hcd
[    9.211589] xhci_hcd 0000:53:00.4: xHCI Host Controller
[    9.211592] xhci_hcd 0000:53:00.4: new USB bus registered, assigned bus number 7
[    9.211693] xhci_hcd 0000:53:00.4: hcc params 0x0268ffe5 hci version 0x110 quirks 0x0000020000000410
[    9.211867] xhci_hcd 0000:53:00.4: xHCI Host Controller
[    9.211868] xhci_hcd 0000:53:00.4: new USB bus registered, assigned bus number 8
[    9.211869] xhci_hcd 0000:53:00.4: Host supports USB 3.1 Enhanced SuperSpeed
[    9.211886] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.19
[    9.211887] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    9.211888] usb usb7: Product: xHCI Host Controller
[    9.211888] usb usb7: Manufacturer: Linux 5.19.0+ xhci-hcd
[    9.211889] usb usb7: SerialNumber: 0000:53:00.4
[    9.211941] hub 7-0:1.0: USB hub found
[    9.211948] hub 7-0:1.0: 4 ports detected
[    9.212040] usb usb8: We don't know the algorithms for LPM for this host, disabling LPM.
[    9.212051] usb usb8: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.19
[    9.212052] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    9.212053] usb usb8: Product: xHCI Host Controller
[    9.212053] usb usb8: Manufacturer: Linux 5.19.0+ xhci-hcd
[    9.212054] usb usb8: SerialNumber: 0000:53:00.4
[    9.212099] hub 8-0:1.0: USB hub found
[    9.212105] hub 8-0:1.0: 2 ports detected
[    9.419486] usb 1-6: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice=85.36
[    9.421988] ata2: SATA link down (SStatus 0 SControl 330)
[    9.427902] usb 1-6: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    9.440917] usb 1-6: Product: USB2.0 Hub
[    9.451474] hub 1-6:1.0: USB hub found
[    9.458456] hub 1-6:1.0: 4 ports detected
[    9.480513] usb 5-2: new high-speed USB device number 2 using xhci_hcd
[    9.520498] usb 7-1: new low-speed USB device number 2 using xhci_hcd
[    9.630514] usb 1-7: new full-speed USB device number 3 using xhci_hcd
[    9.659063] thunderbolt 0-3: new device found, vendor=0x1 device=0x8002
[    9.665922] thunderbolt 0-3: Apple, Inc. Thunderbolt Display
[    9.681353] usb 5-2: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice= 6.54
[    9.689768] usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    9.697143] usb 5-2: Product: USB2.1 Hub
[    9.701307] usb 5-2: Manufacturer: GenesysLogic
[    9.734994] usb 7-1: New USB device found, idVendor=047d, idProduct=1020, bcdDevice= 1.06
[    9.743410] usb 7-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    9.750788] usb 7-1: Product: Kensington Expert Mouse
[    9.752018] ata3: SATA link down (SStatus 0 SControl 330)
[    9.767771] hub 5-2:1.0: USB hub found
[    9.772224] hub 5-2:1.0: 4 ports detected
[    9.820993] usb 6-2: new SuperSpeed USB device number 2 using xhci_hcd
[    9.855339] usb 6-2: New USB device found, idVendor=05e3, idProduct=0626, bcdDevice= 6.54
[    9.863757] usb 6-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    9.871136] usb 6-2: Product: USB3.1 Hub
[    9.875308] usb 6-2: Manufacturer: GenesysLogic
[    9.912430] hub 6-2:1.0: USB hub found
[    9.916741] hub 6-2:1.0: 4 ports detected
[   10.000421] usb 1-7: New USB device found, idVendor=048d, idProduct=5702, bcdDevice= 0.01
[   10.008832] usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   10.016190] usb 1-7: Product: ITE Device
[   10.020343] usb 1-7: Manufacturer: ITE Tech. Inc.
[   10.025283] usb 1-6.3: new high-speed USB device number 4 using xhci_hcd
[   10.094140] ata4: SATA link down (SStatus 0 SControl 330)
[   10.130878] usb 5-2.3: new high-speed USB device number 3 using xhci_hcd
[   10.184617] usb 1-6.3: New USB device found, idVendor=2109, idProduct=2812, bcdDevice= b.e0
[   10.193213] usb 1-6.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   10.200753] usb 1-6.3: Product: USB2.0 Hub
[   10.206211] usb 1-6.3: Manufacturer: VIA Labs, Inc.
[   10.219452] hub 1-6.3:1.0: USB hub found
[   10.226436] hub 1-6.3:1.0: 4 ports detected
[   10.310882] usb 1-10: new high-speed USB device number 5 using xhci_hcd
[   10.323099] usb 5-2.3: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice= 6.54
[   10.331683] usb 5-2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   10.339215] usb 5-2.3: Product: USB2.1 Hub
[   10.343564] usb 5-2.3: Manufacturer: GenesysLogic
[   10.407926] hub 5-2.3:1.0: USB hub found
[   10.410755] usb 6-2.3: new SuperSpeed USB device number 3 using xhci_hcd
[   10.412602] hub 5-2.3:1.0: 4 ports detected
[   10.445583] usb 6-2.3: New USB device found, idVendor=05e3, idProduct=0626, bcdDevice= 6.54
[   10.454178] usb 6-2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   10.461728] usb 6-2.3: Product: USB3.1 Hub
[   10.466067] usb 6-2.3: Manufacturer: GenesysLogic
[   10.504442] hub 6-2.3:1.0: USB hub found
[   10.508944] hub 6-2.3:1.0: 4 ports detected
[   10.520449] usb 1-10: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice=85.36
[   10.528953] usb 1-10: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[   10.536410] usb 1-10: Product: USB2.0 Hub
[   10.549441] hub 1-10:1.0: USB hub found
[   10.557425] hub 1-10:1.0: 4 ports detected
[   10.610891] usb 1-6.3.2: new high-speed USB device number 6 using xhci_hcd
[   10.787601] usb 1-6.3.2: New USB device found, idVendor=05ac, idProduct=1006, bcdDevice=96.15
[   10.796364] usb 1-6.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   10.804076] usb 1-6.3.2: Product: Keyboard Hub
[   10.808750] usb 1-6.3.2: Manufacturer: Apple, Inc.
[   10.813773] usb 1-6.3.2: SerialNumber: 000000000000
[   10.827433] hub 1-6.3.2:1.0: USB hub found
[   10.834417] hub 1-6.3.2:1.0: 3 ports detected
[   10.970731] usb 1-6.3.4: new high-speed USB device number 7 using xhci_hcd
[   11.165614] usb 1-6.3.4: New USB device found, idVendor=0bda, idProduct=8153, bcdDevice=30.00
[   11.174366] usb 1-6.3.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   11.182073] usb 1-6.3.4: Product: USB 10/100/1000 LAN
[   11.187352] usb 1-6.3.4: Manufacturer: Realtek
[   11.192020] usb 1-6.3.4: SerialNumber: F01E341F8303
[   11.200509] ata5: failed to resume link (SControl 0)
[   11.205749] ata5: SATA link down (SStatus 0 SControl 0)
[   11.290733] usb 1-6.3.2.2: new low-speed USB device number 8 using xhci_hcd
[   11.572587] usb 1-6.3.2.2: New USB device found, idVendor=05ac, idProduct=0220, bcdDevice= 0.71
[   11.581527] usb 1-6.3.2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   11.589409] usb 1-6.3.2.2: Product: Apple Keyboard
[   11.594430] usb 1-6.3.2.2: Manufacturer: Apple, Inc
[   12.310792] ata6: failed to resume link (SControl 0)
[   12.316017] ata6: SATA link down (SStatus 0 SControl 0)
[   12.323496] hid: raw HID events driver (C) Jiri Kosina
[   12.341869] [drm] amdgpu kernel modesetting enabled.
[   12.349630] amdgpu: CRAT table disabled by module option
[   12.355159] amdgpu: Virtual CRAT table created for CPU
[   12.360523] amdgpu: Topology: Add CPU node
[   12.364916] Console: switching to colour dummy device 80x25
[   12.370498] amdgpu 0000:53:00.0: vgaarb: deactivate vga console
[   12.376427] amdgpu 0000:53:00.0: enabling device (0006 -> 0007)
[   12.382349] [drm] initializing kernel modesetting (RENOIR 0x1002:0x1638 0x1458:0xD000 0xC9).
[   12.390763] [drm] register mmio base: 0xEFC00000
[   12.395367] [drm] register mmio size: 524288
[   12.395408] usbcore: registered new interface driver usbhid
[   12.401637] [drm] add ip block number 0 <soc15_common>
[   12.405185] usbhid: USB HID core driver
[   12.410296] [drm] add ip block number 1 <gmc_v9_0>
[   12.418896] [drm] add ip block number 2 <vega10_ih>
[   12.423762] [drm] add ip block number 3 <psp>
[   12.428117] [drm] add ip block number 4 <smu>
[   12.432474] [drm] add ip block number 5 <dm>
[   12.432549] input: Kensington Expert Mouse as /devices/pci0000:00/0000:00:08.1/0000:53:00.4/usb7/7-1/7-1:1.0/0003:047D:1020.0001/input/input0
[   12.436732] [drm] add ip block number 6 <gfx_v9_0>
[   12.436733] [drm] add ip block number 7 <sdma_v4_0>
[   12.436825] hid-generic 0003:047D:1020.0001: input,hidraw0: USB HID v1.11 Mouse [Kensington Expert Mouse] on usb-0000:53:00.4-1/input0
[   12.449377] [drm] add ip block number 8 <vcn_v2_0>
[   12.449378] [drm] add ip block number 9 <jpeg_v2_0>
[   12.450506] amdgpu 0000:53:00.0: amdgpu: Fetched VBIOS from VFCT
[   12.454508] hid-generic 0003:048D:5702.0002: hiddev96,hidraw1: USB HID v1.12 Device [ITE Tech. Inc. ITE Device] on usb-0000:01:00.0-7/input0
[   12.459023] amdgpu: ATOM BIOS: 13-CEZANNE-019
[   12.503625] [drm] VCN decode is enabled in VM mode
[   12.508402] [drm] VCN encode is enabled in VM mode
[   12.513183] [drm] JPEG decode is enabled in VM mode
[   12.518048] amdgpu 0000:53:00.0: amdgpu: Trusted Memory Zone (TMZ) feature enabled
[   12.525595] amdgpu 0000:53:00.0: amdgpu: PCIE atomic ops is not supported
[   12.532367] amdgpu 0000:53:00.0: amdgpu: MODE2 reset
[   12.537742] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:02.1/0000:01:00.0/usb1/1-6/1-6.3/1-6.3.2/1-6.3.2.2/1-6.3.2.2:1.0/0003:05AC:0220.0003/input/input1
[   12.538220] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[   12.561653] amdgpu 0000:53:00.0: amdgpu: VRAM: 512M 0x000000F400000000 - 0x000000F41FFFFFFF (512M used)
[   12.571010] amdgpu 0000:53:00.0: amdgpu: GART: 1024M 0x0000000000000000 - 0x000000003FFFFFFF
[   12.579416] amdgpu 0000:53:00.0: amdgpu: AGP: 267419648M 0x000000F800000000 - 0x0000FFFFFFFFFFFF
[   12.588169] [drm] Detected VRAM RAM=512M, BAR=512M
[   12.592945] [drm] RAM width 128bits DDR4
[   12.596882] [drm] amdgpu: 512M of VRAM memory ready
[   12.601742] [drm] amdgpu: 15733M of GTT memory ready.
[   12.606786] [drm] GART: num cpu pages 262144, num gpu pages 262144
[   12.613061] [drm] PCIE GART of 1024M enabled.
[   12.617403] [drm] PTB located at 0x000000F400A00000
[   12.620926] apple 0003:05AC:0220.0003: input,hidraw2: USB HID v1.11 Keyboard [Apple, Inc Apple Keyboard] on usb-0000:01:00.0-6.3.2.2/input0
[   12.622361] amdgpu 0000:53:00.0: amdgpu: PSP runtime database doesn't exist
[   12.634764] apple 0003:05AC:0220.0004: Fn key not found (Apple Wireless Keyboard clone?), disabling Fn key handling
[   12.641670] amdgpu 0000:53:00.0: amdgpu: PSP runtime database doesn't exist
[   12.641683] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:02.1/0000:01:00.0/usb1/1-6/1-6.3/1-6.3.2/1-6.3.2.2/1-6.3.2.2:1.1/0003:05AC:0220.0004/input/input2
[   12.652139] [drm] Loading DMUB firmware via PSP: version=0x0101001F
[   12.681013] [drm] Found VCN firmware Version ENC: 1.17 DEC: 5 VEP: 0 Revision: 2
[   12.688380] amdgpu 0000:53:00.0: amdgpu: Will use PSP to load VCN firmware
[   12.730919] apple 0003:05AC:0220.0004: input,hidraw3: USB HID v1.11 Device [Apple, Inc Apple Keyboard] on usb-0000:01:00.0-6.3.2.2/input1
[   13.411205] [drm] reserve 0x400000 from 0xf41f800000 for PSP TMR
[   13.497303] amdgpu 0000:53:00.0: amdgpu: RAS: optional ras ta ucode is not available
[   13.515593] amdgpu 0000:53:00.0: amdgpu: RAP: optional rap ta ucode is not available
[   13.523303] amdgpu 0000:53:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
[   13.532156] amdgpu 0000:53:00.0: amdgpu: SMU is initialized successfully!
[   13.539141] [drm] Display Core initialized with v3.2.196!
[   13.545072] [drm] DMUB hardware initialized: version=0x0101001F
[   13.598369] [drm] kiq ring mec 2 pipe 1 q 0
[   13.605153] [drm] VCN decode and encode initialized successfully(under DPG Mode).
[   13.612621] [drm] JPEG decode initialized successfully.
[   13.619030] kfd kfd: amdgpu: Allocated 3969056 bytes on gart
[   13.625031] amdgpu: sdma_bitmap: 3
[   13.628437] amdgpu: SRAT table not found
[   13.632349] amdgpu: Virtual CRAT table created for GPU
[   13.637993] amdgpu: Topology: Add dGPU node [0x1638:0x1002]
[   13.643548] kfd kfd: amdgpu: added device 1002:1638
[   13.648573] amdgpu 0000:53:00.0: amdgpu: SE 1, SH per SE 1, CU per SH 8, active_cu_number 7
[   13.656920] amdgpu 0000:53:00.0: amdgpu: ring gfx uses VM inv eng 0 on hub 0
[   13.663939] amdgpu 0000:53:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[   13.671570] amdgpu 0000:53:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[   13.679196] amdgpu 0000:53:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
[   13.686826] amdgpu 0000:53:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
[   13.694455] amdgpu 0000:53:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
[   13.702079] amdgpu 0000:53:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
[   13.709707] amdgpu 0000:53:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
[   13.717331] amdgpu 0000:53:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
[   13.725047] amdgpu 0000:53:00.0: amdgpu: ring kiq_2.1.0 uses VM inv eng 11 on hub 0
[   13.732669] amdgpu 0000:53:00.0: amdgpu: ring sdma0 uses VM inv eng 0 on hub 1
[   13.739860] amdgpu 0000:53:00.0: amdgpu: ring vcn_dec uses VM inv eng 1 on hub 1
[   13.747224] amdgpu 0000:53:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 4 on hub 1
[   13.754673] amdgpu 0000:53:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 5 on hub 1
[   13.762133] amdgpu 0000:53:00.0: amdgpu: ring jpeg_dec uses VM inv eng 6 on hub 1
[   13.770841] [drm] Initialized amdgpu 3.48.0 20150101 for 0000:53:00.0 on minor 0
[   13.780823] fbcon: amdgpudrmfb (fb0) is primary device
[   13.780861] [drm] DSC precompute is not needed.
[   13.871193] Console: switching to colour frame buffer device 320x90
[   13.904334] amdgpu 0000:53:00.0: [drm] fb0: amdgpudrmfb frame buffer device
[   14.162570] device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com
[   14.210716] RTL8226B_RTL8221B 2.5Gbps PHY r8169-0-4e00:00: attached PHY driver (mii_bus:phy_addr=r8169-0-4e00:00, irq=MAC)
[   14.500861] r8169 0000:4e:00.0 eth1: Link is Down
[   17.467352] r8169 0000:4e:00.0 eth1: Link is Up - 1Gbps/Full - flow control off
[   19.025128] r8169 0000:4e:00.0 eth1: Link is Down
[   21.550019] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Quota mode: none.
[   21.844074] udevd[1392]: starting version 3.2.9
[   21.882626] udevd[1393]: starting eudev-3.2.9
[   21.899979] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
[   21.908523] ACPI: button: Power Button [PWRB]
[   21.912941] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
[   21.921036] pcieport 0000:04:04.0: pciehp: Slot(4): Card present
[   21.931567] mousedev: PS/2 mouse device common for all mice
[   21.937655] SVM: TSC scaling supported
[   21.941399] kvm: Nested Virtualization enabled
[   21.945866] SVM: kvm: Nested Paging enabled
[   21.950428] SVM: Virtual VMLOAD VMSAVE supported
[   21.955389] SVM: Virtual GIF supported
[   21.959485] SVM: LBR virtualization supported
[   21.960534] ACPI: button: Power Button [PWRF]
[   21.972892] snd_hda_intel 0000:53:00.1: enabling device (0000 -> 0002)
[   21.979922] snd_hda_intel 0000:53:00.6: enabling device (0000 -> 0002)
[   21.987217] snd_hda_intel 0000:53:00.1: bound 0000:53:00.0 (ops amdgpu_exit [amdgpu])
[   21.987636] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:08.1/0000:53:00.1/sound/card0/input5
[   21.987661] input: HD-Audio Generic HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:08.1/0000:53:00.1/sound/card0/input6
[   21.987678] input: HD-Audio Generic HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:08.1/0000:53:00.1/sound/card0/input7
[   21.987773] input: HD-Audio Generic HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:08.1/0000:53:00.1/sound/card0/input8
[   22.065703] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC1220: line_outs=3 (0x14/0x15/0x16/0x0/0x0) type:line
[   22.065706] snd_hda_codec_realtek hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   22.065707] snd_hda_codec_realtek hdaudioC1D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[   22.065708] snd_hda_codec_realtek hdaudioC1D0:    mono: mono_out=0x0
[   22.065708] snd_hda_codec_realtek hdaudioC1D0:    dig-out=0x1e/0x0
[   22.065709] snd_hda_codec_realtek hdaudioC1D0:    inputs:
[   22.065709] snd_hda_codec_realtek hdaudioC1D0:      Front Mic=0x19
[   22.065710] snd_hda_codec_realtek hdaudioC1D0:      Rear Mic=0x18
[   22.065710] snd_hda_codec_realtek hdaudioC1D0:      Line=0x1a
[   22.090152] input: HD-Audio Generic Front Mic as /devices/pci0000:00/0000:00:08.1/0000:53:00.6/sound/card1/input9
[   22.153945] pci 0000:29:00.0: [8086:1513] type 01 class 0x060400
[   22.154045] pci 0000:29:00.0: enabling Extended Tags
[   22.154224] pci 0000:29:00.0: supports D1 D2
[   22.154225] pci 0000:29:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   22.154393] input: HD-Audio Generic Rear Mic as /devices/pci0000:00/0000:00:08.1/0000:53:00.6/sound/card1/input10
[   22.154408] input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:08.1/0000:53:00.6/sound/card1/input11
[   22.154426] input: HD-Audio Generic Line Out Front as /devices/pci0000:00/0000:00:08.1/0000:53:00.6/sound/card1/input12
[   22.154442] input: HD-Audio Generic Line Out Surround as /devices/pci0000:00/0000:00:08.1/0000:53:00.6/sound/card1/input13
[   22.154456] input: HD-Audio Generic Line Out CLFE as /devices/pci0000:00/0000:00:08.1/0000:53:00.6/sound/card1/input14
[   22.154468] input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:08.1/0000:53:00.6/sound/card1/input15
[   22.250263] pci 0000:29:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   22.258725] pci 0000:2a:00.0: [8086:1513] type 01 class 0x060400
[   22.265159] pci 0000:2a:00.0: enabling Extended Tags
[   22.270600] pci 0000:2a:00.0: supports D1 D2
[   22.275165] pci 0000:2a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   22.282224] pci 0000:2a:01.0: [8086:1513] type 01 class 0x060400
[   22.288629] pci 0000:2a:01.0: enabling Extended Tags
[   22.294061] pci 0000:2a:01.0: supports D1 D2
[   22.298620] pci 0000:2a:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[   22.305660] pci 0000:2a:02.0: [8086:1513] type 01 class 0x060400
[   22.312064] pci 0000:2a:02.0: enabling Extended Tags
[   22.317476] pci 0000:2a:02.0: supports D1 D2
[   22.322031] pci 0000:2a:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[   22.329076] pci 0000:2a:04.0: [8086:1513] type 01 class 0x060400
[   22.335473] pci 0000:2a:04.0: enabling Extended Tags
[   22.340917] pci 0000:2a:04.0: supports D1 D2
[   22.345461] pci 0000:2a:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[   22.352506] pci 0000:2a:05.0: [8086:1513] type 01 class 0x060400
[   22.358904] pci 0000:2a:05.0: enabling Extended Tags
[   22.364316] pci 0000:2a:05.0: supports D1 D2
[   22.368861] pci 0000:2a:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[   22.375927] pci 0000:29:00.0: PCI bridge to [bus 2a-4a]
[   22.381448] pci 0000:29:00.0:   bridge window [io  0x0000-0x0fff]
[   22.387819] pci 0000:29:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   22.394885] pci 0000:29:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   22.402891] pci 0000:2a:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   22.411161] pci 0000:2a:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   22.419431] pci 0000:2a:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   22.427704] pci 0000:2a:04.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   22.435969] pci 0000:2a:05.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   22.444377] pci 0000:2b:00.0: [12d8:400c] type 01 class 0x060400
[   22.451027] pci 0000:2b:00.0: supports D1 D2
[   22.455560] pci 0000:2b:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   22.490794] pci 0000:2a:00.0: PCI bridge to [bus 2b-4a]
[   22.496349] pci 0000:2a:00.0:   bridge window [io  0x0000-0x0fff]
[   22.502717] pci 0000:2a:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   22.509787] pci 0000:2a:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   22.517793] pci 0000:2b:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   22.526288] pci 0000:2c:03.0: [12d8:400c] type 01 class 0x060400
[   22.532888] pci 0000:2c:03.0: supports D1 D2
[   22.537426] pci 0000:2c:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[   22.544507] pci 0000:2b:00.0: PCI bridge to [bus 2c-4a]
[   22.550015] pci 0000:2b:00.0:   bridge window [io  0x0000-0x0fff]
[   22.556378] pci 0000:2b:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   22.563444] pci 0000:2b:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   22.571452] pci 0000:2c:03.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   22.579909] pci 0000:2d:00.0: [12d8:400e] type 00 class 0x0c0310
[   22.586232] pci 0000:2d:00.0: reg 0x10: [mem 0x00000000-0x00000fff]
[   22.593017] pci 0000:2d:00.0: supports D1 D2
[   22.597552] pci 0000:2d:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   22.604583] pci 0000:2d:00.1: [12d8:400e] type 00 class 0x0c0310
[   22.610962] pci 0000:2d:00.1: reg 0x10: [mem 0x00000000-0x00000fff]
[   22.611266] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   22.617748] pci 0000:2d:00.1: supports D1 D2
[   22.628807] pci 0000:2d:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[   22.635813] pci 0000:2d:00.2: [12d8:400f] type 00 class 0x0c0320
[   22.642122] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[   22.642143] pci 0000:2d:00.2: reg 0x10: [mem 0x00000000-0x000000ff]
[   22.655387] pci 0000:2d:00.2: supports D1 D2
[   22.659944] pci 0000:2d:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[   22.667060] ehci-pci: EHCI PCI platform driver
[   22.671786] pci 0000:2c:03.0: PCI bridge to [bus 2d-4a]
[   22.677316] pci 0000:2c:03.0:   bridge window [io  0x0000-0x0fff]
[   22.683694] pci 0000:2c:03.0:   bridge window [mem 0x00000000-0x000fffff]
[   22.690799] ohci-pci: OHCI PCI platform driver
[   22.690799] pci 0000:2c:03.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   22.703569] pci_bus 0000:2d: busn_res: [bus 2d-4a] end is updated to 2d
[   22.710452] pci_bus 0000:2c: busn_res: [bus 2c-4a] end is updated to 2d
[   22.717331] pci_bus 0000:2b: busn_res: [bus 2b-4a] end is updated to 2d
[   22.724352] pci 0000:2e:00.0: [14e4:16b0] type 00 class 0x020000
[   22.730676] pci 0000:2e:00.0: reg 0x10: [mem 0x00000000-0x0000ffff 64bit pref]
[   22.738186] pci 0000:2e:00.0: reg 0x18: [mem 0x00000000-0x0000ffff 64bit pref]
[   22.745967] pci 0000:2e:00.0: PME# supported from D0 D3hot D3cold
[   22.780769] pci 0000:2a:01.0: PCI bridge to [bus 2e-4a]
[   22.786322] pci 0000:2a:01.0:   bridge window [io  0x0000-0x0fff]
[   22.792685] pci 0000:2a:01.0:   bridge window [mem 0x00000000-0x000fffff]
[   22.799748] pci 0000:2a:01.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   22.807751] pci_bus 0000:2e: busn_res: [bus 2e-4a] end is updated to 2e
[   22.814790] pci 0000:2f:00.0: [11c1:5901] type 00 class 0x0c0010
[   22.821117] pci 0000:2f:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[   22.828472] pci 0000:2f:00.0: supports D1 D2
[   22.833008] pci 0000:2f:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   22.860798] pci 0000:2a:02.0: PCI bridge to [bus 2f-4a]
[   22.866351] pci 0000:2a:02.0:   bridge window [io  0x0000-0x0fff]
[   22.872714] pci 0000:2a:02.0:   bridge window [mem 0x00000000-0x000fffff]
[   22.879769] pci 0000:2a:02.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   22.887762] pci_bus 0000:2f: busn_res: [bus 2f-4a] end is updated to 2f
[   22.894784] pci 0000:2a:04.0: PCI bridge to [bus 30-4a]
[   22.900282] pci 0000:2a:04.0:   bridge window [io  0x0000-0x0fff]
[   22.906639] pci 0000:2a:04.0:   bridge window [mem 0x00000000-0x000fffff]
[   22.913710] pci 0000:2a:04.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   22.921791] pci_bus 0000:30: busn_res: [bus 30-4a] end is updated to 3f
[   22.928758] pci 0000:2a:05.0: PCI bridge to [bus 40-4a]
[   22.934253] pci 0000:2a:05.0:   bridge window [io  0x0000-0x0fff]
[   22.940596] pci 0000:2a:05.0:   bridge window [mem 0x00000000-0x000fffff]
[   22.947645] pci 0000:2a:05.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   22.955628] pci_bus 0000:40: busn_res: [bus 40-4a] end is updated to 4a
[   22.962495] pci_bus 0000:2a: busn_res: [bus 2a-4a] end is updated to 4a
[   22.969367] pci 0000:2a:04.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 30-3f] add_size 100000 add_align 100000
[   22.981336] pci 0000:2a:04.0: bridge window [mem 0x00100000-0x001fffff] to [bus 30-3f] add_size 100000 add_align 100000
[   22.992356] pci 0000:2a:05.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 40-4a] add_size 100000 add_align 100000
[   23.004332] pci 0000:2a:05.0: bridge window [mem 0x00100000-0x001fffff] to [bus 40-4a] add_size 100000 add_align 100000
[   23.015357] pci 0000:29:00.0: bridge window [mem 0x00100000-0x005fffff 64bit pref] to [bus 2a-4a] add_size 200000 add_align 100000
[   23.027324] pci 0000:29:00.0: bridge window [mem 0x00100000-0x005fffff] to [bus 2a-4a] add_size 200000 add_align 100000
[   23.038348] pcieport 0000:04:04.0: BAR 7: no space for [io  size 0x5000]
[   23.045307] pcieport 0000:04:04.0: BAR 7: failed to assign [io  size 0x5000]
[   23.052608] pci 0000:29:00.0: BAR 8: assigned [mem 0xdf000000-0xe6ffffff]
[   23.059652] pci 0000:29:00.0: BAR 9: assigned [mem 0xa0000000-0xa1ffffff 64bit pref]
[   23.067643] pci 0000:29:00.0: BAR 7: no space for [io  size 0x5000]
[   23.074166] pci 0000:29:00.0: BAR 7: failed to assign [io  size 0x5000]
[   23.081038] pci 0000:2a:00.0: BAR 8: assigned [mem 0xdf000000-0xdf0fffff]
[   23.088081] pci 0000:2a:00.0: BAR 9: assigned [mem 0xa0000000-0xa00fffff 64bit pref]
[   23.096075] pci 0000:2a:01.0: BAR 8: assigned [mem 0xdf100000-0xdf1fffff]
[   23.103116] pci 0000:2a:01.0: BAR 9: assigned [mem 0xa0100000-0xa01fffff 64bit pref]
[   23.111118] pci 0000:2a:02.0: BAR 8: assigned [mem 0xdf200000-0xdf2fffff]
[   23.118171] pci 0000:2a:02.0: BAR 9: assigned [mem 0xa0200000-0xa02fffff 64bit pref]
[   23.126164] pci 0000:2a:04.0: BAR 8: assigned [mem 0xdf300000-0xe317ffff]
[   23.133214] pci 0000:2a:04.0: BAR 9: assigned [mem 0xa0300000-0xa117ffff 64bit pref]
[   23.141217] pci 0000:2a:05.0: BAR 8: assigned [mem 0xe3200000-0xe6ffffff]
[   23.148269] pci 0000:2a:05.0: BAR 9: assigned [mem 0xa1200000-0xa1ffffff 64bit pref]
[   23.156270] pci 0000:2a:00.0: BAR 7: no space for [io  size 0x1000]
[   23.162804] pci 0000:2a:00.0: BAR 7: failed to assign [io  size 0x1000]
[   23.169680] pci 0000:2a:01.0: BAR 7: no space for [io  size 0x1000]
[   23.176206] pci 0000:2a:01.0: BAR 7: failed to assign [io  size 0x1000]
[   23.183085] pci 0000:2a:02.0: BAR 7: no space for [io  size 0x1000]
[   23.189620] pci 0000:2a:02.0: BAR 7: failed to assign [io  size 0x1000]
[   23.196499] pci 0000:2a:04.0: BAR 7: no space for [io  size 0x1000]
[   23.203033] pci 0000:2a:04.0: BAR 7: failed to assign [io  size 0x1000]
[   23.209910] pci 0000:2a:05.0: BAR 7: no space for [io  size 0x1000]
[   23.216435] pci 0000:2a:05.0: BAR 7: failed to assign [io  size 0x1000]
[   23.223309] pci 0000:2b:00.0: BAR 8: assigned [mem 0xdf000000-0xdf0fffff]
[   23.230360] pci 0000:2b:00.0: BAR 9: assigned [mem 0xa0000000-0xa00fffff 64bit pref]
[   23.238361] pci 0000:2b:00.0: BAR 7: no space for [io  size 0x1000]
[   23.244888] pci 0000:2b:00.0: BAR 7: failed to assign [io  size 0x1000]
[   23.251767] pci 0000:2c:03.0: BAR 8: assigned [mem 0xdf000000-0xdf0fffff]
[   23.258817] pci 0000:2c:03.0: BAR 9: assigned [mem 0xa0000000-0xa00fffff 64bit pref]
[   23.266811] pci 0000:2c:03.0: BAR 7: no space for [io  size 0x1000]
[   23.273336] pci 0000:2c:03.0: BAR 7: failed to assign [io  size 0x1000]
[   23.280207] pci 0000:2d:00.0: BAR 0: assigned [mem 0xdf000000-0xdf000fff]
[   23.287257] pci 0000:2d:00.1: BAR 0: assigned [mem 0xdf001000-0xdf001fff]
[   23.294309] pci 0000:2d:00.2: BAR 0: assigned [mem 0xdf002000-0xdf0020ff]
[   23.301359] pci 0000:2c:03.0: PCI bridge to [bus 2d]
[   23.306600] pci 0000:2c:03.0:   bridge window [mem 0xdf000000-0xdf0fffff]
[   23.313646] pci 0000:2c:03.0:   bridge window [mem 0xa0000000-0xa00fffff 64bit pref]
[   23.321650] pci 0000:2b:00.0: PCI bridge to [bus 2c-2d]
[   23.327142] pci 0000:2b:00.0:   bridge window [mem 0xdf000000-0xdf0fffff]
[   23.334193] pci 0000:2b:00.0:   bridge window [mem 0xa0000000-0xa00fffff 64bit pref]
[   23.342203] pci 0000:2a:00.0: PCI bridge to [bus 2b-2d]
[   23.347692] pci 0000:2a:00.0:   bridge window [mem 0xdf000000-0xdf0fffff]
[   23.354739] pci 0000:2a:00.0:   bridge window [mem 0xa0000000-0xa00fffff 64bit pref]
[   23.362741] pci 0000:2e:00.0: BAR 0: assigned [mem 0xa0100000-0xa010ffff 64bit pref]
[   23.370765] pci 0000:2e:00.0: BAR 2: assigned [mem 0xa0110000-0xa011ffff 64bit pref]
[   23.378779] pci 0000:2a:01.0: PCI bridge to [bus 2e]
[   23.384005] pci 0000:2a:01.0:   bridge window [mem 0xdf100000-0xdf1fffff]
[   23.391046] pci 0000:2a:01.0:   bridge window [mem 0xa0100000-0xa01fffff 64bit pref]
[   23.399046] pci 0000:2f:00.0: BAR 0: assigned [mem 0xdf200000-0xdf200fff 64bit]
[   23.406628] pci 0000:2a:02.0: PCI bridge to [bus 2f]
[   23.411850] pci 0000:2a:02.0:   bridge window [mem 0xdf200000-0xdf2fffff]
[   23.418899] pci 0000:2a:02.0:   bridge window [mem 0xa0200000-0xa02fffff 64bit pref]
[   23.426898] pci 0000:2a:04.0: PCI bridge to [bus 30-3f]
[   23.432380] pci 0000:2a:04.0:   bridge window [mem 0xdf300000-0xe317ffff]
[   23.439420] pci 0000:2a:04.0:   bridge window [mem 0xa0300000-0xa117ffff 64bit pref]
[   23.447422] pci 0000:2a:05.0: PCI bridge to [bus 40-4a]
[   23.452904] pci 0000:2a:05.0:   bridge window [mem 0xe3200000-0xe6ffffff]
[   23.459945] pci 0000:2a:05.0:   bridge window [mem 0xa1200000-0xa1ffffff 64bit pref]
[   23.467946] pci 0000:29:00.0: PCI bridge to [bus 2a-4a]
[   23.473437] pci 0000:29:00.0:   bridge window [mem 0xdf000000-0xe6ffffff]
[   23.480478] pci 0000:29:00.0:   bridge window [mem 0xa0000000-0xa1ffffff 64bit pref]
[   23.488477] pcieport 0000:04:04.0: PCI bridge to [bus 29-4a]
[   23.494398] pcieport 0000:04:04.0:   bridge window [mem 0xdf000000-0xe6ffffff]
[   23.501872] pcieport 0000:04:04.0:   bridge window [mem 0xa0000000-0xa1ffffff 64bit pref]
[   23.510303] pcieport 0000:04:04.0: BAR 7: no space for [io  size 0x5000]
[   23.517251] pcieport 0000:04:04.0: BAR 7: failed to assign [io  size 0x5000]
[   23.524545] pci 0000:29:00.0: BAR 7: no space for [io  size 0x5000]
[   23.531058] pci 0000:29:00.0: BAR 7: failed to assign [io  size 0x5000]
[   23.537928] pci 0000:2a:00.0: BAR 7: no space for [io  size 0x1000]
[   23.544446] pci 0000:2a:00.0: BAR 7: failed to assign [io  size 0x1000]
[   23.551306] pci 0000:2a:01.0: BAR 7: no space for [io  size 0x1000]
[   23.557821] pci 0000:2a:01.0: BAR 7: failed to assign [io  size 0x1000]
[   23.564682] pci 0000:2a:02.0: BAR 7: no space for [io  size 0x1000]
[   23.571199] pci 0000:2a:02.0: BAR 7: failed to assign [io  size 0x1000]
[   23.578069] pci 0000:2a:04.0: BAR 7: no space for [io  size 0x1000]
[   23.584586] pci 0000:2a:04.0: BAR 7: failed to assign [io  size 0x1000]
[   23.591447] pci 0000:2a:05.0: BAR 7: no space for [io  size 0x1000]
[   23.597963] pci 0000:2a:05.0: BAR 7: failed to assign [io  size 0x1000]
[   23.604824] pci 0000:2b:00.0: BAR 7: no space for [io  size 0x1000]
[   23.611341] pci 0000:2b:00.0: BAR 7: failed to assign [io  size 0x1000]
[   23.618201] pci 0000:2c:03.0: BAR 7: no space for [io  size 0x1000]
[   23.624717] pci 0000:2c:03.0: BAR 7: failed to assign [io  size 0x1000]
[   23.631581] pci 0000:2c:03.0: PCI bridge to [bus 2d]
[   23.636811] pci 0000:2c:03.0:   bridge window [mem 0xdf000000-0xdf0fffff]
[   23.643851] pci 0000:2c:03.0:   bridge window [mem 0xa0000000-0xa00fffff 64bit pref]
[   23.651848] pci 0000:2b:00.0: PCI bridge to [bus 2c-2d]
[   23.657383] pci 0000:2b:00.0:   bridge window [mem 0xdf000000-0xdf0fffff]
[   23.664426] pci 0000:2b:00.0:   bridge window [mem 0xa0000000-0xa00fffff 64bit pref]
[   23.672418] pci 0000:2a:00.0: PCI bridge to [bus 2b-2d]
[   23.677888] pci 0000:2a:00.0:   bridge window [mem 0xdf000000-0xdf0fffff]
[   23.684921] pci 0000:2a:00.0:   bridge window [mem 0xa0000000-0xa00fffff 64bit pref]
[   23.692904] pci 0000:2a:01.0: PCI bridge to [bus 2e]
[   23.698120] pci 0000:2a:01.0:   bridge window [mem 0xdf100000-0xdf1fffff]
[   23.705142] pci 0000:2a:01.0:   bridge window [mem 0xa0100000-0xa01fffff 64bit pref]
[   23.713133] pci 0000:2a:02.0: PCI bridge to [bus 2f]
[   23.718349] pci 0000:2a:02.0:   bridge window [mem 0xdf200000-0xdf2fffff]
[   23.725381] pci 0000:2a:02.0:   bridge window [mem 0xa0200000-0xa02fffff 64bit pref]
[   23.733371] pci 0000:2a:04.0: PCI bridge to [bus 30-3f]
[   23.738852] pci 0000:2a:04.0:   bridge window [mem 0xdf300000-0xe317ffff]
[   23.745885] pci 0000:2a:04.0:   bridge window [mem 0xa0300000-0xa117ffff 64bit pref]
[   23.753867] pci 0000:2a:05.0: PCI bridge to [bus 40-4a]
[   23.759343] pci 0000:2a:05.0:   bridge window [mem 0xe3200000-0xe6ffffff]
[   23.766372] pci 0000:2a:05.0:   bridge window [mem 0xa1200000-0xa1ffffff 64bit pref]
[   23.774363] pci 0000:29:00.0: PCI bridge to [bus 2a-4a]
[   23.779837] pci 0000:29:00.0:   bridge window [mem 0xdf000000-0xe6ffffff]
[   23.786870] pci 0000:29:00.0:   bridge window [mem 0xa0000000-0xa1ffffff 64bit pref]
[   23.794861] pcieport 0000:04:04.0: PCI bridge to [bus 29-4a]
[   23.800772] pcieport 0000:04:04.0:   bridge window [mem 0xdf000000-0xe6ffffff]
[   23.808245] pcieport 0000:04:04.0:   bridge window [mem 0xa0000000-0xa1ffffff 64bit pref]
[   23.816688] pcieport 0000:29:00.0: enabling device (0000 -> 0002)
[   23.823360] pcieport 0000:2a:00.0: enabling device (0000 -> 0002)
[   23.829982] pcieport 0000:2a:01.0: enabling device (0000 -> 0002)
[   23.836634] pcieport 0000:2a:02.0: enabling device (0000 -> 0002)
[   23.843260] pcieport 0000:2a:04.0: enabling device (0000 -> 0002)
[   23.849665] pcieport 0000:2a:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[   23.865838] pcieport 0000:2a:05.0: enabling device (0000 -> 0002)
[   23.872192] sched: RT throttling activated
[   23.921187] pcieport 0000:2a:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[   23.937469] pcieport 0000:2b:00.0: enabling device (0000 -> 0002)
[   23.943922] pcieport 0000:2c:03.0: enabling device (0000 -> 0002)
[   23.950405] pci 0000:2d:00.0: MSI is not implemented on this device, disabling it
[   23.958155] pci 0000:2d:00.0: PME# is unreliable, disabling it
[   23.964245] pci 0000:2d:00.0: pci_fixup_no_msi_no_pme+0x0/0x3b took 13516 usecs
[   23.971832] pci 0000:2d:00.0: enabling device (0000 -> 0002)
[   23.977881] ohci-pci 0000:2d:00.0: OHCI PCI host controller
[   23.983719] ohci-pci 0000:2d:00.0: new USB bus registered, assigned bus number 9
[   23.991419] ohci-pci 0000:2d:00.0: irq 122, io mem 0xdf000000
[   24.064845] usb usb9: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.19
[   24.073419] usb usb9: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   24.080906] usb usb9: Product: OHCI PCI host controller
[   24.086401] usb usb9: Manufacturer: Linux 5.19.0+ ohci_hcd
[   24.092159] usb usb9: SerialNumber: 0000:2d:00.0
[   24.097139] hub 9-0:1.0: USB hub found
[   24.101170] hub 9-0:1.0: 2 ports detected
[   24.105531] pci 0000:2d:00.1: MSI is not implemented on this device, disabling it
[   24.113275] pci 0000:2d:00.1: PME# is unreliable, disabling it
[   24.119376] pci 0000:2d:00.1: pci_fixup_no_msi_no_pme+0x0/0x3b took 13520 usecs
[   24.126967] pci 0000:2d:00.1: enabling device (0000 -> 0002)
[   24.133052] ohci-pci 0000:2d:00.1: OHCI PCI host controller
[   24.138924] ohci-pci 0000:2d:00.1: new USB bus registered, assigned bus number 10
[   24.146695] ohci-pci 0000:2d:00.1: irq 25, io mem 0xdf001000
[   24.224859] usb usb10: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.19
[   24.233531] usb usb10: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   24.241106] usb usb10: Product: OHCI PCI host controller
[   24.246698] usb usb10: Manufacturer: Linux 5.19.0+ ohci_hcd
[   24.252548] usb usb10: SerialNumber: 0000:2d:00.1
[   24.257622] hub 10-0:1.0: USB hub found
[   24.261753] hub 10-0:1.0: 2 ports detected
[   24.266182] pci 0000:2d:00.2: MSI is not implemented on this device, disabling it
[   24.273937] pci 0000:2d:00.2: PME# is unreliable, disabling it
[   24.280044] pci 0000:2d:00.2: pci_fixup_no_msi_no_pme+0x0/0x3b took 13537 usecs
[   24.287969] pci 0000:2d:00.2: enabling device (0000 -> 0002)
[   24.293978] pci 0000:2d:00.2: EHCI: unrecognized capability 00
[   24.300110] pci 0000:2d:00.2: quirk_usb_early_handoff+0x0/0x770 took 12193 usecs
[   24.307919] ehci-pci 0000:2d:00.2: EHCI Host Controller
[   24.313439] ehci-pci 0000:2d:00.2: new USB bus registered, assigned bus number 11
[   24.321355] ehci-pci 0000:2d:00.2: irq 34, io mem 0xdf002000
[   24.350726] ehci-pci 0000:2d:00.2: USB 2.0 started, EHCI 1.00
[   24.356841] usb usb11: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.19
[   24.365471] usb usb11: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   24.373055] usb usb11: Product: EHCI Host Controller
[   24.378309] usb usb11: Manufacturer: Linux 5.19.0+ ehci_hcd
[   24.384167] usb usb11: SerialNumber: 0000:2d:00.2
[   24.389244] hub 11-0:1.0: USB hub found
[   24.393371] hub 11-0:1.0: 4 ports detected
[   24.510576] hub 9-0:1.0: USB hub found
[   24.514685] hub 9-0:1.0: 2 ports detected
[   24.630751] hub 10-0:1.0: USB hub found
[   24.634943] hub 10-0:1.0: 2 ports detected
[   24.639409] tg3 0000:2e:00.0: enabling device (0000 -> 0002)
[   24.690501] usb 11-1: new high-speed USB device number 2 using ehci-pci
[   24.699687] tg3 0000:2e:00.0 eth2: Tigon3 [partno(BCM957761) rev 57785100] (PCI Express) MAC address c8:2a:14:4f:80:3e
[   24.700858] tg3 0000:2e:00.0 eth4: renamed from eth2
[   24.710651] tg3 0000:2e:00.0 eth4: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   24.726014] tg3 0000:2e:00.0 eth4: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[   24.734133] tg3 0000:2e:00.0 eth4: dma_rwctrl[00000001] dma_mask[64-bit]
[   24.920892] usb 11-1: New USB device found, idVendor=05ac, idProduct=9127, bcdDevice= 1.00
[   24.929495] usb 11-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[   24.937362] hub 11-1:1.0: USB hub found
[   24.941643] hub 11-1:1.0: 7 ports detected
[   25.147080] EXT4-fs (dm-0): re-mounted. Quota mode: none.
[   25.270745] usb 11-1.4: new full-speed USB device number 3 using ehci-pci
[   25.439933] usb 11-1.4: New USB device found, idVendor=05ac, idProduct=1107, bcdDevice= 2.09
[   25.448691] usb 11-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   25.448692] usb 11-1.4: Product: Display Audio
[   25.448693] usb 11-1.4: Manufacturer: Apple Inc.
[   25.448693] usb 11-1.4: SerialNumber: 152303D9
[   25.449340] EXT4-fs (nvme0n1p2): mounted filesystem with ordered data mode. Quota mode: none.
[   25.460044] input: Apple Inc. Display Audio as /devices/pci0000:00/0000:00:02.1/0000:01:00.2/0000:02:00.0/0000:03:00.0/0000:04:04.0/0000:29:00.0/0000:2a:00.0/0000:2b:00.0/0000:2c:03.0/0000:2d:00.2/usb11/11-1/11-1.4/11-1.4:1.3/0003:05AC:1107.0005/input/input16
[   25.466613] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Quota mode: none.
[   25.466667] hid-generic 0003:05AC:1107.0005: input,hidraw4: USB HID v1.11 Device [Apple Inc. Display Audio] on usb-0000:2d:00.2-1.4/input3
[   25.476018] Adding 134217724k swap on /dev/mapper/swap.  Priority:-2 extents:1 across:134217724k SS
[   25.550072] usb 11-1.4: 1:1: cannot get freq at ep 0x4
[   25.590730] usb 11-1.5: new high-speed USB device number 4 using ehci-pci
[   25.718274] usb 11-1.4: 1:2: cannot get freq at ep 0x4
[   25.732102] usb 11-1.4: 2:1: cannot get freq at ep 0x84
[   25.758282] usb 11-1.5: New USB device found, idVendor=05ac, idProduct=1112, bcdDevice=71.60
[   25.767119] usb 11-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   25.774850] usb 11-1.5: Product: FaceTime HD Camera (Display)
[   25.775129] usb 11-1.4: Warning! Unlikely big volume range (=16384), cval->res is probably wrong.
[   25.775212] usb 11-1.5: Manufacturer: Apple Inc.
[   25.775671] usb 11-1.4: [2] FU [PCM Playback Volume] ch = 2, val = -16384/0/1
[   25.776033] usb 11-1.5: SerialNumber: CCGB690CKUDJ9DFX
[   25.810134] usb 11-1.4: Warning! Unlikely big volume range (=15872), cval->res is probably wrong.
[   25.819451] usb 11-1.4: [5] FU [Mic Capture Volume] ch = 1, val = -11264/4608/1
[   25.827240] usbcore: registered new interface driver snd-usb-audio
[   25.987546] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[   26.002720] br1: port 1(eth0) entered blocking state
[   26.008052] br1: port 1(eth0) entered disabled state
[   26.013404] device eth0 entered promiscuous mode
[   26.070746] usb 11-1.7: new full-speed USB device number 5 using ehci-pci
[   26.095131] br1: port 2(eth1) entered blocking state
[   26.100541] br1: port 2(eth1) entered disabled state
[   26.105903] device eth1 entered promiscuous mode
[   26.150712] RTL8226B_RTL8221B 2.5Gbps PHY r8169-0-4e00:00: attached PHY driver (mii_bus:phy_addr=r8169-0-4e00:00, irq=MAC)
[   26.254413] usb 11-1.7: New USB device found, idVendor=05ac, idProduct=9227, bcdDevice= 1.37
[   26.263274] usb 11-1.7: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   26.271029] usb 11-1.7: Product: Apple Thunderbolt Display
[   26.276879] usb 11-1.7: Manufacturer: Apple Inc.
[   26.281863] usb 11-1.7: SerialNumber: 152303D9
[   26.288232] hid-generic 0003:05AC:9227.0006: hiddev97,hidraw5: USB HID v1.11 Device [Apple Inc. Apple Thunderbolt Display] on usb-0000:2d:00.2-1.7/input0
[   26.430872] r8169 0000:4e:00.0 eth1: Link is Down
[   26.458567] NET: Registered PF_PACKET protocol family
[   29.298793] r8169 0000:4e:00.0 eth1: Link is Up - 1Gbps/Full - flow control off
[   29.306538] br1: port 2(eth1) entered blocking state
[   29.311875] br1: port 2(eth1) entered forwarding state
[   37.119715] RPC: Registered named UNIX socket transport module.
[   37.126020] RPC: Registered udp transport module.
[   37.131100] RPC: Registered tcp transport module.
[   37.136169] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   37.146613] FS-Cache: Loaded
[   37.169925] Key type dns_resolver registered
[   37.177860] NFS: Registering the id_resolver key type
[   37.183286] Key type id_resolver registered
[   37.187835] Key type id_legacy registered
[   44.330649] fuse: init (API version 7.36)
[   54.881506] br1: port 2(eth1) entered disabled state
[   54.928324] device eth0 left promiscuous mode
[   54.932685] br1: port 1(eth0) entered disabled state
[   55.021435] r8169 0000:4e:00.0 eth1: Link is Down
[   55.026955] device eth1 left promiscuous mode
[   55.031359] br1: port 2(eth1) entered disabled state
[   55.459255] EXT4-fs (dm-1): unmounting filesystem.
[   55.491405] EXT4-fs (nvme0n1p2): unmounting filesystem.
[   55.850740] EXT4-fs (dm-0): re-mounted. Quota mode: none.
[   55.864100] kvm: exiting hardware virtualization
[   57.751966] [drm] free PSP TMR buffer
[   58.521458] thunderbolt 0-3: device disconnected
[   58.527324] reboot: Restarting system
[   58.530986] reboot: machine restart
[    0.000000] Linux version 5.19.0+ (brad@bkd) (gcc (Debian 10.2.1-6) 10.2.1 20210110, GNU ld (GNU Binutils for Debian) 2.35.2) #55 SMP PREEMPT_DYNAMIC Sat Aug 6 16:55:17 AWST 2022
[    0.000000] Command line: ro root=UUID=c6cf971d-5412-4826-851d-5677ad7997c0 thunderbolt.dyndbg pcie_port_pm=off console=ttyS0,115200 console=tty0 nogpu initrd=\initrd.img-5.19.0+
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
[    0.000000] x86/fpu: Enabled xstate features 0x207, context size is 840 bytes, using 'compacted' format.
[    0.000000] signal: max sigframe size: 3376
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000009c3efff] usable
[    0.000000] BIOS-e820: [mem 0x0000000009c3f000-0x0000000009ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000a000000-0x000000000a1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000000a200000-0x000000000a20cfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000a20d000-0x000000000affffff] usable
[    0.000000] BIOS-e820: [mem 0x000000000b000000-0x000000000b01ffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000b020000-0x000000007a076fff] usable
[    0.000000] BIOS-e820: [mem 0x000000007a077000-0x000000007a077fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007a078000-0x000000007a098fff] usable
[    0.000000] BIOS-e820: [mem 0x000000007a099000-0x000000007a099fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007a09a000-0x000000009754cfff] usable
[    0.000000] BIOS-e820: [mem 0x000000009754d000-0x000000009a086fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000009a087000-0x000000009a0ddfff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000009a0de000-0x000000009bb5bfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000009bb5c000-0x000000009cdfefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000009cdff000-0x000000009dffffff] usable
[    0.000000] BIOS-e820: [mem 0x000000009e000000-0x000000009fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd200000-0x00000000fd2fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd600000-0x00000000fd6fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fea00000-0x00000000fea0ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec30000-0x00000000fec30fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000083e2fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000083e300000-0x000000085fffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000009c3efff] usable
[    0.000000] reserve setup_data: [mem 0x0000000009c3f000-0x0000000009ffffff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000a000000-0x000000000a1fffff] usable
[    0.000000] reserve setup_data: [mem 0x000000000a200000-0x000000000a20cfff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000000a20d000-0x000000000affffff] usable
[    0.000000] reserve setup_data: [mem 0x000000000b000000-0x000000000b01ffff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000b020000-0x000000007a076fff] usable
[    0.000000] reserve setup_data: [mem 0x000000007a077000-0x000000007a077fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000007a078000-0x000000007a098fff] usable
[    0.000000] reserve setup_data: [mem 0x000000007a099000-0x000000007a099fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000007a09a000-0x00000000936da017] usable
[    0.000000] reserve setup_data: [mem 0x00000000936da018-0x00000000936e7857] usable
[    0.000000] reserve setup_data: [mem 0x00000000936e7858-0x0000000093717017] usable
[    0.000000] reserve setup_data: [mem 0x0000000093717018-0x0000000093726057] usable
[    0.000000] reserve setup_data: [mem 0x0000000093726058-0x0000000093ca5017] usable
[    0.000000] reserve setup_data: [mem 0x0000000093ca5018-0x0000000093cb2857] usable
[    0.000000] reserve setup_data: [mem 0x0000000093cb2858-0x000000009754cfff] usable
[    0.000000] reserve setup_data: [mem 0x000000009754d000-0x000000009a086fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000009a087000-0x000000009a0ddfff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000009a0de000-0x000000009bb5bfff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000009bb5c000-0x000000009cdfefff] reserved
[    0.000000] reserve setup_data: [mem 0x000000009cdff000-0x000000009dffffff] usable
[    0.000000] reserve setup_data: [mem 0x000000009e000000-0x000000009fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fd200000-0x00000000fd2fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fd600000-0x00000000fd6fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fea00000-0x00000000fea0ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec30000-0x00000000fec30fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000083e2fffff] usable
[    0.000000] reserve setup_data: [mem 0x000000083e300000-0x000000085fffffff] reserved
[    0.000000] efi: EFI v2.70 by American Megatrends
[    0.000000] efi: ACPI=0x9bb45000 ACPI 2.0=0x9bb45014 SMBIOS=0x9cc2b000 SMBIOS 3.0=0x9cc2a000 MEMATTR=0x93cb3018 ESRT=0x96088c18 RNG=0x9cc27498
[    0.000000] efi: seeding entropy pool
[    0.000000] SMBIOS 3.3.0 present.
[    0.000000] DMI: Gigabyte Technology Co., Ltd. B550 VISION D-P/B550 VISION D-P, BIOS F15d 07/20/2022
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 3900.238 MHz processor
[    0.000132] last_pfn = 0x83e300 max_arch_pfn = 0x400000000
[    0.000272] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT
[    0.000401] last_pfn = 0x9e000 max_arch_pfn = 0x400000000
[    0.000407] esrt: Reserving ESRT space from 0x0000000096088c18 to 0x0000000096088c50.
[    0.000461] Using GB pages for direct mapping
[    0.001215] Secure boot disabled
[    0.001216] RAMDISK: [mem 0x7f171000-0x7fffffff]
[    0.001219] ACPI: Early table checksum verification disabled
[    0.001220] ACPI: RSDP 0x000000009BB45014 000024 (v02 ALASKA)
[    0.001222] ACPI: XSDT 0x000000009BB44728 0000D4 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.001225] ACPI: FACP 0x000000009A0C5000 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
[    0.001228] ACPI: DSDT 0x000000009A096000 006227 (v02 ALASKA A M I    01072009 INTL 20190509)
[    0.001229] ACPI: FACS 0x000000009AB3F000 000040
[    0.001230] ACPI: SSDT 0x000000009A0D4000 009FFD (v02 GBT    GSWApp   00000001 INTL 20190509)
[    0.001231] ACPI: IVRS 0x000000009A0D3000 0000D0 (v02 AMD    AmdTable 00000001 AMD  00000001)
[    0.001232] ACPI: SSDT 0x000000009A0CB000 0072B0 (v02 AMD    Artic    00000002 MSFT 04000000)
[    0.001233] ACPI: SSDT 0x000000009A0C7000 003D74 (v01 AMD    AMD AOD  00000001 INTL 20190509)
[    0.001234] ACPI: SSDT 0x000000009A0C6000 0001AD (v02 ALASKA CPUSSDT  01072009 AMI  01072009)
[    0.001235] ACPI: FIDT 0x000000009A0BE000 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.001236] ACPI: MCFG 0x000000009A0BD000 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
[    0.001237] ACPI: HPET 0x000000009A0BC000 000038 (v01 ALASKA A M I    01072009 AMI  00000005)
[    0.001238] ACPI: FPDT 0x000000009A0BB000 000044 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.001240] ACPI: VFCT 0x000000009A0AD000 00D884 (v01 ALASKA A M I    00000001 AMD  31504F47)
[    0.001241] ACPI: SSDT 0x000000009A0A9000 003E88 (v02 AMD    AmdTable 00000001 AMD  00000001)
[    0.001242] ACPI: CRAT 0x000000009A0A8000 000B68 (v01 AMD    AmdTable 00000001 AMD  00000001)
[    0.001243] ACPI: CDIT 0x000000009A0A7000 000029 (v01 AMD    AmdTable 00000001 AMD  00000001)
[    0.001244] ACPI: SSDT 0x000000009A0A5000 001486 (v01 AMD    ArticIG2 00000001 INTL 20190509)
[    0.001245] ACPI: SSDT 0x000000009A0A3000 0014FD (v01 AMD    ArticTPX 00000001 INTL 20190509)
[    0.001246] ACPI: SSDT 0x000000009A09F000 0039F7 (v01 AMD    ArticN   00000001 INTL 20190509)
[    0.001247] ACPI: WSMT 0x000000009A09E000 000028 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.001248] ACPI: APIC 0x000000009A09D000 00015E (v04 ALASKA A M I    01072009 AMI  00010013)
[    0.001249] ACPI: SSDT 0x000000009A0C4000 0008A4 (v01 AMD    ArticPRN 00000001 INTL 20190509)
[    0.001250] ACPI: SSDT 0x000000009A0C2000 00147F (v01 AMD    ArticC   00000001 INTL 20190509)
[    0.001251] ACPI: SSDT 0x000000009A0C1000 0000BF (v01 AMD    AmdTable 00001000 INTL 20190509)
[    0.001252] ACPI: Reserving FACP table memory at [mem 0x9a0c5000-0x9a0c5113]
[    0.001252] ACPI: Reserving DSDT table memory at [mem 0x9a096000-0x9a09c226]
[    0.001253] ACPI: Reserving FACS table memory at [mem 0x9ab3f000-0x9ab3f03f]
[    0.001253] ACPI: Reserving SSDT table memory at [mem 0x9a0d4000-0x9a0ddffc]
[    0.001254] ACPI: Reserving IVRS table memory at [mem 0x9a0d3000-0x9a0d30cf]
[    0.001254] ACPI: Reserving SSDT table memory at [mem 0x9a0cb000-0x9a0d22af]
[    0.001254] ACPI: Reserving SSDT table memory at [mem 0x9a0c7000-0x9a0cad73]
[    0.001255] ACPI: Reserving SSDT table memory at [mem 0x9a0c6000-0x9a0c61ac]
[    0.001255] ACPI: Reserving FIDT table memory at [mem 0x9a0be000-0x9a0be09b]
[    0.001256] ACPI: Reserving MCFG table memory at [mem 0x9a0bd000-0x9a0bd03b]
[    0.001256] ACPI: Reserving HPET table memory at [mem 0x9a0bc000-0x9a0bc037]
[    0.001256] ACPI: Reserving FPDT table memory at [mem 0x9a0bb000-0x9a0bb043]
[    0.001257] ACPI: Reserving VFCT table memory at [mem 0x9a0ad000-0x9a0ba883]
[    0.001257] ACPI: Reserving SSDT table memory at [mem 0x9a0a9000-0x9a0ace87]
[    0.001258] ACPI: Reserving CRAT table memory at [mem 0x9a0a8000-0x9a0a8b67]
[    0.001258] ACPI: Reserving CDIT table memory at [mem 0x9a0a7000-0x9a0a7028]
[    0.001258] ACPI: Reserving SSDT table memory at [mem 0x9a0a5000-0x9a0a6485]
[    0.001259] ACPI: Reserving SSDT table memory at [mem 0x9a0a3000-0x9a0a44fc]
[    0.001259] ACPI: Reserving SSDT table memory at [mem 0x9a09f000-0x9a0a29f6]
[    0.001260] ACPI: Reserving WSMT table memory at [mem 0x9a09e000-0x9a09e027]
[    0.001260] ACPI: Reserving APIC table memory at [mem 0x9a09d000-0x9a09d15d]
[    0.001260] ACPI: Reserving SSDT table memory at [mem 0x9a0c4000-0x9a0c48a3]
[    0.001261] ACPI: Reserving SSDT table memory at [mem 0x9a0c2000-0x9a0c347e]
[    0.001261] ACPI: Reserving SSDT table memory at [mem 0x9a0c1000-0x9a0c10be]
[    0.001278] No NUMA configuration found
[    0.001278] Faking a node at [mem 0x0000000000000000-0x000000083e2fffff]
[    0.001280] NODE_DATA(0) allocated [mem 0x83e2fe000-0x83e2fffff]
[    0.001295] Zone ranges:
[    0.001296]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.001297]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.001297]   Normal   [mem 0x0000000100000000-0x000000083e2fffff]
[    0.001298] Movable zone start for each node
[    0.001298] Early memory node ranges
[    0.001298]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.001299]   node   0: [mem 0x0000000000100000-0x0000000009c3efff]
[    0.001300]   node   0: [mem 0x000000000a000000-0x000000000a1fffff]
[    0.001300]   node   0: [mem 0x000000000a20d000-0x000000000affffff]
[    0.001300]   node   0: [mem 0x000000000b020000-0x000000007a076fff]
[    0.001301]   node   0: [mem 0x000000007a078000-0x000000007a098fff]
[    0.001301]   node   0: [mem 0x000000007a09a000-0x000000009754cfff]
[    0.001301]   node   0: [mem 0x000000009cdff000-0x000000009dffffff]
[    0.001302]   node   0: [mem 0x0000000100000000-0x000000083e2fffff]
[    0.001303] Initmem setup node 0 [mem 0x0000000000001000-0x000000083e2fffff]
[    0.001305] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.001314] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.001391] On node 0, zone DMA32: 961 pages in unavailable ranges
[    0.001399] On node 0, zone DMA32: 13 pages in unavailable ranges
[    0.002748] On node 0, zone DMA32: 32 pages in unavailable ranges
[    0.002748] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.003219] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.003338] On node 0, zone DMA32: 22706 pages in unavailable ranges
[    0.032275] On node 0, zone Normal: 8192 pages in unavailable ranges
[    0.032309] On node 0, zone Normal: 7424 pages in unavailable ranges
[    0.034090] ACPI: PM-Timer IO Port: 0x808
[    0.034094] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.034104] IOAPIC[0]: apic_id 13, version 33, address 0xfec00000, GSI 0-23
[    0.034109] IOAPIC[1]: apic_id 14, version 33, address 0xfec01000, GSI 24-55
[    0.034111] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.034112] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.034114] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.034114] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.034116] smpboot: 32 Processors exceeds NR_CPUS limit of 16
[    0.034117] smpboot: Allowing 16 CPUs, 4 hotplug CPUs
[    0.034138] [mem 0xa0000000-0xefffffff] available for PCI devices
[    0.034140] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.035481] setup_percpu: NR_CPUS:16 nr_cpumask_bits:16 nr_cpu_ids:16 nr_node_ids:1
[    0.035712] percpu: Embedded 44 pages/cpu s139880 r8192 d32152 u262144
[    0.035733] Fallback order for Node 0: 0
[    0.035735] Built 1 zonelists, mobility grouping on.  Total pages: 8089540
[    0.035735] Policy zone: Normal
[    0.035736] Kernel command line: ro root=UUID=c6cf971d-5412-4826-851d-5677ad7997c0 thunderbolt.dyndbg pcie_port_pm=off console=ttyS0,115200 console=tty0 nogpu initrd=\initrd.img-5.19.0+
[    0.035759] Unknown kernel command line parameters "nogpu", will be passed to user space.
[    0.036423] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.036756] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.036779] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.074914] Memory: 32128108K/32872436K available (8192K kernel code, 2309K rwdata, 1868K rodata, 952K init, 944K bss, 744072K reserved, 0K cma-reserved)
[    0.074939] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
[    0.075134] Dynamic Preempt: voluntary
[    0.075157] rcu: Preemptible hierarchical RCU implementation.
[    0.075158] rcu: 	RCU event tracing is enabled.
[    0.075159] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[    0.075171] NR_IRQS: 4352, nr_irqs: 1096, preallocated irqs: 16
[    0.075359] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.075411] Console: colour dummy device 80x25
[    0.075577] printk: console [tty0] enabled
[    1.565032] printk: console [ttyS0] enabled
[    1.569209] ACPI: Core revision 20220331
[    1.573245] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    1.582358] APIC: Switch to symmetric I/O mode setup
[    1.587304] Switched APIC routing to physical flat.
[    1.592751] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    1.642359] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x7070762be1e, max_idle_ns: 881590686392 ns
[    1.652841] Calibrating delay loop (skipped), value calculated using timer frequency.. 7800.47 BogoMIPS (lpj=39002380)
[    1.662839] pid_max: default: 32768 minimum: 301
[    1.668748] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    1.672869] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    1.682921] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    1.689441] LVT offset 1 assigned for vector 0xf9
[    1.692894] LVT offset 2 assigned for vector 0xf4
[    1.697595] process: using mwait in idle threads
[    1.702839] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
[    1.708647] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[    1.712840] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    1.722839] Spectre V2 : Kernel not compiled with retpoline; no mitigation available!
[    1.722840] Spectre V2 : Vulnerable
[    1.736313] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    1.742839] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    1.752839] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    1.761245] Spectre V2 : User space: Mitigation: STIBP always-on protection
[    1.762839] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    1.773001] Freeing SMP alternatives memory: 24K
[    1.902284] smpboot: CPU0: AMD Ryzen 5 5600G with Radeon Graphics (family: 0x19, model: 0x50, stepping: 0x0)
[    1.902838] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[    1.902839] ... version:                0
[    1.912839] ... bit width:              48
[    1.916916] ... generic registers:      6
[    1.920907] ... value mask:             0000ffffffffffff
[    1.922839] ... max period:             00007fffffffffff
[    1.928135] ... fixed-purpose events:   0
[    1.932839] ... event mask:             000000000000003f
[    1.938167] rcu: Hierarchical SRCU implementation.
[    1.942839] rcu: 	Max phase no-delay instances is 1000.
[    1.948253] smp: Bringing up secondary CPUs ...
[    1.952895] x86: Booting SMP configuration:
[    1.957064] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6
[    1.972868] Spectre V2 : Update user space SMT mitigation: STIBP always-on
[    1.982911]   #7  #8  #9 #10 #11
[    1.994985] smp: Brought up 1 node, 12 CPUs
[    2.002840] smpboot: Max logical packages: 3
[    2.007097] smpboot: Total of 12 processors activated (93605.71 BogoMIPS)
[    2.013464] devtmpfs: initialized
[    2.016226] ACPI: PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20cfff] (53248 bytes)
[    2.022840] ACPI: PM: Registering ACPI NVS region [mem 0x9a0de000-0x9bb5bfff] (27779072 bytes)
[    2.033062] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    2.042841] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
[    2.053054] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    2.059005] thermal_sys: Registered thermal governor 'step_wise'
[    2.059005] thermal_sys: Registered thermal governor 'user_space'
[    2.062849] cpuidle: using governor ladder
[    2.072848] cpuidle: using governor menu
[    2.076765] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    2.082855] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000)
[    2.092840] PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved in E820
[    2.099612] PCI: Using configuration type 1 for base access
[    2.103301] ACPI: Added _OSI(Module Device)
[    2.107034] ACPI: Added _OSI(Processor Device)
[    2.112839] ACPI: Added _OSI(3.0 _SCP Extensions)
[    2.117521] ACPI: Added _OSI(Processor Aggregator Device)
[    2.122839] ACPI: Added _OSI(Linux-Dell-Video)
[    2.127262] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    2.132839] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    2.146919] ACPI: 12 ACPI AML tables successfully acquired and loaded
[    2.153537] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    2.164556] ACPI: Interpreter enabled
[    2.168215] ACPI: PM: (supports S0 S3 S5)
[    2.172211] ACPI: Using IOAPIC for interrupt routing
[    2.173003] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.182839] PCI: Using E820 reservations for host bridge windows
[    2.189019] ACPI: Enabled 7 GPEs in block 00 to 1F
[    2.196656] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    2.202841] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    2.212893] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability LTR]
[    2.222843] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-7f] only partially covers this bridge
[    2.232954] PCI host bridge to bus 0000:00
[    2.237037] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    2.242839] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    2.252839] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    2.259603] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    2.262839] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
[    2.272839] pci_bus 0000:00: root bus resource [mem 0xa0000000-0xefffffff window]
[    2.280293] pci_bus 0000:00: root bus resource [bus 00-ff]
[    2.282848] pci 0000:00:00.0: [1022:1630] type 00 class 0x060000
[    2.292894] pci 0000:00:00.2: [1022:1631] type 00 class 0x080600
[    2.298944] pci 0000:00:01.0: [1022:1632] type 00 class 0x060000
[    2.302878] pci 0000:00:02.0: [1022:1632] type 00 class 0x060000
[    2.308893] pci 0000:00:02.1: [1022:1634] type 01 class 0x060400
[    2.312859] pci 0000:00:02.1: enabling Extended Tags
[    2.317840] pci 0000:00:02.1: PME# supported from D0 D3hot D3cold
[    2.322884] pci 0000:00:02.2: [1022:1634] type 01 class 0x060400
[    2.332887] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[    2.338999] pci 0000:00:08.0: [1022:1632] type 00 class 0x060000
[    2.342872] pci 0000:00:08.1: [1022:1635] type 01 class 0x060400
[    2.348867] pci 0000:00:08.1: enabling Extended Tags
[    2.352864] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    2.362896] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
[    2.368970] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
[    2.372936] pci 0000:00:18.0: [1022:166a] type 00 class 0x060000
[    2.378935] pci 0000:00:18.1: [1022:166b] type 00 class 0x060000
[    2.382854] pci 0000:00:18.2: [1022:166c] type 00 class 0x060000
[    2.392855] pci 0000:00:18.3: [1022:166d] type 00 class 0x060000
[    2.398849] pci 0000:00:18.4: [1022:166e] type 00 class 0x060000
[    2.402854] pci 0000:00:18.5: [1022:166f] type 00 class 0x060000
[    2.408852] pci 0000:00:18.6: [1022:1670] type 00 class 0x060000
[    2.412854] pci 0000:00:18.7: [1022:1671] type 00 class 0x060000
[    2.422899] pci 0000:01:00.0: [1022:43ee] type 00 class 0x0c0330
[    2.428902] pci 0000:01:00.0: reg 0x10: [mem 0xef7a0000-0xef7a7fff 64bit]
[    2.432874] pci 0000:01:00.0: enabling Extended Tags
[    2.437865] pci 0000:01:00.0: PME# supported from D3hot D3cold
[    2.442902] pci 0000:01:00.1: [1022:43eb] type 00 class 0x010601
[    2.452880] pci 0000:01:00.1: reg 0x24: [mem 0xef780000-0xef79ffff]
[    2.459125] pci 0000:01:00.1: reg 0x30: [mem 0xef700000-0xef77ffff pref]
[    2.462843] pci 0000:01:00.1: enabling Extended Tags
[    2.467827] pci 0000:01:00.1: PME# supported from D3hot D3cold
[    2.472885] pci 0000:01:00.2: [1022:43e9] type 01 class 0x060400
[    2.482876] pci 0000:01:00.2: enabling Extended Tags
[    2.487864] pci 0000:01:00.2: PME# supported from D3hot D3cold
[    2.492890] pci 0000:00:02.1: PCI bridge to [bus 01-51]
[    2.498102] pci 0000:00:02.1:   bridge window [io  0xf000-0xffff]
[    2.502840] pci 0000:00:02.1:   bridge window [mem 0xdf000000-0xef7fffff]
[    2.509605] pci 0000:00:02.1:   bridge window [mem 0xa0000000-0xb1ffffff 64bit pref]
[    2.512898] pci 0000:02:00.0: [1022:43ea] type 01 class 0x060400
[    2.522880] pci 0000:02:00.0: enabling Extended Tags
[    2.527872] pci 0000:02:00.0: PME# supported from D3hot D3cold
[    2.532894] pci 0000:02:04.0: [1022:43ea] type 01 class 0x060400
[    2.538916] pci 0000:02:04.0: enabling Extended Tags
[    2.542888] pci 0000:02:04.0: PME# supported from D3hot D3cold
[    2.552892] pci 0000:02:08.0: [1022:43ea] type 01 class 0x060400
[    2.558920] pci 0000:02:08.0: enabling Extended Tags
[    2.562888] pci 0000:02:08.0: PME# supported from D3hot D3cold
[    2.568747] pci 0000:02:09.0: [1022:43ea] type 01 class 0x060400
[    2.572880] pci 0000:02:09.0: enabling Extended Tags
[    2.577873] pci 0000:02:09.0: PME# supported from D3hot D3cold
[    2.582898] pci 0000:01:00.2: PCI bridge to [bus 02-51]
[    2.588105] pci 0000:01:00.2:   bridge window [io  0xf000-0xffff]
[    2.592840] pci 0000:01:00.2:   bridge window [mem 0xdf000000-0xef6fffff]
[    2.602842] pci 0000:01:00.2:   bridge window [mem 0xa0000000-0xb1ffffff 64bit pref]
[    2.612895] pci 0000:03:00.0: [8086:15ea] type 01 class 0x060400
[    2.618942] pci 0000:03:00.0: enabling Extended Tags
[    2.622969] pci 0000:03:00.0: supports D1 D2
[    2.627221] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.632928] pci 0000:02:00.0: PCI bridge to [bus 03-4a]
[    2.638140] pci 0000:02:00.0:   bridge window [mem 0xdf000000-0xef1fffff]
[    2.642842] pci 0000:02:00.0:   bridge window [mem 0xa0000000-0xb1ffffff 64bit pref]
[    2.652910] pci 0000:04:00.0: [8086:15ea] type 01 class 0x060400
[    2.658962] pci 0000:04:00.0: enabling Extended Tags
[    2.662972] pci 0000:04:00.0: supports D1 D2
[    2.667228] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.672935] pci 0000:04:01.0: [8086:15ea] type 01 class 0x060400
[    2.682907] pci 0000:04:01.0: enabling Extended Tags
[    2.687982] pci 0000:04:01.0: supports D1 D2
[    2.692239] pci 0000:04:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.692933] pci 0000:04:02.0: [8086:15ea] type 01 class 0x060400
[    2.702907] pci 0000:04:02.0: enabling Extended Tags
[    2.707980] pci 0000:04:02.0: supports D1 D2
[    2.712839] pci 0000:04:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.719526] pci 0000:04:04.0: [8086:15ea] type 01 class 0x060400
[    2.722907] pci 0000:04:04.0: enabling Extended Tags
[    2.727979] pci 0000:04:04.0: supports D1 D2
[    2.732839] pci 0000:04:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.742946] pci 0000:03:00.0: PCI bridge to [bus 04-4a]
[    2.748160] pci 0000:03:00.0:   bridge window [mem 0xdf000000-0xef1fffff]
[    2.752845] pci 0000:03:00.0:   bridge window [mem 0xa0000000-0xb1ffffff 64bit pref]
[    2.762876] pci 0000:05:00.0: [8086:15eb] type 00 class 0x088000
[    2.768883] pci 0000:05:00.0: reg 0x10: [mem 0xef100000-0xef13ffff]
[    2.772848] pci 0000:05:00.0: reg 0x14: [mem 0xef140000-0xef140fff]
[    2.779148] pci 0000:05:00.0: enabling Extended Tags
[    2.782970] pci 0000:05:00.0: supports D1 D2
[    2.787227] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.792949] pci 0000:04:00.0: PCI bridge to [bus 05]
[    2.797903] pci 0000:04:00.0:   bridge window [mem 0xef100000-0xef1fffff]
[    2.802894] pci 0000:04:01.0: PCI bridge to [bus 06-27]
[    2.812848] pci 0000:04:01.0:   bridge window [mem 0xe7000000-0xeeffffff]
[    2.819619] pci 0000:04:01.0:   bridge window [mem 0xb0000000-0xb1ffffff 64bit pref]
[    2.822922] pci 0000:28:00.0: [8086:15ec] type 00 class 0x0c0330
[    2.832864] pci 0000:28:00.0: reg 0x10: [mem 0xef000000-0xef00ffff]
[    2.839196] pci 0000:28:00.0: enabling Extended Tags
[    2.842987] pci 0000:28:00.0: supports D1 D2
[    2.847246] pci 0000:28:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.852898] pci 0000:28:00.0: 8.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x4 link at 0000:04:02.0 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
[    2.862894] pci 0000:04:02.0: PCI bridge to [bus 28]
[    2.872848] pci 0000:04:02.0:   bridge window [mem 0xef000000-0xef0fffff]
[    2.882941] pci 0000:29:00.0: [8086:1513] type 01 class 0x060400
[    2.889040] pci 0000:29:00.0: enabling Extended Tags
[    2.893007] pci 0000:29:00.0: supports D1 D2
[    2.897260] pci 0000:29:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.902970] pci 0000:04:04.0: PCI bridge to [bus 29-4a]
[    2.908185] pci 0000:04:04.0:   bridge window [mem 0xdf000000-0xe6ffffff]
[    2.912845] pci 0000:04:04.0:   bridge window [mem 0xa0000000-0xa1ffffff 64bit pref]
[    2.922951] pci 0000:2a:00.0: [8086:1513] type 01 class 0x060400
[    2.929056] pci 0000:2a:00.0: enabling Extended Tags
[    2.933010] pci 0000:2a:00.0: supports D1 D2
[    2.937264] pci 0000:2a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.942981] pci 0000:2a:01.0: [8086:1513] type 01 class 0x060400
[    2.952955] pci 0000:2a:01.0: enabling Extended Tags
[    2.958072] pci 0000:2a:01.0: supports D1 D2
[    2.962839] pci 0000:2a:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.969563] pci 0000:2a:02.0: [8086:1513] type 01 class 0x060400
[    2.972956] pci 0000:2a:02.0: enabling Extended Tags
[    2.978073] pci 0000:2a:02.0: supports D1 D2
[    2.982839] pci 0000:2a:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.989575] pci 0000:2a:04.0: [8086:1513] type 01 class 0x060400
[    2.992956] pci 0000:2a:04.0: enabling Extended Tags
[    3.003010] pci 0000:2a:04.0: supports D1 D2
[    3.007261] pci 0000:2a:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    3.012985] pci 0000:2a:05.0: [8086:1513] type 01 class 0x060400
[    3.019082] pci 0000:2a:05.0: enabling Extended Tags
[    3.023010] pci 0000:2a:05.0: supports D1 D2
[    3.027261] pci 0000:2a:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    3.033005] pci 0000:29:00.0: PCI bridge to [bus 2a-31]
[    3.038226] pci 0000:29:00.0:   bridge window [mem 0xdf000000-0xdf1fffff]
[    3.042849] pci 0000:29:00.0:   bridge window [mem 0xa0000000-0xa00fffff 64bit pref]
[    3.052953] pci 0000:2b:00.0: [12d8:400c] type 01 class 0x060400
[    3.063213] pci 0000:2b:00.0: supports D1 D2
[    3.067468] pci 0000:2b:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    3.073006] pci 0000:2a:00.0: PCI bridge to [bus 2b-2d]
[    3.078228] pci 0000:2a:00.0:   bridge window [mem 0xdf100000-0xdf1fffff]
[    3.083014] pci 0000:2c:03.0: [12d8:400c] type 01 class 0x060400
[    3.089321] pci 0000:2c:03.0: supports D1 D2
[    3.092839] pci 0000:2c:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    3.103027] pci 0000:2b:00.0: PCI bridge to [bus 2c-2d]
[    3.108251] pci 0000:2b:00.0:   bridge window [mem 0xdf100000-0xdf1fffff]
[    3.113000] pci 0000:2d:00.0: [12d8:400e] type 00 class 0x0c0310
[    3.119022] pci 0000:2d:00.0: reg 0x10: [mem 0xdf102000-0xdf102fff]
[    3.123095] pci 0000:2d:00.0: supports D1 D2
[    3.127345] pci 0000:2d:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    3.132982] pci 0000:2d:00.1: [12d8:400e] type 00 class 0x0c0310
[    3.142879] pci 0000:2d:00.1: reg 0x10: [mem 0xdf101000-0xdf101fff]
[    3.149377] pci 0000:2d:00.1: supports D1 D2
[    3.152839] pci 0000:2d:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[    3.162954] pci 0000:2d:00.2: [12d8:400f] type 00 class 0x0c0320
[    3.168986] pci 0000:2d:00.2: reg 0x10: [mem 0xdf100000-0xdf1000ff]
[    3.173139] pci 0000:2d:00.2: supports D1 D2
[    3.177393] pci 0000:2d:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[    3.183084] pci 0000:2c:03.0: PCI bridge to [bus 2d]
[    3.188054] pci 0000:2c:03.0:   bridge window [mem 0xdf100000-0xdf1fffff]
[    3.193008] pci 0000:2e:00.0: [14e4:16b0] type 00 class 0x020000
[    3.202896] pci 0000:2e:00.0: reg 0x10: [mem 0xa0010000-0xa001ffff 64bit pref]
[    3.210122] pci 0000:2e:00.0: reg 0x18: [mem 0xa0000000-0xa000ffff 64bit pref]
[    3.213145] pci 0000:2e:00.0: PME# supported from D0 D3hot D3cold
[    3.223040] pci 0000:2a:01.0: PCI bridge to [bus 2e]
[    3.228015] pci 0000:2a:01.0:   bridge window [mem 0xa0000000-0xa00fffff 64bit pref]
[    3.232951] pci 0000:2f:00.0: [11c1:5901] type 00 class 0x0c0010
[    3.242896] pci 0000:2f:00.0: reg 0x10: [mem 0xdf000000-0xdf000fff 64bit]
[    3.249957] pci 0000:2f:00.0: supports D1 D2
[    3.252839] pci 0000:2f:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    3.259609] pci 0000:2a:02.0: PCI bridge to [bus 2f]
[    3.262855] pci 0000:2a:02.0:   bridge window [mem 0xdf000000-0xdf0fffff]
[    3.272915] pci 0000:2a:04.0: PCI bridge to [bus 30]
[    3.277956] pci 0000:2a:05.0: PCI bridge to [bus 31]
[    3.283024] pci 0000:4b:00.0: [2646:2262] type 00 class 0x010802
[    3.289031] pci 0000:4b:00.0: reg 0x10: [mem 0xef600000-0xef603fff 64bit]
[    3.293055] pci 0000:02:04.0: PCI bridge to [bus 4b]
[    3.298002] pci 0000:02:04.0:   bridge window [mem 0xef600000-0xef6fffff]
[    3.302905] pci 0000:4c:00.0: [1b21:1806] type 01 class 0x060400
[    3.312907] pci 0000:4c:00.0: enabling Extended Tags
[    3.317955] pci 0000:4c:00.0: PME# supported from D0 D3hot D3cold
[    3.322878] pci 0000:4c:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x1 link at 0000:02:08.0 (capable of 15.752 Gb/s with 8.0 GT/s PCIe x2 link)
[    3.332888] pci 0000:02:08.0: PCI bridge to [bus 4c-50]
[    3.342842] pci 0000:02:08.0:   bridge window [io  0xf000-0xffff]
[    3.348913] pci 0000:02:08.0:   bridge window [mem 0xef500000-0xef5fffff]
[    3.352903] pci 0000:4d:00.0: [1b21:1806] type 01 class 0x060400
[    3.362909] pci 0000:4d:00.0: enabling Extended Tags
[    3.367964] pci 0000:4d:00.0: PME# supported from D0 D3hot D3cold
[    3.372932] pci 0000:4d:06.0: [1b21:1806] type 01 class 0x060400
[    3.378984] pci 0000:4d:06.0: enabling Extended Tags
[    3.382944] pci 0000:4d:06.0: PME# supported from D0 D3hot D3cold
[    3.392924] pci 0000:4d:0e.0: [1b21:1806] type 01 class 0x060400
[    3.398979] pci 0000:4d:0e.0: enabling Extended Tags
[    3.402944] pci 0000:4d:0e.0: PME# supported from D0 D3hot D3cold
[    3.409097] pci 0000:4c:00.0: PCI bridge to [bus 4d-50]
[    3.412845] pci 0000:4c:00.0:   bridge window [io  0xf000-0xffff]
[    3.418914] pci 0000:4c:00.0:   bridge window [mem 0xef500000-0xef5fffff]
[    3.422913] pci 0000:4e:00.0: [10ec:8125] type 00 class 0x020000
[    3.432868] pci 0000:4e:00.0: reg 0x10: [io  0xf000-0xf0ff]
[    3.438459] pci 0000:4e:00.0: reg 0x18: [mem 0xef500000-0xef50ffff 64bit]
[    3.442863] pci 0000:4e:00.0: reg 0x20: [mem 0xef510000-0xef513fff 64bit]
[    3.453023] pci 0000:4e:00.0: supports D1 D2
[    3.457281] pci 0000:4e:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    3.462987] pci 0000:4d:00.0: PCI bridge to [bus 4e]
[    3.467943] pci 0000:4d:00.0:   bridge window [io  0xf000-0xffff]
[    3.472842] pci 0000:4d:00.0:   bridge window [mem 0xef500000-0xef5fffff]
[    3.482889] pci 0000:4d:06.0: PCI bridge to [bus 4f]
[    3.487891] pci 0000:4d:0e.0: PCI bridge to [bus 50]
[    3.492946] pci 0000:51:00.0: [8086:15f3] type 00 class 0x020000
[    3.498949] pci 0000:51:00.0: reg 0x10: [mem 0xef300000-0xef3fffff]
[    3.502873] pci 0000:51:00.0: reg 0x1c: [mem 0xef400000-0xef403fff]
[    3.509259] pci 0000:51:00.0: PME# supported from D0 D3hot D3cold
[    3.512934] pci 0000:02:09.0: PCI bridge to [bus 51]
[    3.522844] pci 0000:02:09.0:   bridge window [mem 0xef300000-0xef4fffff]
[    3.529678] pci 0000:52:00.0: [c0a9:540a] type 00 class 0x010802
[    3.532880] pci 0000:52:00.0: reg 0x10: [mem 0xefd00000-0xefd03fff 64bit]
[    3.543169] pci 0000:00:02.2: PCI bridge to [bus 52]
[    3.548122] pci 0000:00:02.2:   bridge window [mem 0xefd00000-0xefdfffff]
[    3.552874] pci 0000:53:00.0: [1002:1638] type 00 class 0x030000
[    3.558870] pci 0000:53:00.0: reg 0x10: [mem 0xc0000000-0xcfffffff 64bit pref]
[    3.562844] pci 0000:53:00.0: reg 0x18: [mem 0xd0000000-0xd01fffff 64bit pref]
[    3.572843] pci 0000:53:00.0: reg 0x20: [io  0xe000-0xe0ff]
[    3.578396] pci 0000:53:00.0: reg 0x24: [mem 0xefc00000-0xefc7ffff]
[    3.582845] pci 0000:53:00.0: enabling Extended Tags
[    3.587795] pci 0000:53:00.0: BAR 0: assigned to efifb
[    3.592873] pci 0000:53:00.0: PME# supported from D1 D2 D3hot D3cold
[    3.602851] pci 0000:53:00.0: 126.016 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x16 link at 0000:00:08.1 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[    3.612867] pci 0000:53:00.1: [1002:1637] type 00 class 0x040300
[    3.622844] pci 0000:53:00.1: reg 0x10: [mem 0xefc88000-0xefc8bfff]
[    3.629104] pci 0000:53:00.1: enabling Extended Tags
[    3.632863] pci 0000:53:00.1: PME# supported from D1 D2 D3hot D3cold
[    3.639228] pci 0000:53:00.2: [1022:15df] type 00 class 0x108000
[    3.642849] pci 0000:53:00.2: reg 0x18: [mem 0xefb00000-0xefbfffff]
[    3.652846] pci 0000:53:00.2: reg 0x24: [mem 0xefc8c000-0xefc8dfff]
[    3.659090] pci 0000:53:00.2: enabling Extended Tags
[    3.662907] pci 0000:53:00.3: [1022:1639] type 00 class 0x0c0330
[    3.668903] pci 0000:53:00.3: reg 0x10: [mem 0xefa00000-0xefafffff 64bit]
[    3.672859] pci 0000:53:00.3: enabling Extended Tags
[    3.682865] pci 0000:53:00.3: PME# supported from D0 D3hot D3cold
[    3.688973] pci 0000:53:00.4: [1022:1639] type 00 class 0x0c0330
[    3.692847] pci 0000:53:00.4: reg 0x10: [mem 0xef900000-0xef9fffff 64bit]
[    3.702859] pci 0000:53:00.4: enabling Extended Tags
[    3.707832] pci 0000:53:00.4: PME# supported from D0 D3hot D3cold
[    3.712874] pci 0000:53:00.6: [1022:15e3] type 00 class 0x040300
[    3.718867] pci 0000:53:00.6: reg 0x10: [mem 0xefc80000-0xefc87fff]
[    3.722856] pci 0000:53:00.6: enabling Extended Tags
[    3.727830] pci 0000:53:00.6: PME# supported from D0 D3hot D3cold
[    3.732885] pci 0000:00:08.1: PCI bridge to [bus 53]
[    3.737832] pci 0000:00:08.1:   bridge window [io  0xe000-0xefff]
[    3.742839] pci 0000:00:08.1:   bridge window [mem 0xef900000-0xefcfffff]
[    3.752840] pci 0000:00:08.1:   bridge window [mem 0xc0000000-0xd01fffff 64bit pref]
[    3.763074] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    3.768997] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    3.772859] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    3.778781] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    3.782862] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    3.788775] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    3.792857] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    3.802857] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    3.809097] SCSI subsystem initialized
[    3.812865] Registered efivars operations
[    3.816911] PCI: Using ACPI for IRQ routing
[    3.828163] pci 0000:53:00.0: vgaarb: setting as boot VGA device
[    3.828825] pci 0000:53:00.0: vgaarb: bridge control possible
[    3.832838] pci 0000:53:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    3.832839] vgaarb: loaded
[    3.835543] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    3.842840] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    3.852860] clocksource: Switched to clocksource tsc-early
[    3.858350] VFS: Disk quotas dquot_6.6.0
[    3.862247] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    3.869108] pnp: PnP ACPI init
[    3.872188] system 00:00: [mem 0xf0000000-0xf7ffffff] has been reserved
[    3.878807] system 00:01: [mem 0x840000000-0x85fffffff window] has been reserved
[    3.886273] system 00:03: [io  0x0a00-0x0a2f] has been reserved
[    3.892171] system 00:03: [io  0x0a30-0x0a3f] has been reserved
[    3.898072] system 00:03: [io  0x0a40-0x0a4f] has been reserved
[    3.903974] system 00:03: [mem 0xfe000000-0xfe00ffff] has been reserved
[    3.910810] system 00:05: [io  0x04d0-0x04d1] has been reserved
[    3.916710] system 00:05: [io  0x040b] has been reserved
[    3.922006] system 00:05: [io  0x04d6] has been reserved
[    3.927297] system 00:05: [io  0x0c00-0x0c01] has been reserved
[    3.933198] system 00:05: [io  0x0c14] has been reserved
[    3.938495] system 00:05: [io  0x0c50-0x0c51] has been reserved
[    3.944396] system 00:05: [io  0x0c52] has been reserved
[    3.949683] system 00:05: [io  0x0c6c] has been reserved
[    3.954976] system 00:05: [io  0x0c6f] has been reserved
[    3.960271] system 00:05: [io  0x0cd8-0x0cdf] has been reserved
[    3.966174] system 00:05: [io  0x0800-0x089f] has been reserved
[    3.972074] system 00:05: [io  0x0b00-0x0b0f] has been reserved
[    3.977967] system 00:05: [io  0x0b20-0x0b3f] has been reserved
[    3.983862] system 00:05: [io  0x0900-0x090f] has been reserved
[    3.989763] system 00:05: [io  0x0910-0x091f] has been reserved
[    3.995666] system 00:05: [mem 0xfec00000-0xfec00fff] could not be reserved
[    4.002604] system 00:05: [mem 0xfec01000-0xfec01fff] could not be reserved
[    4.009533] system 00:05: [mem 0xfedc0000-0xfedc0fff] has been reserved
[    4.016118] system 00:05: [mem 0xfee00000-0xfee00fff] has been reserved
[    4.022711] system 00:05: [mem 0xfed80000-0xfed8ffff] could not be reserved
[    4.029650] system 00:05: [mem 0xfec10000-0xfec10fff] has been reserved
[    4.036235] system 00:05: [mem 0xff000000-0xffffffff] has been reserved
[    4.043105] pnp: PnP ACPI: found 6 devices
[    4.052721] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    4.061577] NET: Registered PF_INET protocol family
[    4.066541] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    4.075907] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    4.084587] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    4.092302] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    4.100488] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    4.107913] TCP: Hash tables configured (established 262144 bind 65536)
[    4.114511] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    4.121389] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    4.128719] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    4.134360] pci 0000:04:01.0: bridge window [io  0x1000-0x0fff] to [bus 06-27] add_size 1000
[    4.142763] pci 0000:2a:04.0: bridge window [io  0x1000-0x0fff] to [bus 30] add_size 1000
[    4.150913] pci 0000:2a:04.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 30] add_size 200000 add_align 100000
[    4.162345] pci 0000:2a:04.0: bridge window [mem 0x00100000-0x000fffff] to [bus 30] add_size 200000 add_align 100000
[    4.172829] pci 0000:2a:05.0: bridge window [io  0x1000-0x0fff] to [bus 31] add_size 1000
[    4.180977] pci 0000:2a:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 31] add_size 200000 add_align 100000
[    4.192408] pci 0000:2a:05.0: bridge window [mem 0x00100000-0x000fffff] to [bus 31] add_size 200000 add_align 100000
[    4.202890] pci 0000:29:00.0: bridge window [io  0x1000-0x0fff] to [bus 2a-31] add_size 2000
[    4.211298] pci 0000:04:04.0: bridge window [io  0x1000-0x0fff] to [bus 29-4a] add_size 3000
[    4.219700] pci 0000:03:00.0: bridge window [io  0x1000-0x0fff] to [bus 04-4a] add_size 4000
[    4.228107] pci 0000:02:00.0: bridge window [io  0x1000-0x0fff] to [bus 03-4a] add_size 4000
[    4.236517] pci 0000:02:00.0: BAR 7: no space for [io  size 0x4000]
[    4.242762] pci 0000:02:00.0: BAR 7: failed to assign [io  size 0x4000]
[    4.249349] pci 0000:02:00.0: BAR 7: no space for [io  size 0x4000]
[    4.255596] pci 0000:02:00.0: BAR 7: failed to assign [io  size 0x4000]
[    4.262189] pci 0000:03:00.0: BAR 7: no space for [io  size 0x4000]
[    4.268430] pci 0000:03:00.0: BAR 7: failed to assign [io  size 0x4000]
[    4.275025] pci 0000:03:00.0: BAR 7: no space for [io  size 0x4000]
[    4.281270] pci 0000:03:00.0: BAR 7: failed to assign [io  size 0x4000]
[    4.287858] pci 0000:04:01.0: BAR 7: no space for [io  size 0x1000]
[    4.294103] pci 0000:04:01.0: BAR 7: failed to assign [io  size 0x1000]
[    4.300695] pci 0000:04:04.0: BAR 7: no space for [io  size 0x3000]
[    4.306936] pci 0000:04:04.0: BAR 7: failed to assign [io  size 0x3000]
[    4.313528] pci 0000:04:04.0: BAR 7: no space for [io  size 0x3000]
[    4.319766] pci 0000:04:04.0: BAR 7: failed to assign [io  size 0x3000]
[    4.326353] pci 0000:04:01.0: BAR 7: no space for [io  size 0x1000]
[    4.332599] pci 0000:04:01.0: BAR 7: failed to assign [io  size 0x1000]
[    4.339185] pci 0000:04:00.0: PCI bridge to [bus 05]
[    4.344141] pci 0000:04:00.0:   bridge window [mem 0xef100000-0xef1fffff]
[    4.350910] pci 0000:04:01.0: PCI bridge to [bus 06-27]
[    4.356117] pci 0000:04:01.0:   bridge window [mem 0xe7000000-0xeeffffff]
[    4.362882] pci 0000:04:01.0:   bridge window [mem 0xb0000000-0xb1ffffff 64bit pref]
[    4.370598] pci 0000:04:02.0: PCI bridge to [bus 28]
[    4.375549] pci 0000:04:02.0:   bridge window [mem 0xef000000-0xef0fffff]
[    4.382321] pci 0000:29:00.0: BAR 7: no space for [io  size 0x2000]
[    4.388568] pci 0000:29:00.0: BAR 7: failed to assign [io  size 0x2000]
[    4.395152] pci 0000:29:00.0: BAR 7: no space for [io  size 0x2000]
[    4.401398] pci 0000:29:00.0: BAR 7: failed to assign [io  size 0x2000]
[    4.407985] pci 0000:2a:04.0: BAR 8: no space for [mem size 0x00200000]
[    4.414577] pci 0000:2a:04.0: BAR 8: failed to assign [mem size 0x00200000]
[    4.421515] pci 0000:2a:04.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    4.429059] pci 0000:2a:04.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    4.436949] pci 0000:2a:05.0: BAR 8: no space for [mem size 0x00200000]
[    4.443541] pci 0000:2a:05.0: BAR 8: failed to assign [mem size 0x00200000]
[    4.450481] pci 0000:2a:05.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    4.458023] pci 0000:2a:05.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    4.465910] pci 0000:2a:04.0: BAR 7: no space for [io  size 0x1000]
[    4.472157] pci 0000:2a:04.0: BAR 7: failed to assign [io  size 0x1000]
[    4.478743] pci 0000:2a:05.0: BAR 7: no space for [io  size 0x1000]
[    4.484981] pci 0000:2a:05.0: BAR 7: failed to assign [io  size 0x1000]
[    4.491573] pci 0000:2a:05.0: BAR 8: no space for [mem size 0x00200000]
[    4.498166] pci 0000:2a:05.0: BAR 8: failed to assign [mem size 0x00200000]
[    4.505105] pci 0000:2a:05.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    4.512648] pci 0000:2a:05.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    4.520529] pci 0000:2a:05.0: BAR 7: no space for [io  size 0x1000]
[    4.526777] pci 0000:2a:05.0: BAR 7: failed to assign [io  size 0x1000]
[    4.533370] pci 0000:2a:04.0: BAR 8: no space for [mem size 0x00200000]
[    4.539962] pci 0000:2a:04.0: BAR 8: failed to assign [mem size 0x00200000]
[    4.546901] pci 0000:2a:04.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    4.554443] pci 0000:2a:04.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    4.562330] pci 0000:2a:04.0: BAR 7: no space for [io  size 0x1000]
[    4.568571] pci 0000:2a:04.0: BAR 7: failed to assign [io  size 0x1000]
[    4.575157] pci 0000:2c:03.0: PCI bridge to [bus 2d]
[    4.580119] pci 0000:2c:03.0:   bridge window [mem 0xdf100000-0xdf1fffff]
[    4.586906] pci 0000:2b:00.0: PCI bridge to [bus 2c-2d]
[    4.592120] pci 0000:2b:00.0:   bridge window [mem 0xdf100000-0xdf1fffff]
[    4.598905] pci 0000:2a:00.0: PCI bridge to [bus 2b-2d]
[    4.604120] pci 0000:2a:00.0:   bridge window [mem 0xdf100000-0xdf1fffff]
[    4.610896] pci 0000:2a:01.0: PCI bridge to [bus 2e]
[    4.615861] pci 0000:2a:01.0:   bridge window [mem 0xa0000000-0xa00fffff 64bit pref]
[    4.623584] pci 0000:2a:02.0: PCI bridge to [bus 2f]
[    4.628540] pci 0000:2a:02.0:   bridge window [mem 0xdf000000-0xdf0fffff]
[    4.635315] pci 0000:2a:04.0: PCI bridge to [bus 30]
[    4.640290] pci 0000:2a:05.0: PCI bridge to [bus 31]
[    4.645258] pci 0000:29:00.0: PCI bridge to [bus 2a-31]
[    4.650470] pci 0000:29:00.0:   bridge window [mem 0xdf000000-0xdf1fffff]
[    4.657232] pci 0000:29:00.0:   bridge window [mem 0xa0000000-0xa00fffff 64bit pref]
[    4.664953] pci 0000:04:04.0: PCI bridge to [bus 29-4a]
[    4.670168] pci 0000:04:04.0:   bridge window [mem 0xdf000000-0xe6ffffff]
[    4.676933] pci 0000:04:04.0:   bridge window [mem 0xa0000000-0xa1ffffff 64bit pref]
[    4.684652] pci 0000:03:00.0: PCI bridge to [bus 04-4a]
[    4.689861] pci 0000:03:00.0:   bridge window [mem 0xdf000000-0xef1fffff]
[    4.696626] pci 0000:03:00.0:   bridge window [mem 0xa0000000-0xb1ffffff 64bit pref]
[    4.704347] pci 0000:02:00.0: PCI bridge to [bus 03-4a]
[    4.709552] pci 0000:02:00.0:   bridge window [mem 0xdf000000-0xef1fffff]
[    4.716318] pci 0000:02:00.0:   bridge window [mem 0xa0000000-0xb1ffffff 64bit pref]
[    4.724038] pci 0000:02:04.0: PCI bridge to [bus 4b]
[    4.728986] pci 0000:02:04.0:   bridge window [mem 0xef600000-0xef6fffff]
[    4.735756] pci 0000:4d:00.0: PCI bridge to [bus 4e]
[    4.740702] pci 0000:4d:00.0:   bridge window [io  0xf000-0xffff]
[    4.746781] pci 0000:4d:00.0:   bridge window [mem 0xef500000-0xef5fffff]
[    4.753551] pci 0000:4d:06.0: PCI bridge to [bus 4f]
[    4.758516] pci 0000:4d:0e.0: PCI bridge to [bus 50]
[    4.763477] pci 0000:4c:00.0: PCI bridge to [bus 4d-50]
[    4.768682] pci 0000:4c:00.0:   bridge window [io  0xf000-0xffff]
[    4.774759] pci 0000:4c:00.0:   bridge window [mem 0xef500000-0xef5fffff]
[    4.781530] pci 0000:02:08.0: PCI bridge to [bus 4c-50]
[    4.786742] pci 0000:02:08.0:   bridge window [io  0xf000-0xffff]
[    4.792817] pci 0000:02:08.0:   bridge window [mem 0xef500000-0xef5fffff]
[    4.799586] pci 0000:02:09.0: PCI bridge to [bus 51]
[    4.804536] pci 0000:02:09.0:   bridge window [mem 0xef300000-0xef4fffff]
[    4.811302] pci 0000:01:00.2: PCI bridge to [bus 02-51]
[    4.816507] pci 0000:01:00.2:   bridge window [io  0xf000-0xffff]
[    4.822582] pci 0000:01:00.2:   bridge window [mem 0xdf000000-0xef6fffff]
[    4.829347] pci 0000:01:00.2:   bridge window [mem 0xa0000000-0xb1ffffff 64bit pref]
[    4.837066] pci 0000:00:02.1: PCI bridge to [bus 01-51]
[    4.842275] pci 0000:00:02.1:   bridge window [io  0xf000-0xffff]
[    4.848348] pci 0000:00:02.1:   bridge window [mem 0xdf000000-0xef7fffff]
[    4.855115] pci 0000:00:02.1:   bridge window [mem 0xa0000000-0xb1ffffff 64bit pref]
[    4.862831] pci 0000:00:02.2: PCI bridge to [bus 52]
[    4.867783] pci 0000:00:02.2:   bridge window [mem 0xefd00000-0xefdfffff]
[    4.874549] pci 0000:00:08.1: PCI bridge to [bus 53]
[    4.879498] pci 0000:00:08.1:   bridge window [io  0xe000-0xefff]
[    4.885573] pci 0000:00:08.1:   bridge window [mem 0xef900000-0xefcfffff]
[    4.892337] pci 0000:00:08.1:   bridge window [mem 0xc0000000-0xd01fffff 64bit pref]
[    4.900055] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    4.906215] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    4.912375] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    4.918536] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[    4.924697] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
[    4.931547] pci_bus 0000:00: resource 9 [mem 0xa0000000-0xefffffff window]
[    4.938391] pci_bus 0000:01: resource 0 [io  0xf000-0xffff]
[    4.943948] pci_bus 0000:01: resource 1 [mem 0xdf000000-0xef7fffff]
[    4.950195] pci_bus 0000:01: resource 2 [mem 0xa0000000-0xb1ffffff 64bit pref]
[    4.957392] pci_bus 0000:02: resource 0 [io  0xf000-0xffff]
[    4.962940] pci_bus 0000:02: resource 1 [mem 0xdf000000-0xef6fffff]
[    4.969185] pci_bus 0000:02: resource 2 [mem 0xa0000000-0xb1ffffff 64bit pref]
[    4.976377] pci_bus 0000:03: resource 1 [mem 0xdf000000-0xef1fffff]
[    4.982623] pci_bus 0000:03: resource 2 [mem 0xa0000000-0xb1ffffff 64bit pref]
[    4.989820] pci_bus 0000:04: resource 1 [mem 0xdf000000-0xef1fffff]
[    4.996059] pci_bus 0000:04: resource 2 [mem 0xa0000000-0xb1ffffff 64bit pref]
[    5.003256] pci_bus 0000:05: resource 1 [mem 0xef100000-0xef1fffff]
[    5.009501] pci_bus 0000:06: resource 1 [mem 0xe7000000-0xeeffffff]
[    5.015742] pci_bus 0000:06: resource 2 [mem 0xb0000000-0xb1ffffff 64bit pref]
[    5.022940] pci_bus 0000:28: resource 1 [mem 0xef000000-0xef0fffff]
[    5.029186] pci_bus 0000:29: resource 1 [mem 0xdf000000-0xe6ffffff]
[    5.035426] pci_bus 0000:29: resource 2 [mem 0xa0000000-0xa1ffffff 64bit pref]
[    5.042626] pci_bus 0000:2a: resource 1 [mem 0xdf000000-0xdf1fffff]
[    5.048872] pci_bus 0000:2a: resource 2 [mem 0xa0000000-0xa00fffff 64bit pref]
[    5.056068] pci_bus 0000:2b: resource 1 [mem 0xdf100000-0xdf1fffff]
[    5.062309] pci_bus 0000:2c: resource 1 [mem 0xdf100000-0xdf1fffff]
[    5.068556] pci_bus 0000:2d: resource 1 [mem 0xdf100000-0xdf1fffff]
[    5.074802] pci_bus 0000:2e: resource 2 [mem 0xa0000000-0xa00fffff 64bit pref]
[    5.081998] pci_bus 0000:2f: resource 1 [mem 0xdf000000-0xdf0fffff]
[    5.088240] pci_bus 0000:4b: resource 1 [mem 0xef600000-0xef6fffff]
[    5.094486] pci_bus 0000:4c: resource 0 [io  0xf000-0xffff]
[    5.100040] pci_bus 0000:4c: resource 1 [mem 0xef500000-0xef5fffff]
[    5.106280] pci_bus 0000:4d: resource 0 [io  0xf000-0xffff]
[    5.111836] pci_bus 0000:4d: resource 1 [mem 0xef500000-0xef5fffff]
[    5.118085] pci_bus 0000:4e: resource 0 [io  0xf000-0xffff]
[    5.123640] pci_bus 0000:4e: resource 1 [mem 0xef500000-0xef5fffff]
[    5.129886] pci_bus 0000:51: resource 1 [mem 0xef300000-0xef4fffff]
[    5.136127] pci_bus 0000:52: resource 1 [mem 0xefd00000-0xefdfffff]
[    5.142372] pci_bus 0000:53: resource 0 [io  0xe000-0xefff]
[    5.147921] pci_bus 0000:53: resource 1 [mem 0xef900000-0xefcfffff]
[    5.154159] pci_bus 0000:53: resource 2 [mem 0xc0000000-0xd01fffff 64bit pref]
[    5.161599] pci 0000:2d:00.0: MSI is not implemented on this device, disabling it
[    5.169058] pci 0000:2d:00.0: PME# is unreliable, disabling it
[    5.174872] pci 0000:2d:00.0: pci_fixup_no_msi_no_pme+0x0/0x3b took 12961 usecs
[    5.182247] pci 0000:2d:00.0: enabling device (0000 -> 0002)
[    5.187947] pci 0000:2d:00.1: MSI is not implemented on this device, disabling it
[    5.195405] pci 0000:2d:00.1: PME# is unreliable, disabling it
[    5.201220] pci 0000:2d:00.1: pci_fixup_no_msi_no_pme+0x0/0x3b took 12962 usecs
[    5.208511] pci 0000:2d:00.1: enabling device (0000 -> 0002)
[    5.214203] pci 0000:2d:00.2: MSI is not implemented on this device, disabling it
[    5.221653] pci 0000:2d:00.2: PME# is unreliable, disabling it
[    5.227461] pci 0000:2d:00.2: pci_fixup_no_msi_no_pme+0x0/0x3b took 12947 usecs
[    5.234787] pci 0000:2d:00.2: EHCI: unrecognized capability 00
[    5.240654] pci 0000:53:00.1: D0 power state depends on 0000:53:00.0
[    5.246992] pci 0000:53:00.3: extending delay after power-on from D3hot to 20 msec
[    5.254605] pci 0000:53:00.4: extending delay after power-on from D3hot to 20 msec
[    5.262170] PCI: CLS 64 bytes, default 64
[    5.266173] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    5.266236] Trying to unpack rootfs image as initramfs...
[    5.272589] software IO TLB: mapped [mem 0x000000008d000000-0x0000000091000000] (64MB)
[    5.285860] LVT offset 0 assigned for vector 0x400
[    5.290694] perf: AMD IBS detected (0x000003ff)
[    5.295399] workingset: timestamp_bits=60 max_order=23 bucket_order=0
[    5.304179] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    5.311551] io scheduler mq-deadline registered
[    5.316186] pcieport 0000:00:02.1: PME: Signaling with IRQ 27
[    5.322002] pcieport 0000:00:02.2: PME: Signaling with IRQ 28
[    5.327800] pcieport 0000:00:08.1: PME: Signaling with IRQ 29
[    5.334443] pcieport 0000:04:01.0: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.348249] pcieport 0000:04:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    5.362911] pcieport 0000:2a:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    5.378765] pcieport 0000:2a:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    5.395416] Freeing initrd memory: 14908K
[    5.399673] Estimated ratio of average max frequency by base frequency (times 1024): 1098
[    5.407832] ACPI: \_SB_.PLTF.C000: Found 3 idle states
[    5.413006] ACPI: \_SB_.PLTF.C002: Found 3 idle states
[    5.418170] ACPI: \_SB_.PLTF.C004: Found 3 idle states
[    5.423347] ACPI: \_SB_.PLTF.C006: Found 3 idle states
[    5.428526] ACPI: \_SB_.PLTF.C008: Found 3 idle states
[    5.433707] ACPI: \_SB_.PLTF.C00A: Found 3 idle states
[    5.438861] ACPI: \_SB_.PLTF.C001: Found 3 idle states
[    5.444038] ACPI: \_SB_.PLTF.C003: Found 3 idle states
[    5.449221] ACPI: \_SB_.PLTF.C005: Found 3 idle states
[    5.454421] ACPI: \_SB_.PLTF.C007: Found 3 idle states
[    5.459581] ACPI: \_SB_.PLTF.C009: Found 3 idle states
[    5.464741] ACPI: \_SB_.PLTF.C00B: Found 3 idle states
[    5.478225] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    5.505182] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    5.513873] brd: module loaded
[    5.517036] nvme nvme0: pci function 0000:4b:00.0
[    5.521758] nvme nvme1: pci function 0000:52:00.0
[    5.526520] Intel(R) 2.5G Ethernet Linux Driver
[    5.531051] Copyright(c) 2018 Intel Corporation.
[    5.531182] nvme nvme0: missing or invalid SUBNQN field.
[    5.533906] nvme nvme0: 15/0/0 default/read/poll queues
[    5.542721]  nvme0n1: p1 p2 p3
[    5.549249] igc 0000:51:00.0: PCIe PTM not supported by PCIe bus/controller
[    5.628078] igc 0000:51:00.0: 4.000 Gb/s available PCIe bandwidth (5.0 GT/s PCIe x1 link)
[    5.636228] igc 0000:51:00.0 eth0: MAC: d8:5e:d3:86:cc:c8
[    5.657867] nvme nvme1: missing or invalid SUBNQN field.
[    5.684723] r8169 0000:4e:00.0 eth1: RTL8125B, d8:5e:d3:86:cc:c6, XID 641, IRQ 72
[    5.692192] r8169 0000:4e:00.0 eth1: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[    5.700719] i8042: PNP: No PS/2 controller found.
[    5.705437] rtc_cmos 00:02: RTC can wake from S4
[    5.710263] rtc_cmos 00:02: registered as rtc0
[    5.714723] rtc_cmos 00:02: setting system clock to 2022-08-06T09:31:35 UTC (1659778295)
[    5.715418] nvme nvme1: allocated 128 MiB host memory buffer.
[    5.722786] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    5.737135] efifb: probing for efifb
[    5.740709] efifb: framebuffer at 0xc0000000, using 3072k, total 3072k
[    5.747212] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    5.753198] efifb: scrolling: redraw
[    5.756768] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    5.763111] Console: switching to colour frame buffer device 128x48
[    5.769807] fb0: EFI VGA frame buffer device
[    5.774096] ccp 0000:53:00.2: enabling device (0000 -> 0002)
[    5.789920] ccp 0000:53:00.2: tee enabled
[    5.793923] ccp 0000:53:00.2: psp enabled
[    5.798865] microcode: CPU0: patch_level=0x0a50000d
[    5.803751] microcode: CPU1: patch_level=0x0a50000d
[    5.808632] microcode: CPU2: patch_level=0x0a50000d
[    5.813520] microcode: CPU3: patch_level=0x0a50000d
[    5.818404] microcode: CPU4: patch_level=0x0a50000d
[    5.823275] microcode: CPU5: patch_level=0x0a50000d
[    5.828148] microcode: CPU6: patch_level=0x0a50000d
[    5.833119] microcode: CPU7: patch_level=0x0a50000d
[    5.838004] microcode: CPU8: patch_level=0x0a50000d
[    5.843119] microcode: CPU9: patch_level=0x0a50000d
[    5.848000] microcode: CPU10: patch_level=0x0a50000d
[    5.852958] microcode: CPU11: patch_level=0x0a50000d
[    5.857915] microcode: Microcode Update Driver: v2.2.
[    5.857917] IPI shorthand broadcast: enabled
[    5.867222] sched_clock: Marking stable (4355494257, 1507458394)->(5882672787, -19720136)
[    5.869425] nvme nvme1: 8/0/0 default/read/poll queues
[    5.881000] registered taskstats version 1
[    5.889027] nvme nvme1: Ignoring bogus Namespace Identifiers
[    5.895906]  nvme1n1: p1 p3 p4 p5
[    5.899843] Freeing unused kernel image (initmem) memory: 952K
[    6.043085] Write protecting the kernel read-only data: 12288k
[    6.049705] Freeing unused kernel image (text/rodata gap) memory: 2044K
[    6.056889] Freeing unused kernel image (rodata/data gap) memory: 180K
[    6.063629] Run /init as init process
[    6.099451] udevd[972]: starting version 3.2.9
[    6.372864] tsc: Refined TSC clocksource calibration: 3925.684 MHz
[    6.379204] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x712c427f03e, max_idle_ns: 881591097498 ns
[    6.389618] clocksource: Switched to clocksource tsc
[    7.152735] clocksource: timekeeping watchdog on CPU10: Marking clocksource 'tsc' as unstable because the skew is too large:
[    7.164059] clocksource:                       'hpet' wd_nsec: 503289663 wd_now: 4c6f2f8 wd_last: 458fdc8 mask: ffffffff
[    7.175040] clocksource:                       'tsc' cs_nsec: 499996520 cs_now: 170178539a cs_last: 168c79f2e4 mask: ffffffffffffffff
[    7.187351] clocksource:                       'tsc' is current clocksource.
[    7.194550] tsc: Marking TSC unstable due to clocksource watchdog
[    7.200813] TSC found unstable after boot, most likely due to broken BIOS. Use 'tsc=unstable'.
[    7.209560] sched_clock: Marking unstable (5693464229, 1507458537)<-(7220533357, -19720136)
[    7.218827] clocksource: Checking clocksource tsc synchronization from CPU 6 to CPUs 0,4-5,7-8,11.
[    7.228283] clocksource: Switched to clocksource hpet
[   11.082856] random: crng init done
[   11.087164] udevd[975]: starting eudev-3.2.9
[   11.096558] ACPI: \_TZ_.UAD0: Invalid passive threshold
[   11.102047] thermal LNXTHERM:00: registered as thermal_zone0
[   11.107995] ACPI: thermal: Thermal Zone [UAD0] (17 C)
[   11.113459] tg3 0000:2e:00.0: enabling device (0000 -> 0002)
[   11.119825] ahci 0000:01:00.1: SSS flag set, parallel bus scan disabled
[   11.126752] ahci 0000:01:00.1: AHCI 0001.0301 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
[   11.126998] ACPI: bus type USB registered
[   11.135156] ahci 0000:01:00.1: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part sxs deso sadm sds apst
[   11.135440] usbcore: registered new interface driver usbfs
[   11.140017] scsi host0: ahci
[   11.150403] usbcore: registered new interface driver hub
[   11.150456] cryptd: max_cpu_qlen set to 1000
[   11.150755] scsi host1: ahci
[   11.150985] usbcore: registered new device driver usb
[   11.151349] scsi host2: ahci
[   11.180954] scsi host3: ahci
[   11.184240] scsi host4: ahci
[   11.187480] scsi host5: ahci
[   11.190675] ata1: SATA max UDMA/133 abar m131072@0xef780000 port 0xef780100 irq 83
[   11.198562] ata2: SATA max UDMA/133 abar m131072@0xef780000 port 0xef780180 irq 83
[   11.206433] ata3: SATA max UDMA/133 abar m131072@0xef780000 port 0xef780200 irq 83
[   11.209004] tg3 0000:2e:00.0 eth2: Tigon3 [partno(BCM957761) rev 57785100] (PCI Express) MAC address c8:2a:14:4f:80:3e
[   11.214296] ata4: SATA max UDMA/133 abar m131072@0xef780000 port 0xef780280 irq 83
[   11.214753] tg3 0000:2e:00.0 eth2: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   11.215107] ata5: SATA max UDMA/133 abar m131072@0xef780000 port 0xef780300 irq 83
[   11.215434] tg3 0000:2e:00.0 eth2: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[   11.215753] ata6: SATA max UDMA/133 abar m131072@0xef780000 port 0xef780380 irq 83
[   11.216072] tg3 0000:2e:00.0 eth2: dma_rwctrl[00000001] dma_mask[64-bit]
[   11.274431] AVX2 version of gcm_enc/dec engaged.
[   11.279458] AES CTR mode by8 optimization enabled
[   11.287176] ACPI: bus type thunderbolt registered
[   11.292198] thunderbolt 0000:05:00.0: enabling device (0000 -> 0002)
[   11.298909] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   11.544188] ata1: SATA link down (SStatus 0 SControl 330)
[   11.877226] ata2: SATA link down (SStatus 0 SControl 330)
[   11.923925] thunderbolt 0-3: new device found, vendor=0x1 device=0x8002
[   11.930760] thunderbolt 0-3: Apple, Inc. Thunderbolt Display
[   12.213289] ata3: SATA link down (SStatus 0 SControl 330)
[   12.543679] ata4: SATA link down (SStatus 0 SControl 330)
[   13.643137] ata5: failed to resume link (SControl 0)
[   13.648349] ata5: SATA link down (SStatus 0 SControl 0)
[   14.753149] ata6: failed to resume link (SControl 0)
[   14.758363] ata6: SATA link down (SStatus 0 SControl 0)
[   14.764761] xhci_hcd 0000:01:00.0: xHCI Host Controller
[   14.764768] ehci-pci: EHCI PCI platform driver
[   14.765059] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 1
[   14.782572] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[   14.789149] ACPI Warning: SystemIO range 0x0000000000000B00-0x0000000000000B08 conflicts with OpRegion 0x0000000000000B00-0x0000000000000B0F (\GSA1.SMBI) (20220331/utaddress-204)
[   14.805615] ACPI: OSL: Resource conflict; ACPI support missing from driver?
[   14.813183] ACPI: bus type drm_connector registered
[   14.820889] xhci_hcd 0000:01:00.0: hcc params 0x0200ef81 hci version 0x110 quirks 0x0000000000000410
[   14.830429] ehci-pci 0000:2d:00.2: EHCI Host Controller
[   14.830443] xhci_hcd 0000:01:00.0: xHCI Host Controller
[   14.830744] ehci-pci 0000:2d:00.2: new USB bus registered, assigned bus number 2
[   14.831012] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 3
[   14.831569] xhci_hcd 0000:01:00.0: Host supports USB 3.1 Enhanced SuperSpeed
[   14.836798] ehci-pci 0000:2d:00.2: irq 34, io mem 0xdf100000
[   14.837099] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.19
[   14.872864] ehci-pci 0000:2d:00.2: USB 2.0 started, EHCI 1.00
[   14.878499] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   14.891946] usb usb1: Product: xHCI Host Controller
[   14.897133] usb usb1: Manufacturer: Linux 5.19.0+ xhci-hcd
[   14.902889] usb usb1: SerialNumber: 0000:01:00.0
[   14.908144] hub 1-0:1.0: USB hub found
[   14.912156] hub 1-0:1.0: 10 ports detected
[   14.916753] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.19
[   14.925303] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   14.932751] usb usb2: Product: EHCI Host Controller
[   14.937943] usb usb2: Manufacturer: Linux 5.19.0+ ehci_hcd
[   14.943744] usb usb2: SerialNumber: 0000:2d:00.2
[   14.949022] hub 2-0:1.0: USB hub found
[   14.953066] hub 2-0:1.0: 4 ports detected
[   14.957656] usb usb3: We don't know the algorithms for LPM for this host, disabling LPM.
[   14.967655] pcieport 0000:2a:05.0: pciehp: pciehp_isr: no response from device
[   15.167079] usb usb3: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.19
[   15.183060] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   15.190488] usb usb3: Product: xHCI Host Controller
[   15.190650] [drm] amdgpu kernel modesetting enabled.
[   15.190780] usb usb3: Manufacturer: Linux 5.19.0+ xhci-hcd
[   15.193769] amdgpu: CRAT table disabled by module option
[   15.196287] usb usb3: SerialNumber: 0000:01:00.0
[   15.196524] amdgpu: Virtual CRAT table created for CPU
[   15.196942] hub 3-0:1.0: USB hub found
[   15.197097] amdgpu: Topology: Add CPU node
[   15.197100] ohci-pci: OHCI PCI platform driver
[   15.197181] ohci-pci 0000:2d:00.0: OHCI PCI host controller
[   15.197383] hub 3-0:1.0: 4 ports detected
[   15.198026] ohci-pci 0000:2d:00.0: new USB bus registered, assigned bus number 4
[   15.198053] ohci-pci 0000:2d:00.0: irq 108, io mem 0xdf102000
[   15.259392] xhci_hcd 0000:28:00.0: xHCI Host Controller
[   15.259394] xhci_hcd 0000:28:00.0: new USB bus registered, assigned bus number 5
[   15.259937] Console: switching to colour dummy device 80x25
[   15.260584] xhci_hcd 0000:28:00.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000200009810
[   15.266966] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.19
[   15.278116] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   15.278552] xhci_hcd 0000:28:00.0: xHCI Host Controller
[   15.287234] usb usb4: Product: OHCI PCI host controller
[   15.313137] usb usb4: Manufacturer: Linux 5.19.0+ ohci_hcd
[   15.313138] usb usb4: SerialNumber: 0000:2d:00.0
[   15.313238] hub 4-0:1.0: USB hub found
[   15.318604] amdgpu 0000:53:00.0: vgaarb: deactivate vga console
[   15.323244] hub 4-0:1.0: 2 ports detected
[   15.336932] amdgpu 0000:53:00.0: enabling device (0006 -> 0007)
[   15.337211] xhci_hcd 0000:28:00.0: new USB bus registered, assigned bus number 6
[   15.337214] xhci_hcd 0000:28:00.0: Host supports USB 3.1 Enhanced SuperSpeed
[   15.337241] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.19
[   15.337243] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   15.337244] usb usb5: Product: xHCI Host Controller
[   15.337245] usb usb5: Manufacturer: Linux 5.19.0+ xhci-hcd
[   15.337245] usb usb5: SerialNumber: 0000:28:00.0
[   15.337357] hub 5-0:1.0: USB hub found
[   15.337364] hub 5-0:1.0: 2 ports detected
[   15.337451] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.19
[   15.337453] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   15.337453] usb usb6: Product: xHCI Host Controller
[   15.337454] usb usb6: Manufacturer: Linux 5.19.0+ xhci-hcd
[   15.337455] usb usb6: SerialNumber: 0000:28:00.0
[   15.337562] hub 6-0:1.0: USB hub found
[   15.337570] hub 6-0:1.0: 2 ports detected
[   15.337689] xhci_hcd 0000:53:00.3: xHCI Host Controller
[   15.337692] xhci_hcd 0000:53:00.3: new USB bus registered, assigned bus number 7
[   15.337792] xhci_hcd 0000:53:00.3: hcc params 0x0268ffe5 hci version 0x110 quirks 0x0000020000000410
[   15.337963] xhci_hcd 0000:53:00.3: xHCI Host Controller
[   15.337964] xhci_hcd 0000:53:00.3: new USB bus registered, assigned bus number 8
[   15.337966] xhci_hcd 0000:53:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[   15.337985] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.19
[   15.337987]

00:00.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Renoir Root Complex
	Subsystem: Advanced Micro Devices, Inc. [AMD] Renoir Root Complex
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

00:00.2 IOMMU: Advanced Micro Devices, Inc. [AMD] Renoir IOMMU
	Subsystem: Advanced Micro Devices, Inc. [AMD] Renoir IOMMU
	Control: I/O- Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 255
	Capabilities: [40] Secure device <?>
	Capabilities: [64] MSI: Enable- Count=1/4 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [74] HyperTransport: MSI Mapping Enable+ Fixed+

00:01.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Renoir PCIe Dummy Host Bridge
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

00:02.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Renoir PCIe Dummy Host Bridge
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

00:02.1 PCI bridge: Advanced Micro Devices, Inc. [AMD] Renoir PCIe GPP Bridge (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin ? routed to IRQ 27
	Bus: primary=00, secondary=01, subordinate=51, sec-latency=0
	I/O behind bridge: 0000f000-0000ffff [size=4K]
	Memory behind bridge: df000000-ef7fffff [size=264M]
	Prefetchable memory behind bridge: 00000000a0000000-00000000b1ffffff [size=288M]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [58] Express (v2) Root Port (Slot+), MSI 00
		DevCap:	MaxPayload 512 bytes, PhantFunc 0
			ExtTag+ RBE+
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
		LnkCap:	Port #2, Speed 8GT/s, Width x4, ASPM not supported
			ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 8GT/s (ok), Width x4 (ok)
			TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
			Slot #0, PowerLimit 75.000W; Interlock- NoCompl+
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet- LinkState+
		RootCap: CRSVisible+
		RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible+
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix+, MaxEETLPPrefixes 1
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- LN System CLS Not Supported, TPHComp+ ExtTPHComp- ARIFwd+
			 AtomicOpsCap: Routing- 32bit+ 64bit+ 128bitCAS-
		DevCtl2: Completion Timeout: 65ms to 210ms, TimeoutDis- LTR+ OBFF Disabled, ARIFwd-
			 AtomicOpsCtl: ReqEn- EgressBlck-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete+ EqualizationPhase1+
			 EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee04000  Data: 0021
	Capabilities: [c0] Subsystem: Advanced Micro Devices, Inc. [AMD] Renoir PCIe GPP Bridge
	Capabilities: [c8] HyperTransport: MSI Mapping Enable+ Fixed+
	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
	Capabilities: [270 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [2a0 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans+
		ACSCtl:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
	Capabilities: [3c4 v1] Designated Vendor-Specific: Vendor=1022 ID=0001 Rev=1 Len=44 <?>
	Kernel driver in use: pcieport

00:02.2 PCI bridge: Advanced Micro Devices, Inc. [AMD] Renoir PCIe GPP Bridge (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin ? routed to IRQ 28
	Bus: primary=00, secondary=52, subordinate=52, sec-latency=0
	I/O behind bridge: [disabled]
	Memory behind bridge: efd00000-efdfffff [size=1M]
	Prefetchable memory behind bridge: [disabled]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [58] Express (v2) Root Port (Slot+), MSI 00
		DevCap:	MaxPayload 512 bytes, PhantFunc 0
			ExtTag+ RBE+
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 256 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
		LnkCap:	Port #1, Speed 8GT/s, Width x4, ASPM not supported
			ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 8GT/s (ok), Width x4 (ok)
			TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
			Slot #0, PowerLimit 75.000W; Interlock- NoCompl+
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet- LinkState+
		RootCap: CRSVisible+
		RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible+
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix+, MaxEETLPPrefixes 1
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- LN System CLS Not Supported, TPHComp+ ExtTPHComp- ARIFwd+
			 AtomicOpsCap: Routing- 32bit+ 64bit+ 128bitCAS-
		DevCtl2: Completion Timeout: 65ms to 210ms, TimeoutDis- LTR+ OBFF Disabled, ARIFwd-
			 AtomicOpsCtl: ReqEn- EgressBlck-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete+ EqualizationPhase1+
			 EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee06000  Data: 0021
	Capabilities: [c0] Subsystem: Advanced Micro Devices, Inc. [AMD] Renoir PCIe GPP Bridge
	Capabilities: [c8] HyperTransport: MSI Mapping Enable+ Fixed+
	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
	Capabilities: [270 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [2a0 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans+
		ACSCtl:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
	Capabilities: [3c4 v1] Designated Vendor-Specific: Vendor=1022 ID=0001 Rev=1 Len=44 <?>
	Kernel driver in use: pcieport

00:08.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Renoir PCIe Dummy Host Bridge
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

00:08.1 PCI bridge: Advanced Micro Devices, Inc. [AMD] Renoir Internal PCIe GPP Bridge to Bus (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 29
	Bus: primary=00, secondary=53, subordinate=53, sec-latency=0
	I/O behind bridge: 0000e000-0000efff [size=4K]
	Memory behind bridge: ef900000-efcfffff [size=4M]
	Prefetchable memory behind bridge: 00000000c0000000-00000000d01fffff [size=258M]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [58] Express (v2) Root Port (Slot-), MSI 00
		DevCap:	MaxPayload 512 bytes, PhantFunc 0
			ExtTag+ RBE+
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 256 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <64ns, L1 <1us
			ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 8GT/s (ok), Width x16 (ok)
			TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
		RootCap: CRSVisible+
		RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible+
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-
			 10BitTagComp+ 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix+, MaxEETLPPrefixes 4
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd-
			 AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled, ARIFwd-
			 AtomicOpsCtl: ReqEn- EgressBlck-
		LnkCap2: Supported Link Speeds: 2.5-16GT/s, Crosslink- Retimer+ 2Retimers+ DRS-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete+ EqualizationPhase1+
			 EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee08000  Data: 0021
	Capabilities: [c0] Subsystem: Advanced Micro Devices, Inc. [AMD] Renoir Internal PCIe GPP Bridge to Bus
	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
	Capabilities: [270 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [2a0 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans+
		ACSCtl:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
	Capabilities: [400 v1] Data Link Feature <?>
	Capabilities: [410 v1] Physical Layer 16.0 GT/s <?>
	Capabilities: [440 v1] Lane Margining at the Receiver <?>
	Kernel driver in use: pcieport

00:14.0 SMBus: Advanced Micro Devices, Inc. [AMD] FCH SMBus Controller (rev 51)
	Subsystem: Gigabyte Technology Co., Ltd FCH SMBus Controller
	Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap- 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Kernel modules: i2c_piix4

00:14.3 ISA bridge: Advanced Micro Devices, Inc. [AMD] FCH LPC Bridge (rev 51)
	Subsystem: Gigabyte Technology Co., Ltd FCH LPC Bridge
	Control: I/O+ Mem+ BusMaster+ SpecCycle+ MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0

00:18.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 166a
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

00:18.1 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 166b
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

00:18.2 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 166c
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

00:18.3 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 166d
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Kernel driver in use: k10temp
	Kernel modules: k10temp

00:18.4 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 166e
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

00:18.5 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 166f
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

00:18.6 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 1670
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

00:18.7 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 1671
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

01:00.0 USB controller: Advanced Micro Devices, Inc. [AMD] Device 43ee (prog-if 30 [XHCI])
	Subsystem: ASMedia Technology Inc. Device 1142
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 25
	Region 0: Memory at ef7a0000 (64-bit, non-prefetchable) [size=32K]
	Capabilities: [50] MSI: Enable- Count=1/8 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [68] MSI-X: Enable+ Count=8 Masked-
		Vector table: BAR=0 offset=00002000
		PBA: BAR=0 offset=00002080
	Capabilities: [78] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=55mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [80] Express (v2) Legacy Endpoint, MSI 00
		DevCap:	MaxPayload 512 bytes, PhantFunc 0, Latency L0s <64ns, L1 <64us
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr+ NonFatalErr- FatalErr- UnsupReq+ AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x4, ASPM L0s L1, Exit Latency L0s <2us, L1 <32us
			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 8GT/s (ok), Width x4 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled,
			 AtomicOpsCtl: ReqEn-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete+ EqualizationPhase1+
			 EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [200 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [300 v1] Latency Tolerance Reporting
		Max snoop latency: 0ns
		Max no snoop latency: 0ns
	Kernel driver in use: xhci_hcd
	Kernel modules: xhci_pci

01:00.1 SATA controller: Advanced Micro Devices, Inc. [AMD] Device 43eb (prog-if 01 [AHCI 1.0])
	Subsystem: ASMedia Technology Inc. Device 1062
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin B routed to IRQ 79
	Region 5: Memory at ef780000 (32-bit, non-prefetchable) [size=128K]
	Expansion ROM at ef700000 [disabled] [size=512K]
	Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee0b000  Data: 0024
	Capabilities: [78] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=55mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [80] Express (v2) Legacy Endpoint, MSI 00
		DevCap:	MaxPayload 512 bytes, PhantFunc 0, Latency L0s <64ns, L1 <64us
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr+ NonFatalErr- FatalErr- UnsupReq+ AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x4, ASPM L0s L1, Exit Latency L0s <2us, L1 <32us
			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 8GT/s (ok), Width x4 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled,
			 AtomicOpsCtl: ReqEn-
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Kernel driver in use: ahci
	Kernel modules: ahci

01:00.2 PCI bridge: Advanced Micro Devices, Inc. [AMD] Device 43e9 (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin C routed to IRQ 30
	Bus: primary=01, secondary=02, subordinate=51, sec-latency=0
	I/O behind bridge: 0000f000-0000ffff [size=4K]
	Memory behind bridge: df000000-ef6fffff [size=263M]
	Prefetchable memory behind bridge: 00000000a0000000-00000000b1ffffff [size=288M]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee0a000  Data: 0021
	Capabilities: [78] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=55mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [80] Express (v2) Upstream Port, MSI 00
		DevCap:	MaxPayload 512 bytes, PhantFunc 0
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ SlotPowerLimit 75.000W
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr+ NonFatalErr- FatalErr- UnsupReq+ AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x4, ASPM L0s L1, Exit Latency L0s <2us, L1 <32us
			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM Disabled; Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 8GT/s (ok), Width x4 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS-
			 AtomicOpsCap: Routing-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled,
			 AtomicOpsCtl: EgressBlck-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [c0] Subsystem: ASMedia Technology Inc. Device 0201
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Kernel driver in use: pcieport

02:00.0 PCI bridge: Advanced Micro Devices, Inc. [AMD] Device 43ea (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 31
	Bus: primary=02, secondary=03, subordinate=4a, sec-latency=0
	I/O behind bridge: [disabled]
	Memory behind bridge: df000000-ef1fffff [size=258M]
	Prefetchable memory behind bridge: 00000000a0000000-00000000b1ffffff [size=288M]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee01000  Data: 0021
	Capabilities: [78] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=55mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [80] Express (v2) Downstream Port (Slot+), MSI 00
		DevCap:	MaxPayload 512 bytes, PhantFunc 0
			ExtTag+ RBE+
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x4, ASPM L1, Exit Latency L1 <64us
			ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+
		LnkCtl:	ASPM Disabled; Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 8GT/s (ok), Width x4 (ok)
			TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
			Slot #1, PowerLimit 26.000W; Interlock- NoCompl-
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet+ LinkState+
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- ARIFwd-
			 AtomicOpsCap: Routing-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled, ARIFwd-
			 AtomicOpsCtl: EgressBlck-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete+ EqualizationPhase1+
			 EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [c0] Subsystem: ASMedia Technology Inc. Device 3308
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [200 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Kernel driver in use: pcieport

02:04.0 PCI bridge: Advanced Micro Devices, Inc. [AMD] Device 43ea (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 32
	Bus: primary=02, secondary=4b, subordinate=4b, sec-latency=0
	I/O behind bridge: [disabled]
	Memory behind bridge: ef600000-ef6fffff [size=1M]
	Prefetchable memory behind bridge: [disabled]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee03000  Data: 0021
	Capabilities: [78] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=55mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [80] Express (v2) Downstream Port (Slot+), MSI 00
		DevCap:	MaxPayload 512 bytes, PhantFunc 0
			ExtTag+ RBE+
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #4, Speed 8GT/s, Width x4, ASPM L1, Exit Latency L1 <64us
			ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+
		LnkCtl:	ASPM Disabled; Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 8GT/s (ok), Width x4 (ok)
			TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
			Slot #1, PowerLimit 26.000W; Interlock- NoCompl-
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet+ LinkState+
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- ARIFwd-
			 AtomicOpsCap: Routing-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled, ARIFwd-
			 AtomicOpsCtl: EgressBlck-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete+ EqualizationPhase1+
			 EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [c0] Subsystem: ASMedia Technology Inc. Device 3308
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [200 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Kernel driver in use: pcieport

02:08.0 PCI bridge: Advanced Micro Devices, Inc. [AMD] Device 43ea (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 33
	Bus: primary=02, secondary=4c, subordinate=50, sec-latency=0
	I/O behind bridge: 0000f000-0000ffff [size=4K]
	Memory behind bridge: ef500000-ef5fffff [size=1M]
	Prefetchable memory behind bridge: [disabled]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee05000  Data: 0021
	Capabilities: [78] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=55mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [80] Express (v2) Downstream Port (Slot+), MSI 00
		DevCap:	MaxPayload 512 bytes, PhantFunc 0
			ExtTag+ RBE+
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #8, Speed 8GT/s, Width x1, ASPM L1, Exit Latency L1 <64us
			ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+
		LnkCtl:	ASPM Disabled; Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s (downgraded), Width x1 (ok)
			TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
			Slot #1, PowerLimit 26.000W; Interlock- NoCompl-
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet+ LinkState+
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- ARIFwd-
			 AtomicOpsCap: Routing-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled, ARIFwd-
			 AtomicOpsCtl: EgressBlck-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [c0] Subsystem: ASMedia Technology Inc. Device 3308
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [200 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Kernel driver in use: pcieport

02:09.0 PCI bridge: Advanced Micro Devices, Inc. [AMD] Device 43ea (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 35
	Bus: primary=02, secondary=51, subordinate=51, sec-latency=0
	I/O behind bridge: [disabled]
	Memory behind bridge: ef300000-ef4fffff [size=2M]
	Prefetchable memory behind bridge: [disabled]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee07000  Data: 0021
	Capabilities: [78] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=55mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [80] Express (v2) Downstream Port (Slot+), MSI 00
		DevCap:	MaxPayload 512 bytes, PhantFunc 0
			ExtTag+ RBE+
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #9, Speed 8GT/s, Width x1, ASPM L1, Exit Latency L1 <64us
			ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+
		LnkCtl:	ASPM Disabled; Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s (downgraded), Width x1 (ok)
			TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt+
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
			Slot #1, PowerLimit 26.000W; Interlock- NoCompl-
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet+ LinkState+
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- ARIFwd-
			 AtomicOpsCap: Routing-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled, ARIFwd-
			 AtomicOpsCtl: EgressBlck-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [c0] Subsystem: ASMedia Technology Inc. Device 3308
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [200 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Kernel driver in use: pcieport

03:00.0 PCI bridge: Intel Corporation JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018] (rev 06) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 36
	Bus: primary=03, secondary=04, subordinate=4a, sec-latency=0
	I/O behind bridge: [disabled]
	Memory behind bridge: df000000-ef1fffff [size=258M]
	Prefetchable memory behind bridge: 00000000a0000000-00000000b1ffffff [size=288M]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [88] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee09000  Data: 0021
	Capabilities: [ac] Subsystem: Gigabyte Technology Co., Ltd JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018]
	Capabilities: [c0] Express (v2) Upstream Port, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ SlotPowerLimit 26.000W
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x4, ASPM L1, Exit Latency L1 <2us
			ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM Disabled; Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 8GT/s (ok), Width x4 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS-
			 AtomicOpsCap: Routing-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled,
			 AtomicOpsCtl: EgressBlck-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete+ EqualizationPhase1+
			 EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [100 v1] Device Serial Number d9-a6-50-49-69-c9-a0-00
	Capabilities: [200 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [300 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed+ WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [400 v1] Power Budgeting <?>
	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=100 <?>
	Capabilities: [600 v1] Vendor Specific Information: ID=8086 Rev=2 Len=04c <?>
	Capabilities: [700 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [800 v1] Latency Tolerance Reporting
		Max snoop latency: 0ns
		Max no snoop latency: 0ns
	Capabilities: [a00 v1] L1 PM Substates
		L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+
			  PortCommonModeRestoreTime=0us PortTPowerOnTime=10us
		L1SubCtl1: PCI-PM_L1.2- PCI-PM_L1.1- ASPM_L1.2- ASPM_L1.1-
			   T_CommonMode=0us LTR1.2_Threshold=0ns
		L1SubCtl2: T_PwrOn=10us
	Capabilities: [b00 v1] Precision Time Measurement
		PTMCap: Requester:- Responder:- Root:-
		PTMClockGranularity: Unimplemented
		PTMControl: Enabled:- RootSelected:-
		PTMEffectiveGranularity: Unknown
	Kernel driver in use: pcieport

04:00.0 PCI bridge: Intel Corporation JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018] (rev 06) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 37
	Bus: primary=04, secondary=05, subordinate=05, sec-latency=0
	I/O behind bridge: [disabled]
	Memory behind bridge: ef100000-ef1fffff [size=1M]
	Prefetchable memory behind bridge: [disabled]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [88] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee0b000  Data: 0021
	Capabilities: [ac] Subsystem: Gigabyte Technology Co., Ltd JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018]
	Capabilities: [c0] Express (v2) Downstream Port (Slot+), MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0
			ExtTag+ RBE+
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 2.5GT/s, Width x4, ASPM L1, Exit Latency L1 <1us
			ClockPM- Surprise- LLActRep- BwNot+ ASPMOptComp+
		LnkCtl:	ASPM Disabled; Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s (ok), Width x4 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt+ ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
			Slot #0, PowerLimit 0.000W; Interlock- NoCompl+
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet+ LinkState-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- ARIFwd-
			 AtomicOpsCap: Routing-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled, ARIFwd-
			 AtomicOpsCtl: EgressBlck-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [50] Capability ID 0x15 [0000]
	Capabilities: [100 v1] Device Serial Number d9-a6-50-49-69-c9-a0-00
	Capabilities: [200 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [300 v1] Virtual Channel
		Caps:	LPEVC=1 RefClk=100ns PATEntryBits=1
		Arb:	Fixed+ WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed+ WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
		VC1:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed+ WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable- ID=1 ArbSelect=Fixed TC/VC=00
			Status:	NegoPending+ InProgress-
	Capabilities: [400 v1] Power Budgeting <?>
	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=100 <?>
	Capabilities: [600 v1] Vendor Specific Information: ID=8086 Rev=2 Len=04c <?>
	Capabilities: [700 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [900 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir- CmpltRedir- UpstreamFwd+ EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
	Kernel driver in use: pcieport

04:01.0 PCI bridge: Intel Corporation JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018] (rev 06) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 38
	Bus: primary=04, secondary=06, subordinate=27, sec-latency=0
	I/O behind bridge: [disabled]
	Memory behind bridge: e7000000-eeffffff [size=128M]
	Prefetchable memory behind bridge: 00000000b0000000-00000000b1ffffff [size=32M]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [88] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee00000  Data: 0021
	Capabilities: [ac] Subsystem: Gigabyte Technology Co., Ltd JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018]
	Capabilities: [c0] Express (v2) Downstream Port (Slot+), MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0
			ExtTag+ RBE+
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #1, Speed 2.5GT/s, Width x4, ASPM L1, Exit Latency L1 <1us
			ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+
		LnkCtl:	ASPM Disabled; Disabled- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s (ok), Width x4 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+
			Slot #1, PowerLimit 0.000W; Interlock- NoCompl+
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet+ CmdCplt- HPIrq+ LinkChg+
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock-
			Changed: MRL- PresDet- LinkState-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- ARIFwd-
			 AtomicOpsCap: Routing-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled, ARIFwd-
			 AtomicOpsCtl: EgressBlck-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [50] Capability ID 0x15 [0000]
	Capabilities: [100 v1] Device Serial Number d9-a6-50-49-69-c9-a0-00
	Capabilities: [200 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [300 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed+ WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending+ InProgress-
	Capabilities: [400 v1] Power Budgeting <?>
	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=100 <?>
	Capabilities: [600 v1] Vendor Specific Information: ID=8086 Rev=2 Len=04c <?>
	Capabilities: [700 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [900 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir- CmpltRedir- UpstreamFwd+ EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
	Kernel driver in use: pcieport

04:02.0 PCI bridge: Intel Corporation JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018] (rev 06) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 39
	Bus: primary=04, secondary=28, subordinate=28, sec-latency=0
	I/O behind bridge: [disabled]
	Memory behind bridge: ef000000-ef0fffff [size=1M]
	Prefetchable memory behind bridge: [disabled]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [88] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee02000  Data: 0022
	Capabilities: [ac] Subsystem: Gigabyte Technology Co., Ltd JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018]
	Capabilities: [c0] Express (v2) Downstream Port (Slot+), MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0
			ExtTag+ RBE+
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #2, Speed 2.5GT/s, Width x4, ASPM L1, Exit Latency L1 <1us
			ClockPM- Surprise- LLActRep- BwNot+ ASPMOptComp+
		LnkCtl:	ASPM Disabled; Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s (ok), Width x4 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt+ ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
			Slot #0, PowerLimit 0.000W; Interlock- NoCompl+
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet+ LinkState-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- ARIFwd-
			 AtomicOpsCap: Routing-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled, ARIFwd-
			 AtomicOpsCtl: EgressBlck-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [50] Capability ID 0x15 [0000]
	Capabilities: [100 v1] Device Serial Number d9-a6-50-49-69-c9-a0-00
	Capabilities: [200 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [300 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed+ WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [400 v1] Power Budgeting <?>
	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=100 <?>
	Capabilities: [600 v1] Vendor Specific Information: ID=8086 Rev=2 Len=04c <?>
	Capabilities: [700 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [900 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir- CmpltRedir- UpstreamFwd+ EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
	Kernel driver in use: pcieport

04:04.0 PCI bridge: Intel Corporation JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018] (rev 06) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 40
	Bus: primary=04, secondary=29, subordinate=4a, sec-latency=0
	I/O behind bridge: [disabled]
	Memory behind bridge: df000000-e6ffffff [size=128M]
	Prefetchable memory behind bridge: 00000000a0000000-00000000a1ffffff [size=32M]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME+
	Capabilities: [88] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee04000  Data: 0022
	Capabilities: [ac] Subsystem: Gigabyte Technology Co., Ltd JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018]
	Capabilities: [c0] Express (v2) Downstream Port (Slot+), MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0
			ExtTag+ RBE+
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #4, Speed 2.5GT/s, Width x4, ASPM L1, Exit Latency L1 <1us
			ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+
		LnkCtl:	ASPM Disabled; Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s (ok), Width x4 (ok)
			TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+
			Slot #4, PowerLimit 0.000W; Interlock- NoCompl+
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet+ CmdCplt- HPIrq+ LinkChg+
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet- LinkState-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- ARIFwd-
			 AtomicOpsCap: Routing-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled, ARIFwd-
			 AtomicOpsCtl: EgressBlck-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [50] Capability ID 0x15 [0000]
	Capabilities: [100 v1] Device Serial Number d9-a6-50-49-69-c9-a0-00
	Capabilities: [200 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [300 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed+ WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [400 v1] Power Budgeting <?>
	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=100 <?>
	Capabilities: [600 v1] Vendor Specific Information: ID=8086 Rev=2 Len=04c <?>
	Capabilities: [700 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [900 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir- CmpltRedir- UpstreamFwd+ EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
	Kernel driver in use: pcieport

05:00.0 System peripheral: Intel Corporation JHL7540 Thunderbolt 3 NHI [Titan Ridge 4C 2018] (rev 06)
	Subsystem: Gigabyte Technology Co., Ltd JHL7540 Thunderbolt 3 NHI [Titan Ridge 4C 2018]
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 25
	Region 0: Memory at ef100000 (32-bit, non-prefetchable) [size=256K]
	Region 1: Memory at ef140000 (32-bit, non-prefetchable) [size=4K]
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [88] MSI: Enable- Count=1/1 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [c0] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0.000W
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 2.5GT/s, Width x4, ASPM L1, Exit Latency L1 <1us
			ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp-
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s (ok), Width x4 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range B, TimeoutDis+ NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- TPHComp- ExtTPHComp-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled,
			 AtomicOpsCtl: ReqEn-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [a0] MSI-X: Enable+ Count=16 Masked-
		Vector table: BAR=1 offset=00000000
		PBA: BAR=1 offset=00000fa0
	Capabilities: [100 v1] Device Serial Number d9-a6-50-49-69-c9-a0-00
	Capabilities: [200 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [300 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=01
			Status:	NegoPending- InProgress-
	Capabilities: [400 v1] Power Budgeting <?>
	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=100 <?>
	Capabilities: [600 v1] Latency Tolerance Reporting
		Max snoop latency: 0ns
		Max no snoop latency: 0ns
	Kernel driver in use: thunderbolt
	Kernel modules: thunderbolt

28:00.0 USB controller: Intel Corporation JHL7540 Thunderbolt 3 USB Controller [Titan Ridge 4C 2018] (rev 06) (prog-if 30 [XHCI])
	Subsystem: Gigabyte Technology Co., Ltd JHL7540 Thunderbolt 3 USB Controller [Titan Ridge 4C 2018]
	Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin A routed to IRQ 104
	Region 0: Memory at ef000000 (32-bit, non-prefetchable) [size=64K]
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D3 NoSoftRst- PME-Enable+ DSel=0 DScale=0 PME-
	Capabilities: [88] MSI: Enable+ Count=1/8 Maskable- 64bit+
		Address: 00000000fee09000  Data: 0025
	Capabilities: [c0] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0.000W
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 2.5GT/s, Width x4, ASPM L1, Exit Latency L1 <1us
			ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s (ok), Width x4 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range B, TimeoutDis+ NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- TPHComp- ExtTPHComp-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled,
			 AtomicOpsCtl: ReqEn-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [100 v1] Device Serial Number d9-a6-50-49-69-c9-a0-00
	Capabilities: [200 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [300 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=01
			Status:	NegoPending- InProgress-
	Capabilities: [400 v1] Power Budgeting <?>
	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=100 <?>
	Capabilities: [600 v1] Vendor Specific Information: ID=8086 Rev=2 Len=04c <?>
	Capabilities: [700 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [800 v1] Latency Tolerance Reporting
		Max snoop latency: 0ns
		Max no snoop latency: 0ns
	Kernel driver in use: xhci_hcd
	Kernel modules: xhci_pci

29:00.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010] (prog-if 00 [Normal decode])
	Physical Slot: 4
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 125
	Bus: primary=29, secondary=2a, subordinate=4a, sec-latency=0
	I/O behind bridge: [disabled]
	Memory behind bridge: df000000-e6ffffff [size=128M]
	Prefetchable memory behind bridge: 00000000a0000000-00000000a1ffffff [size=32M]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
	Capabilities: [88] MSI: Enable+ Count=1/32 Maskable- 64bit+
		Address: 00000000fee01000  Data: 0027
	Capabilities: [c0] Express (v2) Upstream Port, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ SlotPowerLimit 0.000W
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 2.5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s unlimited, L1 unlimited
			ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp-
		LnkCtl:	ASPM Disabled; Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s (ok), Width x4 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS-
			 AtomicOpsCap: Routing-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled,
			 AtomicOpsCtl: EgressBlck-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [100 v1] Device Serial Number 01-00-00-00-00-c9-a0-00
	Capabilities: [200 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [300 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [400 v1] Power Budgeting <?>
	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=01c <?>
	Kernel driver in use: pcieport

2a:00.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010] (prog-if 00 [Normal decode])
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 126
	Bus: primary=2a, secondary=2b, subordinate=2d, sec-latency=0
	I/O behind bridge: [disabled]
	Memory behind bridge: df000000-df0fffff [size=1M]
	Prefetchable memory behind bridge: 00000000a0000000-00000000a00fffff [size=1M]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
	Capabilities: [88] MSI: Enable+ Count=1/32 Maskable- 64bit+
		Address: 00000000fee03000  Data: 0027
	Capabilities: [c0] Express (v2) Downstream Port (Slot+), MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0
			ExtTag+ RBE+
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 2.5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s unlimited, L1 unlimited
			ClockPM- Surprise- LLActRep- BwNot+ ASPMOptComp-
		LnkCtl:	ASPM Disabled; Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s (ok), Width x1 (downgraded)
			TrErr- Train- SlotClk+ DLActive- BWMgmt+ ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
			Slot #0, PowerLimit 0.000W; Interlock- NoCompl-
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet+ LinkState-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- ARIFwd-
			 AtomicOpsCap: Routing-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled, ARIFwd-
			 AtomicOpsCtl: EgressBlck-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -3.5dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [100 v1] Device Serial Number 01-00-00-00-00-c9-a0-00
	Capabilities: [200 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [300 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [400 v1] Power Budgeting <?>
	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=01c <?>
	Kernel driver in use: pcieport

2a:01.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010] (prog-if 00 [Normal decode])
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 127
	Bus: primary=2a, secondary=2e, subordinate=2e, sec-latency=0
	I/O behind bridge: [disabled]
	Memory behind bridge: df100000-df1fffff [size=1M]
	Prefetchable memory behind bridge: 00000000a0100000-00000000a01fffff [size=1M]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
	Capabilities: [88] MSI: Enable+ Count=1/32 Maskable- 64bit+
		Address: 00000000fee05000  Data: 0027
	Capabilities: [c0] Express (v2) Downstream Port (Slot+), MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0
			ExtTag+ RBE+
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #1, Speed 2.5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s unlimited, L1 unlimited
			ClockPM- Surprise- LLActRep- BwNot+ ASPMOptComp-
		LnkCtl:	ASPM Disabled; Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s (ok), Width x1 (downgraded)
			TrErr- Train- SlotClk+ DLActive- BWMgmt+ ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
			Slot #0, PowerLimit 0.000W; Interlock- NoCompl-
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet+ LinkState-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- ARIFwd-
			 AtomicOpsCap: Routing-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled, ARIFwd-
			 AtomicOpsCtl: EgressBlck-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -3.5dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [100 v1] Device Serial Number 01-00-00-00-00-c9-a0-00
	Capabilities: [200 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [300 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [400 v1] Power Budgeting <?>
	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=01c <?>
	Kernel driver in use: pcieport

2a:02.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010] (prog-if 00 [Normal decode])
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 128
	Bus: primary=2a, secondary=2f, subordinate=2f, sec-latency=0
	I/O behind bridge: [disabled]
	Memory behind bridge: df200000-df2fffff [size=1M]
	Prefetchable memory behind bridge: 00000000a0200000-00000000a02fffff [size=1M]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
	Capabilities: [88] MSI: Enable+ Count=1/32 Maskable- 64bit+
		Address: 00000000fee07000  Data: 0027
	Capabilities: [c0] Express (v2) Downstream Port (Slot+), MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0
			ExtTag+ RBE+
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #2, Speed 2.5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s unlimited, L1 unlimited
			ClockPM- Surprise- LLActRep- BwNot+ ASPMOptComp-
		LnkCtl:	ASPM Disabled; Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s (ok), Width x1 (downgraded)
			TrErr- Train- SlotClk+ DLActive- BWMgmt+ ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
			Slot #0, PowerLimit 0.000W; Interlock- NoCompl-
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet+ LinkState-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- ARIFwd-
			 AtomicOpsCap: Routing-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled, ARIFwd-
			 AtomicOpsCtl: EgressBlck-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -3.5dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [100 v1] Device Serial Number 01-00-00-00-00-c9-a0-00
	Capabilities: [200 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [300 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [400 v1] Power Budgeting <?>
	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=01c <?>
	Kernel driver in use: pcieport

2a:04.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010] (prog-if 00 [Normal decode])
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 25
	Bus: primary=2a, secondary=30, subordinate=3f, sec-latency=0
	I/O behind bridge: [disabled]
	Memory behind bridge: df300000-e31fffff [size=63M]
	Prefetchable memory behind bridge: 00000000a0300000-00000000a11fffff [size=15M]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
	Capabilities: [88] MSI: Enable- Count=1/32 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [c0] Express (v2) Downstream Port (Slot+), MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0
			ExtTag+ RBE+
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #4, Speed 2.5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s unlimited, L1 unlimited
			ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp-
		LnkCtl:	ASPM Disabled; Disabled- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s (ok), Width x4 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+
			Slot #4, PowerLimit 0.000W; Interlock- NoCompl-
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet+ CmdCplt+ HPIrq+ LinkChg+
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock-
			Changed: MRL- PresDet- LinkState-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- ARIFwd-
			 AtomicOpsCap: Routing-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled, ARIFwd-
			 AtomicOpsCtl: EgressBlck-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [100 v1] Device Serial Number 01-00-00-00-00-c9-a0-00
	Capabilities: [200 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [300 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending+ InProgress-
	Capabilities: [400 v1] Power Budgeting <?>
	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=01c <?>
	Kernel driver in use: pcieport

2a:05.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010] (prog-if 00 [Normal decode])
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 34
	Bus: primary=2a, secondary=40, subordinate=4a, sec-latency=0
	I/O behind bridge: [disabled]
	Memory behind bridge: e3200000-e6ffffff [size=62M]
	Prefetchable memory behind bridge: 00000000a1200000-00000000a1ffffff [size=14M]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
	Capabilities: [88] MSI: Enable- Count=1/32 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [c0] Express (v2) Downstream Port (Slot+), MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0
			ExtTag+ RBE+
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #5, Speed 2.5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s unlimited, L1 unlimited
			ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp-
		LnkCtl:	ASPM Disabled; Disabled- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s (ok), Width x4 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+
			Slot #5, PowerLimit 0.000W; Interlock- NoCompl-
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet+ CmdCplt+ HPIrq+ LinkChg+
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock-
			Changed: MRL- PresDet- LinkState-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- ARIFwd-
			 AtomicOpsCap: Routing-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled, ARIFwd-
			 AtomicOpsCtl: EgressBlck-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [100 v1] Device Serial Number 01-00-00-00-00-c9-a0-00
	Capabilities: [200 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [300 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending+ InProgress-
	Capabilities: [400 v1] Power Budgeting <?>
	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=01c <?>
	Kernel driver in use: pcieport

2b:00.0 PCI bridge: Pericom Semiconductor Device 400c (rev 02) (prog-if 00 [Normal decode])
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Bus: primary=2b, secondary=2c, subordinate=2d, sec-latency=0
	I/O behind bridge: [disabled]
	Memory behind bridge: df000000-df0fffff [size=1M]
	Prefetchable memory behind bridge: 00000000a0000000-00000000a00fffff [size=1M]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [9c] Vital Product Data
		Not readable
	Capabilities: [a4] Vendor Specific Information: Len=0c <?>
	Capabilities: [c4] Subsystem: Device 0000:0000
	Capabilities: [e0] Express (v1) Upstream Port, MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0
			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ SlotPowerLimit 0.000W
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr+ NonFatalErr- FatalErr- UnsupReq+ AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 2.5GT/s, Width x1, ASPM L0s, Exit Latency L0s <512ns
			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp-
		LnkCtl:	ASPM Disabled; Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s (ok), Width x1 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [140 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=4
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=04 MaxTimeSlots=64 RejSnoopTrans-
			Arb:	Fixed+ WRR32- WRR64- WRR128+ TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
			Port Arbitration Table <?>
	Capabilities: [20c v1] Power Budgeting <?>

2c:03.0 PCI bridge: Pericom Semiconductor Device 400c (rev 02) (prog-if 00 [Normal decode])
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Bus: primary=2c, secondary=2d, subordinate=2d, sec-latency=0
	I/O behind bridge: [disabled]
	Memory behind bridge: df000000-df0fffff [size=1M]
	Prefetchable memory behind bridge: 00000000a0000000-00000000a00fffff [size=1M]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [8c] MSI: Enable- Count=1/1 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [a4] Vendor Specific Information: Len=0c <?>
	Capabilities: [c4] Subsystem: Device 0000:0000
	Capabilities: [e0] Express (v1) Downstream Port (Slot-), MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0
			ExtTag- RBE+
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #3, Speed 2.5GT/s, Width x1, ASPM L0s, Exit Latency L0s <512ns
			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp-
		LnkCtl:	ASPM Disabled; Disabled- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s (ok), Width x1 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
	Kernel driver in use: pcieport

2d:00.0 USB controller: Pericom Semiconductor PI7C9X442SL USB OHCI Controller (rev 01) (prog-if 10 [OHCI])
	Subsystem: Pericom Semiconductor PI7C9X442SL USB OHCI Controller
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 122
	Region 0: Memory at df000000 (32-bit, non-prefetchable) [size=4K]
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [8c] MSI: Enable- Count=1/1 Maskable- 64bit-
		Address: 00000000  Data: 0000
	Capabilities: [e0] Express (v1) Legacy Endpoint, MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 2.5GT/s, Width x1, ASPM L0s, Exit Latency L0s <512ns
			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp-
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s (ok), Width x1 (ok)
			TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
	Kernel driver in use: ohci-pci
	Kernel modules: ohci_pci

2d:00.1 USB controller: Pericom Semiconductor PI7C9X442SL USB OHCI Controller (rev 01) (prog-if 10 [OHCI])
	Subsystem: Pericom Semiconductor PI7C9X442SL USB OHCI Controller
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin B routed to IRQ 25
	Region 0: Memory at df001000 (32-bit, non-prefetchable) [size=4K]
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [8c] MSI: Enable- Count=1/1 Maskable- 64bit-
		Address: 00000000  Data: 0000
	Capabilities: [e0] Express (v1) Legacy Endpoint, MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 2.5GT/s, Width x1, ASPM L0s, Exit Latency L0s <512ns
			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp-
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s (ok), Width x1 (ok)
			TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
	Kernel driver in use: ohci-pci
	Kernel modules: ohci_pci

2d:00.2 USB controller: Pericom Semiconductor PI7C9X442SL USB EHCI Controller (rev 01) (prog-if 20 [EHCI])
	Subsystem: Pericom Semiconductor PI7C9X442SL USB EHCI Controller
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin C routed to IRQ 34
	Region 0: Memory at df002000 (32-bit, non-prefetchable) [size=256]
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [8c] MSI: Enable- Count=1/1 Maskable- 64bit-
		Address: 00000000  Data: 0000
	Capabilities: [e0] Express (v1) Legacy Endpoint, MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 2.5GT/s, Width x1, ASPM L0s, Exit Latency L0s <512ns
			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp-
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s (ok), Width x1 (ok)
			TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
	Kernel driver in use: ehci-pci
	Kernel modules: ehci_pci

2e:00.0 Ethernet controller: Broadcom Inc. and subsidiaries NetXtreme BCM57761 Gigabit Ethernet PCIe (rev 10)
	Subsystem: Apple Inc. NetXtreme BCM57761 Gigabit Ethernet PCIe
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 34
	Region 0: Memory at a0100000 (64-bit, prefetchable) [size=64K]
	Region 2: Memory at a0110000 (64-bit, prefetchable) [size=64K]
	Capabilities: [48] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
	Capabilities: [58] MSI: Enable- Count=1/8 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [a0] MSI-X: Enable+ Count=6 Masked-
		Vector table: BAR=2 offset=00000000
		PBA: BAR=2 offset=00000120
	Capabilities: [ac] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <4us, L1 <64us
			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0.000W
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr+ NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 4096 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 2.5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <2us, L1 <64us
			ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp-
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s (ok), Width x1 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR-
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- TPHComp- ExtTPHComp-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled,
			 AtomicOpsCtl: ReqEn-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [13c v1] Device Serial Number 00-00-c8-2a-14-4f-80-3e
	Capabilities: [150 v1] Power Budgeting <?>
	Capabilities: [160 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Kernel driver in use: tg3
	Kernel modules: tg3

2f:00.0 FireWire (IEEE 1394): LSI Corporation FW643 [TrueFire] PCIe 1394b Controller (rev 08) (prog-if 10 [OHCI])
	Subsystem: Device c111:0159
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin A routed to IRQ 255
	Region 0: Memory at df200000 (64-bit, non-prefetchable) [disabled] [size=4K]
	Capabilities: [44] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [4c] MSI: Enable- Count=1/1 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [60] Express (v1) Endpoint, MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <4us, L1 <64us
			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0.000W
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 2048 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 2.5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <512ns, L1 <64us
			ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp-
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s (ok), Width x1 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [140 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
		VC1:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable- ID=0 ArbSelect=Fixed TC/VC=00
			Status:	NegoPending- InProgress-
	Capabilities: [170 v1] Device Serial Number 00-0a-27-02-00-40-c4-ba

4b:00.0 Non-Volatile memory controller: Kingston Technology Company, Inc. Device 2262 (rev 03) (prog-if 02 [NVM Express])
	Subsystem: Kingston Technology Company, Inc. Device 2262
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 25
	NUMA node: 0
	Region 0: Memory at ef600000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: [40] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [50] MSI: Enable- Count=1/8 Maskable+ 64bit+
		Address: 0000000000000000  Data: 0000
		Masking: 00000000  Pending: 00000000
	Capabilities: [70] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+ SlotPowerLimit 26.000W
		DevCtl:	CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop- FLReset-
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x4, ASPM L1, Exit Latency L1 <8us
			ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 8GT/s (ok), Width x4 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- TPHComp- ExtTPHComp-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled,
			 AtomicOpsCtl: ReqEn-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete+ EqualizationPhase1+
			 EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [b0] MSI-X: Enable+ Count=16 Masked-
		Vector table: BAR=0 offset=00002000
		PBA: BAR=0 offset=00002100
	Capabilities: [100 v2] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [158 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [178 v1] Latency Tolerance Reporting
		Max snoop latency: 0ns
		Max no snoop latency: 0ns
	Capabilities: [180 v1] L1 PM Substates
		L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+
			  PortCommonModeRestoreTime=10us PortTPowerOnTime=10us
		L1SubCtl1: PCI-PM_L1.2- PCI-PM_L1.1- ASPM_L1.2- ASPM_L1.1-
			   T_CommonMode=0us LTR1.2_Threshold=0ns
		L1SubCtl2: T_PwrOn=10us
	Kernel driver in use: nvme

4c:00.0 PCI bridge: ASMedia Technology Inc. Device 1806 (rev 01) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 41
	Bus: primary=4c, secondary=4d, subordinate=50, sec-latency=0
	I/O behind bridge: 0000f000-0000ffff [size=4K]
	Memory behind bridge: ef500000-ef5fffff [size=1M]
	Prefetchable memory behind bridge: [disabled]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Power Management version 3
		Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee06000  Data: 0022
	Capabilities: [80] Express (v2) Upstream Port, MSI 00
		DevCap:	MaxPayload 512 bytes, PhantFunc 0
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ SlotPowerLimit 26.000W
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr+ NonFatalErr- FatalErr- UnsupReq+ AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 5GT/s, Width x2, ASPM L1, Exit Latency L1 <64us
			ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM Disabled; Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s (ok), Width x1 (downgraded)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS-
			 AtomicOpsCap: Routing-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled,
			 AtomicOpsCtl: EgressBlck-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis+
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [c0] Subsystem: Device 0000:0000
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 14, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 05000001 0000220f 4d08004d 00000000
	Capabilities: [140 v1] Power Budgeting <?>
	Capabilities: [160 v1] Latency Tolerance Reporting
		Max snoop latency: 0ns
		Max no snoop latency: 0ns
	Capabilities: [180 v1] Multicast
		McastCap: MaxGroups 64, ECRCRegen-
		McastCtl: NumGroups 1, Enable-
		McastBAR: IndexPos 0, BaseAddr 0000000000000000
		McastReceiveVec:      0000000000000000
		McastBlockAllVec:     0000000000000000
		McastBlockUntransVec: 0000000000000000
		McastOverlayBAR: OverlaySize 0 (disabled), BaseAddr 0000000000000000
	Capabilities: [1c0 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [200 v1] Vendor Specific Information: ID=001a Rev=0 Len=000 <?>
	Kernel driver in use: pcieport

4d:00.0 PCI bridge: ASMedia Technology Inc. Device 1806 (rev 01) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 42
	Bus: primary=4d, secondary=4e, subordinate=4e, sec-latency=0
	I/O behind bridge: 0000f000-0000ffff [size=4K]
	Memory behind bridge: ef500000-ef5fffff [size=1M]
	Prefetchable memory behind bridge: [disabled]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Power Management version 3
		Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee08000  Data: 0022
	Capabilities: [80] Express (v2) Downstream Port (Slot+), MSI 00
		DevCap:	MaxPayload 512 bytes, PhantFunc 0
			ExtTag+ RBE+
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 5GT/s, Width x2, ASPM L1, Exit Latency L1 <64us
			ClockPM+ Surprise+ LLActRep+ BwNot+ ASPMOptComp+
		LnkCtl:	ASPM Disabled; Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s (ok), Width x1 (downgraded)
			TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
			Slot #0, PowerLimit 0.000W; Interlock- NoCompl-
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet+ LinkState+
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- ARIFwd+
			 AtomicOpsCap: Routing-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled, ARIFwd-
			 AtomicOpsCtl: EgressBlck-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis+, Selectable De-emphasis: -3.5dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [c0] Subsystem: Device 0000:0000
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [140 v1] Power Budgeting <?>
	Capabilities: [160 v1] Latency Tolerance Reporting
		Max snoop latency: 0ns
		Max no snoop latency: 0ns
	Capabilities: [180 v1] Multicast
		McastCap: MaxGroups 64, ECRCRegen-
		McastCtl: NumGroups 1, Enable-
		McastBAR: IndexPos 0, BaseAddr 0000000000000000
		McastReceiveVec:      0000000000000000
		McastBlockAllVec:     0000000000000000
		McastBlockUntransVec: 0000000000000000
		McastOverlayBAR: OverlaySize 0 (disabled), BaseAddr 0000000000000000
	Capabilities: [1c0 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [200 v1] Vendor Specific Information: ID=001a Rev=0 Len=000 <?>
	Kernel driver in use: pcieport

4d:06.0 PCI bridge: ASMedia Technology Inc. Device 1806 (rev 01) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 43
	Bus: primary=4d, secondary=4f, subordinate=4f, sec-latency=0
	I/O behind bridge: [disabled]
	Memory behind bridge: [disabled]
	Prefetchable memory behind bridge: [disabled]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Power Management version 3
		Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee0a000  Data: 0022
	Capabilities: [80] Express (v2) Downstream Port (Slot+), MSI 00
		DevCap:	MaxPayload 512 bytes, PhantFunc 0
			ExtTag+ RBE+
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr+ NonFatalErr- FatalErr- UnsupReq+ AuxPwr- TransPend-
		LnkCap:	Port #6, Speed 5GT/s, Width x1, ASPM L1, Exit Latency L1 <64us
			ClockPM+ Surprise+ LLActRep+ BwNot+ ASPMOptComp+
		LnkCtl:	ASPM Disabled; Disabled- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s (downgraded), Width x1 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
			Slot #0, PowerLimit 0.000W; Interlock- NoCompl-
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock-
			Changed: MRL- PresDet- LinkState-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- ARIFwd+
			 AtomicOpsCap: Routing-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled, ARIFwd-
			 AtomicOpsCtl: EgressBlck-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis+, Selectable De-emphasis: -3.5dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [c0] Subsystem: Device 0000:0000
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 14, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 04000001 0000230f 4f00004f 00000000
	Capabilities: [140 v1] Power Budgeting <?>
	Capabilities: [160 v1] Latency Tolerance Reporting
		Max snoop latency: 0ns
		Max no snoop latency: 0ns
	Capabilities: [180 v1] Multicast
		McastCap: MaxGroups 64, ECRCRegen-
		McastCtl: NumGroups 1, Enable-
		McastBAR: IndexPos 0, BaseAddr 0000000000000000
		McastReceiveVec:      0000000000000000
		McastBlockAllVec:     0000000000000000
		McastBlockUntransVec: 0000000000000000
		McastOverlayBAR: OverlaySize 0 (disabled), BaseAddr 0000000000000000
	Capabilities: [1c0 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [200 v1] Vendor Specific Information: ID=001a Rev=0 Len=000 <?>
	Kernel driver in use: pcieport

4d:0e.0 PCI bridge: ASMedia Technology Inc. Device 1806 (rev 01) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 44
	Bus: primary=4d, secondary=50, subordinate=50, sec-latency=0
	I/O behind bridge: [disabled]
	Memory behind bridge: [disabled]
	Prefetchable memory behind bridge: [disabled]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Power Management version 3
		Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee01000  Data: 0022
	Capabilities: [80] Express (v2) Downstream Port (Slot+), MSI 00
		DevCap:	MaxPayload 512 bytes, PhantFunc 0
			ExtTag+ RBE+
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr+ NonFatalErr- FatalErr- UnsupReq+ AuxPwr- TransPend-
		LnkCap:	Port #14, Speed 5GT/s, Width x1, ASPM L1, Exit Latency L1 <64us
			ClockPM+ Surprise+ LLActRep+ BwNot+ ASPMOptComp+
		LnkCtl:	ASPM Disabled; Disabled- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s (downgraded), Width x1 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
			Slot #0, PowerLimit 0.000W; Interlock- NoCompl-
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock-
			Changed: MRL- PresDet- LinkState-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- ARIFwd+
			 AtomicOpsCap: Routing-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled, ARIFwd-
			 AtomicOpsCtl: EgressBlck-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis+, Selectable De-emphasis: -3.5dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [c0] Subsystem: Device 0000:0000
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 14, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 04000001 0000220f 50000050 00000000
	Capabilities: [140 v1] Power Budgeting <?>
	Capabilities: [160 v1] Latency Tolerance Reporting
		Max snoop latency: 0ns
		Max no snoop latency: 0ns
	Capabilities: [180 v1] Multicast
		McastCap: MaxGroups 64, ECRCRegen-
		McastCtl: NumGroups 1, Enable-
		McastBAR: IndexPos 0, BaseAddr 0000000000000000
		McastReceiveVec:      0000000000000000
		McastBlockAllVec:     0000000000000000
		McastBlockUntransVec: 0000000000000000
		McastOverlayBAR: OverlaySize 0 (disabled), BaseAddr 0000000000000000
	Capabilities: [1c0 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [200 v1] Vendor Specific Information: ID=001a Rev=0 Len=000 <?>
	Kernel driver in use: pcieport

4e:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8125 2.5GbE Controller (rev 05)
	Subsystem: Gigabyte Technology Co., Ltd Device e000
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 25
	Region 0: I/O ports at f000 [size=256]
	Region 2: Memory at ef500000 (64-bit, non-prefetchable) [size=64K]
	Region 4: Memory at ef510000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: [40] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [50] MSI: Enable- Count=1/1 Maskable+ 64bit+
		Address: 0000000000000000  Data: 0000
		Masking: 00000000  Pending: 00000000
	Capabilities: [70] Express (v2) Endpoint, MSI 01
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <512ns, L1 <64us
			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0.000W
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 4096 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s unlimited, L1 <64us
			ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s (ok), Width x1 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Via message/WAKE#, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- TPHComp+ ExtTPHComp-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled,
			 AtomicOpsCtl: ReqEn-
		LnkCap2: Supported Link Speeds: 2.5-5GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [b0] MSI-X: Enable+ Count=32 Masked-
		Vector table: BAR=4 offset=00000000
		PBA: BAR=4 offset=00000800
	Capabilities: [d0] Vital Product Data
		Not readable
	Capabilities: [100 v2] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [148 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=01
			Status:	NegoPending- InProgress-
	Capabilities: [168 v1] Device Serial Number c6-cc-86-d3-5e-d8-00-00
	Capabilities: [178 v1] Transaction Processing Hints
		No steering table available
	Capabilities: [204 v1] Latency Tolerance Reporting
		Max snoop latency: 0ns
		Max no snoop latency: 0ns
	Capabilities: [20c v1] L1 PM Substates
		L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+
			  PortCommonModeRestoreTime=150us PortTPowerOnTime=150us
		L1SubCtl1: PCI-PM_L1.2- PCI-PM_L1.1- ASPM_L1.2- ASPM_L1.1-
			   T_CommonMode=0us LTR1.2_Threshold=0ns
		L1SubCtl2: T_PwrOn=10us
	Capabilities: [21c v1] Vendor Specific Information: ID=0002 Rev=4 Len=100 <?>
	Kernel driver in use: r8169

51:00.0 Ethernet controller: Intel Corporation Ethernet Controller I225-V (rev 01)
	Subsystem: Gigabyte Technology Co., Ltd Device e000
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 34
	Region 0: Memory at ef300000 (32-bit, non-prefetchable) [size=1M]
	Region 3: Memory at ef400000 (32-bit, non-prefetchable) [size=16K]
	Capabilities: [40] Power Management version 3
		Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
	Capabilities: [50] MSI: Enable- Count=1/1 Maskable+ 64bit+
		Address: 0000000000000000  Data: 0000
		Masking: 00000000  Pending: 00000000
	Capabilities: [70] MSI-X: Enable+ Count=5 Masked-
		Vector table: BAR=3 offset=00000000
		PBA: BAR=3 offset=00002000
	Capabilities: [a0] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 512 bytes, PhantFunc 0, Latency L0s <512ns, L1 <64us
			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+ SlotPowerLimit 0.000W
		DevCtl:	CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+ FLReset-
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
		LnkCap:	Port #9, Speed 5GT/s, Width x1, ASPM L1, Exit Latency L1 <4us
			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s (ok), Width x1 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- TPHComp- ExtTPHComp-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled,
			 AtomicOpsCtl: ReqEn-
		LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [100 v2] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [140 v1] Device Serial Number d8-5e-d3-ff-ff-86-cc-c8
	Capabilities: [1c0 v1] Latency Tolerance Reporting
		Max snoop latency: 0ns
		Max no snoop latency: 0ns
	Capabilities: [1f0 v1] Precision Time Measurement
		PTMCap: Requester:+ Responder:- Root:-
		PTMClockGranularity: 4ns
		PTMControl: Enabled:+ RootSelected:-
		PTMEffectiveGranularity: Unknown
	Capabilities: [1e0 v1] L1 PM Substates
		L1SubCap: PCI-PM_L1.2- PCI-PM_L1.1+ ASPM_L1.2- ASPM_L1.1+ L1_PM_Substates+
		L1SubCtl1: PCI-PM_L1.2- PCI-PM_L1.1- ASPM_L1.2- ASPM_L1.1-
		L1SubCtl2:
	Kernel driver in use: igc

52:00.0 Non-Volatile memory controller: Micron/Crucial Technology Device 540a (rev 01) (prog-if 02 [NVM Express])
	Subsystem: Micron/Crucial Technology Device 540a
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 45
	NUMA node: 0
	Region 0: Memory at efd00000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: [80] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset+ SlotPowerLimit 75.000W
		DevCtl:	CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+ FLReset-
			MaxPayload 256 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr+ NonFatalErr- FatalErr- UnsupReq+ AuxPwr- TransPend-
		LnkCap:	Port #1, Speed 8GT/s, Width x4, ASPM L1, Exit Latency L1 unlimited
			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 8GT/s (ok), Width x4 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- TPHComp- ExtTPHComp-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled,
			 AtomicOpsCtl: ReqEn-
		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete+ EqualizationPhase1+
			 EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: Upstream Port
	Capabilities: [d0] MSI-X: Enable+ Count=9 Masked-
		Vector table: BAR=0 offset=00002000
		PBA: BAR=0 offset=00003000
	Capabilities: [e0] MSI: Enable- Count=1/8 Maskable+ 64bit+
		Address: 0000000000000000  Data: 0000
		Masking: 00000000  Pending: 00000000
	Capabilities: [f8] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [100 v1] Latency Tolerance Reporting
		Max snoop latency: 0ns
		Max no snoop latency: 0ns
	Capabilities: [110 v1] L1 PM Substates
		L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+
			  PortCommonModeRestoreTime=10us PortTPowerOnTime=220us
		L1SubCtl1: PCI-PM_L1.2- PCI-PM_L1.1- ASPM_L1.2- ASPM_L1.1-
			   T_CommonMode=0us LTR1.2_Threshold=0ns
		L1SubCtl2: T_PwrOn=10us
	Capabilities: [200 v2] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap+ ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 04000001 0000210f 52070000 6b192b64
	Capabilities: [300 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Kernel driver in use: nvme

53:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Cezanne (rev c9) (prog-if 00 [VGA controller])
	Subsystem: Gigabyte Technology Co., Ltd Device d000
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort+ <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 24
	Region 0: Memory at c0000000 (64-bit, prefetchable) [size=256M]
	Region 2: Memory at d0000000 (64-bit, prefetchable) [size=2M]
	Region 4: I/O ports at e000 [size=256]
	Region 5: Memory at efc00000 (32-bit, non-prefetchable) [size=512K]
	Capabilities: [48] Vendor Specific Information: Len=08 <?>
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [64] Express (v2) Legacy Endpoint, MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <4us, L1 unlimited
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 256 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr+ FatalErr- UnsupReq+ AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 8GT/s (ok), Width x16 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR-
			 10BitTagComp+ 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix+, MaxEETLPPrefixes 1
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled,
			 AtomicOpsCtl: ReqEn-
		LnkCap2: Supported Link Speeds: 2.5-16GT/s, Crosslink- Retimer+ 2Retimers+ DRS-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete+ EqualizationPhase1+
			 EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [a0] MSI: Enable- Count=1/4 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [c0] MSI-X: Enable+ Count=4 Masked-
		Vector table: BAR=5 offset=00042000
		PBA: BAR=5 offset=00043000
	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
	Capabilities: [270 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [2a0 v1] Access Control Services
		ACSCap:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
	Capabilities: [2b0 v1] Address Translation Service (ATS)
		ATSCap:	Invalidate Queue Depth: 00
		ATSCtl:	Enable-, Smallest Translation Unit: 00
	Capabilities: [2c0 v1] Page Request Interface (PRI)
		PRICtl: Enable- Reset-
		PRISta: RF- UPRGI- Stopped+
		Page Request Capacity: 00000100, Page Request Allocation: 00000000
	Capabilities: [2d0 v1] Process Address Space ID (PASID)
		PASIDCap: Exec+ Priv+, Max PASID Width: 10
		PASIDCtl: Enable- Exec- Priv-
	Capabilities: [400 v1] Data Link Feature <?>
	Capabilities: [410 v1] Physical Layer 16.0 GT/s <?>
	Capabilities: [440 v1] Lane Margining at the Receiver <?>
	Kernel driver in use: amdgpu
	Kernel modules: amdgpu

53:00.1 Audio device: Advanced Micro Devices, Inc. [AMD/ATI] Device 1637
	Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] Device 1637
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin B routed to IRQ 123
	Region 0: Memory at efc88000 (32-bit, non-prefetchable) [size=16K]
	Capabilities: [48] Vendor Specific Information: Len=08 <?>
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [64] Express (v2) Legacy Endpoint, MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <4us, L1 unlimited
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 256 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 8GT/s (ok), Width x16 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR-
			 10BitTagComp+ 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix+, MaxEETLPPrefixes 1
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled,
			 AtomicOpsCtl: ReqEn-
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee08000  Data: 0027
	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
	Capabilities: [2a0 v1] Access Control Services
		ACSCap:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel

53:00.2 Encryption controller: Advanced Micro Devices, Inc. [AMD] Family 17h (Models 10h-1fh) Platform Security Processor
	Subsystem: Advanced Micro Devices, Inc. [AMD] Family 17h (Models 10h-1fh) Platform Security Processor
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin C routed to IRQ 25
	Region 2: Memory at efb00000 (32-bit, non-prefetchable) [size=1M]
	Region 5: Memory at efc8c000 (32-bit, non-prefetchable) [size=8K]
	Capabilities: [48] Vendor Specific Information: Len=08 <?>
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [64] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <4us, L1 unlimited
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0.000W
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 256 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 8GT/s (ok), Width x16 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR-
			 10BitTagComp+ 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix+, MaxEETLPPrefixes 1
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- TPHComp- ExtTPHComp-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled,
			 AtomicOpsCtl: ReqEn-
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [a0] MSI: Enable- Count=1/2 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [c0] MSI-X: Enable+ Count=2 Masked-
		Vector table: BAR=5 offset=00000000
		PBA: BAR=5 offset=00001000
	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
	Capabilities: [2a0 v1] Access Control Services
		ACSCap:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
	Kernel driver in use: ccp

53:00.3 USB controller: Advanced Micro Devices, Inc. [AMD] Renoir USB 3.1 (prog-if 30 [XHCI])
	Subsystem: Gigabyte Technology Co., Ltd Renoir USB 3.1
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin D routed to IRQ 34
	Region 0: Memory at efa00000 (64-bit, non-prefetchable) [size=1M]
	Capabilities: [48] Vendor Specific Information: Len=08 <?>
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [64] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <4us, L1 unlimited
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0.000W
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 256 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 8GT/s (ok), Width x16 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR-
			 10BitTagComp+ 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix+, MaxEETLPPrefixes 1
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- TPHComp- ExtTPHComp-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled,
			 AtomicOpsCtl: ReqEn-
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [a0] MSI: Enable- Count=1/8 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [c0] MSI-X: Enable+ Count=8 Masked-
		Vector table: BAR=0 offset=000fe000
		PBA: BAR=0 offset=000ff000
	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
	Capabilities: [2a0 v1] Access Control Services
		ACSCap:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
	Kernel driver in use: xhci_hcd
	Kernel modules: xhci_pci

53:00.4 USB controller: Advanced Micro Devices, Inc. [AMD] Renoir USB 3.1 (prog-if 30 [XHCI])
	Subsystem: Gigabyte Technology Co., Ltd Renoir USB 3.1
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 24
	Region 0: Memory at ef900000 (64-bit, non-prefetchable) [size=1M]
	Capabilities: [48] Vendor Specific Information: Len=08 <?>
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [64] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <4us, L1 unlimited
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0.000W
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 256 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 8GT/s (ok), Width x16 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR-
			 10BitTagComp+ 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix+, MaxEETLPPrefixes 1
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- TPHComp- ExtTPHComp-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled,
			 AtomicOpsCtl: ReqEn-
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [a0] MSI: Enable- Count=1/8 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [c0] MSI-X: Enable+ Count=8 Masked-
		Vector table: BAR=0 offset=000fe000
		PBA: BAR=0 offset=000ff000
	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
	Capabilities: [2a0 v1] Access Control Services
		ACSCap:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
	Kernel driver in use: xhci_hcd
	Kernel modules: xhci_pci

53:00.6 Audio device: Advanced Micro Devices, Inc. [AMD] Family 17h (Models 10h-1fh) HD Audio Controller
	DeviceName: Realtek ALC1220
	Subsystem: Gigabyte Technology Co., Ltd Family 17h (Models 10h-1fh) HD Audio Controller
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin C routed to IRQ 124
	Region 0: Memory at efc80000 (32-bit, non-prefetchable) [size=32K]
	Capabilities: [48] Vendor Specific Information: Len=08 <?>
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D3 NoSoftRst+ PME-Enable+ DSel=0 DScale=0 PME-
	Capabilities: [64] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <4us, L1 unlimited
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0.000W
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 256 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 8GT/s (ok), Width x16 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR-
			 10BitTagComp+ 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix+, MaxEETLPPrefixes 1
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- TPHComp- ExtTPHComp-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled,
			 AtomicOpsCtl: ReqEn-
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee0a000  Data: 0027
	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
	Capabilities: [2a0 v1] Access Control Services
		ACSCap:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel


-[0000:00]-+-00.0  Advanced Micro Devices, Inc. [AMD] Renoir Root Complex
            +-00.2  Advanced Micro Devices, Inc. [AMD] Renoir IOMMU
            +-01.0  Advanced Micro Devices, Inc. [AMD] Renoir PCIe Dummy Host Bridge
            +-02.0  Advanced Micro Devices, Inc. [AMD] Renoir PCIe Dummy Host Bridge
            +-02.1-[01-51]--+-00.0  Advanced Micro Devices, Inc. [AMD] Device 43ee
            |               +-00.1  Advanced Micro Devices, Inc. [AMD] Device 43eb
            |               \-00.2-[02-51]--+-00.0-[03-4a]----00.0-[04-4a]--+-00.0-[05]----00.0  Intel Corporation JHL7540 Thunderbolt 3 NHI [Titan Ridge 4C 2018]
            |                               |                               +-01.0-[06-27]--
            |                               |                               +-02.0-[28]----00.0  Intel Corporation JHL7540 Thunderbolt 3 USB Controller [Titan Ridge 4C 2018]
            |                               |                               \-04.0-[29-4a]----00.0-[2a-4a]--+-00.0-[2b-2d]----00.0-[2c-2d]----03.0-[2d]--+-00.0  Pericom Semiconductor PI7C9X442SL USB OHCI Controller
            |                               |                                                               |                                            +-00.1  Pericom Semiconductor PI7C9X442SL USB OHCI Controller
            |                               |                                                               |                                            \-00.2  Pericom Semiconductor PI7C9X442SL USB EHCI Controller
            |                               |                                                               +-01.0-[2e]----00.0  Broadcom Inc. and subsidiaries NetXtreme BCM57761 Gigabit Ethernet PCIe
            |                               |                                                               +-02.0-[2f]----00.0  LSI Corporation FW643 [TrueFire] PCIe 1394b Controller
            |                               |                                                               +-04.0-[30-3f]--
            |                               |                                                               \-05.0-[40-4a]--
            |                               +-04.0-[4b]----00.0  Kingston Technology Company, Inc. Device 2262
            |                               +-08.0-[4c-50]----00.0-[4d-50]--+-00.0-[4e]----00.0  Realtek Semiconductor Co., Ltd. RTL8125 2.5GbE Controller
            |                               |                               +-06.0-[4f]--
            |                               |                               \-0e.0-[50]--
            |                               \-09.0-[51]----00.0  Intel Corporation Ethernet Controller I225-V
            +-02.2-[52]----00.0  Micron/Crucial Technology Device 540a
            +-08.0  Advanced Micro Devices, Inc. [AMD] Renoir PCIe Dummy Host Bridge
            +-08.1-[53]--+-00.0  Advanced Micro Devices, Inc. [AMD/ATI] Cezanne
            |            +-00.1  Advanced Micro Devices, Inc. [AMD/ATI] Device 1637
            |            +-00.2  Advanced Micro Devices, Inc. [AMD] Family 17h (Models 10h-1fh) Platform Security Processor
            |            +-00.3  Advanced Micro Devices, Inc. [AMD] Renoir USB 3.1
            |            +-00.4  Advanced Micro Devices, Inc. [AMD] Renoir USB 3.1
            |            \-00.6  Advanced Micro Devices, Inc. [AMD] Family 17h (Models 10h-1fh) HD Audio Controller
            +-14.0  Advanced Micro Devices, Inc. [AMD] FCH SMBus Controller
            +-14.3  Advanced Micro Devices, Inc. [AMD] FCH LPC Bridge
            +-18.0  Advanced Micro Devices, Inc. [AMD] Device 166a
            +-18.1  Advanced Micro Devices, Inc. [AMD] Device 166b
            +-18.2  Advanced Micro Devices, Inc. [AMD] Device 166c
            +-18.3  Advanced Micro Devices, Inc. [AMD] Device 166d
            +-18.4  Advanced Micro Devices, Inc. [AMD] Device 166e
            +-18.5  Advanced Micro Devices, Inc. [AMD] Device 166f
            +-18.6  Advanced Micro Devices, Inc. [AMD] Device 1670
            \-18.7  Advanced Micro Devices, Inc. [AMD] Device 1671


Regards,
Brad

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-08-06  9:41                                                       ` Brad Campbell
@ 2022-08-08  9:51                                                         ` Mika Westerberg
  2022-08-08 11:55                                                           ` Brad Campbell
  0 siblings, 1 reply; 47+ messages in thread
From: Mika Westerberg @ 2022-08-08  9:51 UTC (permalink / raw)
  To: Brad Campbell; +Cc: linux-kernel

Hi,

On Sat, Aug 06, 2022 at 05:41:37PM +0800, Brad Campbell wrote:
> I've left in the patch to not set up the DP tunnel and recompiled with CONFIG_PCI_DEBUG=y
> 
> The minimum I can use to reproduce the fault is a single Thunderbolt display. The Apple TB->GBe dongle doesn't do it
> and I have a TB->USB3+eSATA dongle that won't run on the TB3->TB1 adapter due to insufficient power.
> 
> This is captured with serial console. It's a cold boot with a single TB display connected. Boots to desktop and I immediately issue a reboot.
> 
> From -> [   15.337689] xhci_hcd 0000:53:00.3: xHCI Host Controller <- on the second boot, the console output slows to
> about 1-2 characters per second (nothing updates on the monitor) and eventually the machine reboots by itself. I don't have reboot on panic set.

I noticed that the device links are not set for AR/TR devices but it
probably does not help here. Anyway can you try the below patch just in
case?

I did not see anything that stands out from the logs so next step would
be to unbind the drivers for each PCIe device of the TBT display and see
if that helps (so we can narrow this down to a specific driver). You can
either just unload the whole driver (rmmod or modprobe -r) or
"echo XXXX > /sys/pci/drivers/DRIVER/unbind". Where XXXX is the PCI
device name, like 0000:00:2a.0 and so on.

diff --git a/drivers/thunderbolt/tb.c b/drivers/thunderbolt/tb.c
index 8030fc544c5e..bfe023030b90 100644
--- a/drivers/thunderbolt/tb.c
+++ b/drivers/thunderbolt/tb.c
@@ -2181,6 +2181,10 @@ static void tb_apple_add_links(struct tb_nhi *nhi)
 	case PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_4C:
 	case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_2C_NHI:
 	case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_4C_NHI:
+	case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_2C_NHI:
+	case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_4C_NHI:
+	case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_2C_NHI:
+	case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_4C_NHI:
 		break;
 	default:
 		return;

^ permalink raw reply related	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-08-08  9:51                                                         ` Mika Westerberg
@ 2022-08-08 11:55                                                           ` Brad Campbell
  2022-08-08 12:25                                                             ` Brad Campbell
  2022-08-08 12:42                                                             ` Mika Westerberg
  0 siblings, 2 replies; 47+ messages in thread
From: Brad Campbell @ 2022-08-08 11:55 UTC (permalink / raw)
  To: Mika Westerberg; +Cc: linux-kernel

G'day Mika,

On 8/8/22 17:51, Mika Westerberg wrote:
> Hi,
> 
> On Sat, Aug 06, 2022 at 05:41:37PM +0800, Brad Campbell wrote:
>> I've left in the patch to not set up the DP tunnel and recompiled with CONFIG_PCI_DEBUG=y
>>
>> The minimum I can use to reproduce the fault is a single Thunderbolt display. The Apple TB->GBe dongle doesn't do it
>> and I have a TB->USB3+eSATA dongle that won't run on the TB3->TB1 adapter due to insufficient power.
>>
>> This is captured with serial console. It's a cold boot with a single TB display connected. Boots to desktop and I immediately issue a reboot.
>>
>> From -> [   15.337689] xhci_hcd 0000:53:00.3: xHCI Host Controller <- on the second boot, the console output slows to
>> about 1-2 characters per second (nothing updates on the monitor) and eventually the machine reboots by itself. I don't have reboot on panic set.
> 
> I noticed that the device links are not set for AR/TR devices but it
> probably does not help here. Anyway can you try the below patch just in
> case?
> 
> I did not see anything that stands out from the logs so next step would
> be to unbind the drivers for each PCIe device of the TBT display and see
> if that helps (so we can narrow this down to a specific driver). You can
> either just unload the whole driver (rmmod or modprobe -r) or
> "echo XXXX > /sys/pci/drivers/DRIVER/unbind". Where XXXX is the PCI
> device name, like 0000:00:2a.0 and so on.

It's not looking driver specific. The only 2 drivers I have for that device are the tg3
and o/ehci drivers.
 
> diff --git a/drivers/thunderbolt/tb.c b/drivers/thunderbolt/tb.c
> index 8030fc544c5e..bfe023030b90 100644
> --- a/drivers/thunderbolt/tb.c
> +++ b/drivers/thunderbolt/tb.c
> @@ -2181,6 +2181,10 @@ static void tb_apple_add_links(struct tb_nhi *nhi)
>  	case PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_4C:
>  	case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_2C_NHI:
>  	case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_4C_NHI:
> +	case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_2C_NHI:
> +	case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_4C_NHI:
> +	case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_2C_NHI:
> +	case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_4C_NHI:
>  		break;
>  	default:
>  		return;
> 

Applied that patch. No change unfortunately.

I unloaded the tg3 driver and all usb ([xeo]hci) drivers and still ran into the problem.
Less so in that the machine responds to a ps2 keyboard and the magic-sysrq keys _slowly and
still reboots "randomly".

lspci straight after boot :

00:00.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Renoir Root Complex
00:00.2 IOMMU: Advanced Micro Devices, Inc. [AMD] Renoir IOMMU
00:01.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Renoir PCIe Dummy Host Bridge
00:02.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Renoir PCIe Dummy Host Bridge
00:02.1 PCI bridge: Advanced Micro Devices, Inc. [AMD] Renoir PCIe GPP Bridge
00:02.2 PCI bridge: Advanced Micro Devices, Inc. [AMD] Renoir PCIe GPP Bridge
00:08.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Renoir PCIe Dummy Host Bridge
00:08.1 PCI bridge: Advanced Micro Devices, Inc. [AMD] Renoir Internal PCIe GPP Bridge to Bus
00:14.0 SMBus: Advanced Micro Devices, Inc. [AMD] FCH SMBus Controller (rev 51)
00:14.3 ISA bridge: Advanced Micro Devices, Inc. [AMD] FCH LPC Bridge (rev 51)
00:18.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 166a
00:18.1 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 166b
00:18.2 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 166c
00:18.3 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 166d
00:18.4 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 166e
00:18.5 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 166f
00:18.6 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 1670
00:18.7 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 1671
01:00.0 USB controller: Advanced Micro Devices, Inc. [AMD] Device 43ee
01:00.1 SATA controller: Advanced Micro Devices, Inc. [AMD] Device 43eb
01:00.2 PCI bridge: Advanced Micro Devices, Inc. [AMD] Device 43e9
02:00.0 PCI bridge: Advanced Micro Devices, Inc. [AMD] Device 43ea
02:04.0 PCI bridge: Advanced Micro Devices, Inc. [AMD] Device 43ea
02:08.0 PCI bridge: Advanced Micro Devices, Inc. [AMD] Device 43ea
02:09.0 PCI bridge: Advanced Micro Devices, Inc. [AMD] Device 43ea
03:00.0 PCI bridge: Intel Corporation JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018] (rev 06)
04:00.0 PCI bridge: Intel Corporation JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018] (rev 06)
04:01.0 PCI bridge: Intel Corporation JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018] (rev 06)
04:02.0 PCI bridge: Intel Corporation JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018] (rev 06)
04:04.0 PCI bridge: Intel Corporation JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018] (rev 06)
05:00.0 System peripheral: Intel Corporation JHL7540 Thunderbolt 3 NHI [Titan Ridge 4C 2018] (rev 06)
28:00.0 USB controller: Intel Corporation JHL7540 Thunderbolt 3 USB Controller [Titan Ridge 4C 2018] (rev 06)
29:00.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010]
2a:00.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010]
2a:01.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010]
2a:02.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010]
2a:04.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010]
2a:05.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010]
2b:00.0 PCI bridge: Pericom Semiconductor Device 400c (rev 02)
2c:03.0 PCI bridge: Pericom Semiconductor Device 400c (rev 02)
2d:00.0 USB controller: Pericom Semiconductor PI7C9X442SL USB OHCI Controller (rev 01)
2d:00.1 USB controller: Pericom Semiconductor PI7C9X442SL USB OHCI Controller (rev 01)
2d:00.2 USB controller: Pericom Semiconductor PI7C9X442SL USB EHCI Controller (rev 01)
2e:00.0 Ethernet controller: Broadcom Inc. and subsidiaries NetXtreme BCM57761 Gigabit Ethernet PCIe (rev 10)
2f:00.0 FireWire (IEEE 1394): LSI Corporation FW643 [TrueFire] PCIe 1394b Controller (rev 08)
30:00.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010]
31:00.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010]
31:01.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010]
31:02.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010]
31:04.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010]
31:05.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010]
32:00.0 PCI bridge: Pericom Semiconductor Device 400c (rev 02)
33:03.0 PCI bridge: Pericom Semiconductor Device 400c (rev 02)
34:00.0 USB controller: Pericom Semiconductor PI7C9X442SL USB OHCI Controller (rev 01)
34:00.1 USB controller: Pericom Semiconductor PI7C9X442SL USB OHCI Controller (rev 01)
34:00.2 USB controller: Pericom Semiconductor PI7C9X442SL USB EHCI Controller (rev 03)
35:00.0 Ethernet controller: Broadcom Inc. and subsidiaries NetXtreme BCM57761 Gigabit Ethernet PCIe (rev 10)
36:00.0 FireWire (IEEE 1394): LSI Corporation FW643 [TrueFire] PCIe 1394b Controller (rev 08)
4b:00.0 Non-Volatile memory controller: Kingston Technology Company, Inc. Device 2262 (rev 03)
4c:00.0 PCI bridge: ASMedia Technology Inc. Device 1806 (rev 01)
4d:00.0 PCI bridge: ASMedia Technology Inc. Device 1806 (rev 01)
4d:06.0 PCI bridge: ASMedia Technology Inc. Device 1806 (rev 01)
4d:0e.0 PCI bridge: ASMedia Technology Inc. Device 1806 (rev 01)
4e:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8125 2.5GbE Controller (rev 05)
51:00.0 Ethernet controller: Intel Corporation Ethernet Controller I225-V (rev 01)
52:00.0 Non-Volatile memory controller: Micron/Crucial Technology Device 540a (rev 01)
53:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Cezanne (rev c9)
53:00.1 Audio device: Advanced Micro Devices, Inc. [AMD/ATI] Device 1637
53:00.2 Encryption controller: Advanced Micro Devices, Inc. [AMD] Family 17h (Models 10h-1fh) Platform Security Processor
53:00.3 USB controller: Advanced Micro Devices, Inc. [AMD] Renoir USB 3.1
53:00.4 USB controller: Advanced Micro Devices, Inc. [AMD] Renoir USB 3.1
53:00.6 Audio device: Advanced Micro Devices, Inc. [AMD] Family 17h (Models 10h-1fh) HD Audio Controller

Logging an strace lspci -v before loading the thunderbolt module it runs straight through in under a clock second.

Abridged : 

19:28:44 access("/etc/selinux/config", F_OK) = -1 ENOENT (No such file or directory)
19:28:44 access("/sys/bus/pci", R_OK)   = 0
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
19:28:44 fstat(3, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
19:28:44 getdents64(3, 0x55bf61f66b00 /* 74 entries */, 32768) = 2352
19:28:44 getdents64(3, 0x55bf61f66b00 /* 0 entries */, 32768) = 0
19:28:44 close(3)                       = 0
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:32:00.0/config", O_RDONLY) = 3
19:28:44 pread64(3, "\330\22\f@\7\0\20\0\2\0\4\6\20\0\1\0\0\0\0\0\0\0\0\000234\0\361\1\0\0\20\337\20\337\361\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\200\0\0\0\0\0\0\0\377\0\22\0", 64, 0) = 64
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:32:00.0/vendor", O_RDONLY) = 4
19:28:44 read(4, "0x12d8\n", 1024)      = 7
19:28:44 close(4)                       = 0
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:32:00.0/device", O_RDONLY) = 4
19:28:44 read(4, "0x400c\n", 1024)      = 7
19:28:44 close(4)                       = 0
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:32:00.0/class", O_RDONLY) = 4
19:28:44 read(4, "0x060400\n", 1024)    = 9
19:28:44 close(4)                       = 0
19:28:44 close(3)                       = 0
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:4d:00.0/config", O_RDONLY) = 3
19:28:44 pread64(3, "!\33\6\30\7\4\20\0\1\0\4\6\20\0\1\0\0\0\0\0\0\0\0\0MNN\0\361\361\0\0P\357P\357\361\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0@\0\0\0\0\0\0\0\377\1\22\0", 64, 0) = 64
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:4d:00.0/vendor", O_RDONLY) = 4
19:28:44 read(4, "0x1b21\n", 1024)      = 7
19:28:44 close(4)                       = 0
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:4d:00.0/device", O_RDONLY) = 4
19:28:44 read(4, "0x1806\n", 1024)      = 7
19:28:44 close(4)                       = 0
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:4d:00.0/class", O_RDONLY) = 4
19:28:44 read(4, "0x060400\n", 1024)    = 9
19:28:44 close(4)                       = 0
19:28:44 close(3)                       = 0
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:00:18.5/config", O_RDONLY) = 3
19:28:44 pread64(3, "\"\20o\26\0\0\0\0\0\0\0\6\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 64, 0) = 64
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:00:18.5/vendor", O_RDONLY) = 4
19:28:44 read(4, "0x1022\n", 1024)      = 7
19:28:44 close(4)                       = 0
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:00:18.5/device", O_RDONLY) = 4
19:28:44 read(4, "0x166f\n", 1024)      = 7
19:28:44 close(4)                       = 0
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:00:18.5/class", O_RDONLY) = 4
19:28:44 read(4, "0x060000\n", 1024)    = 9
19:28:44 close(4)                       = 0
19:28:44 close(3)                       = 0
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:02:04.0/config", O_RDONLY) = 3
19:28:44 pread64(3, "\"\20\352C\7\4\20\0\0\0\4\6\20\0\1\0\0\0\0\0\0\0\0\0\2KK\0\361\1\0\0`\357`\357\361\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0P\0\0\0\0\0\0\0\377\1\22\0", 64, 0) = 64
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:02:04.0/vendor", O_RDONLY) = 4
19:28:44 read(4, "0x1022\n", 1024)      = 7
19:28:44 close(4)                       = 0
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:02:04.0/device", O_RDONLY) = 4
19:28:44 read(4, "0x43ea\n", 1024)      = 7
19:28:44 close(4)                       = 0
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:02:04.0/class", O_RDONLY) = 4
19:28:44 read(4, "0x060400\n", 1024)    = 9
19:28:44 close(4)                       = 0
19:28:44 close(3)                       = 0
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:31:04.0/config", O_RDONLY) = 3
19:28:44 pread64(3, "\206\200\23\25\7\0\20\0\0\0\4\6\20\0\1\0\0\0\0\0\0\0\0\000177\0\361\1\0\0\360\377\0\0\361\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\200\0\0\0\0\0\0\0\377\1\2\0", 64, 0) = 64
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:31:04.0/vendor", O_RDONLY) = 4
19:28:44 read(4, "0x8086\n", 1024)      = 7
19:28:44 close(4)                       = 0
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:31:04.0/device", O_RDONLY) = 4
19:28:44 read(4, "0x1513\n", 1024)      = 7
19:28:44 close(4)                       = 0
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:31:04.0/class", O_RDONLY) = 4
19:28:44 read(4, "0x060400\n", 1024)    = 9
19:28:44 close(4)                       = 0
19:28:44 close(3)                       = 0
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:33:03.0/config", O_RDONLY) = 3
19:28:44 pread64(3, "\330\22\f@\7\0\20\0\2\0\4\6\20\0\1\0\0\0\0\0\0\0\0\000344\0\361\1\0\0\20\337\20\337\361\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\200\0\0\0\0\0\0\0\377\0\22\0", 64, 0) = 64
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:33:03.0/vendor", O_RDONLY) = 4
19:28:44 read(4, "0x12d8\n", 1024)      = 7
19:28:44 close(4)                       = 0
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:33:03.0/device", O_RDONLY) = 4
19:28:44 read(4, "0x400c\n", 1024)      = 7
19:28:44 close(4)                       = 0
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:33:03.0/class", O_RDONLY) = 4
19:28:44 read(4, "0x060400\n", 1024)    = 9
19:28:44 close(4)                       = 0
19:28:44 close(3)                       = 0
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:00:14.0/config", O_RDONLY) = 3
19:28:44 pread64(3, "\"\20\vy\3\4 \2Q\0\5\f\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0X\24\1P\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 64, 0) = 64
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:00:14.0/vendor", O_RDONLY) = 4
19:28:44 read(4, "0x1022\n", 1024)      = 7
19:28:44 close(4)                       = 0
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:00:14.0/device", O_RDONLY) = 4
19:28:44 read(4, "0x790b\n", 1024)      = 7
19:28:44 close(4)                       = 0
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:00:14.0/class", O_RDONLY) = 4
19:28:44 read(4, "0x0c0500\n", 1024)    = 9
19:28:44 close(4)                       = 0
19:28:44 close(3)                       = 0
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:2a:00.0/config", O_RDONLY) = 3
19:28:44 pread64(3, "\206\200\23\25\7\4\20\0\0\0\4\6\20\0\1\0\0\0\0\0\0\0\0\0*+-\0\361\1\0\0000\3370\337\361\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\200\0\0\0\0\0\0\0\377\1\2\0", 64, 0) = 64
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:2a:00.0/vendor", O_RDONLY) = 4
19:28:44 read(4, "0x8086\n", 1024)      = 7
19:28:44 close(4)                       = 0
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:2a:00.0/device", O_RDONLY) = 4
19:28:44 read(4, "0x1513\n", 1024)      = 7
19:28:44 close(4)                       = 0
19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:2a:00.0/class", O_RDONLY) = 4
19:28:44 read(4, "0x060400\n", 1024)    = 9
19:28:44 close(4)                       = 0
19:28:44 close(3)                       = 0


Immediately after loading the thunderbolt module we get this abridged strace :

It all progresses rapidly until we hit the thunderbolt controller. This progressed through to completion albeit slowly.

19:29:02 execve("/usr/bin/lspci", ["lspci", "-v"], 0x7ffdd1692958 /* 18 vars */) = 0
........ 
19:29:02 access("/etc/selinux/config", F_OK) = -1 ENOENT (No such file or directory)
19:29:02 access("/sys/bus/pci", R_OK)   = 0
19:29:02 openat(AT_FDCWD, "/sys/bus/pci/devices", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
19:29:02 fstat(3, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
19:29:02 getdents64(3, 0x55b4081e5b00 /* 74 entries */, 32768) = 2352
19:29:02 getdents64(3, 0x55b4081e5b00 /* 0 entries */, 32768) = 0
19:29:02 close(3)                       = 0
19:29:02 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:32:00.0/config", O_RDONLY) = 3
19:29:02 pread64(3, "\330\22\f@\7\0\20\0\2\0\4\6\20\0\1\0\0\0\0\0\0\0\0\000234\0\361\1\0\0\20\337\20\337\361\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\200\0\0\0\0\0\0\0\377\0\22\0", 64, 0) = 64
19:29:02 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:32:00.0/vendor", O_RDONLY) = 4
19:29:02 read(4, "0x12d8\n", 1024)      = 7
19:29:02 close(4)                       = 0
19:29:02 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:32:00.0/device", O_RDONLY) = 4
19:29:02 read(4, "0x400c\n", 1024)      = 7
19:29:02 close(4)                       = 0
19:29:02 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:32:00.0/class", O_RDONLY) = 4
19:29:02 read(4, "0x060400\n", 1024)    = 9
19:29:02 close(4)                       = 0
19:29:02 close(3)                       = 0
19:29:02 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:4d:00.0/config", O_RDONLY) = 3
19:29:02 pread64(3, "!\33\6\30\7\4\20\0\1\0\4\6\20\0\1\0\0\0\0\0\0\0\0\0MNN\0\361\361\0\0P\357P\357\361\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0@\0\0\0\0\0\0\0\377\1\22\0", 64, 0) = 64
19:29:02 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:4d:00.0/vendor", O_RDONLY) = 4
19:29:02 read(4, "0x1b21\n", 1024)      = 7
19:29:02 close(4)                       = 0
19:29:02 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:4d:00.0/device", O_RDONLY) = 4
19:29:02 read(4, "0x1806\n", 1024)      = 7
19:29:02 close(4)                       = 0
19:29:02 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:4d:00.0/class", O_RDONLY) = 4
19:29:02 read(4, "0x060400\n", 1024)    = 9
19:29:02 close(4)                       = 0
19:29:02 close(3)                       = 0
19:29:02 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:00:18.5/config", O_RDONLY) = 3
19:29:02 pread64(3, "\"\20o\26\0\0\0\0\0\0\0\6\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 64, 0) = 64
19:29:02 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:00:18.5/vendor", O_RDONLY) = 4
19:29:02 read(4, "0x1022\n", 1024)      = 7
19:29:02 close(4)                       = 0
19:29:02 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:00:18.5/device", O_RDONLY) = 4
19:29:02 read(4, "0x166f\n", 1024)      = 7
19:29:02 close(4)                       = 0
19:29:02 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:00:18.5/class", O_RDONLY) = 4
19:29:02 read(4, "0x060000\n", 1024)    = 9
19:29:02 close(4)                       = 0
19:29:02 close(3)                       = 0
19:29:02 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:02:04.0/config", O_RDONLY) = 3
19:29:02 pread64(3, "\"\20\352C\7\4\20\0\0\0\4\6\20\0\1\0\0\0\0\0\0\0\0\0\2KK\0\361\1\0\0`\357`\357\361\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0P\0\0\0\0\0\0\0\377\1\22\0", 64, 0) = 64
19:29:02 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:02:04.0/vendor", O_RDONLY) = 4
19:29:02 read(4, "0x1022\n", 1024)      = 7
19:29:02 close(4)                       = 0
19:29:02 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:02:04.0/device", O_RDONLY) = 4
19:29:02 read(4, "0x43ea\n", 1024)      = 7
19:29:02 close(4)                       = 0
19:29:02 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:02:04.0/class", O_RDONLY) = 4
19:29:02 read(4, "0x060400\n", 1024)    = 9
19:29:02 close(4)                       = 0
19:29:02 close(3)                       = 0
19:29:02 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:31:04.0/config", O_RDONLY) = 3
19:29:02 pread64(3, "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377", 64, 0) = 64
19:29:05 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:31:04.0/vendor", O_RDONLY) = 4
19:29:05 read(4, "0x8086\n", 1024)      = 7
19:29:05 close(4)                       = 0
19:29:05 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:31:04.0/device", O_RDONLY) = 4
19:29:05 read(4, "0x1513\n", 1024)      = 7
19:29:05 close(4)                       = 0
19:29:05 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:31:04.0/class", O_RDONLY) = 4
19:29:05 read(4, "0x060400\n", 1024)    = 9
19:29:05 close(4)                       = 0
19:29:05 close(3)                       = 0
19:29:05 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:33:03.0/config", O_RDONLY) = 3
19:29:05 pread64(3, "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377", 64, 0) = 64
19:29:08 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:33:03.0/vendor", O_RDONLY) = 4
19:29:08 read(4, "0x12d8\n", 1024)      = 7
19:29:08 close(4)                       = 0
19:29:08 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:33:03.0/device", O_RDONLY) = 4
19:29:08 read(4, "0x400c\n", 1024)      = 7
19:29:08 close(4)                       = 0
19:29:08 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:33:03.0/class", O_RDONLY) = 4
19:29:08 read(4, "0x060400\n", 1024)    = 9
19:29:08 close(4)                       = 0
19:29:08 close(3)                       = 0
19:29:08 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:00:14.0/config", O_RDONLY) = 3
19:29:08 pread64(3, "\"\20\vy\3\4 \2Q\0\5\f\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0X\24\1P\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 64, 0) = 64
19:29:08 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:00:14.0/vendor", O_RDONLY) = 4
19:29:08 read(4, "0x1022\n", 1024)      = 7
19:29:08 close(4)                       = 0
19:29:08 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:00:14.0/device", O_RDONLY) = 4
19:29:08 read(4, "0x790b\n", 1024)      = 7
19:29:08 close(4)                       = 0
19:29:08 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:00:14.0/class", O_RDONLY) = 4
19:29:08 read(4, "0x0c0500\n", 1024)    = 9
19:29:08 close(4)                       = 0
19:29:08 close(3)                       = 0
19:29:08 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:2a:00.0/config", O_RDONLY) = 3
19:29:08 pread64(3, "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377", 64, 0) = 64
19:29:12 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:2a:00.0/vendor", O_RDONLY) = 4
19:29:12 read(4, "0x8086\n", 1024)      = 7
19:29:12 close(4)                       = 0
19:29:12 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:2a:00.0/device", O_RDONLY) = 4
19:29:12 read(4, "0x1513\n", 1024)      = 7
19:29:12 close(4)                       = 0
19:29:12 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:2a:00.0/class", O_RDONLY) = 4
19:29:12 read(4, "0x060400\n", 1024)    = 9
19:29:12 close(4)                       = 0
19:29:12 close(3)                       = 0
.....
19:30:49 +++ exited with 0 +++

An attempt to run it again resulted in a reboot.

Something goes off the rails with PCI access. The bizzare thing is I can hit the reset button, the machine boots
with all PCIe tunnels still established and I repeat the process (unload drivers, lspci, modprobe thunderbolt,
lspci locks up).

Regards,
Brad

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-08-08 11:55                                                           ` Brad Campbell
@ 2022-08-08 12:25                                                             ` Brad Campbell
  2022-08-08 12:46                                                               ` Mika Westerberg
  2022-08-08 12:42                                                             ` Mika Westerberg
  1 sibling, 1 reply; 47+ messages in thread
From: Brad Campbell @ 2022-08-08 12:25 UTC (permalink / raw)
  To: Mika Westerberg; +Cc: linux-kernel



On 8/8/22 19:55, Brad Campbell wrote:
> G'day Mika,
> 
> On 8/8/22 17:51, Mika Westerberg wrote:
>> Hi,
>>
>> On Sat, Aug 06, 2022 at 05:41:37PM +0800, Brad Campbell wrote:
>>> I've left in the patch to not set up the DP tunnel and recompiled with CONFIG_PCI_DEBUG=y
>>>
>>> The minimum I can use to reproduce the fault is a single Thunderbolt display. The Apple TB->GBe dongle doesn't do it
>>> and I have a TB->USB3+eSATA dongle that won't run on the TB3->TB1 adapter due to insufficient power.
>>>
>>> This is captured with serial console. It's a cold boot with a single TB display connected. Boots to desktop and I immediately issue a reboot.
>>>
>>> From -> [   15.337689] xhci_hcd 0000:53:00.3: xHCI Host Controller <- on the second boot, the console output slows to
>>> about 1-2 characters per second (nothing updates on the monitor) and eventually the machine reboots by itself. I don't have reboot on panic set.
>>
>> I noticed that the device links are not set for AR/TR devices but it
>> probably does not help here. Anyway can you try the below patch just in
>> case?
>>
>> I did not see anything that stands out from the logs so next step would
>> be to unbind the drivers for each PCIe device of the TBT display and see
>> if that helps (so we can narrow this down to a specific driver). You can
>> either just unload the whole driver (rmmod or modprobe -r) or
>> "echo XXXX > /sys/pci/drivers/DRIVER/unbind". Where XXXX is the PCI
>> device name, like 0000:00:2a.0 and so on.
> 
> It's not looking driver specific. The only 2 drivers I have for that device are the tg3
> and o/ehci drivers.
>  
>> diff --git a/drivers/thunderbolt/tb.c b/drivers/thunderbolt/tb.c
>> index 8030fc544c5e..bfe023030b90 100644
>> --- a/drivers/thunderbolt/tb.c
>> +++ b/drivers/thunderbolt/tb.c
>> @@ -2181,6 +2181,10 @@ static void tb_apple_add_links(struct tb_nhi *nhi)
>>  	case PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_4C:
>>  	case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_2C_NHI:
>>  	case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_4C_NHI:
>> +	case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_2C_NHI:
>> +	case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_4C_NHI:
>> +	case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_2C_NHI:
>> +	case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_4C_NHI:
>>  		break;
>>  	default:
>>  		return;
>>
> 
> Applied that patch. No change unfortunately.
> 
> I unloaded the tg3 driver and all usb ([xeo]hci) drivers and still ran into the problem.
> Less so in that the machine responds to a ps2 keyboard and the magic-sysrq keys _slowly and
> still reboots "randomly".
> 
> lspci straight after boot :
> 
> 00:00.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Renoir Root Complex
> 00:00.2 IOMMU: Advanced Micro Devices, Inc. [AMD] Renoir IOMMU
> 00:01.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Renoir PCIe Dummy Host Bridge
> 00:02.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Renoir PCIe Dummy Host Bridge
> 00:02.1 PCI bridge: Advanced Micro Devices, Inc. [AMD] Renoir PCIe GPP Bridge
> 00:02.2 PCI bridge: Advanced Micro Devices, Inc. [AMD] Renoir PCIe GPP Bridge
> 00:08.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Renoir PCIe Dummy Host Bridge
> 00:08.1 PCI bridge: Advanced Micro Devices, Inc. [AMD] Renoir Internal PCIe GPP Bridge to Bus
> 00:14.0 SMBus: Advanced Micro Devices, Inc. [AMD] FCH SMBus Controller (rev 51)
> 00:14.3 ISA bridge: Advanced Micro Devices, Inc. [AMD] FCH LPC Bridge (rev 51)
> 00:18.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 166a
> 00:18.1 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 166b
> 00:18.2 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 166c
> 00:18.3 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 166d
> 00:18.4 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 166e
> 00:18.5 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 166f
> 00:18.6 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 1670
> 00:18.7 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 1671
> 01:00.0 USB controller: Advanced Micro Devices, Inc. [AMD] Device 43ee
> 01:00.1 SATA controller: Advanced Micro Devices, Inc. [AMD] Device 43eb
> 01:00.2 PCI bridge: Advanced Micro Devices, Inc. [AMD] Device 43e9
> 02:00.0 PCI bridge: Advanced Micro Devices, Inc. [AMD] Device 43ea
> 02:04.0 PCI bridge: Advanced Micro Devices, Inc. [AMD] Device 43ea
> 02:08.0 PCI bridge: Advanced Micro Devices, Inc. [AMD] Device 43ea
> 02:09.0 PCI bridge: Advanced Micro Devices, Inc. [AMD] Device 43ea
> 03:00.0 PCI bridge: Intel Corporation JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018] (rev 06)
> 04:00.0 PCI bridge: Intel Corporation JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018] (rev 06)
> 04:01.0 PCI bridge: Intel Corporation JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018] (rev 06)
> 04:02.0 PCI bridge: Intel Corporation JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018] (rev 06)
> 04:04.0 PCI bridge: Intel Corporation JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018] (rev 06)
> 05:00.0 System peripheral: Intel Corporation JHL7540 Thunderbolt 3 NHI [Titan Ridge 4C 2018] (rev 06)
> 28:00.0 USB controller: Intel Corporation JHL7540 Thunderbolt 3 USB Controller [Titan Ridge 4C 2018] (rev 06)
> 29:00.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010]
> 2a:00.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010]
> 2a:01.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010]
> 2a:02.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010]
> 2a:04.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010]
> 2a:05.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010]
> 2b:00.0 PCI bridge: Pericom Semiconductor Device 400c (rev 02)
> 2c:03.0 PCI bridge: Pericom Semiconductor Device 400c (rev 02)
> 2d:00.0 USB controller: Pericom Semiconductor PI7C9X442SL USB OHCI Controller (rev 01)
> 2d:00.1 USB controller: Pericom Semiconductor PI7C9X442SL USB OHCI Controller (rev 01)
> 2d:00.2 USB controller: Pericom Semiconductor PI7C9X442SL USB EHCI Controller (rev 01)
> 2e:00.0 Ethernet controller: Broadcom Inc. and subsidiaries NetXtreme BCM57761 Gigabit Ethernet PCIe (rev 10)
> 2f:00.0 FireWire (IEEE 1394): LSI Corporation FW643 [TrueFire] PCIe 1394b Controller (rev 08)
> 30:00.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010]
> 31:00.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010]
> 31:01.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010]
> 31:02.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010]
> 31:04.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010]
> 31:05.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010]
> 32:00.0 PCI bridge: Pericom Semiconductor Device 400c (rev 02)
> 33:03.0 PCI bridge: Pericom Semiconductor Device 400c (rev 02)
> 34:00.0 USB controller: Pericom Semiconductor PI7C9X442SL USB OHCI Controller (rev 01)
> 34:00.1 USB controller: Pericom Semiconductor PI7C9X442SL USB OHCI Controller (rev 01)
> 34:00.2 USB controller: Pericom Semiconductor PI7C9X442SL USB EHCI Controller (rev 03)
> 35:00.0 Ethernet controller: Broadcom Inc. and subsidiaries NetXtreme BCM57761 Gigabit Ethernet PCIe (rev 10)
> 36:00.0 FireWire (IEEE 1394): LSI Corporation FW643 [TrueFire] PCIe 1394b Controller (rev 08)
> 4b:00.0 Non-Volatile memory controller: Kingston Technology Company, Inc. Device 2262 (rev 03)
> 4c:00.0 PCI bridge: ASMedia Technology Inc. Device 1806 (rev 01)
> 4d:00.0 PCI bridge: ASMedia Technology Inc. Device 1806 (rev 01)
> 4d:06.0 PCI bridge: ASMedia Technology Inc. Device 1806 (rev 01)
> 4d:0e.0 PCI bridge: ASMedia Technology Inc. Device 1806 (rev 01)
> 4e:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8125 2.5GbE Controller (rev 05)
> 51:00.0 Ethernet controller: Intel Corporation Ethernet Controller I225-V (rev 01)
> 52:00.0 Non-Volatile memory controller: Micron/Crucial Technology Device 540a (rev 01)
> 53:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Cezanne (rev c9)
> 53:00.1 Audio device: Advanced Micro Devices, Inc. [AMD/ATI] Device 1637
> 53:00.2 Encryption controller: Advanced Micro Devices, Inc. [AMD] Family 17h (Models 10h-1fh) Platform Security Processor
> 53:00.3 USB controller: Advanced Micro Devices, Inc. [AMD] Renoir USB 3.1
> 53:00.4 USB controller: Advanced Micro Devices, Inc. [AMD] Renoir USB 3.1
> 53:00.6 Audio device: Advanced Micro Devices, Inc. [AMD] Family 17h (Models 10h-1fh) HD Audio Controller
> 

And now we are getting somewhere. It's when we hit the Light Ridge controller :
 
root@bkd:/sys/bus/pci/devices/0000:31:04.0# time cat config | hexdump
0000000 8086 1513 0007 0010 0000 0604 0010 0001
0000010 0000 0000 0000 0000 3731 0037 01f1 0000
0000020 fff0 0000 fff1 0001 0000 0000 0000 0000
0000030 0000 0000 0080 0000 0000 0000 01ff 0002
0000040 0000 0000 0000 0000 0000 0000 0000 0000
*
0000080 8801 fe03 2008 0a00 c005 008a 0000 0000
0000090 0000 0000 0000 0000 0000 0000 0000 0000
*
00000c0 0010 0162 8020 0000 291f 0010 fc41 0433
00000d0 0000 1041 0060 0020 1038 0000 0000 0000
00000e0 0000 0000 0000 0000 0000 0000 0000 0000
00000f0 0000 0001 0000 0000 0000 0000 0000 0000
0000100 0003 2001 a000 00c9 0000 0100 0000 0000
0000110 0000 0000 0000 0000 0000 0000 0000 0000
*
0000200 0001 3001 0000 0000 0000 0000 2030 0006
0000210 0000 0000 2000 0000 0000 0000 0000 0000
0000220 0000 0000 0000 0000 0000 0000 0000 0000
*
0000300 0002 4001 0000 0000 0000 0000 0000 0000
0000310 0000 0000 00ff 8000 0000 0002 0000 0000
0000320 0000 0000 0000 0000 0000 0000 0000 0000
*
0000400 0004 5001 0000 0000 82a5 0007 0000 0000
0000410 0000 0000 0000 0000 0000 0000 0000 0000
*
0000500 000b 0001 1234 01c1 0950 0000 0039 0000
0000510 0000 0000 0000 0000 0000 0000 0000 0000
*
0001000

real	0m0.005s
user	0m0.005s
sys	0m0.000s
root@bkd:/sys/bus/pci/devices/0000:31:04.0# modprobe thunderbolt
root@bkd:/sys/bus/pci/devices/0000:31:04.0# time cat config | hexdump

<slowdown/lockup/reboot>

This on the serial console : 
[  160.248275] ACPI: bus type thunderbolt registered
[  160.253386] thunderbolt 0000:05:00.0: enabling device (0000 -> 0002)
[  160.872438] thunderbolt 0-3: new device found, vendor=0x1 device=0x8002
[  160.879398] thunderbolt 0-3: Apple, Inc. Thunderbolt Display
[  161.436984] thunderbolt 0-303: new device found, vendor=0x1 device=0x8002
[  161.444108] thunderbolt 0-303: Apple, Inc. Thunderbolt Display
[  165.324982] hrtimer: interrupt took 604007930 ns
[  169.744439] xhci_hcd 0000:28:00.0: Unable to change power state from D3hot to D0, device inaccessible
[  223.912783] rcu: INFO: rcu_preempt self-detected stall on CPU
[  229.741463] rcu:     9-....: (126 ticks this GP) idle=0d44/1/0x4000000000000000 softirq=1935/1935 fqs=76
[  237.593512]  (t=7349 jiffies g=1537 q=264 ncpus=12)
[  242.425503] NMI backtrace for cpu 9
[  244.640203] CPU: 9 PID: 57 Comm: ksoftirqd/9 Tainted: G           O       5.19.0+ #57
[  251.082940] Hardware name: Gigabyte Technology Co., Ltd. B550 VISION D-P/B550 VISION D-P, BIOS F15d 07/20/2022
[  258.532330] Call Trace:
[  260.545693]  <IRQ>
[  262.156386]  dump_stack_lvl+0x34/0x44
[  264.985085]  nmi_cpu_backtrace.cold+0x30/0x70
[  268.800445]  ? lapic_can_unplug_cpu+0x90/0x90
[  273.028459]  nmi_trig


Regards,
Brad

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-08-08 11:55                                                           ` Brad Campbell
  2022-08-08 12:25                                                             ` Brad Campbell
@ 2022-08-08 12:42                                                             ` Mika Westerberg
  1 sibling, 0 replies; 47+ messages in thread
From: Mika Westerberg @ 2022-08-08 12:42 UTC (permalink / raw)
  To: Brad Campbell; +Cc: linux-kernel

Hi,

On Mon, Aug 08, 2022 at 07:55:14PM +0800, Brad Campbell wrote:
> 31:04.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010]

...

> 19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:31:04.0/config", O_RDONLY) = 3
> 19:28:44 pread64(3, "\206\200\23\25\7\0\20\0\0\0\4\6\20\0\1\0\0\0\0\0\0\0\0\000177\0\361\1\0\0\360\377\0\0\361\377\1\0\0\0\0\0\0\0\0\0\0\0\0\0\200\0\0\0\0\0\0\0\377\1\2\0", 64, 0) = 64
> 19:28:44 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:31:04.0/vendor", O_RDONLY) = 4
> 19:28:44 read(4, "0x8086\n", 1024)      = 7

...

> 19:29:02 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:31:04.0/config", O_RDONLY) = 3
> 19:29:02 pread64(3, "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377", 64, 0) = 64

It looks like the 31:04 PCIe downstream port and the device below are
not accessible anymore (we read 0xff from the config space if parse the
strace output correctly).

> 19:29:05 openat(AT_FDCWD, "/sys/bus/pci/devices/0000:33:03.0/config", O_RDONLY) = 3
> 19:29:05 pread64(3, "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377", 64, 0) = 64

Same here for the 33:03.

Now, this can happen if the Thunderbolt driver runtime suspends and
there is not device link in place from the TR tunneled PCIe downstream
ports towards the Thunderbolt controller. However, you have the
pcie_port_pm=off that should prevent it from happening (and the
Thunderbolt driver blocks runtime PM on TBT1 devices). Can you modify
drivers/pci/pci.c::pci_bridge_d3_possible() so that it looks like this

bool pci_bridge_d3_possible(struct pci_dev *bridge)
{
#if 0
	...
#else
	return false;
#endif
}

and try if that makes any difference? Probably no but worth a try
anyway.

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-08-08 12:25                                                             ` Brad Campbell
@ 2022-08-08 12:46                                                               ` Mika Westerberg
  2022-08-08 13:27                                                                 ` Brad Campbell
  0 siblings, 1 reply; 47+ messages in thread
From: Mika Westerberg @ 2022-08-08 12:46 UTC (permalink / raw)
  To: Brad Campbell; +Cc: linux-kernel

On Mon, Aug 08, 2022 at 08:25:56PM +0800, Brad Campbell wrote:
> root@bkd:/sys/bus/pci/devices/0000:31:04.0# modprobe thunderbolt
> root@bkd:/sys/bus/pci/devices/0000:31:04.0# time cat config | hexdump
> 
> <slowdown/lockup/reboot>
> 
> This on the serial console : 
> [  160.248275] ACPI: bus type thunderbolt registered
> [  160.253386] thunderbolt 0000:05:00.0: enabling device (0000 -> 0002)
> [  160.872438] thunderbolt 0-3: new device found, vendor=0x1 device=0x8002
> [  160.879398] thunderbolt 0-3: Apple, Inc. Thunderbolt Display
> [  161.436984] thunderbolt 0-303: new device found, vendor=0x1 device=0x8002
> [  161.444108] thunderbolt 0-303: Apple, Inc. Thunderbolt Display
> [  165.324982] hrtimer: interrupt took 604007930 ns
> [  169.744439] xhci_hcd 0000:28:00.0: Unable to change power state from D3hot to D0, device inaccessible
> [  223.912783] rcu: INFO: rcu_preempt self-detected stall on CPU
> [  229.741463] rcu:     9-....: (126 ticks this GP) idle=0d44/1/0x4000000000000000 softirq=1935/1935 fqs=76
> [  237.593512]  (t=7349 jiffies g=1537 q=264 ncpus=12)
> [  242.425503] NMI backtrace for cpu 9
> [  244.640203] CPU: 9 PID: 57 Comm: ksoftirqd/9 Tainted: G           O       5.19.0+ #57
> [  251.082940] Hardware name: Gigabyte Technology Co., Ltd. B550 VISION D-P/B550 VISION D-P, BIOS F15d 07/20/2022
> [  258.532330] Call Trace:
> [  260.545693]  <IRQ>
> [  262.156386]  dump_stack_lvl+0x34/0x44
> [  264.985085]  nmi_cpu_backtrace.cold+0x30/0x70
> [  268.800445]  ? lapic_can_unplug_cpu+0x90/0x90
> [  273.028459]  nmi_trig

Yeah, the link (PCIe tunnel) seems not to be functional and that causes
the hang. In addition to what I asked in my previous email, let's block
runtime PM from xHCI too in drivers/usb/host/xhci-pci.c::xhci_pci_quirks():

Comment out this block:

        if (pdev->vendor == PCI_VENDOR_ID_INTEL &&
            (pdev->device == PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_2C_XHCI ||
             pdev->device == PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_4C_XHCI ||
             pdev->device == PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_LP_XHCI ||
             pdev->device == PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_C_2C_XHCI ||
             pdev->device == PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_C_4C_XHCI ||
             pdev->device == PCI_DEVICE_ID_INTEL_TITAN_RIDGE_2C_XHCI ||
             pdev->device == PCI_DEVICE_ID_INTEL_TITAN_RIDGE_4C_XHCI ||
             pdev->device == PCI_DEVICE_ID_INTEL_TITAN_RIDGE_DD_XHCI ||
             pdev->device == PCI_DEVICE_ID_INTEL_ICE_LAKE_XHCI ||
             pdev->device == PCI_DEVICE_ID_INTEL_TIGER_LAKE_XHCI ||
             pdev->device == PCI_DEVICE_ID_INTEL_MAPLE_RIDGE_XHCI ||
             pdev->device == PCI_DEVICE_ID_INTEL_ALDER_LAKE_XHCI ||
             pdev->device == PCI_DEVICE_ID_INTEL_ALDER_LAKE_N_XHCI ||
             pdev->device == PCI_DEVICE_ID_INTEL_ALDER_LAKE_PCH_XHCI ||
             pdev->device == PCI_DEVICE_ID_INTEL_RAPTOR_LAKE_XHCI ||
             pdev->device == PCI_DEVICE_ID_INTEL_METEOR_LAKE_XHCI))
                xhci->quirks |= XHCI_DEFAULT_PM_RUNTIME_ALLOW;

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-08-08 12:46                                                               ` Mika Westerberg
@ 2022-08-08 13:27                                                                 ` Brad Campbell
  2022-08-09 10:23                                                                   ` Mika Westerberg
  0 siblings, 1 reply; 47+ messages in thread
From: Brad Campbell @ 2022-08-08 13:27 UTC (permalink / raw)
  To: Mika Westerberg; +Cc: linux-kernel

G'day Mika,

On 8/8/22 20:46, Mika Westerberg wrote:
> On Mon, Aug 08, 2022 at 08:25:56PM +0800, Brad Campbell wrote:
>> root@bkd:/sys/bus/pci/devices/0000:31:04.0# modprobe thunderbolt
>> root@bkd:/sys/bus/pci/devices/0000:31:04.0# time cat config | hexdump
>>
>> <slowdown/lockup/reboot>
>>
>> This on the serial console : 
>> [  160.248275] ACPI: bus type thunderbolt registered
>> [  160.253386] thunderbolt 0000:05:00.0: enabling device (0000 -> 0002)
>> [  160.872438] thunderbolt 0-3: new device found, vendor=0x1 device=0x8002
>> [  160.879398] thunderbolt 0-3: Apple, Inc. Thunderbolt Display
>> [  161.436984] thunderbolt 0-303: new device found, vendor=0x1 device=0x8002
>> [  161.444108] thunderbolt 0-303: Apple, Inc. Thunderbolt Display
>> [  165.324982] hrtimer: interrupt took 604007930 ns
>> [  169.744439] xhci_hcd 0000:28:00.0: Unable to change power state from D3hot to D0, device inaccessible
>> [  223.912783] rcu: INFO: rcu_preempt self-detected stall on CPU
>> [  229.741463] rcu:     9-....: (126 ticks this GP) idle=0d44/1/0x4000000000000000 softirq=1935/1935 fqs=76
>> [  237.593512]  (t=7349 jiffies g=1537 q=264 ncpus=12)
>> [  242.425503] NMI backtrace for cpu 9
>> [  244.640203] CPU: 9 PID: 57 Comm: ksoftirqd/9 Tainted: G           O       5.19.0+ #57
>> [  251.082940] Hardware name: Gigabyte Technology Co., Ltd. B550 VISION D-P/B550 VISION D-P, BIOS F15d 07/20/2022
>> [  258.532330] Call Trace:
>> [  260.545693]  <IRQ>
>> [  262.156386]  dump_stack_lvl+0x34/0x44
>> [  264.985085]  nmi_cpu_backtrace.cold+0x30/0x70
>> [  268.800445]  ? lapic_can_unplug_cpu+0x90/0x90
>> [  273.028459]  nmi_trig
> 
> Yeah, the link (PCIe tunnel) seems not to be functional and that causes
> the hang. In addition to what I asked in my previous email, let's block
> runtime PM from xHCI too in drivers/usb/host/xhci-pci.c::xhci_pci_quirks():
> 
> Comment out this block:
> 
>         if (pdev->vendor == PCI_VENDOR_ID_INTEL &&
>             (pdev->device == PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_2C_XHCI ||
>              pdev->device == PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_4C_XHCI ||
>              pdev->device == PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_LP_XHCI ||
>              pdev->device == PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_C_2C_XHCI ||
>              pdev->device == PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_C_4C_XHCI ||
>              pdev->device == PCI_DEVICE_ID_INTEL_TITAN_RIDGE_2C_XHCI ||
>              pdev->device == PCI_DEVICE_ID_INTEL_TITAN_RIDGE_4C_XHCI ||
>              pdev->device == PCI_DEVICE_ID_INTEL_TITAN_RIDGE_DD_XHCI ||
>              pdev->device == PCI_DEVICE_ID_INTEL_ICE_LAKE_XHCI ||
>              pdev->device == PCI_DEVICE_ID_INTEL_TIGER_LAKE_XHCI ||
>              pdev->device == PCI_DEVICE_ID_INTEL_MAPLE_RIDGE_XHCI ||
>              pdev->device == PCI_DEVICE_ID_INTEL_ALDER_LAKE_XHCI ||
>              pdev->device == PCI_DEVICE_ID_INTEL_ALDER_LAKE_N_XHCI ||
>              pdev->device == PCI_DEVICE_ID_INTEL_ALDER_LAKE_PCH_XHCI ||
>              pdev->device == PCI_DEVICE_ID_INTEL_RAPTOR_LAKE_XHCI ||
>              pdev->device == PCI_DEVICE_ID_INTEL_METEOR_LAKE_XHCI))
>                 xhci->quirks |= XHCI_DEFAULT_PM_RUNTIME_ALLOW;
> 

No change I'm afraid.

For completness, the current diff is :
diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c
index 95bc329e74c0..9250a3f50d90 100644
--- a/drivers/pci/pci.c
+++ b/drivers/pci/pci.c
@@ -2989,6 +2989,7 @@ static const struct dmi_system_id bridge_d3_blacklist[] = {
  */
 bool pci_bridge_d3_possible(struct pci_dev *bridge)
 {
+#if 0
 	if (!pci_is_pcie(bridge))
 		return false;
 
@@ -3036,8 +3037,9 @@ bool pci_bridge_d3_possible(struct pci_dev *bridge)
 			return true;
 		break;
 	}
-
+#else
 	return false;
+#endif
 }
 
 static int pci_dev_check_d3cold(struct pci_dev *dev, void *data)
diff --git a/drivers/thunderbolt/tb.c b/drivers/thunderbolt/tb.c
index 9853f6c7e81d..c40f9a91a379 100644
--- a/drivers/thunderbolt/tb.c
+++ b/drivers/thunderbolt/tb.c
@@ -886,7 +886,7 @@ static void tb_tunnel_dp(struct tb *tb)
 	struct tb_cm *tcm = tb_priv(tb);
 	struct tb_port *port, *in, *out;
 	struct tb_tunnel *tunnel;
-
+	return;
 	if (!tb_acpi_may_tunnel_dp()) {
 		tb_dbg(tb, "DP tunneling disabled, not creating tunnel\n");
 		return;
@@ -1712,6 +1712,10 @@ static void tb_apple_add_links(struct tb_nhi *nhi)
 	case PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_4C:
 	case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_2C_NHI:
 	case PCI_DEVICE_ID_INTEL_FALCON_RIDGE_4C_NHI:
+	case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_2C_NHI:
+	case PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_4C_NHI:
+	case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_2C_NHI:
+	case PCI_DEVICE_ID_INTEL_TITAN_RIDGE_4C_NHI:
 		break;
 	default:
 		return;
diff --git a/drivers/usb/host/xhci-pci.c b/drivers/usb/host/xhci-pci.c
index dce6c0ec8d34..dd3af1b2554e 100644
--- a/drivers/usb/host/xhci-pci.c
+++ b/drivers/usb/host/xhci-pci.c
@@ -256,7 +256,7 @@ static void xhci_pci_quirks(struct device *dev, struct xhci_hcd *xhci)
 	     pdev->device == PCI_DEVICE_ID_INTEL_APL_XHCI ||
 	     pdev->device == PCI_DEVICE_ID_INTEL_DNV_XHCI))
 		xhci->quirks |= XHCI_MISSING_CAS;
-
+/*
 	if (pdev->vendor == PCI_VENDOR_ID_INTEL &&
 	    (pdev->device == PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_2C_XHCI ||
 	     pdev->device == PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_4C_XHCI ||
@@ -275,7 +275,7 @@ static void xhci_pci_quirks(struct device *dev, struct xhci_hcd *xhci)
 	     pdev->device == PCI_DEVICE_ID_INTEL_RAPTOR_LAKE_XHCI ||
 	     pdev->device == PCI_DEVICE_ID_INTEL_METEOR_LAKE_XHCI))
 		xhci->quirks |= XHCI_DEFAULT_PM_RUNTIME_ALLOW;
-
+*/
 	if (pdev->vendor == PCI_VENDOR_ID_ETRON &&
 			pdev->device == PCI_DEVICE_ID_EJ168) {
 		xhci->quirks |= XHCI_RESET_ON_RESUME;



[  148.322958] ACPI: bus type thunderbolt registered
[  148.327725] thunderbolt 0000:05:00.0: enabling device (0000 -> 0002)
[  148.947310] thunderbolt 0-3: new device found, vendor=0x1 device=0x8002
[  148.953997] thunderbolt 0-3: Apple, Inc. Thunderbolt Display
[  149.511086] thunderbolt 0-303: new device found, vendor=0x1 device=0x8002
[  149.517878] thunderbolt 0-303: Apple, Inc. Thunderbolt Display
[  167.598661] hrtimer: interrupt took 604001513 ns
[  167.598661] hrtimer: interrupt took 604001513 ns
[  167.598661] hrtimer: interrupt took 604001513 ns

Those last 3 lines come out at about 2 characters per second.
Something happens in the kernel that causes console input and output to slow to a crawl
then it eventually reboots. Tried it with tg3 & usb drivers loaded, and unloaded.

The peculiar thing is this only happens after the thunderbolt module is loaded when the tunnels
are already established. If I don't load the thunderbolt module it all works perfectly.

My workaround is to blacklist the module. In the boot scripts it looks for the thunderbolt displays
If it can't find them it loads the module, authorizes the devices and reboots. When it reboots 
it doesn't load the module and everything works perfectly.

If I don't authorize the PCIe tunnels and just leave the DP enabled it works fine also.

Regards,
Brad

^ permalink raw reply related	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-08-08 13:27                                                                 ` Brad Campbell
@ 2022-08-09 10:23                                                                   ` Mika Westerberg
  2022-08-09 10:40                                                                     ` Brad Campbell
  0 siblings, 1 reply; 47+ messages in thread
From: Mika Westerberg @ 2022-08-09 10:23 UTC (permalink / raw)
  To: Brad Campbell; +Cc: linux-kernel

Hi,

On Mon, Aug 08, 2022 at 09:27:24PM +0800, Brad Campbell wrote:
> If I don't authorize the PCIe tunnels and just leave the DP enabled it
> works fine also.

But you say that it fails on boot when the driver discovers the tunnels,
right? So there is really nothing to authorize (they should be already
"authorized" by the boot firmware).

If I understand correctly this is how it reproduces (the simplest):

  1. Connect a single Apple TB1 display to the system
  2. Boot it up
  3. Wait a while and it hangs

If this is the case, then the driver certainly is not creating any
PCIe tunnels itself unless there is a bug somewhere.

An additional question, does it reproduce with either TB1 display
connected or just with specific TB1 display?

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-08-09 10:23                                                                   ` Mika Westerberg
@ 2022-08-09 10:40                                                                     ` Brad Campbell
  2022-08-09 10:55                                                                       ` Mika Westerberg
  0 siblings, 1 reply; 47+ messages in thread
From: Brad Campbell @ 2022-08-09 10:40 UTC (permalink / raw)
  To: Mika Westerberg; +Cc: linux-kernel

G'day Mika,


On 9/8/22 18:23, Mika Westerberg wrote:
> Hi,
> 
> On Mon, Aug 08, 2022 at 09:27:24PM +0800, Brad Campbell wrote:
>> If I don't authorize the PCIe tunnels and just leave the DP enabled it
>> works fine also.
> 
> But you say that it fails on boot when the driver discovers the tunnels,
> right? So there is really nothing to authorize (they should be already
> "authorized" by the boot firmware).
> 
> If I understand correctly this is how it reproduces (the simplest):
> 
>   1. Connect a single Apple TB1 display to the system
>   2. Boot it up
>   3. Wait a while and it hangs
> 
> If this is the case, then the driver certainly is not creating any
> PCIe tunnels itself unless there is a bug somewhere.
> 
> An additional question, does it reproduce with either TB1 display
> connected or just with specific TB1 display?
> 

No, I've not been clear enough, I'm sorry. I've re-read what I've written below and
I'm still not sure I'm clear enough.

The firmware never sets anything up. 

When I cold boot the machine (from power on), the thunderbolt displays and tunnels
remain dark until linux initializes the thunderbolt driver the first time. 
 
If I compile the thunderbolt driver into the kernel, or let the initramfs load it
the displays come up, all PCIe tunnels are established and everything works.

When I reboot the machine (reset button or warm boot), the firmware continues to
do nothing and all the tunnels remain in place. The machine dies when the thunderbolt 
driver is loaded for a second time.

That might be a reset/warm boot with it compiled in or loaded from iniramfs.
It may also be me loading it from the command line after booting with it as a
module and blacklisted.

The problem comes about when the thunderbolt module is loaded while the PCIe tunnels
are already established.

To reproduce in the easiest manner I compile the thunderbolt driver as a module and
blacklist it. This prevents it from auto-loading.

I cold boot the machine, let it boot completely then modprobe thunderbolt and authorize
the tunnels. I then warm boot which lets the kernel detect and init the DP displays
and detect/configure all the PCIe devices. The thunderbolt driver is not loaded.

The machine comes up, all tunnels are established and all devices work.

If I then modprobe the thunderbolt driver, things break.

This is the hack in my boot script :

# Spark up thunderbolt
if [ -z "`grep notb /proc/cmdline`" -a -z "`lsusb | grep '05ac:9227'`" ] ; then
	modprobe thunderbolt
	sleep 1
	echo 1 > /sys/bus/thunderbolt/devices/0-3/authorized
	echo 1 > /sys/bus/thunderbolt/devices/0-303/authorized
	reboot
fi

Regards,
Brad

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-08-09 10:40                                                                     ` Brad Campbell
@ 2022-08-09 10:55                                                                       ` Mika Westerberg
  2022-08-09 11:03                                                                         ` Brad Campbell
  2022-08-09 11:08                                                                         ` Brad Campbell
  0 siblings, 2 replies; 47+ messages in thread
From: Mika Westerberg @ 2022-08-09 10:55 UTC (permalink / raw)
  To: Brad Campbell; +Cc: linux-kernel

Hi,

On Tue, Aug 09, 2022 at 06:40:54PM +0800, Brad Campbell wrote:
> G'day Mika,
> 
> 
> On 9/8/22 18:23, Mika Westerberg wrote:
> > Hi,
> > 
> > On Mon, Aug 08, 2022 at 09:27:24PM +0800, Brad Campbell wrote:
> >> If I don't authorize the PCIe tunnels and just leave the DP enabled it
> >> works fine also.
> > 
> > But you say that it fails on boot when the driver discovers the tunnels,
> > right? So there is really nothing to authorize (they should be already
> > "authorized" by the boot firmware).
> > 
> > If I understand correctly this is how it reproduces (the simplest):
> > 
> >   1. Connect a single Apple TB1 display to the system
> >   2. Boot it up
> >   3. Wait a while and it hangs
> > 
> > If this is the case, then the driver certainly is not creating any
> > PCIe tunnels itself unless there is a bug somewhere.
> > 
> > An additional question, does it reproduce with either TB1 display
> > connected or just with specific TB1 display?
> > 
> 
> No, I've not been clear enough, I'm sorry. I've re-read what I've written below and
> I'm still not sure I'm clear enough.
> 
> The firmware never sets anything up. 
> 
> When I cold boot the machine (from power on), the thunderbolt displays and tunnels
> remain dark until linux initializes the thunderbolt driver the first time. 
>  
> If I compile the thunderbolt driver into the kernel, or let the initramfs load it
> the displays come up, all PCIe tunnels are established and everything works.
> 
> When I reboot the machine (reset button or warm boot), the firmware continues to
> do nothing and all the tunnels remain in place. The machine dies when the thunderbolt 
> driver is loaded for a second time.
> 
> That might be a reset/warm boot with it compiled in or loaded from iniramfs.
> It may also be me loading it from the command line after booting with it as a
> module and blacklisted.
> 
> The problem comes about when the thunderbolt module is loaded while the PCIe tunnels
> are already established.
> 
> To reproduce in the easiest manner I compile the thunderbolt driver as a module and
> blacklist it. This prevents it from auto-loading.
> 
> I cold boot the machine, let it boot completely then modprobe thunderbolt and authorize
> the tunnels. I then warm boot which lets the kernel detect and init the DP displays
> and detect/configure all the PCIe devices. The thunderbolt driver is not loaded.
> 
> The machine comes up, all tunnels are established and all devices work.
> 
> If I then modprobe the thunderbolt driver, things break.
> 
> This is the hack in my boot script :
> 
> # Spark up thunderbolt
> if [ -z "`grep notb /proc/cmdline`" -a -z "`lsusb | grep '05ac:9227'`" ] ; then
> 	modprobe thunderbolt
> 	sleep 1
> 	echo 1 > /sys/bus/thunderbolt/devices/0-3/authorized
> 	echo 1 > /sys/bus/thunderbolt/devices/0-303/authorized
> 	reboot
> fi

Thanks for the clarification! How about on macOS side, does it work (I
would expect yes)?

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-08-09 10:55                                                                       ` Mika Westerberg
@ 2022-08-09 11:03                                                                         ` Brad Campbell
  2022-08-09 11:08                                                                         ` Brad Campbell
  1 sibling, 0 replies; 47+ messages in thread
From: Brad Campbell @ 2022-08-09 11:03 UTC (permalink / raw)
  To: Mika Westerberg; +Cc: linux-kernel

G'day Mika,

On 9/8/22 18:55, Mika Westerberg wrote:
> Hi,
> 
> On Tue, Aug 09, 2022 at 06:40:54PM +0800, Brad Campbell wrote:
>> G'day Mika,
>>
>>
>> On 9/8/22 18:23, Mika Westerberg wrote:
>>> Hi,
>>>
>>> On Mon, Aug 08, 2022 at 09:27:24PM +0800, Brad Campbell wrote:
>>>> If I don't authorize the PCIe tunnels and just leave the DP enabled it
>>>> works fine also.
>>>
>>> But you say that it fails on boot when the driver discovers the tunnels,
>>> right? So there is really nothing to authorize (they should be already
>>> "authorized" by the boot firmware).
>>>
>>> If I understand correctly this is how it reproduces (the simplest):
>>>
>>>   1. Connect a single Apple TB1 display to the system
>>>   2. Boot it up
>>>   3. Wait a while and it hangs
>>>
>>> If this is the case, then the driver certainly is not creating any
>>> PCIe tunnels itself unless there is a bug somewhere.
>>>
>>> An additional question, does it reproduce with either TB1 display
>>> connected or just with specific TB1 display?
>>>
>>
>> No, I've not been clear enough, I'm sorry. I've re-read what I've written below and
>> I'm still not sure I'm clear enough.
>>
>> The firmware never sets anything up. 
>>
>> When I cold boot the machine (from power on), the thunderbolt displays and tunnels
>> remain dark until linux initializes the thunderbolt driver the first time. 
>>  
>> If I compile the thunderbolt driver into the kernel, or let the initramfs load it
>> the displays come up, all PCIe tunnels are established and everything works.
>>
>> When I reboot the machine (reset button or warm boot), the firmware continues to
>> do nothing and all the tunnels remain in place. The machine dies when the thunderbolt 
>> driver is loaded for a second time.
>>
>> That might be a reset/warm boot with it compiled in or loaded from iniramfs.
>> It may also be me loading it from the command line after booting with it as a
>> module and blacklisted.
>>
>> The problem comes about when the thunderbolt module is loaded while the PCIe tunnels
>> are already established.
>>
>> To reproduce in the easiest manner I compile the thunderbolt driver as a module and
>> blacklist it. This prevents it from auto-loading.
>>
>> I cold boot the machine, let it boot completely then modprobe thunderbolt and authorize
>> the tunnels. I then warm boot which lets the kernel detect and init the DP displays
>> and detect/configure all the PCIe devices. The thunderbolt driver is not loaded.
>>
>> The machine comes up, all tunnels are established and all devices work.
>>
>> If I then modprobe the thunderbolt driver, things break.
>>
>> This is the hack in my boot script :
>>
>> # Spark up thunderbolt
>> if [ -z "`grep notb /proc/cmdline`" -a -z "`lsusb | grep '05ac:9227'`" ] ; then
>> 	modprobe thunderbolt
>> 	sleep 1
>> 	echo 1 > /sys/bus/thunderbolt/devices/0-3/authorized
>> 	echo 1 > /sys/bus/thunderbolt/devices/0-303/authorized
>> 	reboot
>> fi
> 
> Thanks for the clarification! How about on macOS side, does it work (I
> would expect yes)?
> 

It did work flawlessly in MacOS, but as the GPU turned up its toes I can't really test it anymore.

The Mac EFI did odd things with the Thunderbolt tunnels, and due to the dying GPU I couldn't
warm boot it in Linux anyway. Every reboot had to be a power cycle or it'd hang in the EFI.

Regards,
Brad

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-08-09 10:55                                                                       ` Mika Westerberg
  2022-08-09 11:03                                                                         ` Brad Campbell
@ 2022-08-09 11:08                                                                         ` Brad Campbell
  2022-08-09 14:42                                                                           ` Mika Westerberg
  1 sibling, 1 reply; 47+ messages in thread
From: Brad Campbell @ 2022-08-09 11:08 UTC (permalink / raw)
  To: Mika Westerberg; +Cc: linux-kernel



On 9/8/22 18:55, Mika Westerberg wrote:
> Hi,
> 
> On Tue, Aug 09, 2022 at 06:40:54PM +0800, Brad Campbell wrote:
>> G'day Mika,
>>
>>
>> On 9/8/22 18:23, Mika Westerberg wrote:
>>> Hi,
>>>
>>> On Mon, Aug 08, 2022 at 09:27:24PM +0800, Brad Campbell wrote:
>>>> If I don't authorize the PCIe tunnels and just leave the DP enabled it
>>>> works fine also.
>>>
>>> But you say that it fails on boot when the driver discovers the tunnels,
>>> right? So there is really nothing to authorize (they should be already
>>> "authorized" by the boot firmware).
>>>
>>> If I understand correctly this is how it reproduces (the simplest):
>>>
>>>   1. Connect a single Apple TB1 display to the system
>>>   2. Boot it up
>>>   3. Wait a while and it hangs
>>>
>>> If this is the case, then the driver certainly is not creating any
>>> PCIe tunnels itself unless there is a bug somewhere.
>>>
>>> An additional question, does it reproduce with either TB1 display
>>> connected or just with specific TB1 display?
>>>
>>
>> No, I've not been clear enough, I'm sorry. I've re-read what I've written below and
>> I'm still not sure I'm clear enough.
>>
>> The firmware never sets anything up. 
>>
>> When I cold boot the machine (from power on), the thunderbolt displays and tunnels
>> remain dark until linux initializes the thunderbolt driver the first time. 
>>  
>> If I compile the thunderbolt driver into the kernel, or let the initramfs load it
>> the displays come up, all PCIe tunnels are established and everything works.
>>
>> When I reboot the machine (reset button or warm boot), the firmware continues to
>> do nothing and all the tunnels remain in place. The machine dies when the thunderbolt 
>> driver is loaded for a second time.
>>
>> That might be a reset/warm boot with it compiled in or loaded from iniramfs.
>> It may also be me loading it from the command line after booting with it as a
>> module and blacklisted.
>>
>> The problem comes about when the thunderbolt module is loaded while the PCIe tunnels
>> are already established.
>>
>> To reproduce in the easiest manner I compile the thunderbolt driver as a module and
>> blacklist it. This prevents it from auto-loading.
>>
>> I cold boot the machine, let it boot completely then modprobe thunderbolt and authorize
>> the tunnels. I then warm boot which lets the kernel detect and init the DP displays
>> and detect/configure all the PCIe devices. The thunderbolt driver is not loaded.
>>
>> The machine comes up, all tunnels are established and all devices work.
>>
>> If I then modprobe the thunderbolt driver, things break.
>>
>> This is the hack in my boot script :
>>
>> # Spark up thunderbolt
>> if [ -z "`grep notb /proc/cmdline`" -a -z "`lsusb | grep '05ac:9227'`" ] ; then
>> 	modprobe thunderbolt
>> 	sleep 1
>> 	echo 1 > /sys/bus/thunderbolt/devices/0-3/authorized
>> 	echo 1 > /sys/bus/thunderbolt/devices/0-303/authorized
>> 	reboot
>> fi
> 
> Thanks for the clarification! How about on macOS side, does it work (I
> would expect yes)?
> 

Ahh, forgot about the laptop I'm typing this on. Yes, works fine in MacOS.

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-08-09 11:08                                                                         ` Brad Campbell
@ 2022-08-09 14:42                                                                           ` Mika Westerberg
  2022-08-09 15:16                                                                             ` Brad Campbell
  0 siblings, 1 reply; 47+ messages in thread
From: Mika Westerberg @ 2022-08-09 14:42 UTC (permalink / raw)
  To: Brad Campbell; +Cc: linux-kernel

Hi,

On Tue, Aug 09, 2022 at 07:08:42PM +0800, Brad Campbell wrote:
> 
> 
> On 9/8/22 18:55, Mika Westerberg wrote:
> > Hi,
> > 
> > On Tue, Aug 09, 2022 at 06:40:54PM +0800, Brad Campbell wrote:
> >> G'day Mika,
> >>
> >>
> >> On 9/8/22 18:23, Mika Westerberg wrote:
> >>> Hi,
> >>>
> >>> On Mon, Aug 08, 2022 at 09:27:24PM +0800, Brad Campbell wrote:
> >>>> If I don't authorize the PCIe tunnels and just leave the DP enabled it
> >>>> works fine also.
> >>>
> >>> But you say that it fails on boot when the driver discovers the tunnels,
> >>> right? So there is really nothing to authorize (they should be already
> >>> "authorized" by the boot firmware).
> >>>
> >>> If I understand correctly this is how it reproduces (the simplest):
> >>>
> >>>   1. Connect a single Apple TB1 display to the system
> >>>   2. Boot it up
> >>>   3. Wait a while and it hangs
> >>>
> >>> If this is the case, then the driver certainly is not creating any
> >>> PCIe tunnels itself unless there is a bug somewhere.
> >>>
> >>> An additional question, does it reproduce with either TB1 display
> >>> connected or just with specific TB1 display?
> >>>
> >>
> >> No, I've not been clear enough, I'm sorry. I've re-read what I've written below and
> >> I'm still not sure I'm clear enough.
> >>
> >> The firmware never sets anything up. 
> >>
> >> When I cold boot the machine (from power on), the thunderbolt displays and tunnels
> >> remain dark until linux initializes the thunderbolt driver the first time. 
> >>  
> >> If I compile the thunderbolt driver into the kernel, or let the initramfs load it
> >> the displays come up, all PCIe tunnels are established and everything works.
> >>
> >> When I reboot the machine (reset button or warm boot), the firmware continues to
> >> do nothing and all the tunnels remain in place. The machine dies when the thunderbolt 
> >> driver is loaded for a second time.
> >>
> >> That might be a reset/warm boot with it compiled in or loaded from iniramfs.
> >> It may also be me loading it from the command line after booting with it as a
> >> module and blacklisted.
> >>
> >> The problem comes about when the thunderbolt module is loaded while the PCIe tunnels
> >> are already established.
> >>
> >> To reproduce in the easiest manner I compile the thunderbolt driver as a module and
> >> blacklist it. This prevents it from auto-loading.
> >>
> >> I cold boot the machine, let it boot completely then modprobe thunderbolt and authorize
> >> the tunnels. I then warm boot which lets the kernel detect and init the DP displays
> >> and detect/configure all the PCIe devices. The thunderbolt driver is not loaded.
> >>
> >> The machine comes up, all tunnels are established and all devices work.
> >>
> >> If I then modprobe the thunderbolt driver, things break.
> >>
> >> This is the hack in my boot script :
> >>
> >> # Spark up thunderbolt
> >> if [ -z "`grep notb /proc/cmdline`" -a -z "`lsusb | grep '05ac:9227'`" ] ; then
> >> 	modprobe thunderbolt
> >> 	sleep 1
> >> 	echo 1 > /sys/bus/thunderbolt/devices/0-3/authorized
> >> 	echo 1 > /sys/bus/thunderbolt/devices/0-303/authorized
> >> 	reboot
> >> fi
> > 
> > Thanks for the clarification! How about on macOS side, does it work (I
> > would expect yes)?
> > 
> 
> Ahh, forgot about the laptop I'm typing this on. Yes, works fine in MacOS.

Right. Okay does it reproduce with these steps?

1. Boot the system up, nothing connected
2. Plug in a TB1 display (just one)
3. Authorize the PCIe tunnel

  # echo 1 > /sys/bus/thunderbolt/...

4. Unload the TBT driver

  # rmmod thunderbolt

5. Load it back

  # modprobe thunderbolt dyndbg

This should be pretty much the same as with the reboot case.

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-08-09 14:42                                                                           ` Mika Westerberg
@ 2022-08-09 15:16                                                                             ` Brad Campbell
  2022-08-09 15:50                                                                               ` Mika Westerberg
  0 siblings, 1 reply; 47+ messages in thread
From: Brad Campbell @ 2022-08-09 15:16 UTC (permalink / raw)
  To: Mika Westerberg; +Cc: linux-kernel

G'day Mika,


On 9/8/22 22:42, Mika Westerberg wrote:
> Hi,
> 
> On Tue, Aug 09, 2022 at 07:08:42PM +0800, Brad Campbell wrote:
>>
>>
>> On 9/8/22 18:55, Mika Westerberg wrote:
>>> Hi,
>>>
>>> On Tue, Aug 09, 2022 at 06:40:54PM +0800, Brad Campbell wrote:
>>>> G'day Mika,
>>>>
>>>>
>>>> On 9/8/22 18:23, Mika Westerberg wrote:
>>>>> Hi,
>>>>>
>>>>> On Mon, Aug 08, 2022 at 09:27:24PM +0800, Brad Campbell wrote:
>>>>>> If I don't authorize the PCIe tunnels and just leave the DP enabled it
>>>>>> works fine also.
>>>>>
>>>>> But you say that it fails on boot when the driver discovers the tunnels,
>>>>> right? So there is really nothing to authorize (they should be already
>>>>> "authorized" by the boot firmware).
>>>>>
>>>>> If I understand correctly this is how it reproduces (the simplest):
>>>>>
>>>>>   1. Connect a single Apple TB1 display to the system
>>>>>   2. Boot it up
>>>>>   3. Wait a while and it hangs
>>>>>
>>>>> If this is the case, then the driver certainly is not creating any
>>>>> PCIe tunnels itself unless there is a bug somewhere.
>>>>>
>>>>> An additional question, does it reproduce with either TB1 display
>>>>> connected or just with specific TB1 display?
>>>>>
>>>>
>>>> No, I've not been clear enough, I'm sorry. I've re-read what I've written below and
>>>> I'm still not sure I'm clear enough.
>>>>
>>>> The firmware never sets anything up. 
>>>>
>>>> When I cold boot the machine (from power on), the thunderbolt displays and tunnels
>>>> remain dark until linux initializes the thunderbolt driver the first time. 
>>>>  
>>>> If I compile the thunderbolt driver into the kernel, or let the initramfs load it
>>>> the displays come up, all PCIe tunnels are established and everything works.
>>>>
>>>> When I reboot the machine (reset button or warm boot), the firmware continues to
>>>> do nothing and all the tunnels remain in place. The machine dies when the thunderbolt 
>>>> driver is loaded for a second time.
>>>>
>>>> That might be a reset/warm boot with it compiled in or loaded from iniramfs.
>>>> It may also be me loading it from the command line after booting with it as a
>>>> module and blacklisted.
>>>>
>>>> The problem comes about when the thunderbolt module is loaded while the PCIe tunnels
>>>> are already established.
>>>>
>>>> To reproduce in the easiest manner I compile the thunderbolt driver as a module and
>>>> blacklist it. This prevents it from auto-loading.
>>>>
>>>> I cold boot the machine, let it boot completely then modprobe thunderbolt and authorize
>>>> the tunnels. I then warm boot which lets the kernel detect and init the DP displays
>>>> and detect/configure all the PCIe devices. The thunderbolt driver is not loaded.
>>>>
>>>> The machine comes up, all tunnels are established and all devices work.
>>>>
>>>> If I then modprobe the thunderbolt driver, things break.
>>>>
>>>> This is the hack in my boot script :
>>>>
>>>> # Spark up thunderbolt
>>>> if [ -z "`grep notb /proc/cmdline`" -a -z "`lsusb | grep '05ac:9227'`" ] ; then
>>>> 	modprobe thunderbolt
>>>> 	sleep 1
>>>> 	echo 1 > /sys/bus/thunderbolt/devices/0-3/authorized
>>>> 	echo 1 > /sys/bus/thunderbolt/devices/0-303/authorized
>>>> 	reboot
>>>> fi
>>>
>>> Thanks for the clarification! How about on macOS side, does it work (I
>>> would expect yes)?
>>>
>>
>> Ahh, forgot about the laptop I'm typing this on. Yes, works fine in MacOS.
> 
> Right. Okay does it reproduce with these steps?
> 
> 1. Boot the system up, nothing connected
> 2. Plug in a TB1 display (just one)
> 3. Authorize the PCIe tunnel
> 
>   # echo 1 > /sys/bus/thunderbolt/...
> 
> 4. Unload the TBT driver
> 
>   # rmmod thunderbolt
> 
> 5. Load it back
> 
>   # modprobe thunderbolt dyndbg
> 
> This should be pretty much the same as with the reboot case.
> 

You'd have thought so, but it's not.

That works fine.

If I then reboot and load the driver it fails.

The only thing I could think of doing was an lspci -vvv after the boot and module load
and an lspci -vvv after a warm reboot and diff them, because there are changes around the
thunderbolt bridge devices. I've done a diff -u50 to try and keep as much context as possible.

On the first boot I can unload/reload the thunderbolt module repeatedly and there's no issue
but loading it after a reboot locks up. There are no lspci changes on the first boot after the
initial module load unless I rescan the PCI bus, but they're minor and it doesn't cause an issue
with loading the thunderbolt module.

The firmware *must* be doing something on reboot I suppose or the PCIe configs wouldn't change.

Regards,
Brad

--- lspci.010	2022-08-09 23:03:04.708406538 +0800
+++ lspci.012	2022-08-09 23:04:49.751098566 +0800
@@ -1,96 +1,96 @@
 00:00.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Renoir Root Complex
 	Subsystem: Advanced Micro Devices, Inc. [AMD] Renoir Root Complex
 	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
 	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
 
 00:00.2 IOMMU: Advanced Micro Devices, Inc. [AMD] Renoir IOMMU
 	Subsystem: Advanced Micro Devices, Inc. [AMD] Renoir IOMMU
 	Control: I/O- Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
 	Latency: 0
 	Interrupt: pin A routed to IRQ 255
 	Capabilities: [40] Secure device <?>
 	Capabilities: [64] MSI: Enable- Count=1/4 Maskable- 64bit+
 		Address: 0000000000000000  Data: 0000
 	Capabilities: [74] HyperTransport: MSI Mapping Enable+ Fixed+
 
 00:01.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Renoir PCIe Dummy Host Bridge
 	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
 	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
 
 00:02.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Renoir PCIe Dummy Host Bridge
 	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
 	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
 
 00:02.1 PCI bridge: Advanced Micro Devices, Inc. [AMD] Renoir PCIe GPP Bridge (prog-if 00 [Normal decode])
 	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
 	Latency: 0, Cache Line Size: 64 bytes
 	Interrupt: pin ? routed to IRQ 27
 	Bus: primary=00, secondary=01, subordinate=51, sec-latency=0
 	I/O behind bridge: 0000f000-0000ffff [size=4K]
 	Memory behind bridge: df000000-ef7fffff [size=264M]
 	Prefetchable memory behind bridge: 00000000a0000000-00000000b1ffffff [size=288M]
 	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
 	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
 		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
 	Capabilities: [50] Power Management version 3
 		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
 		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
 	Capabilities: [58] Express (v2) Root Port (Slot+), MSI 00
 		DevCap:	MaxPayload 512 bytes, PhantFunc 0
 			ExtTag+ RBE+
 		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
 			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
 			MaxPayload 128 bytes, MaxReadReq 512 bytes
-		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
+		DevSta:	CorrErr+ NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
 		LnkCap:	Port #2, Speed 8GT/s, Width x4, ASPM not supported
 			ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+
 		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 8GT/s (ok), Width x4 (ok)
 			TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
 		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
 			Slot #0, PowerLimit 75.000W; Interlock- NoCompl+
 		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
 			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
 		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
 			Changed: MRL- PresDet- LinkState+
 		RootCap: CRSVisible+
 		RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible+
 		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
 		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR+
 			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix+, MaxEETLPPrefixes 1
 			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
 			 FRS- LN System CLS Not Supported, TPHComp+ ExtTPHComp- ARIFwd+
 			 AtomicOpsCap: Routing- 32bit+ 64bit+ 128bitCAS-
 		DevCtl2: Completion Timeout: 65ms to 210ms, TimeoutDis- LTR+ OBFF Disabled, ARIFwd-
 			 AtomicOpsCtl: ReqEn- EgressBlck-
 		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
 		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
 			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
 			 Compliance De-emphasis: -6dB
 		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete+ EqualizationPhase1+
 			 EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
 			 Retimer- 2Retimers- CrosslinkRes: unsupported
 	Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit+
 		Address: 00000000fee04000  Data: 0021
 	Capabilities: [c0] Subsystem: Advanced Micro Devices, Inc. [AMD] Renoir PCIe GPP Bridge
 	Capabilities: [c8] HyperTransport: MSI Mapping Enable+ Fixed+
 	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
 	Capabilities: [270 v1] Secondary PCI Express
 		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
 		LaneErrStat: 0
 	Capabilities: [2a0 v1] Access Control Services
 		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans+
 		ACSCtl:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
 	Capabilities: [3c4 v1] Designated Vendor-Specific: Vendor=1022 ID=0001 Rev=1 Len=44 <?>
 	Kernel driver in use: pcieport
 
 00:02.2 PCI bridge: Advanced Micro Devices, Inc. [AMD] Renoir PCIe GPP Bridge (prog-if 00 [Normal decode])
 	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
 	Latency: 0, Cache Line Size: 64 bytes
 	Interrupt: pin ? routed to IRQ 28
 	Bus: primary=00, secondary=52, subordinate=52, sec-latency=0
 	I/O behind bridge: 0000f000-00000fff [disabled]
@@ -280,105 +280,105 @@
 	Capabilities: [80] Express (v2) Legacy Endpoint, MSI 00
 		DevCap:	MaxPayload 512 bytes, PhantFunc 0, Latency L0s <64ns, L1 <64us
 			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
 		DevCtl:	CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
 			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
 			MaxPayload 128 bytes, MaxReadReq 512 bytes
 		DevSta:	CorrErr+ NonFatalErr- FatalErr- UnsupReq+ AuxPwr+ TransPend-
 		LnkCap:	Port #0, Speed 8GT/s, Width x4, ASPM L0s L1, Exit Latency L0s <2us, L1 <32us
 			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
 		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 8GT/s (ok), Width x4 (ok)
 			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
 		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR+
 			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix-
 			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
 			 FRS-
 			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled,
 			 AtomicOpsCtl: ReqEn-
 		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
 		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
 			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
 			 Compliance De-emphasis: -6dB
 		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete+ EqualizationPhase1+
 			 EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
 			 Retimer- 2Retimers- CrosslinkRes: unsupported
 	Capabilities: [100 v1] Advanced Error Reporting
 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
 		AERCap:	First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap- ECRCChkEn-
 			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
 		HeaderLog: 00000000 00000000 00000000 00000000
 	Capabilities: [200 v1] Secondary PCI Express
 		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
 		LaneErrStat: 0
 	Capabilities: [300 v1] Latency Tolerance Reporting
 		Max snoop latency: 0ns
 		Max no snoop latency: 0ns
 	Kernel driver in use: xhci_hcd
 	Kernel modules: xhci_pci
 
 01:00.1 SATA controller: Advanced Micro Devices, Inc. [AMD] Device 43eb (prog-if 01 [AHCI 1.0])
 	Subsystem: ASMedia Technology Inc. Device 1062
 	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
 	Latency: 0, Cache Line Size: 64 bytes
-	Interrupt: pin B routed to IRQ 79
+	Interrupt: pin B routed to IRQ 83
 	Region 5: Memory at ef780000 (32-bit, non-prefetchable) [size=128K]
 	Expansion ROM at ef700000 [disabled] [size=512K]
 	Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+
-		Address: 00000000fee00000  Data: 0024
+		Address: 00000000fee01000  Data: 0025
 	Capabilities: [78] Power Management version 3
 		Flags: PMEClk- DSI- D1- D2- AuxCurrent=55mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
 		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
 	Capabilities: [80] Express (v2) Legacy Endpoint, MSI 00
 		DevCap:	MaxPayload 512 bytes, PhantFunc 0, Latency L0s <64ns, L1 <64us
 			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
 		DevCtl:	CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
 			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
 			MaxPayload 128 bytes, MaxReadReq 512 bytes
 		DevSta:	CorrErr+ NonFatalErr- FatalErr- UnsupReq+ AuxPwr+ TransPend-
 		LnkCap:	Port #0, Speed 8GT/s, Width x4, ASPM L0s L1, Exit Latency L0s <2us, L1 <32us
 			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
 		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 8GT/s (ok), Width x4 (ok)
 			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
 		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR+
 			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix-
 			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
 			 FRS-
 			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled,
 			 AtomicOpsCtl: ReqEn-
 		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
 			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
 			 Retimer- 2Retimers- CrosslinkRes: unsupported
 	Capabilities: [100 v1] Advanced Error Reporting
 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
 		AERCap:	First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap- ECRCChkEn-
 			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
 		HeaderLog: 00000000 00000000 00000000 00000000
 	Kernel driver in use: ahci
 	Kernel modules: ahci
 
 01:00.2 PCI bridge: Advanced Micro Devices, Inc. [AMD] Device 43e9 (prog-if 00 [Normal decode])
 	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
 	Latency: 0, Cache Line Size: 64 bytes
 	Interrupt: pin C routed to IRQ 30
 	Bus: primary=01, secondary=02, subordinate=51, sec-latency=0
 	I/O behind bridge: 0000f000-0000ffff [size=4K]
 	Memory behind bridge: df000000-ef6fffff [size=263M]
 	Prefetchable memory behind bridge: 00000000a0000000-00000000b1ffffff [size=288M]
 	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
 	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
 		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
@@ -681,101 +681,101 @@
 		AERCap:	First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap- ECRCChkEn-
 			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
 		HeaderLog: 00000000 00000000 00000000 00000000
 	Capabilities: [200 v1] Secondary PCI Express
 		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
 		LaneErrStat: 0
 	Kernel driver in use: pcieport
 
 03:00.0 PCI bridge: Intel Corporation JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018] (rev 06) (prog-if 00 [Normal decode])
 	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
 	Latency: 0, Cache Line Size: 64 bytes
 	Interrupt: pin A routed to IRQ 36
 	Bus: primary=03, secondary=04, subordinate=4a, sec-latency=0
 	I/O behind bridge: 0000f000-00000fff [disabled]
 	Memory behind bridge: df000000-ef1fffff [size=258M]
 	Prefetchable memory behind bridge: 00000000a0000000-00000000b1ffffff [size=288M]
 	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
 	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
 		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
 	Capabilities: [80] Power Management version 3
 		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
 		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
 	Capabilities: [88] MSI: Enable+ Count=1/1 Maskable- 64bit+
 		Address: 00000000fee09000  Data: 0021
 	Capabilities: [ac] Subsystem: Gigabyte Technology Co., Ltd JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018]
 	Capabilities: [c0] Express (v2) Upstream Port, MSI 00
 		DevCap:	MaxPayload 128 bytes, PhantFunc 0
 			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ SlotPowerLimit 26.000W
 		DevCtl:	CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
 			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
 			MaxPayload 128 bytes, MaxReadReq 512 bytes
 		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
 		LnkCap:	Port #0, Speed 8GT/s, Width x4, ASPM L1, Exit Latency L1 <2us
 			ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
 		LnkCtl:	ASPM Disabled; Disabled- CommClk+
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 8GT/s (ok), Width x4 (ok)
 			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
 		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR+
 			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
 			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
 			 FRS-
 			 AtomicOpsCap: Routing-
 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled,
 			 AtomicOpsCtl: EgressBlck-
 		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
 		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
 			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
 			 Compliance De-emphasis: -6dB
-		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete+ EqualizationPhase1+
+		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete+ EqualizationPhase1+
 			 EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
 			 Retimer- 2Retimers- CrosslinkRes: unsupported
 	Capabilities: [100 v1] Device Serial Number d9-a6-50-49-69-c9-a0-00
 	Capabilities: [200 v1] Advanced Error Reporting
 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UESvrt:	DLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
 		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
 			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
 		HeaderLog: 00000000 00000000 00000000 00000000
 	Capabilities: [300 v1] Virtual Channel
 		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
 		Arb:	Fixed- WRR32- WRR64- WRR128-
 		Ctrl:	ArbSelect=Fixed
 		Status:	InProgress-
 		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
 			Arb:	Fixed+ WRR32- WRR64- WRR128- TWRR128- WRR256-
 			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
 			Status:	NegoPending- InProgress-
 	Capabilities: [400 v1] Power Budgeting <?>
 	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=100 <?>
 	Capabilities: [600 v1] Vendor Specific Information: ID=8086 Rev=2 Len=04c <?>
 	Capabilities: [700 v1] Secondary PCI Express
 		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
 		LaneErrStat: 0
 	Capabilities: [800 v1] Latency Tolerance Reporting
 		Max snoop latency: 0ns
 		Max no snoop latency: 0ns
 	Capabilities: [a00 v1] L1 PM Substates
 		L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+
 			  PortCommonModeRestoreTime=0us PortTPowerOnTime=10us
 		L1SubCtl1: PCI-PM_L1.2- PCI-PM_L1.1- ASPM_L1.2- ASPM_L1.1-
 			   T_CommonMode=0us LTR1.2_Threshold=0ns
 		L1SubCtl2: T_PwrOn=10us
 	Capabilities: [b00 v1] Precision Time Measurement
 		PTMCap: Requester:- Responder:- Root:-
 		PTMClockGranularity: Unimplemented
 		PTMControl: Enabled:- RootSelected:-
 		PTMEffectiveGranularity: Unknown
 	Kernel driver in use: pcieport
 
 04:00.0 PCI bridge: Intel Corporation JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018] (rev 06) (prog-if 00 [Normal decode])
 	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
 	Latency: 0, Cache Line Size: 64 bytes
 	Interrupt: pin A routed to IRQ 37
 	Bus: primary=04, secondary=05, subordinate=05, sec-latency=0
 	I/O behind bridge: 0000f000-00000fff [disabled]
@@ -989,1371 +989,1369 @@
 			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
 			 Compliance De-emphasis: -6dB
 		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
 			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
 			 Retimer- 2Retimers- CrosslinkRes: unsupported
 	Capabilities: [50] Capability ID 0x15 [0000]
 	Capabilities: [100 v1] Device Serial Number d9-a6-50-49-69-c9-a0-00
 	Capabilities: [200 v1] Advanced Error Reporting
 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UESvrt:	DLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
 		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
 			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
 		HeaderLog: 00000000 00000000 00000000 00000000
 	Capabilities: [300 v1] Virtual Channel
 		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
 		Arb:	Fixed- WRR32- WRR64- WRR128-
 		Ctrl:	ArbSelect=Fixed
 		Status:	InProgress-
 		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
 			Arb:	Fixed+ WRR32- WRR64- WRR128- TWRR128- WRR256-
 			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
 			Status:	NegoPending- InProgress-
 	Capabilities: [400 v1] Power Budgeting <?>
 	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=100 <?>
 	Capabilities: [600 v1] Vendor Specific Information: ID=8086 Rev=2 Len=04c <?>
 	Capabilities: [700 v1] Secondary PCI Express
 		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
 		LaneErrStat: 0
 	Capabilities: [900 v1] Access Control Services
 		ACSCap:	SrcValid+ TransBlk+ ReqRedir- CmpltRedir- UpstreamFwd+ EgressCtrl- DirectTrans-
 		ACSCtl:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
 	Kernel driver in use: pcieport
 
 04:04.0 PCI bridge: Intel Corporation JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018] (rev 06) (prog-if 00 [Normal decode])
 	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
 	Latency: 0, Cache Line Size: 64 bytes
 	Interrupt: pin A routed to IRQ 40
 	Bus: primary=04, secondary=29, subordinate=4a, sec-latency=0
 	I/O behind bridge: 0000f000-00000fff [disabled]
 	Memory behind bridge: df000000-e6ffffff [size=128M]
 	Prefetchable memory behind bridge: 00000000a0000000-00000000a1ffffff [size=32M]
 	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
 	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
 		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
 	Capabilities: [80] Power Management version 3
 		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
-		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME+
+		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
 	Capabilities: [88] MSI: Enable+ Count=1/1 Maskable- 64bit+
 		Address: 00000000fee04000  Data: 0022
 	Capabilities: [ac] Subsystem: Gigabyte Technology Co., Ltd JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018]
 	Capabilities: [c0] Express (v2) Downstream Port (Slot+), MSI 00
 		DevCap:	MaxPayload 128 bytes, PhantFunc 0
 			ExtTag+ RBE+
 		DevCtl:	CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
 			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
 			MaxPayload 128 bytes, MaxReadReq 512 bytes
 		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
 		LnkCap:	Port #4, Speed 2.5GT/s, Width x4, ASPM L1, Exit Latency L1 <1us
 			ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+
 		LnkCtl:	ASPM Disabled; Disabled- CommClk+
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 2.5GT/s (ok), Width x4 (ok)
 			TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
 		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+
 			Slot #4, PowerLimit 0.000W; Interlock- NoCompl+
 		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet+ CmdCplt- HPIrq+ LinkChg+
 			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
 		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
 			Changed: MRL- PresDet- LinkState-
 		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR+
 			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
 			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
 			 FRS- ARIFwd-
 			 AtomicOpsCap: Routing-
 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled, ARIFwd-
 			 AtomicOpsCtl: EgressBlck-
 		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
 		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
 			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
 			 Compliance De-emphasis: -6dB
 		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
 			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
 			 Retimer- 2Retimers- CrosslinkRes: unsupported
 	Capabilities: [50] Capability ID 0x15 [0000]
 	Capabilities: [100 v1] Device Serial Number d9-a6-50-49-69-c9-a0-00
 	Capabilities: [200 v1] Advanced Error Reporting
 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UESvrt:	DLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
 		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
 			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
 		HeaderLog: 00000000 00000000 00000000 00000000
 	Capabilities: [300 v1] Virtual Channel
 		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
 		Arb:	Fixed- WRR32- WRR64- WRR128-
 		Ctrl:	ArbSelect=Fixed
 		Status:	InProgress-
 		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
 			Arb:	Fixed+ WRR32- WRR64- WRR128- TWRR128- WRR256-
 			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
 			Status:	NegoPending- InProgress-
 	Capabilities: [400 v1] Power Budgeting <?>
 	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=100 <?>
 	Capabilities: [600 v1] Vendor Specific Information: ID=8086 Rev=2 Len=04c <?>
 	Capabilities: [700 v1] Secondary PCI Express
 		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
 		LaneErrStat: 0
 	Capabilities: [900 v1] Access Control Services
 		ACSCap:	SrcValid+ TransBlk+ ReqRedir- CmpltRedir- UpstreamFwd+ EgressCtrl- DirectTrans-
 		ACSCtl:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
 	Kernel driver in use: pcieport
 
 05:00.0 System peripheral: Intel Corporation JHL7540 Thunderbolt 3 NHI [Titan Ridge 4C 2018] (rev 06)
 	Subsystem: Gigabyte Technology Co., Ltd JHL7540 Thunderbolt 3 NHI [Titan Ridge 4C 2018]
-	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
+	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
-	Latency: 0, Cache Line Size: 64 bytes
-	Interrupt: pin A routed to IRQ 25
-	Region 0: Memory at ef100000 (32-bit, non-prefetchable) [size=256K]
-	Region 1: Memory at ef140000 (32-bit, non-prefetchable) [size=4K]
+	Interrupt: pin A routed to IRQ 255
+	Region 0: Memory at ef100000 (32-bit, non-prefetchable) [disabled] [size=256K]
+	Region 1: Memory at ef140000 (32-bit, non-prefetchable) [disabled] [size=4K]
 	Capabilities: [80] Power Management version 3
 		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
 		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
 	Capabilities: [88] MSI: Enable- Count=1/1 Maskable- 64bit+
 		Address: 0000000000000000  Data: 0000
 	Capabilities: [c0] Express (v2) Endpoint, MSI 00
 		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
 			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0.000W
 		DevCtl:	CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
 			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
 			MaxPayload 128 bytes, MaxReadReq 512 bytes
 		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
 		LnkCap:	Port #0, Speed 2.5GT/s, Width x4, ASPM L1, Exit Latency L1 <1us
 			ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp-
 		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 2.5GT/s (ok), Width x4 (ok)
 			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
 		DevCap2: Completion Timeout: Range B, TimeoutDis+ NROPrPrP- LTR+
 			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
 			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
 			 FRS- TPHComp- ExtTPHComp-
 			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled,
 			 AtomicOpsCtl: ReqEn-
 		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-
 			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
 			 Compliance De-emphasis: -6dB
 		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
 			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
 			 Retimer- 2Retimers- CrosslinkRes: unsupported
-	Capabilities: [a0] MSI-X: Enable+ Count=16 Masked-
+	Capabilities: [a0] MSI-X: Enable- Count=16 Masked-
 		Vector table: BAR=1 offset=00000000
 		PBA: BAR=1 offset=00000fa0
 	Capabilities: [100 v1] Device Serial Number d9-a6-50-49-69-c9-a0-00
 	Capabilities: [200 v1] Advanced Error Reporting
 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
 		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
 			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
 		HeaderLog: 00000000 00000000 00000000 00000000
 	Capabilities: [300 v1] Virtual Channel
 		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
 		Arb:	Fixed- WRR32- WRR64- WRR128-
 		Ctrl:	ArbSelect=Fixed
 		Status:	InProgress-
 		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
 			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
 			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=01
 			Status:	NegoPending- InProgress-
 	Capabilities: [400 v1] Power Budgeting <?>
 	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=100 <?>
 	Capabilities: [600 v1] Latency Tolerance Reporting
 		Max snoop latency: 0ns
 		Max no snoop latency: 0ns
-	Kernel driver in use: thunderbolt
 	Kernel modules: thunderbolt
 
 28:00.0 USB controller: Intel Corporation JHL7540 Thunderbolt 3 USB Controller [Titan Ridge 4C 2018] (rev 06) (prog-if 30 [XHCI])
 	Subsystem: Gigabyte Technology Co., Ltd JHL7540 Thunderbolt 3 USB Controller [Titan Ridge 4C 2018]
 	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
 	Latency: 0, Cache Line Size: 64 bytes
-	Interrupt: pin A routed to IRQ 89
+	Interrupt: pin A routed to IRQ 93
 	Region 0: Memory at ef000000 (32-bit, non-prefetchable) [size=64K]
 	Capabilities: [80] Power Management version 3
 		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
 		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
 	Capabilities: [88] MSI: Enable+ Count=1/8 Maskable- 64bit+
-		Address: 00000000fee09000  Data: 0025
+		Address: 00000000fee06000  Data: 0026
 	Capabilities: [c0] Express (v2) Endpoint, MSI 00
 		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
 			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0.000W
 		DevCtl:	CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
 			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
 			MaxPayload 128 bytes, MaxReadReq 512 bytes
 		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
 		LnkCap:	Port #0, Speed 2.5GT/s, Width x4, ASPM L1, Exit Latency L1 <1us
 			ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
 		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 2.5GT/s (ok), Width x4 (ok)
 			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
 		DevCap2: Completion Timeout: Range B, TimeoutDis+ NROPrPrP- LTR+
 			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
 			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
 			 FRS- TPHComp- ExtTPHComp-
 			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled,
 			 AtomicOpsCtl: ReqEn-
 		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
 		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-
 			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
 			 Compliance De-emphasis: -6dB
 		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
 			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
 			 Retimer- 2Retimers- CrosslinkRes: unsupported
 	Capabilities: [100 v1] Device Serial Number d9-a6-50-49-69-c9-a0-00
 	Capabilities: [200 v1] Advanced Error Reporting
 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UESvrt:	DLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
 		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
 			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
 		HeaderLog: 00000000 00000000 00000000 00000000
 	Capabilities: [300 v1] Virtual Channel
 		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
 		Arb:	Fixed- WRR32- WRR64- WRR128-
 		Ctrl:	ArbSelect=Fixed
 		Status:	InProgress-
 		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
 			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
 			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=01
 			Status:	NegoPending- InProgress-
 	Capabilities: [400 v1] Power Budgeting <?>
 	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=100 <?>
 	Capabilities: [600 v1] Vendor Specific Information: ID=8086 Rev=2 Len=04c <?>
 	Capabilities: [700 v1] Secondary PCI Express
 		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
 		LaneErrStat: 0
 	Capabilities: [800 v1] Latency Tolerance Reporting
 		Max snoop latency: 0ns
 		Max no snoop latency: 0ns
 	Kernel driver in use: xhci_hcd
 	Kernel modules: xhci_pci
 
 29:00.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010] (prog-if 00 [Normal decode])
 	Physical Slot: 4
-	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
+	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
-	Latency: 0
-	Interrupt: pin A routed to IRQ 125
-	Bus: primary=29, secondary=2a, subordinate=4a, sec-latency=0
+	Latency: 0, Cache Line Size: 64 bytes
+	Interrupt: pin A routed to IRQ 41
+	Bus: primary=29, secondary=2a, subordinate=31, sec-latency=0
 	I/O behind bridge: 0000f000-00000fff [disabled]
-	Memory behind bridge: df000000-e6ffffff [size=128M]
-	Prefetchable memory behind bridge: 00000000a0000000-00000000a1ffffff [size=32M]
+	Memory behind bridge: df000000-df1fffff [size=2M]
+	Prefetchable memory behind bridge: 00000000a0000000-00000000a00fffff [size=1M]
 	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
 	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16- MAbort- >Reset- FastB2B-
 		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
 	Capabilities: [80] Power Management version 3
 		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
 		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
 	Capabilities: [88] MSI: Enable+ Count=1/32 Maskable- 64bit+
-		Address: 00000000fee02000  Data: 0028
+		Address: 00000000fee06000  Data: 0022
 	Capabilities: [c0] Express (v2) Upstream Port, MSI 00
 		DevCap:	MaxPayload 128 bytes, PhantFunc 0
 			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ SlotPowerLimit 0.000W
 		DevCtl:	CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
 			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
 			MaxPayload 128 bytes, MaxReadReq 512 bytes
 		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
 		LnkCap:	Port #0, Speed 2.5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s unlimited, L1 unlimited
 			ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp-
 		LnkCtl:	ASPM Disabled; Disabled- CommClk+
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 2.5GT/s (ok), Width x4 (ok)
 			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
 		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-
 			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
 			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
 			 FRS-
 			 AtomicOpsCap: Routing-
 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled,
 			 AtomicOpsCtl: EgressBlck-
 		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-
 			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
 			 Compliance De-emphasis: -6dB
 		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
 			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
 			 Retimer- 2Retimers- CrosslinkRes: unsupported
 	Capabilities: [100 v1] Device Serial Number 01-00-00-00-00-c9-a0-00
 	Capabilities: [200 v1] Advanced Error Reporting
 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
 		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
 			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
 		HeaderLog: 00000000 00000000 00000000 00000000
 	Capabilities: [300 v1] Virtual Channel
 		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
 		Arb:	Fixed- WRR32- WRR64- WRR128-
 		Ctrl:	ArbSelect=Fixed
 		Status:	InProgress-
 		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
 			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
-			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
+			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=01
 			Status:	NegoPending- InProgress-
 	Capabilities: [400 v1] Power Budgeting <?>
 	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=01c <?>
 	Kernel driver in use: pcieport
 
 2a:00.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010] (prog-if 00 [Normal decode])
-	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
+	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
-	Latency: 0
-	Interrupt: pin A routed to IRQ 126
+	Latency: 0, Cache Line Size: 64 bytes
+	Interrupt: pin A routed to IRQ 42
 	Bus: primary=2a, secondary=2b, subordinate=2d, sec-latency=0
 	I/O behind bridge: 0000f000-00000fff [disabled]
-	Memory behind bridge: df000000-df0fffff [size=1M]
-	Prefetchable memory behind bridge: 00000000a0000000-00000000a00fffff [size=1M]
+	Memory behind bridge: df100000-df1fffff [size=1M]
+	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff [disabled]
 	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
 	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16- MAbort- >Reset- FastB2B-
 		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
 	Capabilities: [80] Power Management version 3
 		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
 		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
 	Capabilities: [88] MSI: Enable+ Count=1/32 Maskable- 64bit+
-		Address: 00000000fee04000  Data: 0028
+		Address: 00000000fee08000  Data: 0022
 	Capabilities: [c0] Express (v2) Downstream Port (Slot+), MSI 00
 		DevCap:	MaxPayload 128 bytes, PhantFunc 0
 			ExtTag+ RBE+
 		DevCtl:	CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
 			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
 			MaxPayload 128 bytes, MaxReadReq 512 bytes
 		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
 		LnkCap:	Port #0, Speed 2.5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s unlimited, L1 unlimited
 			ClockPM- Surprise- LLActRep- BwNot+ ASPMOptComp-
 		LnkCtl:	ASPM Disabled; Disabled- CommClk+
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 2.5GT/s (ok), Width x1 (downgraded)
 			TrErr- Train- SlotClk+ DLActive- BWMgmt+ ABWMgmt-
 		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
 			Slot #0, PowerLimit 0.000W; Interlock- NoCompl-
 		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
 			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
 		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
 			Changed: MRL- PresDet+ LinkState-
 		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-
 			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
 			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
 			 FRS- ARIFwd-
 			 AtomicOpsCap: Routing-
 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled, ARIFwd-
 			 AtomicOpsCtl: EgressBlck-
 		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -3.5dB
 			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
 			 Compliance De-emphasis: -6dB
 		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
 			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
 			 Retimer- 2Retimers- CrosslinkRes: unsupported
 	Capabilities: [100 v1] Device Serial Number 01-00-00-00-00-c9-a0-00
 	Capabilities: [200 v1] Advanced Error Reporting
 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
 		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
 			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
 		HeaderLog: 00000000 00000000 00000000 00000000
 	Capabilities: [300 v1] Virtual Channel
 		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
 		Arb:	Fixed- WRR32- WRR64- WRR128-
 		Ctrl:	ArbSelect=Fixed
 		Status:	InProgress-
 		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
 			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
-			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
+			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=01
 			Status:	NegoPending- InProgress-
 	Capabilities: [400 v1] Power Budgeting <?>
 	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=01c <?>
 	Kernel driver in use: pcieport
 
 2a:01.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010] (prog-if 00 [Normal decode])
-	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
+	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
-	Latency: 0
-	Interrupt: pin A routed to IRQ 127
+	Latency: 0, Cache Line Size: 64 bytes
+	Interrupt: pin A routed to IRQ 43
 	Bus: primary=2a, secondary=2e, subordinate=2e, sec-latency=0
 	I/O behind bridge: 0000f000-00000fff [disabled]
-	Memory behind bridge: df100000-df1fffff [size=1M]
-	Prefetchable memory behind bridge: 00000000a0100000-00000000a01fffff [size=1M]
+	Memory behind bridge: fff00000-000fffff [disabled]
+	Prefetchable memory behind bridge: 00000000a0000000-00000000a00fffff [size=1M]
 	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
 	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16- MAbort- >Reset- FastB2B-
 		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
 	Capabilities: [80] Power Management version 3
 		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
 		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
 	Capabilities: [88] MSI: Enable+ Count=1/32 Maskable- 64bit+
-		Address: 00000000fee06000  Data: 0028
+		Address: 00000000fee0a000  Data: 0022
 	Capabilities: [c0] Express (v2) Downstream Port (Slot+), MSI 00
 		DevCap:	MaxPayload 128 bytes, PhantFunc 0
 			ExtTag+ RBE+
 		DevCtl:	CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
 			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
 			MaxPayload 128 bytes, MaxReadReq 512 bytes
 		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
 		LnkCap:	Port #1, Speed 2.5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s unlimited, L1 unlimited
 			ClockPM- Surprise- LLActRep- BwNot+ ASPMOptComp-
 		LnkCtl:	ASPM Disabled; Disabled- CommClk+
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 2.5GT/s (ok), Width x1 (downgraded)
 			TrErr- Train- SlotClk+ DLActive- BWMgmt+ ABWMgmt-
 		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
 			Slot #0, PowerLimit 0.000W; Interlock- NoCompl-
 		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
 			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
 		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
 			Changed: MRL- PresDet+ LinkState-
 		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-
 			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
 			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
 			 FRS- ARIFwd-
 			 AtomicOpsCap: Routing-
 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled, ARIFwd-
 			 AtomicOpsCtl: EgressBlck-
 		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -3.5dB
 			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
 			 Compliance De-emphasis: -6dB
 		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
 			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
 			 Retimer- 2Retimers- CrosslinkRes: unsupported
 	Capabilities: [100 v1] Device Serial Number 01-00-00-00-00-c9-a0-00
 	Capabilities: [200 v1] Advanced Error Reporting
 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
 		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
 			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
 		HeaderLog: 00000000 00000000 00000000 00000000
 	Capabilities: [300 v1] Virtual Channel
 		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
 		Arb:	Fixed- WRR32- WRR64- WRR128-
 		Ctrl:	ArbSelect=Fixed
 		Status:	InProgress-
 		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
 			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
-			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
+			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=01
 			Status:	NegoPending- InProgress-
 	Capabilities: [400 v1] Power Budgeting <?>
 	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=01c <?>
 	Kernel driver in use: pcieport
 
 2a:02.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010] (prog-if 00 [Normal decode])
-	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
+	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
-	Latency: 0
-	Interrupt: pin A routed to IRQ 128
+	Latency: 0, Cache Line Size: 64 bytes
+	Interrupt: pin A routed to IRQ 44
 	Bus: primary=2a, secondary=2f, subordinate=2f, sec-latency=0
 	I/O behind bridge: 0000f000-00000fff [disabled]
-	Memory behind bridge: df200000-df2fffff [size=1M]
-	Prefetchable memory behind bridge: 00000000a0200000-00000000a02fffff [size=1M]
+	Memory behind bridge: df000000-df0fffff [size=1M]
+	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff [disabled]
 	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
 	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16- MAbort- >Reset- FastB2B-
 		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
 	Capabilities: [80] Power Management version 3
 		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
 		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
 	Capabilities: [88] MSI: Enable+ Count=1/32 Maskable- 64bit+
-		Address: 00000000fee08000  Data: 0028
+		Address: 00000000fee01000  Data: 0022
 	Capabilities: [c0] Express (v2) Downstream Port (Slot+), MSI 00
 		DevCap:	MaxPayload 128 bytes, PhantFunc 0
 			ExtTag+ RBE+
 		DevCtl:	CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
 			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
 			MaxPayload 128 bytes, MaxReadReq 512 bytes
 		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
 		LnkCap:	Port #2, Speed 2.5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s unlimited, L1 unlimited
 			ClockPM- Surprise- LLActRep- BwNot+ ASPMOptComp-
 		LnkCtl:	ASPM Disabled; Disabled- CommClk+
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 2.5GT/s (ok), Width x1 (downgraded)
 			TrErr- Train- SlotClk+ DLActive- BWMgmt+ ABWMgmt-
 		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
 			Slot #0, PowerLimit 0.000W; Interlock- NoCompl-
 		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
 			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
 		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
 			Changed: MRL- PresDet+ LinkState-
 		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-
 			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
 			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
 			 FRS- ARIFwd-
 			 AtomicOpsCap: Routing-
 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled, ARIFwd-
 			 AtomicOpsCtl: EgressBlck-
 		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -3.5dB
 			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
 			 Compliance De-emphasis: -6dB
 		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
 			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
 			 Retimer- 2Retimers- CrosslinkRes: unsupported
 	Capabilities: [100 v1] Device Serial Number 01-00-00-00-00-c9-a0-00
 	Capabilities: [200 v1] Advanced Error Reporting
 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
 		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
 			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
 		HeaderLog: 00000000 00000000 00000000 00000000
 	Capabilities: [300 v1] Virtual Channel
 		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
 		Arb:	Fixed- WRR32- WRR64- WRR128-
 		Ctrl:	ArbSelect=Fixed
 		Status:	InProgress-
 		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
 			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
-			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
+			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=01
 			Status:	NegoPending- InProgress-
 	Capabilities: [400 v1] Power Budgeting <?>
 	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=01c <?>
 	Kernel driver in use: pcieport
 
 2a:04.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010] (prog-if 00 [Normal decode])
-	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
+	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
-	Latency: 0
+	Latency: 0, Cache Line Size: 64 bytes
 	Interrupt: pin A routed to IRQ 25
-	Bus: primary=2a, secondary=30, subordinate=3f, sec-latency=0
+	Bus: primary=2a, secondary=30, subordinate=30, sec-latency=0
 	I/O behind bridge: 0000f000-00000fff [disabled]
-	Memory behind bridge: df300000-e31fffff [size=63M]
-	Prefetchable memory behind bridge: 00000000a0300000-00000000a11fffff [size=15M]
+	Memory behind bridge: fff00000-000fffff [disabled]
+	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff [disabled]
 	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
 	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16- MAbort- >Reset- FastB2B-
 		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
 	Capabilities: [80] Power Management version 3
 		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
 		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
 	Capabilities: [88] MSI: Enable- Count=1/32 Maskable- 64bit+
 		Address: 0000000000000000  Data: 0000
 	Capabilities: [c0] Express (v2) Downstream Port (Slot+), MSI 00
 		DevCap:	MaxPayload 128 bytes, PhantFunc 0
 			ExtTag+ RBE+
 		DevCtl:	CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
 			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
 			MaxPayload 128 bytes, MaxReadReq 512 bytes
 		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
 		LnkCap:	Port #4, Speed 2.5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s unlimited, L1 unlimited
 			ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp-
 		LnkCtl:	ASPM Disabled; Disabled- CommClk-
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 2.5GT/s (ok), Width x4 (ok)
 			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
 		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+
 			Slot #4, PowerLimit 0.000W; Interlock- NoCompl-
 		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet+ CmdCplt+ HPIrq+ LinkChg+
 			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
 		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock-
 			Changed: MRL- PresDet- LinkState-
 		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-
 			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
 			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
 			 FRS- ARIFwd-
 			 AtomicOpsCap: Routing-
 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled, ARIFwd-
 			 AtomicOpsCtl: EgressBlck-
 		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
 			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
 			 Compliance De-emphasis: -6dB
 		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
 			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
 			 Retimer- 2Retimers- CrosslinkRes: unsupported
 	Capabilities: [100 v1] Device Serial Number 01-00-00-00-00-c9-a0-00
 	Capabilities: [200 v1] Advanced Error Reporting
 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
 		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
 			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
 		HeaderLog: 00000000 00000000 00000000 00000000
 	Capabilities: [300 v1] Virtual Channel
 		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
 		Arb:	Fixed- WRR32- WRR64- WRR128-
 		Ctrl:	ArbSelect=Fixed
 		Status:	InProgress-
 		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
 			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
 			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
 			Status:	NegoPending+ InProgress-
 	Capabilities: [400 v1] Power Budgeting <?>
 	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=01c <?>
 	Kernel driver in use: pcieport
 
 2a:05.0 PCI bridge: Intel Corporation CV82524 Thunderbolt Controller [Light Ridge 4C 2010] (prog-if 00 [Normal decode])
-	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
+	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
-	Latency: 0
+	Latency: 0, Cache Line Size: 64 bytes
 	Interrupt: pin A routed to IRQ 34
-	Bus: primary=2a, secondary=40, subordinate=4a, sec-latency=0
+	Bus: primary=2a, secondary=31, subordinate=31, sec-latency=0
 	I/O behind bridge: 0000f000-00000fff [disabled]
-	Memory behind bridge: e3200000-e6ffffff [size=62M]
-	Prefetchable memory behind bridge: 00000000a1200000-00000000a1ffffff [size=14M]
+	Memory behind bridge: fff00000-000fffff [disabled]
+	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff [disabled]
 	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
 	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16- MAbort- >Reset- FastB2B-
 		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
 	Capabilities: [80] Power Management version 3
 		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
 		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
 	Capabilities: [88] MSI: Enable- Count=1/32 Maskable- 64bit+
 		Address: 0000000000000000  Data: 0000
 	Capabilities: [c0] Express (v2) Downstream Port (Slot+), MSI 00
 		DevCap:	MaxPayload 128 bytes, PhantFunc 0
 			ExtTag+ RBE+
 		DevCtl:	CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
 			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
 			MaxPayload 128 bytes, MaxReadReq 512 bytes
 		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
 		LnkCap:	Port #5, Speed 2.5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s unlimited, L1 unlimited
 			ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp-
 		LnkCtl:	ASPM Disabled; Disabled- CommClk-
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 2.5GT/s (ok), Width x4 (ok)
 			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
 		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+
 			Slot #5, PowerLimit 0.000W; Interlock- NoCompl-
 		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet+ CmdCplt+ HPIrq+ LinkChg+
 			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
 		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock-
 			Changed: MRL- PresDet- LinkState-
 		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-
 			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
 			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
 			 FRS- ARIFwd-
 			 AtomicOpsCap: Routing-
 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled, ARIFwd-
 			 AtomicOpsCtl: EgressBlck-
 		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
 			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
 			 Compliance De-emphasis: -6dB
 		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
 			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
 			 Retimer- 2Retimers- CrosslinkRes: unsupported
 	Capabilities: [100 v1] Device Serial Number 01-00-00-00-00-c9-a0-00
 	Capabilities: [200 v1] Advanced Error Reporting
 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
 		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
 			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
 		HeaderLog: 00000000 00000000 00000000 00000000
 	Capabilities: [300 v1] Virtual Channel
 		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
 		Arb:	Fixed- WRR32- WRR64- WRR128-
 		Ctrl:	ArbSelect=Fixed
 		Status:	InProgress-
 		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
 			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
 			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
 			Status:	NegoPending+ InProgress-
 	Capabilities: [400 v1] Power Budgeting <?>
 	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=01c <?>
 	Kernel driver in use: pcieport
 
 2b:00.0 PCI bridge: Pericom Semiconductor Device 400c (rev 02) (prog-if 00 [Normal decode])
-	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
+	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
-	Latency: 0
+	Latency: 0, Cache Line Size: 64 bytes
 	Bus: primary=2b, secondary=2c, subordinate=2d, sec-latency=0
 	I/O behind bridge: 0000f000-00000fff [disabled]
-	Memory behind bridge: df000000-df0fffff [size=1M]
-	Prefetchable memory behind bridge: 00000000a0000000-00000000a00fffff [size=1M]
+	Memory behind bridge: df100000-df1fffff [size=1M]
+	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff [disabled]
 	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
-	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16- MAbort- >Reset- FastB2B-
+	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
 		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
 	Capabilities: [80] Power Management version 3
 		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
 		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
 	Capabilities: [9c] Vital Product Data
 		Not readable
 	Capabilities: [a4] Vendor Specific Information: Len=0c <?>
 	Capabilities: [c4] Subsystem: Device 0000:0000
 	Capabilities: [e0] Express (v1) Upstream Port, MSI 00
 		DevCap:	MaxPayload 256 bytes, PhantFunc 0
 			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ SlotPowerLimit 0.000W
 		DevCtl:	CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
 			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
 			MaxPayload 128 bytes, MaxReadReq 128 bytes
 		DevSta:	CorrErr+ NonFatalErr- FatalErr- UnsupReq+ AuxPwr+ TransPend-
 		LnkCap:	Port #0, Speed 2.5GT/s, Width x1, ASPM L0s, Exit Latency L0s <512ns
 			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp-
 		LnkCtl:	ASPM Disabled; Disabled- CommClk+
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 2.5GT/s (ok), Width x1 (ok)
 			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
 	Capabilities: [100 v1] Advanced Error Reporting
 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UESvrt:	DLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
 		AERCap:	First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
 			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
 		HeaderLog: 00000000 00000000 00000000 00000000
 	Capabilities: [140 v1] Virtual Channel
 		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=4
 		Arb:	Fixed- WRR32- WRR64- WRR128-
 		Ctrl:	ArbSelect=Fixed
 		Status:	InProgress-
 		VC0:	Caps:	PATOffset=04 MaxTimeSlots=64 RejSnoopTrans-
 			Arb:	Fixed+ WRR32- WRR64- WRR128+ TWRR128- WRR256-
-			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
+			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=01
 			Status:	NegoPending- InProgress-
 			Port Arbitration Table <?>
 	Capabilities: [20c v1] Power Budgeting <?>
 
 2c:03.0 PCI bridge: Pericom Semiconductor Device 400c (rev 02) (prog-if 00 [Normal decode])
-	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
+	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
-	Latency: 0
+	Latency: 0, Cache Line Size: 64 bytes
 	Bus: primary=2c, secondary=2d, subordinate=2d, sec-latency=0
 	I/O behind bridge: 0000f000-00000fff [disabled]
-	Memory behind bridge: df000000-df0fffff [size=1M]
-	Prefetchable memory behind bridge: 00000000a0000000-00000000a00fffff [size=1M]
+	Memory behind bridge: df100000-df1fffff [size=1M]
+	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff [disabled]
 	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
-	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16- MAbort- >Reset- FastB2B-
+	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
 		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
 	Capabilities: [80] Power Management version 3
 		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
 		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
 	Capabilities: [8c] MSI: Enable- Count=1/1 Maskable- 64bit+
 		Address: 0000000000000000  Data: 0000
 	Capabilities: [a4] Vendor Specific Information: Len=0c <?>
 	Capabilities: [c4] Subsystem: Device 0000:0000
 	Capabilities: [e0] Express (v1) Downstream Port (Slot-), MSI 00
 		DevCap:	MaxPayload 256 bytes, PhantFunc 0
 			ExtTag- RBE+
 		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
 			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
 			MaxPayload 128 bytes, MaxReadReq 128 bytes
 		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
 		LnkCap:	Port #3, Speed 2.5GT/s, Width x1, ASPM L0s, Exit Latency L0s <512ns
 			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp-
 		LnkCtl:	ASPM Disabled; Disabled- CommClk-
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 2.5GT/s (ok), Width x1 (ok)
 			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
 	Kernel driver in use: pcieport
 
 2d:00.0 USB controller: Pericom Semiconductor PI7C9X442SL USB OHCI Controller (rev 01) (prog-if 10 [OHCI])
 	Subsystem: Pericom Semiconductor PI7C9X442SL USB OHCI Controller
 	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
-	Latency: 0
-	Interrupt: pin A routed to IRQ 106
-	Region 0: Memory at df000000 (32-bit, non-prefetchable) [size=4K]
+	Latency: 0, Cache Line Size: 64 bytes
+	Interrupt: pin A routed to IRQ 84
+	Region 0: Memory at df102000 (32-bit, non-prefetchable) [size=4K]
 	Capabilities: [80] Power Management version 3
 		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
 		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
 	Capabilities: [8c] MSI: Enable- Count=1/1 Maskable- 64bit-
 		Address: 00000000  Data: 0000
 	Capabilities: [e0] Express (v1) Legacy Endpoint, MSI 00
 		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
 			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
 		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
 			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop-
 			MaxPayload 128 bytes, MaxReadReq 128 bytes
 		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
 		LnkCap:	Port #0, Speed 2.5GT/s, Width x1, ASPM L0s, Exit Latency L0s <512ns
 			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp-
 		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk-
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 2.5GT/s (ok), Width x1 (ok)
 			TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
 	Kernel driver in use: ohci-pci
 	Kernel modules: ohci_pci
 
 2d:00.1 USB controller: Pericom Semiconductor PI7C9X442SL USB OHCI Controller (rev 01) (prog-if 10 [OHCI])
 	Subsystem: Pericom Semiconductor PI7C9X442SL USB OHCI Controller
 	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
-	Latency: 0
+	Latency: 0, Cache Line Size: 64 bytes
 	Interrupt: pin B routed to IRQ 25
-	Region 0: Memory at df001000 (32-bit, non-prefetchable) [size=4K]
+	Region 0: Memory at df101000 (32-bit, non-prefetchable) [size=4K]
 	Capabilities: [80] Power Management version 3
 		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
 		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
 	Capabilities: [8c] MSI: Enable- Count=1/1 Maskable- 64bit-
 		Address: 00000000  Data: 0000
 	Capabilities: [e0] Express (v1) Legacy Endpoint, MSI 00
 		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
 			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
 		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
 			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop-
 			MaxPayload 128 bytes, MaxReadReq 128 bytes
 		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
 		LnkCap:	Port #0, Speed 2.5GT/s, Width x1, ASPM L0s, Exit Latency L0s <512ns
 			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp-
 		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk-
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 2.5GT/s (ok), Width x1 (ok)
 			TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
 	Kernel driver in use: ohci-pci
 	Kernel modules: ohci_pci
 
 2d:00.2 USB controller: Pericom Semiconductor PI7C9X442SL USB EHCI Controller (rev 01) (prog-if 20 [EHCI])
 	Subsystem: Pericom Semiconductor PI7C9X442SL USB EHCI Controller
-	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
+	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
 	Latency: 0, Cache Line Size: 64 bytes
 	Interrupt: pin C routed to IRQ 34
-	Region 0: Memory at df002000 (32-bit, non-prefetchable) [size=256]
+	Region 0: Memory at df100000 (32-bit, non-prefetchable) [size=256]
 	Capabilities: [80] Power Management version 3
 		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
 		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
 	Capabilities: [8c] MSI: Enable- Count=1/1 Maskable- 64bit-
 		Address: 00000000  Data: 0000
 	Capabilities: [e0] Express (v1) Legacy Endpoint, MSI 00
 		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
 			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
 		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
 			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop-
 			MaxPayload 128 bytes, MaxReadReq 128 bytes
 		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
 		LnkCap:	Port #0, Speed 2.5GT/s, Width x1, ASPM L0s, Exit Latency L0s <512ns
 			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp-
 		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk-
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 2.5GT/s (ok), Width x1 (ok)
 			TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
 	Kernel driver in use: ehci-pci
 	Kernel modules: ehci_pci
 
 2e:00.0 Ethernet controller: Broadcom Inc. and subsidiaries NetXtreme BCM57761 Gigabit Ethernet PCIe (rev 10)
 	Subsystem: Apple Inc. NetXtreme BCM57761 Gigabit Ethernet PCIe
 	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
-	Latency: 0
+	Latency: 0, Cache Line Size: 64 bytes
 	Interrupt: pin A routed to IRQ 34
-	Region 0: Memory at a0100000 (64-bit, prefetchable) [size=64K]
-	Region 2: Memory at a0110000 (64-bit, prefetchable) [size=64K]
+	Region 0: Memory at a0010000 (64-bit, prefetchable) [size=64K]
+	Region 2: Memory at a0000000 (64-bit, prefetchable) [size=64K]
 	Capabilities: [48] Power Management version 3
 		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
 		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
 	Capabilities: [58] MSI: Enable- Count=1/8 Maskable- 64bit+
 		Address: 0000000000000000  Data: 0000
 	Capabilities: [a0] MSI-X: Enable+ Count=6 Masked-
 		Vector table: BAR=2 offset=00000000
 		PBA: BAR=2 offset=00000120
 	Capabilities: [ac] Express (v2) Endpoint, MSI 00
 		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <4us, L1 <64us
 			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0.000W
 		DevCtl:	CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
 			RlxdOrd- ExtTag- PhantFunc- AuxPwr+ NoSnoop-
 			MaxPayload 128 bytes, MaxReadReq 4096 bytes
 		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
 		LnkCap:	Port #0, Speed 2.5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <2us, L1 <64us
 			ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp-
 		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 2.5GT/s (ok), Width x1 (ok)
 			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
 		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR-
 			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
 			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
 			 FRS- TPHComp- ExtTPHComp-
 			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled,
 			 AtomicOpsCtl: ReqEn-
 		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-
 			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
 			 Compliance De-emphasis: -6dB
 		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
 			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
 			 Retimer- 2Retimers- CrosslinkRes: unsupported
 	Capabilities: [100 v1] Advanced Error Reporting
 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
 		AERCap:	First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
 			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
 		HeaderLog: 00000000 00000000 00000000 00000000
 	Capabilities: [13c v1] Device Serial Number 00-00-c8-2a-14-4f-80-3e
 	Capabilities: [150 v1] Power Budgeting <?>
 	Capabilities: [160 v1] Virtual Channel
 		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
 		Arb:	Fixed- WRR32- WRR64- WRR128-
 		Ctrl:	ArbSelect=Fixed
 		Status:	InProgress-
 		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
 			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
-			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
+			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=01
 			Status:	NegoPending- InProgress-
 	Kernel driver in use: tg3
 	Kernel modules: tg3
 
 2f:00.0 FireWire (IEEE 1394): LSI Corporation FW643 [TrueFire] PCIe 1394b Controller (rev 08) (prog-if 10 [OHCI])
 	Subsystem: Device c111:0159
 	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
 	Interrupt: pin A routed to IRQ 255
-	Region 0: Memory at df200000 (64-bit, non-prefetchable) [disabled] [size=4K]
+	Region 0: Memory at df000000 (64-bit, non-prefetchable) [disabled] [size=4K]
 	Capabilities: [44] Power Management version 3
 		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
 		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
 	Capabilities: [4c] MSI: Enable- Count=1/1 Maskable- 64bit+
 		Address: 0000000000000000  Data: 0000
 	Capabilities: [60] Express (v1) Endpoint, MSI 00
 		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <4us, L1 <64us
 			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0.000W
 		DevCtl:	CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
 			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop-
 			MaxPayload 128 bytes, MaxReadReq 2048 bytes
 		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
 		LnkCap:	Port #0, Speed 2.5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <512ns, L1 <64us
 			ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp-
 		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 2.5GT/s (ok), Width x1 (ok)
 			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
 	Capabilities: [100 v1] Advanced Error Reporting
 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
 		AERCap:	First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
 			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
 		HeaderLog: 00000000 00000000 00000000 00000000
 	Capabilities: [140 v1] Virtual Channel
 		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
 		Arb:	Fixed- WRR32- WRR64- WRR128-
 		Ctrl:	ArbSelect=Fixed
 		Status:	InProgress-
 		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
 			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
-			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
+			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=01
 			Status:	NegoPending- InProgress-
 		VC1:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
 			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
-			Ctrl:	Enable- ID=0 ArbSelect=Fixed TC/VC=00
+			Ctrl:	Enable- ID=1 ArbSelect=Fixed TC/VC=00
 			Status:	NegoPending- InProgress-
 	Capabilities: [170 v1] Device Serial Number 00-0a-27-02-00-40-c4-ba
 
 4b:00.0 Non-Volatile memory controller: Kingston Technology Company, Inc. Device 2262 (rev 03) (prog-if 02 [NVM Express])
 	Subsystem: Kingston Technology Company, Inc. Device 2262
 	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
 	Latency: 0, Cache Line Size: 64 bytes
 	Interrupt: pin A routed to IRQ 25
 	NUMA node: 0
 	Region 0: Memory at ef600000 (64-bit, non-prefetchable) [size=16K]
 	Capabilities: [40] Power Management version 3
 		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
 		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
 	Capabilities: [50] MSI: Enable- Count=1/8 Maskable+ 64bit+
 		Address: 0000000000000000  Data: 0000
 		Masking: 00000000  Pending: 00000000
 	Capabilities: [70] Express (v2) Endpoint, MSI 00
 		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
 			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+ SlotPowerLimit 26.000W
 		DevCtl:	CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
 			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop- FLReset-
 			MaxPayload 128 bytes, MaxReadReq 512 bytes
 		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
 		LnkCap:	Port #0, Speed 8GT/s, Width x4, ASPM L1, Exit Latency L1 <8us
 			ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
 		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 8GT/s (ok), Width x4 (ok)
 			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
 		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR+
 			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
 			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
 			 FRS- TPHComp- ExtTPHComp-
 			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled,
 			 AtomicOpsCtl: ReqEn-
 		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
 		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
 			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
 			 Compliance De-emphasis: -6dB
 		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete+ EqualizationPhase1+
 			 EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
 			 Retimer- 2Retimers- CrosslinkRes: unsupported
 	Capabilities: [b0] MSI-X: Enable+ Count=16 Masked-
 		Vector table: BAR=0 offset=00002000
 		PBA: BAR=0 offset=00002100
 	Capabilities: [100 v2] Advanced Error Reporting
 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
 		AERCap:	First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
 			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
 		HeaderLog: 00000000 00000000 00000000 00000000
 	Capabilities: [158 v1] Secondary PCI Express
 		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
 		LaneErrStat: 0
 	Capabilities: [178 v1] Latency Tolerance Reporting
 		Max snoop latency: 0ns
 		Max no snoop latency: 0ns
 	Capabilities: [180 v1] L1 PM Substates
 		L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+
 			  PortCommonModeRestoreTime=10us PortTPowerOnTime=10us
 		L1SubCtl1: PCI-PM_L1.2- PCI-PM_L1.1- ASPM_L1.2- ASPM_L1.1-
 			   T_CommonMode=0us LTR1.2_Threshold=0ns
 		L1SubCtl2: T_PwrOn=10us
 	Kernel driver in use: nvme
 
 4c:00.0 PCI bridge: ASMedia Technology Inc. Device 1806 (rev 01) (prog-if 00 [Normal decode])
 	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
 	Latency: 0, Cache Line Size: 64 bytes
-	Interrupt: pin A routed to IRQ 41
+	Interrupt: pin A routed to IRQ 45
 	Bus: primary=4c, secondary=4d, subordinate=50, sec-latency=0
 	I/O behind bridge: 0000f000-0000ffff [size=4K]
 	Memory behind bridge: ef500000-ef5fffff [size=1M]
 	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff [disabled]
 	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
 	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
 		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
 	Capabilities: [40] Power Management version 3
 		Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
 		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
 	Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+
-		Address: 00000000fee06000  Data: 0022
+		Address: 00000000fee07000  Data: 0022
 	Capabilities: [80] Express (v2) Upstream Port, MSI 00
 		DevCap:	MaxPayload 512 bytes, PhantFunc 0
 			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ SlotPowerLimit 26.000W
 		DevCtl:	CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
 			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
 			MaxPayload 128 bytes, MaxReadReq 512 bytes
 		DevSta:	CorrErr+ NonFatalErr- FatalErr- UnsupReq+ AuxPwr- TransPend-
 		LnkCap:	Port #0, Speed 5GT/s, Width x2, ASPM L1, Exit Latency L1 <64us
 			ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
 		LnkCtl:	ASPM Disabled; Disabled- CommClk+
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 5GT/s (ok), Width x1 (downgraded)
 			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
 		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR+
 			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
 			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
 			 FRS-
 			 AtomicOpsCap: Routing-
 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled,
 			 AtomicOpsCtl: EgressBlck-
 		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
 		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis+
 			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
 			 Compliance De-emphasis: -6dB
 		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
 			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
 			 Retimer- 2Retimers- CrosslinkRes: unsupported
 	Capabilities: [c0] Subsystem: Device 0000:0000
 	Capabilities: [100 v1] Advanced Error Reporting
 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
 		AERCap:	First Error Pointer: 14, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
 			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
-		HeaderLog: 05000001 0000230f 4d08004d 00000000
+		HeaderLog: 05000001 0000200f 4d08004d 00000000
 	Capabilities: [140 v1] Power Budgeting <?>
 	Capabilities: [160 v1] Latency Tolerance Reporting
 		Max snoop latency: 0ns
 		Max no snoop latency: 0ns
 	Capabilities: [180 v1] Multicast
 		McastCap: MaxGroups 64, ECRCRegen-
 		McastCtl: NumGroups 1, Enable-
 		McastBAR: IndexPos 0, BaseAddr 0000000000000000
 		McastReceiveVec:      0000000000000000
 		McastBlockAllVec:     0000000000000000
 		McastBlockUntransVec: 0000000000000000
 		McastOverlayBAR: OverlaySize 0 (disabled), BaseAddr 0000000000000000
 	Capabilities: [1c0 v1] Secondary PCI Express
 		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
 		LaneErrStat: 0
 	Capabilities: [200 v1] Vendor Specific Information: ID=001a Rev=0 Len=000 <?>
 	Kernel driver in use: pcieport
 
 4d:00.0 PCI bridge: ASMedia Technology Inc. Device 1806 (rev 01) (prog-if 00 [Normal decode])
 	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
 	Latency: 0, Cache Line Size: 64 bytes
-	Interrupt: pin A routed to IRQ 42
+	Interrupt: pin A routed to IRQ 46
 	Bus: primary=4d, secondary=4e, subordinate=4e, sec-latency=0
 	I/O behind bridge: 0000f000-0000ffff [size=4K]
 	Memory behind bridge: ef500000-ef5fffff [size=1M]
 	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff [disabled]
 	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
 	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
 		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
 	Capabilities: [40] Power Management version 3
 		Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
 		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
 	Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+
-		Address: 00000000fee08000  Data: 0022
+		Address: 00000000fee09000  Data: 0022
 	Capabilities: [80] Express (v2) Downstream Port (Slot+), MSI 00
 		DevCap:	MaxPayload 512 bytes, PhantFunc 0
 			ExtTag+ RBE+
 		DevCtl:	CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
 			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
 			MaxPayload 128 bytes, MaxReadReq 512 bytes
 		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
 		LnkCap:	Port #0, Speed 5GT/s, Width x2, ASPM L1, Exit Latency L1 <64us
 			ClockPM+ Surprise+ LLActRep+ BwNot+ ASPMOptComp+
 		LnkCtl:	ASPM Disabled; Disabled- CommClk+
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 5GT/s (ok), Width x1 (downgraded)
 			TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
 		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
 			Slot #0, PowerLimit 0.000W; Interlock- NoCompl-
 		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
 			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
 		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
 			Changed: MRL- PresDet+ LinkState+
 		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR+
 			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
 			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
 			 FRS- ARIFwd+
 			 AtomicOpsCap: Routing-
 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled, ARIFwd-
 			 AtomicOpsCtl: EgressBlck-
 		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
 		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis+, Selectable De-emphasis: -3.5dB
 			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
 			 Compliance De-emphasis: -6dB
 		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
 			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
 			 Retimer- 2Retimers- CrosslinkRes: unsupported
 	Capabilities: [c0] Subsystem: Device 0000:0000
 	Capabilities: [100 v1] Advanced Error Reporting
 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
 		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
 			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
 		HeaderLog: 00000000 00000000 00000000 00000000
 	Capabilities: [140 v1] Power Budgeting <?>
 	Capabilities: [160 v1] Latency Tolerance Reporting
 		Max snoop latency: 0ns
 		Max no snoop latency: 0ns
 	Capabilities: [180 v1] Multicast
 		McastCap: MaxGroups 64, ECRCRegen-
 		McastCtl: NumGroups 1, Enable-
 		McastBAR: IndexPos 0, BaseAddr 0000000000000000
 		McastReceiveVec:      0000000000000000
 		McastBlockAllVec:     0000000000000000
 		McastBlockUntransVec: 0000000000000000
 		McastOverlayBAR: OverlaySize 0 (disabled), BaseAddr 0000000000000000
 	Capabilities: [1c0 v1] Secondary PCI Express
 		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
 		LaneErrStat: 0
 	Capabilities: [200 v1] Vendor Specific Information: ID=001a Rev=0 Len=000 <?>
 	Kernel driver in use: pcieport
 
 4d:06.0 PCI bridge: ASMedia Technology Inc. Device 1806 (rev 01) (prog-if 00 [Normal decode])
 	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
 	Latency: 0, Cache Line Size: 64 bytes
-	Interrupt: pin A routed to IRQ 43
+	Interrupt: pin A routed to IRQ 47
 	Bus: primary=4d, secondary=4f, subordinate=4f, sec-latency=0
 	I/O behind bridge: 0000f000-00000fff [disabled]
 	Memory behind bridge: fff00000-000fffff [disabled]
 	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff [disabled]
 	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
 	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
 		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
 	Capabilities: [40] Power Management version 3
 		Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
 		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
 	Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+
-		Address: 00000000fee0a000  Data: 0022
+		Address: 00000000fee0b000  Data: 0022
 	Capabilities: [80] Express (v2) Downstream Port (Slot+), MSI 00
 		DevCap:	MaxPayload 512 bytes, PhantFunc 0
 			ExtTag+ RBE+
 		DevCtl:	CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
 			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
 			MaxPayload 128 bytes, MaxReadReq 512 bytes
 		DevSta:	CorrErr+ NonFatalErr- FatalErr- UnsupReq+ AuxPwr- TransPend-
 		LnkCap:	Port #6, Speed 5GT/s, Width x1, ASPM L1, Exit Latency L1 <64us
 			ClockPM+ Surprise+ LLActRep+ BwNot+ ASPMOptComp+
 		LnkCtl:	ASPM Disabled; Disabled- CommClk-
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 2.5GT/s (downgraded), Width x1 (ok)
 			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
 		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
 			Slot #0, PowerLimit 0.000W; Interlock- NoCompl-
 		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
 			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
 		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock-
 			Changed: MRL- PresDet- LinkState-
 		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR+
 			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
 			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
 			 FRS- ARIFwd+
 			 AtomicOpsCap: Routing-
 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled, ARIFwd-
 			 AtomicOpsCtl: EgressBlck-
 		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
 		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis+, Selectable De-emphasis: -3.5dB
 			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
 			 Compliance De-emphasis: -6dB
 		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
 			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
 			 Retimer- 2Retimers- CrosslinkRes: unsupported
 	Capabilities: [c0] Subsystem: Device 0000:0000
 	Capabilities: [100 v1] Advanced Error Reporting
 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
 		AERCap:	First Error Pointer: 14, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
 			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
-		HeaderLog: 04000001 0000210f 4f00004f 00000000
+		HeaderLog: 04000001 0000220f 4f00004f 00000000
 	Capabilities: [140 v1] Power Budgeting <?>
 	Capabilities: [160 v1] Latency Tolerance Reporting
 		Max snoop latency: 0ns
 		Max no snoop latency: 0ns
 	Capabilities: [180 v1] Multicast
 		McastCap: MaxGroups 64, ECRCRegen-
 		McastCtl: NumGroups 1, Enable-
 		McastBAR: IndexPos 0, BaseAddr 0000000000000000
 		McastReceiveVec:      0000000000000000
 		McastBlockAllVec:     0000000000000000
 		McastBlockUntransVec: 0000000000000000
 		McastOverlayBAR: OverlaySize 0 (disabled), BaseAddr 0000000000000000
 	Capabilities: [1c0 v1] Secondary PCI Express
 		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
 		LaneErrStat: 0
 	Capabilities: [200 v1] Vendor Specific Information: ID=001a Rev=0 Len=000 <?>
 	Kernel driver in use: pcieport
 
 4d:0e.0 PCI bridge: ASMedia Technology Inc. Device 1806 (rev 01) (prog-if 00 [Normal decode])
 	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
 	Latency: 0, Cache Line Size: 64 bytes
-	Interrupt: pin A routed to IRQ 44
+	Interrupt: pin A routed to IRQ 48
 	Bus: primary=4d, secondary=50, subordinate=50, sec-latency=0
 	I/O behind bridge: 0000f000-00000fff [disabled]
 	Memory behind bridge: fff00000-000fffff [disabled]
 	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff [disabled]
 	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
 	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
 		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
 	Capabilities: [40] Power Management version 3
 		Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
 		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
 	Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+
-		Address: 00000000fee01000  Data: 0022
+		Address: 00000000fee00000  Data: 0022
 	Capabilities: [80] Express (v2) Downstream Port (Slot+), MSI 00
 		DevCap:	MaxPayload 512 bytes, PhantFunc 0
 			ExtTag+ RBE+
 		DevCtl:	CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
 			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
 			MaxPayload 128 bytes, MaxReadReq 512 bytes
 		DevSta:	CorrErr+ NonFatalErr- FatalErr- UnsupReq+ AuxPwr- TransPend-
 		LnkCap:	Port #14, Speed 5GT/s, Width x1, ASPM L1, Exit Latency L1 <64us
 			ClockPM+ Surprise+ LLActRep+ BwNot+ ASPMOptComp+
 		LnkCtl:	ASPM Disabled; Disabled- CommClk-
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 2.5GT/s (downgraded), Width x1 (ok)
 			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
 		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
 			Slot #0, PowerLimit 0.000W; Interlock- NoCompl-
 		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
 			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
 		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock-
 			Changed: MRL- PresDet- LinkState-
 		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR+
 			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
 			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
 			 FRS- ARIFwd+
 			 AtomicOpsCap: Routing-
 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled, ARIFwd-
 			 AtomicOpsCtl: EgressBlck-
 		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
 		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis+, Selectable De-emphasis: -3.5dB
 			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
 			 Compliance De-emphasis: -6dB
 		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
 			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
 			 Retimer- 2Retimers- CrosslinkRes: unsupported
 	Capabilities: [c0] Subsystem: Device 0000:0000
 	Capabilities: [100 v1] Advanced Error Reporting
 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
 		AERCap:	First Error Pointer: 14, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
 			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
-		HeaderLog: 04000001 0000200f 50000050 00000000
+		HeaderLog: 04000001 0000210f 50000050 00000000
 	Capabilities: [140 v1] Power Budgeting <?>
 	Capabilities: [160 v1] Latency Tolerance Reporting
 		Max snoop latency: 0ns
 		Max no snoop latency: 0ns
 	Capabilities: [180 v1] Multicast
 		McastCap: MaxGroups 64, ECRCRegen-
 		McastCtl: NumGroups 1, Enable-
 		McastBAR: IndexPos 0, BaseAddr 0000000000000000
 		McastReceiveVec:      0000000000000000
 		McastBlockAllVec:     0000000000000000
 		McastBlockUntransVec: 0000000000000000
 		McastOverlayBAR: OverlaySize 0 (disabled), BaseAddr 0000000000000000
 	Capabilities: [1c0 v1] Secondary PCI Express
 		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
 		LaneErrStat: 0
 	Capabilities: [200 v1] Vendor Specific Information: ID=001a Rev=0 Len=000 <?>
 	Kernel driver in use: pcieport
 
 4e:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8125 2.5GbE Controller (rev 05)
 	Subsystem: Gigabyte Technology Co., Ltd Device e000
 	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
 	Latency: 0, Cache Line Size: 64 bytes
 	Interrupt: pin A routed to IRQ 25
 	Region 0: I/O ports at f000 [size=256]
 	Region 2: Memory at ef500000 (64-bit, non-prefetchable) [size=64K]
 	Region 4: Memory at ef510000 (64-bit, non-prefetchable) [size=16K]
 	Capabilities: [40] Power Management version 3
 		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
 		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
 	Capabilities: [50] MSI: Enable- Count=1/1 Maskable+ 64bit+
 		Address: 0000000000000000  Data: 0000
 		Masking: 00000000  Pending: 00000000
 	Capabilities: [70] Express (v2) Endpoint, MSI 01
 		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <512ns, L1 <64us
 			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0.000W
 		DevCtl:	CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
 			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop-
 			MaxPayload 128 bytes, MaxReadReq 4096 bytes
 		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
 		LnkCap:	Port #0, Speed 5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s unlimited, L1 <64us
 			ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
 		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 5GT/s (ok), Width x1 (ok)
 			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
 		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR+
 			 10BitTagComp- 10BitTagReq- OBFF Via message/WAKE#, ExtFmt- EETLPPrefix-
 			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
 			 FRS- TPHComp+ ExtTPHComp-
@@ -2430,267 +2428,267 @@
 			MaxPayload 128 bytes, MaxReadReq 512 bytes
 		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
 		LnkCap:	Port #9, Speed 5GT/s, Width x1, ASPM L1, Exit Latency L1 <4us
 			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
 		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 5GT/s (ok), Width x1 (ok)
 			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
 		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR+
 			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
 			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
 			 FRS- TPHComp- ExtTPHComp-
 			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled,
 			 AtomicOpsCtl: ReqEn-
 		LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-
 			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
 			 Compliance De-emphasis: -6dB
 		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
 			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
 			 Retimer- 2Retimers- CrosslinkRes: unsupported
 	Capabilities: [100 v2] Advanced Error Reporting
 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
 		AERCap:	First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
 			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
 		HeaderLog: 00000000 00000000 00000000 00000000
 	Capabilities: [140 v1] Device Serial Number d8-5e-d3-ff-ff-86-cc-c8
 	Capabilities: [1c0 v1] Latency Tolerance Reporting
 		Max snoop latency: 0ns
 		Max no snoop latency: 0ns
 	Capabilities: [1f0 v1] Precision Time Measurement
 		PTMCap: Requester:+ Responder:- Root:-
 		PTMClockGranularity: 4ns
 		PTMControl: Enabled:+ RootSelected:-
 		PTMEffectiveGranularity: Unknown
 	Capabilities: [1e0 v1] L1 PM Substates
 		L1SubCap: PCI-PM_L1.2- PCI-PM_L1.1+ ASPM_L1.2- ASPM_L1.1+ L1_PM_Substates+
 		L1SubCtl1: PCI-PM_L1.2- PCI-PM_L1.1- ASPM_L1.2- ASPM_L1.1-
 		L1SubCtl2:
 	Kernel driver in use: igc
 
 52:00.0 Non-Volatile memory controller: Micron/Crucial Technology Device 540a (rev 01) (prog-if 02 [NVM Express])
 	Subsystem: Micron/Crucial Technology Device 540a
 	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
 	Latency: 0, Cache Line Size: 64 bytes
-	Interrupt: pin A routed to IRQ 46
+	Interrupt: pin A routed to IRQ 50
 	NUMA node: 0
 	Region 0: Memory at efd00000 (64-bit, non-prefetchable) [size=16K]
 	Capabilities: [80] Express (v2) Endpoint, MSI 00
 		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
 			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset+ SlotPowerLimit 75.000W
 		DevCtl:	CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
 			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+ FLReset-
 			MaxPayload 256 bytes, MaxReadReq 512 bytes
 		DevSta:	CorrErr+ NonFatalErr- FatalErr- UnsupReq+ AuxPwr- TransPend-
 		LnkCap:	Port #1, Speed 8GT/s, Width x4, ASPM L1, Exit Latency L1 unlimited
 			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
 		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 8GT/s (ok), Width x4 (ok)
 			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
 		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR+
 			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix-
 			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
 			 FRS- TPHComp- ExtTPHComp-
 			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled,
 			 AtomicOpsCtl: ReqEn-
 		LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
 		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
 			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
 			 Compliance De-emphasis: -6dB
 		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete+ EqualizationPhase1+
 			 EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
 			 Retimer- 2Retimers- CrosslinkRes: Upstream Port
 	Capabilities: [d0] MSI-X: Enable+ Count=9 Masked-
 		Vector table: BAR=0 offset=00002000
 		PBA: BAR=0 offset=00003000
 	Capabilities: [e0] MSI: Enable- Count=1/8 Maskable+ 64bit+
 		Address: 0000000000000000  Data: 0000
 		Masking: 00000000  Pending: 00000000
 	Capabilities: [f8] Power Management version 3
 		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
 		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
 	Capabilities: [100 v1] Latency Tolerance Reporting
 		Max snoop latency: 0ns
 		Max no snoop latency: 0ns
 	Capabilities: [110 v1] L1 PM Substates
 		L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+
 			  PortCommonModeRestoreTime=10us PortTPowerOnTime=220us
 		L1SubCtl1: PCI-PM_L1.2- PCI-PM_L1.1- ASPM_L1.2- ASPM_L1.1-
 			   T_CommonMode=0us LTR1.2_Threshold=0ns
 		L1SubCtl2: T_PwrOn=10us
 	Capabilities: [200 v2] Advanced Error Reporting
 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
 		UESvrt:	DLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP+ ECRC- UnsupReq- ACSViol-
 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
 		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap+ ECRCChkEn-
 			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
-		HeaderLog: 04000001 0000220f 52070000 18a4170e
+		HeaderLog: 04000001 0000230f 52070000 c87b69e3
 	Capabilities: [300 v1] Secondary PCI Express
 		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
 		LaneErrStat: 0
 	Kernel driver in use: nvme
 
 53:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Cezanne (rev c9) (prog-if 00 [VGA controller])
 	Subsystem: Gigabyte Technology Co., Ltd Device d000
 	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort+ <TAbort- <MAbort- >SERR- <PERR- INTx-
 	Latency: 0, Cache Line Size: 64 bytes
 	Interrupt: pin A routed to IRQ 24
 	Region 0: Memory at c0000000 (64-bit, prefetchable) [size=256M]
 	Region 2: Memory at d0000000 (64-bit, prefetchable) [size=2M]
 	Region 4: I/O ports at e000 [size=256]
 	Region 5: Memory at efc00000 (32-bit, non-prefetchable) [size=512K]
 	Capabilities: [48] Vendor Specific Information: Len=08 <?>
 	Capabilities: [50] Power Management version 3
 		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1+,D2+,D3hot+,D3cold+)
 		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
 	Capabilities: [64] Express (v2) Legacy Endpoint, MSI 00
 		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <4us, L1 unlimited
 			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
 		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
 			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
 			MaxPayload 256 bytes, MaxReadReq 512 bytes
 		DevSta:	CorrErr- NonFatalErr+ FatalErr- UnsupReq+ AuxPwr- TransPend-
 		LnkCap:	Port #0, Speed 8GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <64ns, L1 <1us
 			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
 		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 8GT/s (ok), Width x16 (ok)
 			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
 		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR-
 			 10BitTagComp+ 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix+, MaxEETLPPrefixes 1
 			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
 			 FRS-
 			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled,
 			 AtomicOpsCtl: ReqEn-
 		LnkCap2: Supported Link Speeds: 2.5-16GT/s, Crosslink- Retimer+ 2Retimers+ DRS-
 		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
 			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
 			 Compliance De-emphasis: -6dB
 		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete+ EqualizationPhase1+
 			 EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
 			 Retimer- 2Retimers- CrosslinkRes: unsupported
 	Capabilities: [a0] MSI: Enable- Count=1/4 Maskable- 64bit+
 		Address: 0000000000000000  Data: 0000
 	Capabilities: [c0] MSI-X: Enable+ Count=4 Masked-
 		Vector table: BAR=5 offset=00042000
 		PBA: BAR=5 offset=00043000
 	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
 	Capabilities: [270 v1] Secondary PCI Express
 		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
 		LaneErrStat: 0
 	Capabilities: [2a0 v1] Access Control Services
 		ACSCap:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
 		ACSCtl:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
 	Capabilities: [2b0 v1] Address Translation Service (ATS)
 		ATSCap:	Invalidate Queue Depth: 00
 		ATSCtl:	Enable-, Smallest Translation Unit: 00
 	Capabilities: [2c0 v1] Page Request Interface (PRI)
 		PRICtl: Enable- Reset-
 		PRISta: RF- UPRGI- Stopped+
 		Page Request Capacity: 00000100, Page Request Allocation: 00000000
 	Capabilities: [2d0 v1] Process Address Space ID (PASID)
 		PASIDCap: Exec+ Priv+, Max PASID Width: 10
 		PASIDCtl: Enable- Exec- Priv-
 	Capabilities: [400 v1] Data Link Feature <?>
 	Capabilities: [410 v1] Physical Layer 16.0 GT/s <?>
 	Capabilities: [440 v1] Lane Margining at the Receiver <?>
 	Kernel driver in use: amdgpu
 	Kernel modules: amdgpu
 
 53:00.1 Audio device: Advanced Micro Devices, Inc. [AMD/ATI] Device 1637
 	Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] Device 1637
 	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
 	Latency: 0, Cache Line Size: 64 bytes
-	Interrupt: pin B routed to IRQ 107
+	Interrupt: pin B routed to IRQ 111
 	Region 0: Memory at efc88000 (32-bit, non-prefetchable) [size=16K]
 	Capabilities: [48] Vendor Specific Information: Len=08 <?>
 	Capabilities: [50] Power Management version 3
 		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1+,D2+,D3hot+,D3cold+)
 		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
 	Capabilities: [64] Express (v2) Legacy Endpoint, MSI 00
 		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <4us, L1 unlimited
 			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
 		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
 			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
 			MaxPayload 256 bytes, MaxReadReq 512 bytes
 		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
 		LnkCap:	Port #0, Speed 8GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <64ns, L1 <1us
 			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
 		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 8GT/s (ok), Width x16 (ok)
 			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
 		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR-
 			 10BitTagComp+ 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix+, MaxEETLPPrefixes 1
 			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
 			 FRS-
 			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled,
 			 AtomicOpsCtl: ReqEn-
 		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
 			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
 			 Retimer- 2Retimers- CrosslinkRes: unsupported
 	Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit+
-		Address: 00000000fee06000  Data: 0027
+		Address: 00000000fee09000  Data: 0027
 	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
 	Capabilities: [2a0 v1] Access Control Services
 		ACSCap:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
 		ACSCtl:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
 	Kernel driver in use: snd_hda_intel
 	Kernel modules: snd_hda_intel
 
 53:00.2 Encryption controller: Advanced Micro Devices, Inc. [AMD] Family 17h (Models 10h-1fh) Platform Security Processor
 	Subsystem: Advanced Micro Devices, Inc. [AMD] Family 17h (Models 10h-1fh) Platform Security Processor
 	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
 	Latency: 0, Cache Line Size: 64 bytes
 	Interrupt: pin C routed to IRQ 25
 	Region 2: Memory at efb00000 (32-bit, non-prefetchable) [size=1M]
 	Region 5: Memory at efc8c000 (32-bit, non-prefetchable) [size=8K]
 	Capabilities: [48] Vendor Specific Information: Len=08 <?>
 	Capabilities: [50] Power Management version 3
 		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
 		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
 	Capabilities: [64] Express (v2) Endpoint, MSI 00
 		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <4us, L1 unlimited
 			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0.000W
 		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
 			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
 			MaxPayload 256 bytes, MaxReadReq 512 bytes
 		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
 		LnkCap:	Port #0, Speed 8GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <64ns, L1 <1us
 			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
 		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 8GT/s (ok), Width x16 (ok)
 			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
 		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR-
 			 10BitTagComp+ 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix+, MaxEETLPPrefixes 1
 			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
 			 FRS- TPHComp- ExtTPHComp-
 			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled,
 			 AtomicOpsCtl: ReqEn-
 		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
 			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
 			 Retimer- 2Retimers- CrosslinkRes: unsupported
 	Capabilities: [a0] MSI: Enable- Count=1/2 Maskable- 64bit+
 		Address: 0000000000000000  Data: 0000
 	Capabilities: [c0] MSI-X: Enable+ Count=2 Masked-
 		Vector table: BAR=5 offset=00000000
 		PBA: BAR=5 offset=00001000
 	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
 	Capabilities: [2a0 v1] Access Control Services
 		ACSCap:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
@@ -2748,88 +2746,88 @@
 	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
 	Latency: 0, Cache Line Size: 64 bytes
 	Interrupt: pin A routed to IRQ 24
 	Region 0: Memory at ef900000 (64-bit, non-prefetchable) [size=1M]
 	Capabilities: [48] Vendor Specific Information: Len=08 <?>
 	Capabilities: [50] Power Management version 3
 		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
 		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
 	Capabilities: [64] Express (v2) Endpoint, MSI 00
 		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <4us, L1 unlimited
 			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0.000W
 		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
 			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
 			MaxPayload 256 bytes, MaxReadReq 512 bytes
 		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
 		LnkCap:	Port #0, Speed 8GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <64ns, L1 <1us
 			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
 		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 8GT/s (ok), Width x16 (ok)
 			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
 		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR-
 			 10BitTagComp+ 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix+, MaxEETLPPrefixes 1
 			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
 			 FRS- TPHComp- ExtTPHComp-
 			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled,
 			 AtomicOpsCtl: ReqEn-
 		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
 			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
 			 Retimer- 2Retimers- CrosslinkRes: unsupported
 	Capabilities: [a0] MSI: Enable- Count=1/8 Maskable- 64bit+
 		Address: 0000000000000000  Data: 0000
 	Capabilities: [c0] MSI-X: Enable+ Count=8 Masked-
 		Vector table: BAR=0 offset=000fe000
 		PBA: BAR=0 offset=000ff000
 	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
 	Capabilities: [2a0 v1] Access Control Services
 		ACSCap:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
 		ACSCtl:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
 	Kernel driver in use: xhci_hcd
 	Kernel modules: xhci_pci
 
 53:00.6 Audio device: Advanced Micro Devices, Inc. [AMD] Family 17h (Models 10h-1fh) HD Audio Controller
 	DeviceName: Realtek ALC1220
 	Subsystem: Gigabyte Technology Co., Ltd Family 17h (Models 10h-1fh) HD Audio Controller
 	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
 	Latency: 0, Cache Line Size: 64 bytes
-	Interrupt: pin C routed to IRQ 108
+	Interrupt: pin C routed to IRQ 112
 	Region 0: Memory at efc80000 (32-bit, non-prefetchable) [size=32K]
 	Capabilities: [48] Vendor Specific Information: Len=08 <?>
 	Capabilities: [50] Power Management version 3
 		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
 		Status: D3 NoSoftRst+ PME-Enable+ DSel=0 DScale=0 PME-
 	Capabilities: [64] Express (v2) Endpoint, MSI 00
 		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <4us, L1 unlimited
 			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0.000W
 		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
 			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
 			MaxPayload 256 bytes, MaxReadReq 512 bytes
 		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
 		LnkCap:	Port #0, Speed 8GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <64ns, L1 <1us
 			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
 		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
 		LnkSta:	Speed 8GT/s (ok), Width x16 (ok)
 			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
 		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR-
 			 10BitTagComp+ 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix+, MaxEETLPPrefixes 1
 			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
 			 FRS- TPHComp- ExtTPHComp-
 			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled,
 			 AtomicOpsCtl: ReqEn-
 		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
 			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
 			 Retimer- 2Retimers- CrosslinkRes: unsupported
 	Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit+
-		Address: 00000000fee08000  Data: 0027
+		Address: 00000000fee0b000  Data: 0027
 	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
 	Capabilities: [2a0 v1] Access Control Services
 		ACSCap:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
 		ACSCtl:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
 	Kernel driver in use: snd_hda_intel
 	Kernel modules: snd_hda_intel
 

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-08-09 15:16                                                                             ` Brad Campbell
@ 2022-08-09 15:50                                                                               ` Mika Westerberg
  2022-08-10  7:40                                                                                 ` Brad Campbell
  0 siblings, 1 reply; 47+ messages in thread
From: Mika Westerberg @ 2022-08-09 15:50 UTC (permalink / raw)
  To: Brad Campbell; +Cc: linux-kernel

Hi,

On Tue, Aug 09, 2022 at 11:16:27PM +0800, Brad Campbell wrote:
> If I then reboot and load the driver it fails.
> 
> The only thing I could think of doing was an lspci -vvv after the boot and module load
> and an lspci -vvv after a warm reboot and diff them, because there are changes around the
> thunderbolt bridge devices. I've done a diff -u50 to try and keep as much context as possible.
> 
> On the first boot I can unload/reload the thunderbolt module repeatedly and there's no issue
> but loading it after a reboot locks up. There are no lspci changes on the first boot after the
> initial module load unless I rescan the PCI bus, but they're minor and it doesn't cause an issue
> with loading the thunderbolt module.
> 
> The firmware *must* be doing something on reboot I suppose or the PCIe configs wouldn't change.

Okay, let's try a bigger hammer and reset all the ports upon load. That
should hopefully clear out the "bad state" too. This is completely
untested but it should trigger reset and then re-initialize the TBT
links.

diff --git a/drivers/thunderbolt/lc.c b/drivers/thunderbolt/lc.c
index 633970fbe9b0..c419c2568de4 100644
--- a/drivers/thunderbolt/lc.c
+++ b/drivers/thunderbolt/lc.c
@@ -6,6 +6,8 @@
  * Author: Mika Westerberg <mika.westerberg@linux.intel.com>
  */
 
+#include <linux/delay.h>
+
 #include "tb.h"
 
 /**
@@ -327,6 +329,34 @@ void tb_lc_xhci_disconnect(struct tb_port *port)
 	tb_port_dbg(port, "xHCI disconnected\n");
 }
 
+int tb_lc_reset_port(struct tb_port *port)
+{
+	struct tb_switch *sw = port->sw;
+	int cap, ret;
+	u32 val;
+
+	if (sw->generation != 3)
+		return -EINVAL;
+
+	cap = find_port_lc_cap(port);
+	if (cap < 0)
+		return cap;
+
+	ret = tb_sw_read(sw, &val, TB_CFG_SWITCH, cap + TB_LC_PORT_MODE, 1);
+	if (ret)
+		return ret;
+
+	val |= TB_LC_PORT_MODE_DPR;
+	ret = tb_sw_write(sw, &val, TB_CFG_SWITCH, cap + TB_LC_PORT_MODE, 1);
+	if (ret)
+		return ret;
+
+	msleep(20);
+
+	val &= ~TB_LC_PORT_MODE_DPR;
+	return tb_sw_write(sw, &val, TB_CFG_SWITCH, cap + TB_LC_PORT_MODE, 1);
+}
+
 static int tb_lc_set_wake_one(struct tb_switch *sw, unsigned int offset,
 			      unsigned int flags)
 {
diff --git a/drivers/thunderbolt/switch.c b/drivers/thunderbolt/switch.c
index 0ae8a7ec7c9c..21ac3ccf1cf9 100644
--- a/drivers/thunderbolt/switch.c
+++ b/drivers/thunderbolt/switch.c
@@ -740,6 +740,11 @@ int tb_port_disable(struct tb_port *port)
 	return __tb_port_enable(port, false);
 }
 
+int tb_port_reset(struct tb_port *port)
+{
+	return tb_lc_reset_port(port);
+}
+
 /*
  * tb_init_port() - initialize a port
  *
diff --git a/drivers/thunderbolt/tb.c b/drivers/thunderbolt/tb.c
index 8030fc544c5e..48a7396994ef 100644
--- a/drivers/thunderbolt/tb.c
+++ b/drivers/thunderbolt/tb.c
@@ -1875,6 +1875,7 @@ static int tb_scan_finalize_switch(struct device *dev, void *data)
 static int tb_start(struct tb *tb)
 {
 	struct tb_cm *tcm = tb_priv(tb);
+	struct tb_port *p;
 	int ret;
 
 	tb->root_switch = tb_switch_alloc(tb, &tb->dev, 0);
@@ -1911,6 +1912,12 @@ static int tb_start(struct tb *tb)
 				false);
 	/* Enable TMU if it is off */
 	tb_switch_tmu_enable(tb->root_switch);
+
+	tb_switch_for_each_port(tb->root_switch, p) {
+		if (tb_port_is_null(p))
+			tb_port_reset(p);
+	}
+
 	/* Full scan to discover devices added before the driver was loaded. */
 	tb_scan_switch(tb->root_switch);
 	/* Find out tunnels created by the boot firmware */
diff --git a/drivers/thunderbolt/tb.h b/drivers/thunderbolt/tb.h
index 28bb80d967d6..fe5edefec712 100644
--- a/drivers/thunderbolt/tb.h
+++ b/drivers/thunderbolt/tb.h
@@ -1028,6 +1028,7 @@ int tb_port_clear_counter(struct tb_port *port, int counter);
 int tb_port_unlock(struct tb_port *port);
 int tb_port_enable(struct tb_port *port);
 int tb_port_disable(struct tb_port *port);
+int tb_port_reset(struct tb_port *port);
 int tb_port_alloc_in_hopid(struct tb_port *port, int hopid, int max_hopid);
 void tb_port_release_in_hopid(struct tb_port *port, int hopid);
 int tb_port_alloc_out_hopid(struct tb_port *port, int hopid, int max_hopid);
@@ -1121,6 +1122,7 @@ bool tb_lc_is_usb_plugged(struct tb_port *port);
 bool tb_lc_is_xhci_connected(struct tb_port *port);
 int tb_lc_xhci_connect(struct tb_port *port);
 void tb_lc_xhci_disconnect(struct tb_port *port);
+int tb_lc_reset_port(struct tb_port *port);
 int tb_lc_set_wake(struct tb_switch *sw, unsigned int flags);
 int tb_lc_set_sleep(struct tb_switch *sw);
 bool tb_lc_lane_bonding_possible(struct tb_switch *sw);
diff --git a/drivers/thunderbolt/tb_regs.h b/drivers/thunderbolt/tb_regs.h
index f8c1ca3464d9..8fd12bc2d500 100644
--- a/drivers/thunderbolt/tb_regs.h
+++ b/drivers/thunderbolt/tb_regs.h
@@ -555,6 +555,9 @@ struct tb_regs_hop {
 #define TB_LC_POWER				0x740
 
 /* Link controller registers */
+#define TB_LC_PORT_MODE				0x26
+#define TB_LC_PORT_MODE_DPR			BIT(6)
+
 #define TB_LC_CS_42				0x2a
 #define TB_LC_CS_42_USB_PLUGGED			BIT(31)
 

^ permalink raw reply related	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-08-09 15:50                                                                               ` Mika Westerberg
@ 2022-08-10  7:40                                                                                 ` Brad Campbell
  2022-08-11  9:50                                                                                   ` Mika Westerberg
  0 siblings, 1 reply; 47+ messages in thread
From: Brad Campbell @ 2022-08-10  7:40 UTC (permalink / raw)
  To: Mika Westerberg; +Cc: linux-kernel

G'day Mika,

On 9/8/22 23:50, Mika Westerberg wrote:
> Hi,
> 
> On Tue, Aug 09, 2022 at 11:16:27PM +0800, Brad Campbell wrote:
>> If I then reboot and load the driver it fails.
>>
>> The only thing I could think of doing was an lspci -vvv after the boot and module load
>> and an lspci -vvv after a warm reboot and diff them, because there are changes around the
>> thunderbolt bridge devices. I've done a diff -u50 to try and keep as much context as possible.
>>
>> On the first boot I can unload/reload the thunderbolt module repeatedly and there's no issue
>> but loading it after a reboot locks up. There are no lspci changes on the first boot after the
>> initial module load unless I rescan the PCI bus, but they're minor and it doesn't cause an issue
>> with loading the thunderbolt module.
>>
>> The firmware *must* be doing something on reboot I suppose or the PCIe configs wouldn't change.
> 
> Okay, let's try a bigger hammer and reset all the ports upon load. That
> should hopefully clear out the "bad state" too. This is completely
> untested but it should trigger reset and then re-initialize the TBT
> links.
> 
> diff --git a/drivers/thunderbolt/lc.c b/drivers/thunderbolt/lc.c
> index 633970fbe9b0..c419c2568de4 100644
> --- a/drivers/thunderbolt/lc.c
> +++ b/drivers/thunderbolt/lc.c
> @@ -6,6 +6,8 @@
>    * Author: Mika Westerberg <mika.westerberg@linux.intel.com>
>    */
>   
> +#include <linux/delay.h>
> +
>   #include "tb.h"
>   
>   /**
> @@ -327,6 +329,34 @@ void tb_lc_xhci_disconnect(struct tb_port *port)
>   	tb_port_dbg(port, "xHCI disconnected\n");
>   }
>   
> +int tb_lc_reset_port(struct tb_port *port)
> +{
> +	struct tb_switch *sw = port->sw;
> +	int cap, ret;
> +	u32 val;
> +
> +	if (sw->generation != 3)
> +		return -EINVAL;
> +
> +	cap = find_port_lc_cap(port);
> +	if (cap < 0)
> +		return cap;
> +
> +	ret = tb_sw_read(sw, &val, TB_CFG_SWITCH, cap + TB_LC_PORT_MODE, 1);
> +	if (ret)
> +		return ret;
> +
> +	val |= TB_LC_PORT_MODE_DPR;
> +	ret = tb_sw_write(sw, &val, TB_CFG_SWITCH, cap + TB_LC_PORT_MODE, 1);
> +	if (ret)
> +		return ret;
> +
> +	msleep(20);
> +
> +	val &= ~TB_LC_PORT_MODE_DPR;
> +	return tb_sw_write(sw, &val, TB_CFG_SWITCH, cap + TB_LC_PORT_MODE, 1);
> +}
> +
>   static int tb_lc_set_wake_one(struct tb_switch *sw, unsigned int offset,
>   			      unsigned int flags)
>   {
> diff --git a/drivers/thunderbolt/switch.c b/drivers/thunderbolt/switch.c
> index 0ae8a7ec7c9c..21ac3ccf1cf9 100644
> --- a/drivers/thunderbolt/switch.c
> +++ b/drivers/thunderbolt/switch.c
> @@ -740,6 +740,11 @@ int tb_port_disable(struct tb_port *port)
>   	return __tb_port_enable(port, false);
>   }
>   
> +int tb_port_reset(struct tb_port *port)
> +{
> +	return tb_lc_reset_port(port);
> +}
> +
>   /*
>    * tb_init_port() - initialize a port
>    *
> diff --git a/drivers/thunderbolt/tb.c b/drivers/thunderbolt/tb.c
> index 8030fc544c5e..48a7396994ef 100644
> --- a/drivers/thunderbolt/tb.c
> +++ b/drivers/thunderbolt/tb.c
> @@ -1875,6 +1875,7 @@ static int tb_scan_finalize_switch(struct device *dev, void *data)
>   static int tb_start(struct tb *tb)
>   {
>   	struct tb_cm *tcm = tb_priv(tb);
> +	struct tb_port *p;
>   	int ret;
>   
>   	tb->root_switch = tb_switch_alloc(tb, &tb->dev, 0);
> @@ -1911,6 +1912,12 @@ static int tb_start(struct tb *tb)
>   				false);
>   	/* Enable TMU if it is off */
>   	tb_switch_tmu_enable(tb->root_switch);
> +
> +	tb_switch_for_each_port(tb->root_switch, p) {
> +		if (tb_port_is_null(p))
> +			tb_port_reset(p);
> +	}
> +
>   	/* Full scan to discover devices added before the driver was loaded. */
>   	tb_scan_switch(tb->root_switch);
>   	/* Find out tunnels created by the boot firmware */
> diff --git a/drivers/thunderbolt/tb.h b/drivers/thunderbolt/tb.h
> index 28bb80d967d6..fe5edefec712 100644
> --- a/drivers/thunderbolt/tb.h
> +++ b/drivers/thunderbolt/tb.h
> @@ -1028,6 +1028,7 @@ int tb_port_clear_counter(struct tb_port *port, int counter);
>   int tb_port_unlock(struct tb_port *port);
>   int tb_port_enable(struct tb_port *port);
>   int tb_port_disable(struct tb_port *port);
> +int tb_port_reset(struct tb_port *port);
>   int tb_port_alloc_in_hopid(struct tb_port *port, int hopid, int max_hopid);
>   void tb_port_release_in_hopid(struct tb_port *port, int hopid);
>   int tb_port_alloc_out_hopid(struct tb_port *port, int hopid, int max_hopid);
> @@ -1121,6 +1122,7 @@ bool tb_lc_is_usb_plugged(struct tb_port *port);
>   bool tb_lc_is_xhci_connected(struct tb_port *port);
>   int tb_lc_xhci_connect(struct tb_port *port);
>   void tb_lc_xhci_disconnect(struct tb_port *port);
> +int tb_lc_reset_port(struct tb_port *port);
>   int tb_lc_set_wake(struct tb_switch *sw, unsigned int flags);
>   int tb_lc_set_sleep(struct tb_switch *sw);
>   bool tb_lc_lane_bonding_possible(struct tb_switch *sw);
> diff --git a/drivers/thunderbolt/tb_regs.h b/drivers/thunderbolt/tb_regs.h
> index f8c1ca3464d9..8fd12bc2d500 100644
> --- a/drivers/thunderbolt/tb_regs.h
> +++ b/drivers/thunderbolt/tb_regs.h
> @@ -555,6 +555,9 @@ struct tb_regs_hop {
>   #define TB_LC_POWER				0x740
>   
>   /* Link controller registers */
> +#define TB_LC_PORT_MODE				0x26
> +#define TB_LC_PORT_MODE_DPR			BIT(6)
> +
>   #define TB_LC_CS_42				0x2a
>   #define TB_LC_CS_42_USB_PLUGGED			BIT(31)
>   
> 

Yep, that certainly solves the lockup/reboot issues and all PCIe devices are
discovered and appear to work. I can reboot repeatedly and that seems to be ok.

It causes some peculiarity in the DP tunnel however where one or both will fail to come up
leaving this in dmesg (in this instance both failed) :

[   10.550439] [drm] Adding stream 00000000a5b9bb95 to context failed with err 28!
[   10.551032] [drm:handle_hpd_irq_helper [amdgpu]] *ERROR* Restoring old state failed with -22
[   11.180398] [drm] Adding stream 00000000a5b9bb95 to context failed with err 28!
[   11.180830] [drm:handle_hpd_irq_helper [amdgpu]] *ERROR* Restoring old state failed with -22

Oddly enough X thinks the displays are there and is pretending to display on them, but they
remain black. This can be one, the other or both depending on the boot.

I have probably cold/warm booted 50 times now with varying combinations of activation to attempt
to pin some form of determinism on this behaviour, but I've got nothing at this point.

Regards,
Brad


^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-08-10  7:40                                                                                 ` Brad Campbell
@ 2022-08-11  9:50                                                                                   ` Mika Westerberg
  2022-08-11 14:17                                                                                     ` Brad Campbell
  0 siblings, 1 reply; 47+ messages in thread
From: Mika Westerberg @ 2022-08-11  9:50 UTC (permalink / raw)
  To: Brad Campbell; +Cc: linux-kernel

Hi,

On Wed, Aug 10, 2022 at 03:40:08PM +0800, Brad Campbell wrote:
> G'day Mika,
> 
> On 9/8/22 23:50, Mika Westerberg wrote:
> > Hi,
> > 
> > On Tue, Aug 09, 2022 at 11:16:27PM +0800, Brad Campbell wrote:
> > > If I then reboot and load the driver it fails.
> > > 
> > > The only thing I could think of doing was an lspci -vvv after the boot and module load
> > > and an lspci -vvv after a warm reboot and diff them, because there are changes around the
> > > thunderbolt bridge devices. I've done a diff -u50 to try and keep as much context as possible.
> > > 
> > > On the first boot I can unload/reload the thunderbolt module repeatedly and there's no issue
> > > but loading it after a reboot locks up. There are no lspci changes on the first boot after the
> > > initial module load unless I rescan the PCI bus, but they're minor and it doesn't cause an issue
> > > with loading the thunderbolt module.
> > > 
> > > The firmware *must* be doing something on reboot I suppose or the PCIe configs wouldn't change.
> > 
> > Okay, let's try a bigger hammer and reset all the ports upon load. That
> > should hopefully clear out the "bad state" too. This is completely
> > untested but it should trigger reset and then re-initialize the TBT
> > links.
> > 
> > diff --git a/drivers/thunderbolt/lc.c b/drivers/thunderbolt/lc.c
> > index 633970fbe9b0..c419c2568de4 100644
> > --- a/drivers/thunderbolt/lc.c
> > +++ b/drivers/thunderbolt/lc.c
> > @@ -6,6 +6,8 @@
> >    * Author: Mika Westerberg <mika.westerberg@linux.intel.com>
> >    */
> > +#include <linux/delay.h>
> > +
> >   #include "tb.h"
> >   /**
> > @@ -327,6 +329,34 @@ void tb_lc_xhci_disconnect(struct tb_port *port)
> >   	tb_port_dbg(port, "xHCI disconnected\n");
> >   }
> > +int tb_lc_reset_port(struct tb_port *port)
> > +{
> > +	struct tb_switch *sw = port->sw;
> > +	int cap, ret;
> > +	u32 val;
> > +
> > +	if (sw->generation != 3)
> > +		return -EINVAL;
> > +
> > +	cap = find_port_lc_cap(port);
> > +	if (cap < 0)
> > +		return cap;
> > +
> > +	ret = tb_sw_read(sw, &val, TB_CFG_SWITCH, cap + TB_LC_PORT_MODE, 1);
> > +	if (ret)
> > +		return ret;
> > +
> > +	val |= TB_LC_PORT_MODE_DPR;
> > +	ret = tb_sw_write(sw, &val, TB_CFG_SWITCH, cap + TB_LC_PORT_MODE, 1);
> > +	if (ret)
> > +		return ret;
> > +
> > +	msleep(20);
> > +
> > +	val &= ~TB_LC_PORT_MODE_DPR;
> > +	return tb_sw_write(sw, &val, TB_CFG_SWITCH, cap + TB_LC_PORT_MODE, 1);
> > +}
> > +
> >   static int tb_lc_set_wake_one(struct tb_switch *sw, unsigned int offset,
> >   			      unsigned int flags)
> >   {
> > diff --git a/drivers/thunderbolt/switch.c b/drivers/thunderbolt/switch.c
> > index 0ae8a7ec7c9c..21ac3ccf1cf9 100644
> > --- a/drivers/thunderbolt/switch.c
> > +++ b/drivers/thunderbolt/switch.c
> > @@ -740,6 +740,11 @@ int tb_port_disable(struct tb_port *port)
> >   	return __tb_port_enable(port, false);
> >   }
> > +int tb_port_reset(struct tb_port *port)
> > +{
> > +	return tb_lc_reset_port(port);
> > +}
> > +
> >   /*
> >    * tb_init_port() - initialize a port
> >    *
> > diff --git a/drivers/thunderbolt/tb.c b/drivers/thunderbolt/tb.c
> > index 8030fc544c5e..48a7396994ef 100644
> > --- a/drivers/thunderbolt/tb.c
> > +++ b/drivers/thunderbolt/tb.c
> > @@ -1875,6 +1875,7 @@ static int tb_scan_finalize_switch(struct device *dev, void *data)
> >   static int tb_start(struct tb *tb)
> >   {
> >   	struct tb_cm *tcm = tb_priv(tb);
> > +	struct tb_port *p;
> >   	int ret;
> >   	tb->root_switch = tb_switch_alloc(tb, &tb->dev, 0);
> > @@ -1911,6 +1912,12 @@ static int tb_start(struct tb *tb)
> >   				false);
> >   	/* Enable TMU if it is off */
> >   	tb_switch_tmu_enable(tb->root_switch);
> > +
> > +	tb_switch_for_each_port(tb->root_switch, p) {
> > +		if (tb_port_is_null(p))
> > +			tb_port_reset(p);
> > +	}
> > +
> >   	/* Full scan to discover devices added before the driver was loaded. */
> >   	tb_scan_switch(tb->root_switch);
> >   	/* Find out tunnels created by the boot firmware */
> > diff --git a/drivers/thunderbolt/tb.h b/drivers/thunderbolt/tb.h
> > index 28bb80d967d6..fe5edefec712 100644
> > --- a/drivers/thunderbolt/tb.h
> > +++ b/drivers/thunderbolt/tb.h
> > @@ -1028,6 +1028,7 @@ int tb_port_clear_counter(struct tb_port *port, int counter);
> >   int tb_port_unlock(struct tb_port *port);
> >   int tb_port_enable(struct tb_port *port);
> >   int tb_port_disable(struct tb_port *port);
> > +int tb_port_reset(struct tb_port *port);
> >   int tb_port_alloc_in_hopid(struct tb_port *port, int hopid, int max_hopid);
> >   void tb_port_release_in_hopid(struct tb_port *port, int hopid);
> >   int tb_port_alloc_out_hopid(struct tb_port *port, int hopid, int max_hopid);
> > @@ -1121,6 +1122,7 @@ bool tb_lc_is_usb_plugged(struct tb_port *port);
> >   bool tb_lc_is_xhci_connected(struct tb_port *port);
> >   int tb_lc_xhci_connect(struct tb_port *port);
> >   void tb_lc_xhci_disconnect(struct tb_port *port);
> > +int tb_lc_reset_port(struct tb_port *port);
> >   int tb_lc_set_wake(struct tb_switch *sw, unsigned int flags);
> >   int tb_lc_set_sleep(struct tb_switch *sw);
> >   bool tb_lc_lane_bonding_possible(struct tb_switch *sw);
> > diff --git a/drivers/thunderbolt/tb_regs.h b/drivers/thunderbolt/tb_regs.h
> > index f8c1ca3464d9..8fd12bc2d500 100644
> > --- a/drivers/thunderbolt/tb_regs.h
> > +++ b/drivers/thunderbolt/tb_regs.h
> > @@ -555,6 +555,9 @@ struct tb_regs_hop {
> >   #define TB_LC_POWER				0x740
> >   /* Link controller registers */
> > +#define TB_LC_PORT_MODE				0x26
> > +#define TB_LC_PORT_MODE_DPR			BIT(6)
> > +
> >   #define TB_LC_CS_42				0x2a
> >   #define TB_LC_CS_42_USB_PLUGGED			BIT(31)
> > 
> 
> Yep, that certainly solves the lockup/reboot issues and all PCIe devices are
> discovered and appear to work. I can reboot repeatedly and that seems to be ok.
> 
> It causes some peculiarity in the DP tunnel however where one or both will fail to come up
> leaving this in dmesg (in this instance both failed) :
> 
> [   10.550439] [drm] Adding stream 00000000a5b9bb95 to context failed with err 28!
> [   10.551032] [drm:handle_hpd_irq_helper [amdgpu]] *ERROR* Restoring old state failed with -22
> [   11.180398] [drm] Adding stream 00000000a5b9bb95 to context failed with err 28!
> [   11.180830] [drm:handle_hpd_irq_helper [amdgpu]] *ERROR* Restoring old state failed with -22
> 
> Oddly enough X thinks the displays are there and is pretending to display on them, but they
> remain black. This can be one, the other or both depending on the boot.
> 
> I have probably cold/warm booted 50 times now with varying combinations of activation to attempt
> to pin some form of determinism on this behaviour, but I've got nothing at this point.

Okay, do you see in the dmesg whether the DP tunnels are actually
created when you see the issue?

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-08-11  9:50                                                                                   ` Mika Westerberg
@ 2022-08-11 14:17                                                                                     ` Brad Campbell
  2022-08-12  9:35                                                                                       ` Mika Westerberg
  0 siblings, 1 reply; 47+ messages in thread
From: Brad Campbell @ 2022-08-11 14:17 UTC (permalink / raw)
  To: Mika Westerberg; +Cc: linux-kernel

G'day Mika,


On 11/8/22 17:50, Mika Westerberg wrote:
> Hi,
> 
> On Wed, Aug 10, 2022 at 03:40:08PM +0800, Brad Campbell wrote:
>> G'day Mika,
>>
>> On 9/8/22 23:50, Mika Westerberg wrote:
>>> Hi,
>>>
>>> On Tue, Aug 09, 2022 at 11:16:27PM +0800, Brad Campbell wrote:
>>>> If I then reboot and load the driver it fails.
>>>>
>>>> The only thing I could think of doing was an lspci -vvv after the boot and module load
>>>> and an lspci -vvv after a warm reboot and diff them, because there are changes around the
>>>> thunderbolt bridge devices. I've done a diff -u50 to try and keep as much context as possible.
>>>>
>>>> On the first boot I can unload/reload the thunderbolt module repeatedly and there's no issue
>>>> but loading it after a reboot locks up. There are no lspci changes on the first boot after the
>>>> initial module load unless I rescan the PCI bus, but they're minor and it doesn't cause an issue
>>>> with loading the thunderbolt module.
>>>>
>>>> The firmware *must* be doing something on reboot I suppose or the PCIe configs wouldn't change.
>>>
>>> Okay, let's try a bigger hammer and reset all the ports upon load. That
>>> should hopefully clear out the "bad state" too. This is completely
>>> untested but it should trigger reset and then re-initialize the TBT
>>> links.
>>>
>>> diff --git a/drivers/thunderbolt/lc.c b/drivers/thunderbolt/lc.c
>>> index 633970fbe9b0..c419c2568de4 100644
>>> --- a/drivers/thunderbolt/lc.c
>>> +++ b/drivers/thunderbolt/lc.c
>>> @@ -6,6 +6,8 @@
>>>    * Author: Mika Westerberg <mika.westerberg@linux.intel.com>
>>>    */
>>> +#include <linux/delay.h>
>>> +
>>>   #include "tb.h"
>>>   /**
>>> @@ -327,6 +329,34 @@ void tb_lc_xhci_disconnect(struct tb_port *port)
>>>   	tb_port_dbg(port, "xHCI disconnected\n");
>>>   }
>>> +int tb_lc_reset_port(struct tb_port *port)
>>> +{
>>> +	struct tb_switch *sw = port->sw;
>>> +	int cap, ret;
>>> +	u32 val;
>>> +
>>> +	if (sw->generation != 3)
>>> +		return -EINVAL;
>>> +
>>> +	cap = find_port_lc_cap(port);
>>> +	if (cap < 0)
>>> +		return cap;
>>> +
>>> +	ret = tb_sw_read(sw, &val, TB_CFG_SWITCH, cap + TB_LC_PORT_MODE, 1);
>>> +	if (ret)
>>> +		return ret;
>>> +
>>> +	val |= TB_LC_PORT_MODE_DPR;
>>> +	ret = tb_sw_write(sw, &val, TB_CFG_SWITCH, cap + TB_LC_PORT_MODE, 1);
>>> +	if (ret)
>>> +		return ret;
>>> +
>>> +	msleep(20);
>>> +
>>> +	val &= ~TB_LC_PORT_MODE_DPR;
>>> +	return tb_sw_write(sw, &val, TB_CFG_SWITCH, cap + TB_LC_PORT_MODE, 1);
>>> +}
>>> +
>>>   static int tb_lc_set_wake_one(struct tb_switch *sw, unsigned int offset,
>>>   			      unsigned int flags)
>>>   {
>>> diff --git a/drivers/thunderbolt/switch.c b/drivers/thunderbolt/switch.c
>>> index 0ae8a7ec7c9c..21ac3ccf1cf9 100644
>>> --- a/drivers/thunderbolt/switch.c
>>> +++ b/drivers/thunderbolt/switch.c
>>> @@ -740,6 +740,11 @@ int tb_port_disable(struct tb_port *port)
>>>   	return __tb_port_enable(port, false);
>>>   }
>>> +int tb_port_reset(struct tb_port *port)
>>> +{
>>> +	return tb_lc_reset_port(port);
>>> +}
>>> +
>>>   /*
>>>    * tb_init_port() - initialize a port
>>>    *
>>> diff --git a/drivers/thunderbolt/tb.c b/drivers/thunderbolt/tb.c
>>> index 8030fc544c5e..48a7396994ef 100644
>>> --- a/drivers/thunderbolt/tb.c
>>> +++ b/drivers/thunderbolt/tb.c
>>> @@ -1875,6 +1875,7 @@ static int tb_scan_finalize_switch(struct device *dev, void *data)
>>>   static int tb_start(struct tb *tb)
>>>   {
>>>   	struct tb_cm *tcm = tb_priv(tb);
>>> +	struct tb_port *p;
>>>   	int ret;
>>>   	tb->root_switch = tb_switch_alloc(tb, &tb->dev, 0);
>>> @@ -1911,6 +1912,12 @@ static int tb_start(struct tb *tb)
>>>   				false);
>>>   	/* Enable TMU if it is off */
>>>   	tb_switch_tmu_enable(tb->root_switch);
>>> +
>>> +	tb_switch_for_each_port(tb->root_switch, p) {
>>> +		if (tb_port_is_null(p))
>>> +			tb_port_reset(p);
>>> +	}
>>> +
>>>   	/* Full scan to discover devices added before the driver was loaded. */
>>>   	tb_scan_switch(tb->root_switch);
>>>   	/* Find out tunnels created by the boot firmware */
>>> diff --git a/drivers/thunderbolt/tb.h b/drivers/thunderbolt/tb.h
>>> index 28bb80d967d6..fe5edefec712 100644
>>> --- a/drivers/thunderbolt/tb.h
>>> +++ b/drivers/thunderbolt/tb.h
>>> @@ -1028,6 +1028,7 @@ int tb_port_clear_counter(struct tb_port *port, int counter);
>>>   int tb_port_unlock(struct tb_port *port);
>>>   int tb_port_enable(struct tb_port *port);
>>>   int tb_port_disable(struct tb_port *port);
>>> +int tb_port_reset(struct tb_port *port);
>>>   int tb_port_alloc_in_hopid(struct tb_port *port, int hopid, int max_hopid);
>>>   void tb_port_release_in_hopid(struct tb_port *port, int hopid);
>>>   int tb_port_alloc_out_hopid(struct tb_port *port, int hopid, int max_hopid);
>>> @@ -1121,6 +1122,7 @@ bool tb_lc_is_usb_plugged(struct tb_port *port);
>>>   bool tb_lc_is_xhci_connected(struct tb_port *port);
>>>   int tb_lc_xhci_connect(struct tb_port *port);
>>>   void tb_lc_xhci_disconnect(struct tb_port *port);
>>> +int tb_lc_reset_port(struct tb_port *port);
>>>   int tb_lc_set_wake(struct tb_switch *sw, unsigned int flags);
>>>   int tb_lc_set_sleep(struct tb_switch *sw);
>>>   bool tb_lc_lane_bonding_possible(struct tb_switch *sw);
>>> diff --git a/drivers/thunderbolt/tb_regs.h b/drivers/thunderbolt/tb_regs.h
>>> index f8c1ca3464d9..8fd12bc2d500 100644
>>> --- a/drivers/thunderbolt/tb_regs.h
>>> +++ b/drivers/thunderbolt/tb_regs.h
>>> @@ -555,6 +555,9 @@ struct tb_regs_hop {
>>>   #define TB_LC_POWER				0x740
>>>   /* Link controller registers */
>>> +#define TB_LC_PORT_MODE				0x26
>>> +#define TB_LC_PORT_MODE_DPR			BIT(6)
>>> +
>>>   #define TB_LC_CS_42				0x2a
>>>   #define TB_LC_CS_42_USB_PLUGGED			BIT(31)
>>>
>>
>> Yep, that certainly solves the lockup/reboot issues and all PCIe devices are
>> discovered and appear to work. I can reboot repeatedly and that seems to be ok.
>>
>> It causes some peculiarity in the DP tunnel however where one or both will fail to come up
>> leaving this in dmesg (in this instance both failed) :
>>
>> [   10.550439] [drm] Adding stream 00000000a5b9bb95 to context failed with err 28!
>> [   10.551032] [drm:handle_hpd_irq_helper [amdgpu]] *ERROR* Restoring old state failed with -22
>> [   11.180398] [drm] Adding stream 00000000a5b9bb95 to context failed with err 28!
>> [   11.180830] [drm:handle_hpd_irq_helper [amdgpu]] *ERROR* Restoring old state failed with -22
>>
>> Oddly enough X thinks the displays are there and is pretending to display on them, but they
>> remain black. This can be one, the other or both depending on the boot.
>>
>> I have probably cold/warm booted 50 times now with varying combinations of activation to attempt
>> to pin some form of determinism on this behaviour, but I've got nothing at this point.
> 
> Okay, do you see in the dmesg whether the DP tunnels are actually
> created when you see the issue?
> 

Yes, the DP tunnels appear to be created. Xorg sees them and believes they are there :

brad@bkd:~$ grep -A1 EDID  /var/log/Xorg.0.log.old 
[    29.377] (II) AMDGPU(0): EDID for output HDMI-A-0
[    29.377] (II) AMDGPU(0): Manufacturer: DEL  Model: a19d  Serial#: 810240841
--
[    29.377] (II) AMDGPU(0): EDID Version: 1.3
[    29.377] (II) AMDGPU(0): Digital Display Input
--
[    29.377] (II) AMDGPU(0): Number of EDID sections to follow: 1
[    29.377] (II) AMDGPU(0): EDID (in hex):
[    29.377] (II) AMDGPU(0): 	00ffffffffffff0010ac9da1494b4b30
--
[    29.377] (II) AMDGPU(0): EDID for output DisplayPort-0
[    29.377] (II) AMDGPU(0): Manufacturer: APP  Model: 9227  Serial#: 354616281
--
[    29.377] (II) AMDGPU(0): EDID Version: 1.4
[    29.377] (II) AMDGPU(0): Digital Display Input
--
[    29.378] (II) AMDGPU(0): Number of EDID sections to follow: 1
[    29.378] (II) AMDGPU(0): EDID (in hex):
[    29.378] (II) AMDGPU(0): 	00ffffffffffff0006102792d9032315
--
[    29.378] (II) AMDGPU(0): EDID for output DisplayPort-1
[    29.378] (II) AMDGPU(0): Manufacturer: APP  Model: 9227  Serial#: 437126968
--
[    29.378] (II) AMDGPU(0): EDID Version: 1.4
[    29.378] (II) AMDGPU(0): Digital Display Input
--
[    29.378] (II) AMDGPU(0): Number of EDID sections to follow: 1
[    29.378] (II) AMDGPU(0): EDID (in hex):
[    29.378] (II) AMDGPU(0): 	00ffffffffffff000610279238070e1a

This test was done with thunderbolt compiled in just to demonstrate, but any load sequence or combination
winds up with the same issue.

This is the full dmesg for completeness :

[    0.000000] Linux version 5.19.0+ (brad@bkd) (gcc (Debian 10.2.1-6) 10.2.1 20210110, GNU ld (GNU Binutils for Debian) 2.35.2) #71 SMP PREEMPT_DYNAMIC Thu Aug 11 21:44:47 AWST 2022
[    0.000000] Command line: ro root=UUID=c6cf971d-5412-4826-851d-5677ad7997c0 libata.allow_tpm=1 thunderbolt.dyndbg acpi_enforce_resources=lax drm.edid_firmware=DP-1:edid.bin,DP-2:edid1.bin video=DP-1:e video=DP-2:e usb-storage.quirks=0x0bc2:0x331a: initrd=\initrd.img-5.19.0+
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
[    0.000000] x86/fpu: Enabled xstate features 0x207, context size is 840 bytes, using 'compacted' format.
[    0.000000] signal: max sigframe size: 3376
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000009c3efff] usable
[    0.000000] BIOS-e820: [mem 0x0000000009c3f000-0x0000000009ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000a000000-0x000000000a1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000000a200000-0x000000000a20cfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000a20d000-0x000000000affffff] usable
[    0.000000] BIOS-e820: [mem 0x000000000b000000-0x000000000b01ffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000b020000-0x000000007a076fff] usable
[    0.000000] BIOS-e820: [mem 0x000000007a077000-0x000000007a077fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007a078000-0x000000007a098fff] usable
[    0.000000] BIOS-e820: [mem 0x000000007a099000-0x000000007a099fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007a09a000-0x000000009754cfff] usable
[    0.000000] BIOS-e820: [mem 0x000000009754d000-0x000000009a086fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000009a087000-0x000000009a0ddfff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000009a0de000-0x000000009bb5bfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000009bb5c000-0x000000009cdfefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000009cdff000-0x000000009dffffff] usable
[    0.000000] BIOS-e820: [mem 0x000000009e000000-0x000000009fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd200000-0x00000000fd2fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd600000-0x00000000fd6fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fea00000-0x00000000fea0ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec30000-0x00000000fec30fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000083e2fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000083e300000-0x000000085fffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0x93710018-0x9371d857] usable ==> usable
[    0.000000] e820: update [mem 0x93710018-0x9371d857] usable ==> usable
[    0.000000] e820: update [mem 0x936cf018-0x936de057] usable ==> usable
[    0.000000] e820: update [mem 0x936cf018-0x936de057] usable ==> usable
[    0.000000] e820: update [mem 0x936c1018-0x936ce857] usable ==> usable
[    0.000000] e820: update [mem 0x936c1018-0x936ce857] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000009c3efff] usable
[    0.000000] reserve setup_data: [mem 0x0000000009c3f000-0x0000000009ffffff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000a000000-0x000000000a1fffff] usable
[    0.000000] reserve setup_data: [mem 0x000000000a200000-0x000000000a20cfff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000000a20d000-0x000000000affffff] usable
[    0.000000] reserve setup_data: [mem 0x000000000b000000-0x000000000b01ffff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000b020000-0x000000007a076fff] usable
[    0.000000] reserve setup_data: [mem 0x000000007a077000-0x000000007a077fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000007a078000-0x000000007a098fff] usable
[    0.000000] reserve setup_data: [mem 0x000000007a099000-0x000000007a099fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000007a09a000-0x00000000936c1017] usable
[    0.000000] reserve setup_data: [mem 0x00000000936c1018-0x00000000936ce857] usable
[    0.000000] reserve setup_data: [mem 0x00000000936ce858-0x00000000936cf017] usable
[    0.000000] reserve setup_data: [mem 0x00000000936cf018-0x00000000936de057] usable
[    0.000000] reserve setup_data: [mem 0x00000000936de058-0x0000000093710017] usable
[    0.000000] reserve setup_data: [mem 0x0000000093710018-0x000000009371d857] usable
[    0.000000] reserve setup_data: [mem 0x000000009371d858-0x000000009754cfff] usable
[    0.000000] reserve setup_data: [mem 0x000000009754d000-0x000000009a086fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000009a087000-0x000000009a0ddfff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000009a0de000-0x000000009bb5bfff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000009bb5c000-0x000000009cdfefff] reserved
[    0.000000] reserve setup_data: [mem 0x000000009cdff000-0x000000009dffffff] usable
[    0.000000] reserve setup_data: [mem 0x000000009e000000-0x000000009fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fd200000-0x00000000fd2fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fd600000-0x00000000fd6fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fea00000-0x00000000fea0ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec30000-0x00000000fec30fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000083e2fffff] usable
[    0.000000] reserve setup_data: [mem 0x000000083e300000-0x000000085fffffff] reserved
[    0.000000] efi: EFI v2.70 by American Megatrends
[    0.000000] efi: ACPI=0x9bb45000 ACPI 2.0=0x9bb45014 SMBIOS=0x9cc2b000 SMBIOS 3.0=0x9cc2a000 MEMATTR=0x93c90018 ESRT=0x96088c18 RNG=0x9cc27498 
[    0.000000] efi: seeding entropy pool
[    0.000000] SMBIOS 3.3.0 present.
[    0.000000] DMI: Gigabyte Technology Co., Ltd. B550 VISION D-P/B550 VISION D-P, BIOS F15d 07/20/2022
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 3899.951 MHz processor
[    0.000126] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000127] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000132] last_pfn = 0x83e300 max_arch_pfn = 0x400000000
[    0.000265] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000383] e820: update [mem 0xa0000000-0xffffffff] usable ==> reserved
[    0.000386] last_pfn = 0x9e000 max_arch_pfn = 0x400000000
[    0.000392] esrt: Reserving ESRT space from 0x0000000096088c18 to 0x0000000096088c50.
[    0.000398] e820: update [mem 0x96088000-0x96088fff] usable ==> reserved
[    0.000440] Using GB pages for direct mapping
[    0.001029] Secure boot disabled
[    0.001029] RAMDISK: [mem 0x7f197000-0x7fffffff]
[    0.001031] ACPI: Early table checksum verification disabled
[    0.001033] ACPI: RSDP 0x000000009BB45014 000024 (v02 ALASKA)
[    0.001035] ACPI: XSDT 0x000000009BB44728 0000D4 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.001037] ACPI: FACP 0x000000009A0C5000 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
[    0.001040] ACPI: DSDT 0x000000009A096000 006227 (v02 ALASKA A M I    01072009 INTL 20190509)
[    0.001041] ACPI: FACS 0x000000009AB3F000 000040
[    0.001042] ACPI: SSDT 0x000000009A0D4000 009FFD (v02 GBT    GSWApp   00000001 INTL 20190509)
[    0.001043] ACPI: IVRS 0x000000009A0D3000 0000D0 (v02 AMD    AmdTable 00000001 AMD  00000001)
[    0.001044] ACPI: SSDT 0x000000009A0CB000 0072B0 (v02 AMD    Artic    00000002 MSFT 04000000)
[    0.001045] ACPI: SSDT 0x000000009A0C7000 003D74 (v01 AMD    AMD AOD  00000001 INTL 20190509)
[    0.001046] ACPI: SSDT 0x000000009A0C6000 0001AD (v02 ALASKA CPUSSDT  01072009 AMI  01072009)
[    0.001047] ACPI: FIDT 0x000000009A0BE000 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.001048] ACPI: MCFG 0x000000009A0BD000 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
[    0.001049] ACPI: HPET 0x000000009A0BC000 000038 (v01 ALASKA A M I    01072009 AMI  00000005)
[    0.001050] ACPI: FPDT 0x000000009A0BB000 000044 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.001051] ACPI: VFCT 0x000000009A0AD000 00D884 (v01 ALASKA A M I    00000001 AMD  31504F47)
[    0.001052] ACPI: SSDT 0x000000009A0A9000 003E88 (v02 AMD    AmdTable 00000001 AMD  00000001)
[    0.001053] ACPI: CRAT 0x000000009A0A8000 000B68 (v01 AMD    AmdTable 00000001 AMD  00000001)
[    0.001054] ACPI: CDIT 0x000000009A0A7000 000029 (v01 AMD    AmdTable 00000001 AMD  00000001)
[    0.001055] ACPI: SSDT 0x000000009A0A5000 001486 (v01 AMD    ArticIG2 00000001 INTL 20190509)
[    0.001056] ACPI: SSDT 0x000000009A0A3000 0014FD (v01 AMD    ArticTPX 00000001 INTL 20190509)
[    0.001057] ACPI: SSDT 0x000000009A09F000 0039F7 (v01 AMD    ArticN   00000001 INTL 20190509)
[    0.001058] ACPI: WSMT 0x000000009A09E000 000028 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.001059] ACPI: APIC 0x000000009A09D000 00015E (v04 ALASKA A M I    01072009 AMI  00010013)
[    0.001060] ACPI: SSDT 0x000000009A0C4000 0008A4 (v01 AMD    ArticPRN 00000001 INTL 20190509)
[    0.001061] ACPI: SSDT 0x000000009A0C2000 00147F (v01 AMD    ArticC   00000001 INTL 20190509)
[    0.001062] ACPI: SSDT 0x000000009A0C1000 0000BF (v01 AMD    AmdTable 00001000 INTL 20190509)
[    0.001063] ACPI: Reserving FACP table memory at [mem 0x9a0c5000-0x9a0c5113]
[    0.001064] ACPI: Reserving DSDT table memory at [mem 0x9a096000-0x9a09c226]
[    0.001064] ACPI: Reserving FACS table memory at [mem 0x9ab3f000-0x9ab3f03f]
[    0.001065] ACPI: Reserving SSDT table memory at [mem 0x9a0d4000-0x9a0ddffc]
[    0.001065] ACPI: Reserving IVRS table memory at [mem 0x9a0d3000-0x9a0d30cf]
[    0.001066] ACPI: Reserving SSDT table memory at [mem 0x9a0cb000-0x9a0d22af]
[    0.001066] ACPI: Reserving SSDT table memory at [mem 0x9a0c7000-0x9a0cad73]
[    0.001066] ACPI: Reserving SSDT table memory at [mem 0x9a0c6000-0x9a0c61ac]
[    0.001067] ACPI: Reserving FIDT table memory at [mem 0x9a0be000-0x9a0be09b]
[    0.001067] ACPI: Reserving MCFG table memory at [mem 0x9a0bd000-0x9a0bd03b]
[    0.001067] ACPI: Reserving HPET table memory at [mem 0x9a0bc000-0x9a0bc037]
[    0.001068] ACPI: Reserving FPDT table memory at [mem 0x9a0bb000-0x9a0bb043]
[    0.001068] ACPI: Reserving VFCT table memory at [mem 0x9a0ad000-0x9a0ba883]
[    0.001069] ACPI: Reserving SSDT table memory at [mem 0x9a0a9000-0x9a0ace87]
[    0.001069] ACPI: Reserving CRAT table memory at [mem 0x9a0a8000-0x9a0a8b67]
[    0.001069] ACPI: Reserving CDIT table memory at [mem 0x9a0a7000-0x9a0a7028]
[    0.001070] ACPI: Reserving SSDT table memory at [mem 0x9a0a5000-0x9a0a6485]
[    0.001070] ACPI: Reserving SSDT table memory at [mem 0x9a0a3000-0x9a0a44fc]
[    0.001070] ACPI: Reserving SSDT table memory at [mem 0x9a09f000-0x9a0a29f6]
[    0.001071] ACPI: Reserving WSMT table memory at [mem 0x9a09e000-0x9a09e027]
[    0.001071] ACPI: Reserving APIC table memory at [mem 0x9a09d000-0x9a09d15d]
[    0.001072] ACPI: Reserving SSDT table memory at [mem 0x9a0c4000-0x9a0c48a3]
[    0.001072] ACPI: Reserving SSDT table memory at [mem 0x9a0c2000-0x9a0c347e]
[    0.001073] ACPI: Reserving SSDT table memory at [mem 0x9a0c1000-0x9a0c10be]
[    0.001089] No NUMA configuration found
[    0.001090] Faking a node at [mem 0x0000000000000000-0x000000083e2fffff]
[    0.001092] NODE_DATA(0) allocated [mem 0x83e2fe000-0x83e2fffff]
[    0.001106] Zone ranges:
[    0.001107]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.001108]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.001108]   Normal   [mem 0x0000000100000000-0x000000083e2fffff]
[    0.001109] Movable zone start for each node
[    0.001109] Early memory node ranges
[    0.001109]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.001110]   node   0: [mem 0x0000000000100000-0x0000000009c3efff]
[    0.001111]   node   0: [mem 0x000000000a000000-0x000000000a1fffff]
[    0.001111]   node   0: [mem 0x000000000a20d000-0x000000000affffff]
[    0.001111]   node   0: [mem 0x000000000b020000-0x000000007a076fff]
[    0.001112]   node   0: [mem 0x000000007a078000-0x000000007a098fff]
[    0.001112]   node   0: [mem 0x000000007a09a000-0x000000009754cfff]
[    0.001112]   node   0: [mem 0x000000009cdff000-0x000000009dffffff]
[    0.001113]   node   0: [mem 0x0000000100000000-0x000000083e2fffff]
[    0.001114] Initmem setup node 0 [mem 0x0000000000001000-0x000000083e2fffff]
[    0.001116] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.001125] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.001203] On node 0, zone DMA32: 961 pages in unavailable ranges
[    0.001211] On node 0, zone DMA32: 13 pages in unavailable ranges
[    0.002579] On node 0, zone DMA32: 32 pages in unavailable ranges
[    0.002580] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.003056] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.003177] On node 0, zone DMA32: 22706 pages in unavailable ranges
[    0.032388] On node 0, zone Normal: 8192 pages in unavailable ranges
[    0.032423] On node 0, zone Normal: 7424 pages in unavailable ranges
[    0.035600] ACPI: PM-Timer IO Port: 0x808
[    0.035605] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.035614] IOAPIC[0]: apic_id 13, version 33, address 0xfec00000, GSI 0-23
[    0.035619] IOAPIC[1]: apic_id 14, version 33, address 0xfec01000, GSI 24-55
[    0.035621] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.035622] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.035624] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.035624] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.035627] smpboot: 32 Processors exceeds NR_CPUS limit of 16
[    0.035627] smpboot: Allowing 16 CPUs, 4 hotplug CPUs
[    0.035647] [mem 0xa0000000-0xefffffff] available for PCI devices
[    0.035651] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.036985] setup_percpu: NR_CPUS:16 nr_cpumask_bits:16 nr_cpu_ids:16 nr_node_ids:1
[    0.037216] percpu: Embedded 44 pages/cpu s139816 r8192 d32216 u262144
[    0.037220] pcpu-alloc: s139816 r8192 d32216 u262144 alloc=1*2097152
[    0.037221] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[    0.037236] Fallback order for Node 0: 0 
[    0.037237] Built 1 zonelists, mobility grouping on.  Total pages: 8089540
[    0.037238] Policy zone: Normal
[    0.037238] Kernel command line: ro root=UUID=c6cf971d-5412-4826-851d-5677ad7997c0 libata.allow_tpm=1 thunderbolt.dyndbg acpi_enforce_resources=lax drm.edid_firmware=DP-1:edid.bin,DP-2:edid1.bin video=DP-1:e video=DP-2:e usb-storage.quirks=0x0bc2:0x331a: initrd=\initrd.img-5.19.0+
[    0.037928] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.038261] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.038284] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.038285] software IO TLB: area num 16.
[    0.075796] Memory: 32128180K/32872436K available (8192K kernel code, 2323K rwdata, 1896K rodata, 952K init, 904K bss, 744000K reserved, 0K cma-reserved)
[    0.075819] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
[    0.076016] Dynamic Preempt: voluntary
[    0.076038] rcu: Preemptible hierarchical RCU implementation.
[    0.076040] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[    0.076052] NR_IRQS: 4352, nr_irqs: 1096, preallocated irqs: 16
[    0.076210] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.076261] Console: colour dummy device 80x25
[    0.076413] printk: console [tty0] enabled
[    0.076424] ACPI: Core revision 20220331
[    0.076584] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    0.076601] APIC: Switch to symmetric I/O mode setup
[    0.076602] Switched APIC routing to physical flat.
[    0.077171] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.126606] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x706e5a0f9d3, max_idle_ns: 881591001681 ns
[    0.126611] Calibrating delay loop (skipped), value calculated using timer frequency.. 7799.90 BogoMIPS (lpj=38999510)
[    0.126614] pid_max: default: 32768 minimum: 301
[    0.127731] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.127765] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.127852] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    0.127870] LVT offset 1 assigned for vector 0xf9
[    0.127927] LVT offset 2 assigned for vector 0xf4
[    0.127943] process: using mwait in idle threads
[    0.127944] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
[    0.127945] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[    0.127948] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.127950] Spectre V2 : Kernel not compiled with retpoline; no mitigation available!
[    0.127950] Spectre V2 : Vulnerable
[    0.127952] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.127953] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    0.127954] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.127956] Spectre V2 : User space: Mitigation: STIBP always-on protection
[    0.127957] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.128116] Freeing SMP alternatives memory: 24K
[    0.248313] smpboot: CPU0: AMD Ryzen 5 5600G with Radeon Graphics (family: 0x19, model: 0x50, stepping: 0x0)
[    0.248402] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[    0.248405] ... version:                0
[    0.248406] ... bit width:              48
[    0.248407] ... generic registers:      6
[    0.248408] ... value mask:             0000ffffffffffff
[    0.248409] ... max period:             00007fffffffffff
[    0.248409] ... fixed-purpose events:   0
[    0.248410] ... event mask:             000000000000003f
[    0.248449] rcu: Hierarchical SRCU implementation.
[    0.248450] rcu: 	Max phase no-delay instances is 1000.
[    0.248789] smp: Bringing up secondary CPUs ...
[    0.248843] x86: Booting SMP configuration:
[    0.248844] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6
[    0.258759] Spectre V2 : Update user space SMT mitigation: STIBP always-on
[    0.258759]   #7  #8  #9 #10 #11
[    0.268760] smp: Brought up 1 node, 12 CPUs
[    0.268760] smpboot: Max logical packages: 3
[    0.268760] smpboot: Total of 12 processors activated (93598.82 BogoMIPS)
[    0.268760] devtmpfs: initialized
[    0.268760] ACPI: PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20cfff] (53248 bytes)
[    0.268760] ACPI: PM: Registering ACPI NVS region [mem 0x9a0de000-0x9bb5bfff] (27779072 bytes)
[    0.268760] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.268760] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
[    0.268760] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.268760] thermal_sys: Registered thermal governor 'step_wise'
[    0.268760] thermal_sys: Registered thermal governor 'user_space'
[    0.268760] cpuidle: using governor ladder
[    0.268760] cpuidle: using governor menu
[    0.268760] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.268760] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000)
[    0.268760] PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved in E820
[    0.268760] PCI: Using configuration type 1 for base access
[    0.268760] ACPI: Added _OSI(Module Device)
[    0.268760] ACPI: Added _OSI(Processor Device)
[    0.268760] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.268760] ACPI: Added _OSI(Processor Aggregator Device)
[    0.268760] ACPI: Added _OSI(Linux-Dell-Video)
[    0.268760] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.268760] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.278287] ACPI: 12 ACPI AML tables successfully acquired and loaded
[    0.278864] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.282976] ACPI: Interpreter enabled
[    0.282976] ACPI: PM: (supports S0 S3 S5)
[    0.282976] ACPI: Using IOAPIC for interrupt routing
[    0.282976] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.282976] PCI: Using E820 reservations for host bridge windows
[    0.282976] ACPI: Enabled 7 GPEs in block 00 to 1F
[    0.287077] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.287082] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    0.287135] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability LTR]
[    0.287141] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-7f] only partially covers this bridge
[    0.287251] PCI host bridge to bus 0000:00
[    0.287253] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    0.287254] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    0.287256] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    0.287257] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.287258] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
[    0.287259] pci_bus 0000:00: root bus resource [mem 0xa0000000-0xefffffff window]
[    0.287260] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.287269] pci 0000:00:00.0: [1022:1630] type 00 class 0x060000
[    0.287324] pci 0000:00:00.2: [1022:1631] type 00 class 0x080600
[    0.287385] pci 0000:00:01.0: [1022:1632] type 00 class 0x060000
[    0.287424] pci 0000:00:02.0: [1022:1632] type 00 class 0x060000
[    0.287457] pci 0000:00:02.1: [1022:1634] type 01 class 0x060400
[    0.287478] pci 0000:00:02.1: enabling Extended Tags
[    0.287507] pci 0000:00:02.1: PME# supported from D0 D3hot D3cold
[    0.287548] pci 0000:00:02.2: [1022:1634] type 01 class 0x060400
[    0.287594] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[    0.287639] pci 0000:00:08.0: [1022:1632] type 00 class 0x060000
[    0.287672] pci 0000:00:08.1: [1022:1635] type 01 class 0x060400
[    0.287691] pci 0000:00:08.1: enabling Extended Tags
[    0.287717] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    0.287778] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
[    0.287869] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
[    0.287966] pci 0000:00:18.0: [1022:166a] type 00 class 0x060000
[    0.287983] pci 0000:00:18.1: [1022:166b] type 00 class 0x060000
[    0.287999] pci 0000:00:18.2: [1022:166c] type 00 class 0x060000
[    0.288015] pci 0000:00:18.3: [1022:166d] type 00 class 0x060000
[    0.288031] pci 0000:00:18.4: [1022:166e] type 00 class 0x060000
[    0.288047] pci 0000:00:18.5: [1022:166f] type 00 class 0x060000
[    0.288063] pci 0000:00:18.6: [1022:1670] type 00 class 0x060000
[    0.288079] pci 0000:00:18.7: [1022:1671] type 00 class 0x060000
[    0.288140] pci 0000:01:00.0: [1022:43ee] type 00 class 0x0c0330
[    0.288157] pci 0000:01:00.0: reg 0x10: [mem 0xef7a0000-0xef7a7fff 64bit]
[    0.288193] pci 0000:01:00.0: enabling Extended Tags
[    0.288242] pci 0000:01:00.0: PME# supported from D3hot D3cold
[    0.288303] pci 0000:01:00.1: [1022:43eb] type 00 class 0x010601
[    0.288347] pci 0000:01:00.1: reg 0x24: [mem 0xef780000-0xef79ffff]
[    0.288354] pci 0000:01:00.1: reg 0x30: [mem 0xef700000-0xef77ffff pref]
[    0.288360] pci 0000:01:00.1: enabling Extended Tags
[    0.288397] pci 0000:01:00.1: PME# supported from D3hot D3cold
[    0.288443] pci 0000:01:00.2: [1022:43e9] type 01 class 0x060400
[    0.288484] pci 0000:01:00.2: enabling Extended Tags
[    0.288525] pci 0000:01:00.2: PME# supported from D3hot D3cold
[    0.288576] pci 0000:00:02.1: PCI bridge to [bus 01-51]
[    0.288579] pci 0000:00:02.1:   bridge window [io  0xf000-0xffff]
[    0.288581] pci 0000:00:02.1:   bridge window [mem 0xdf000000-0xef7fffff]
[    0.288584] pci 0000:00:02.1:   bridge window [mem 0xa0000000-0xb1ffffff 64bit pref]
[    0.288640] pci 0000:02:00.0: [1022:43ea] type 01 class 0x060400
[    0.288683] pci 0000:02:00.0: enabling Extended Tags
[    0.288733] pci 0000:02:00.0: PME# supported from D3hot D3cold
[    0.288792] pci 0000:02:04.0: [1022:43ea] type 01 class 0x060400
[    0.288835] pci 0000:02:04.0: enabling Extended Tags
[    0.288885] pci 0000:02:04.0: PME# supported from D3hot D3cold
[    0.288942] pci 0000:02:08.0: [1022:43ea] type 01 class 0x060400
[    0.288986] pci 0000:02:08.0: enabling Extended Tags
[    0.289036] pci 0000:02:08.0: PME# supported from D3hot D3cold
[    0.289093] pci 0000:02:09.0: [1022:43ea] type 01 class 0x060400
[    0.289137] pci 0000:02:09.0: enabling Extended Tags
[    0.289187] pci 0000:02:09.0: PME# supported from D3hot D3cold
[    0.289251] pci 0000:01:00.2: PCI bridge to [bus 02-51]
[    0.289256] pci 0000:01:00.2:   bridge window [io  0xf000-0xffff]
[    0.289258] pci 0000:01:00.2:   bridge window [mem 0xdf000000-0xef6fffff]
[    0.289263] pci 0000:01:00.2:   bridge window [mem 0xa0000000-0xb1ffffff 64bit pref]
[    0.289318] pci 0000:03:00.0: [8086:15ea] type 01 class 0x060400
[    0.289386] pci 0000:03:00.0: enabling Extended Tags
[    0.289516] pci 0000:03:00.0: supports D1 D2
[    0.289517] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.289608] pci 0000:02:00.0: PCI bridge to [bus 03-4a]
[    0.289614] pci 0000:02:00.0:   bridge window [mem 0xdf000000-0xef1fffff]
[    0.289619] pci 0000:02:00.0:   bridge window [mem 0xa0000000-0xb1ffffff 64bit pref]
[    0.289690] pci 0000:04:00.0: [8086:15ea] type 01 class 0x060400
[    0.289761] pci 0000:04:00.0: enabling Extended Tags
[    0.289894] pci 0000:04:00.0: supports D1 D2
[    0.289895] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.289992] pci 0000:04:01.0: [8086:15ea] type 01 class 0x060400
[    0.290063] pci 0000:04:01.0: enabling Extended Tags
[    0.290194] pci 0000:04:01.0: supports D1 D2
[    0.290195] pci 0000:04:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.290294] pci 0000:04:02.0: [8086:15ea] type 01 class 0x060400
[    0.290365] pci 0000:04:02.0: enabling Extended Tags
[    0.290495] pci 0000:04:02.0: supports D1 D2
[    0.290496] pci 0000:04:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.290597] pci 0000:04:04.0: [8086:15ea] type 01 class 0x060400
[    0.290668] pci 0000:04:04.0: enabling Extended Tags
[    0.290799] pci 0000:04:04.0: supports D1 D2
[    0.290800] pci 0000:04:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.290909] pci 0000:03:00.0: PCI bridge to [bus 04-4a]
[    0.290919] pci 0000:03:00.0:   bridge window [mem 0xdf000000-0xef1fffff]
[    0.290926] pci 0000:03:00.0:   bridge window [mem 0xa0000000-0xb1ffffff 64bit pref]
[    0.291004] pci 0000:05:00.0: [8086:15eb] type 00 class 0x088000
[    0.291028] pci 0000:05:00.0: reg 0x10: [mem 0xef100000-0xef13ffff]
[    0.291038] pci 0000:05:00.0: reg 0x14: [mem 0xef140000-0xef140fff]
[    0.291095] pci 0000:05:00.0: enabling Extended Tags
[    0.291226] pci 0000:05:00.0: supports D1 D2
[    0.291227] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.291340] pci 0000:04:00.0: PCI bridge to [bus 05]
[    0.291351] pci 0000:04:00.0:   bridge window [mem 0xef100000-0xef1fffff]
[    0.291404] pci 0000:04:01.0: PCI bridge to [bus 06-27]
[    0.291414] pci 0000:04:01.0:   bridge window [mem 0xe7000000-0xeeffffff]
[    0.291421] pci 0000:04:01.0:   bridge window [mem 0xb0000000-0xb1ffffff 64bit pref]
[    0.291503] pci 0000:28:00.0: [8086:15ec] type 00 class 0x0c0330
[    0.291531] pci 0000:28:00.0: reg 0x10: [mem 0xef000000-0xef00ffff]
[    0.291625] pci 0000:28:00.0: enabling Extended Tags
[    0.291773] pci 0000:28:00.0: supports D1 D2
[    0.291774] pci 0000:28:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.291837] pci 0000:28:00.0: 8.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x4 link at 0000:04:02.0 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
[    0.291893] pci 0000:04:02.0: PCI bridge to [bus 28]
[    0.291904] pci 0000:04:02.0:   bridge window [mem 0xef000000-0xef0fffff]
[    0.292009] pci 0000:29:00.0: [8086:1513] type 01 class 0x060400
[    0.292131] pci 0000:29:00.0: enabling Extended Tags
[    0.292311] pci 0000:29:00.0: supports D1 D2
[    0.292312] pci 0000:29:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.292456] pci 0000:04:04.0: PCI bridge to [bus 29-4a]
[    0.292466] pci 0000:04:04.0:   bridge window [mem 0xdf000000-0xe6ffffff]
[    0.292473] pci 0000:04:04.0:   bridge window [mem 0xa0000000-0xa1ffffff 64bit pref]
[    0.292591] pci 0000:2a:00.0: [8086:1513] type 01 class 0x060400
[    0.292717] pci 0000:2a:00.0: enabling Extended Tags
[    0.292899] pci 0000:2a:00.0: supports D1 D2
[    0.292900] pci 0000:2a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.293054] pci 0000:2a:01.0: [8086:1513] type 01 class 0x060400
[    0.293181] pci 0000:2a:01.0: enabling Extended Tags
[    0.293360] pci 0000:2a:01.0: supports D1 D2
[    0.293361] pci 0000:2a:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.293515] pci 0000:2a:02.0: [8086:1513] type 01 class 0x060400
[    0.293641] pci 0000:2a:02.0: enabling Extended Tags
[    0.293822] pci 0000:2a:02.0: supports D1 D2
[    0.293823] pci 0000:2a:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.293982] pci 0000:2a:04.0: [8086:1513] type 01 class 0x060400
[    0.294108] pci 0000:2a:04.0: enabling Extended Tags
[    0.294291] pci 0000:2a:04.0: supports D1 D2
[    0.294292] pci 0000:2a:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.294451] pci 0000:2a:05.0: [8086:1513] type 01 class 0x060400
[    0.294577] pci 0000:2a:05.0: enabling Extended Tags
[    0.294760] pci 0000:2a:05.0: supports D1 D2
[    0.294761] pci 0000:2a:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.294940] pci 0000:29:00.0: PCI bridge to [bus 2a-39]
[    0.294958] pci 0000:29:00.0:   bridge window [mem 0xdf000000-0xdf3fffff]
[    0.294971] pci 0000:29:00.0:   bridge window [mem 0xa0000000-0xa01fffff 64bit pref]
[    0.295090] pci 0000:2b:00.0: [12d8:400c] type 01 class 0x060400
[    0.295483] pci 0000:2b:00.0: supports D1 D2
[    0.295484] pci 0000:2b:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.295662] pci 0000:2a:00.0: PCI bridge to [bus 2b-2d]
[    0.295681] pci 0000:2a:00.0:   bridge window [mem 0xdf300000-0xdf3fffff]
[    0.295863] pci 0000:2c:03.0: [12d8:400c] type 01 class 0x060400
[    0.296203] pci 0000:2c:03.0: supports D1 D2
[    0.296204] pci 0000:2c:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.296398] pci 0000:2b:00.0: PCI bridge to [bus 2c-2d]
[    0.296422] pci 0000:2b:00.0:   bridge window [mem 0xdf300000-0xdf3fffff]
[    0.296589] pci 0000:2d:00.0: [12d8:400e] type 00 class 0x0c0310
[    0.296637] pci 0000:2d:00.0: reg 0x10: [mem 0xdf302000-0xdf302fff]
[    0.296906] pci 0000:2d:00.0: supports D1 D2
[    0.296907] pci 0000:2d:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.297056] pci 0000:2d:00.1: [12d8:400e] type 00 class 0x0c0310
[    0.297103] pci 0000:2d:00.1: reg 0x10: [mem 0xdf301000-0xdf301fff]
[    0.297370] pci 0000:2d:00.1: supports D1 D2
[    0.297371] pci 0000:2d:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.297490] pci 0000:2d:00.2: [12d8:400f] type 00 class 0x0c0320
[    0.297544] pci 0000:2d:00.2: reg 0x10: [mem 0xdf300000-0xdf3000ff]
[    0.297857] pci 0000:2d:00.2: supports D1 D2
[    0.297858] pci 0000:2d:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.298111] pci 0000:2c:03.0: PCI bridge to [bus 2d]
[    0.298135] pci 0000:2c:03.0:   bridge window [mem 0xdf300000-0xdf3fffff]
[    0.298309] pci 0000:2e:00.0: [14e4:16b0] type 00 class 0x020000
[    0.298374] pci 0000:2e:00.0: reg 0x10: [mem 0xa0110000-0xa011ffff 64bit pref]
[    0.298411] pci 0000:2e:00.0: reg 0x18: [mem 0xa0100000-0xa010ffff 64bit pref]
[    0.298731] pci 0000:2e:00.0: PME# supported from D0 D3hot D3cold
[    0.298949] pci 0000:2a:01.0: PCI bridge to [bus 2e]
[    0.298979] pci 0000:2a:01.0:   bridge window [mem 0xa0100000-0xa01fffff 64bit pref]
[    0.299095] pci 0000:2f:00.0: [11c1:5901] type 00 class 0x0c0010
[    0.299160] pci 0000:2f:00.0: reg 0x10: [mem 0xdf200000-0xdf200fff 64bit]
[    0.299465] pci 0000:2f:00.0: supports D1 D2
[    0.299466] pci 0000:2f:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.299659] pci 0000:2a:02.0: PCI bridge to [bus 2f]
[    0.299677] pci 0000:2a:02.0:   bridge window [mem 0xdf200000-0xdf2fffff]
[    0.299830] pci 0000:30:00.0: [8086:1513] type 01 class 0x060400
[    0.300005] pci 0000:30:00.0: enabling Extended Tags
[    0.300263] pci 0000:30:00.0: supports D1 D2
[    0.300264] pci 0000:30:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.300476] pci 0000:2a:04.0: PCI bridge to [bus 30-38]
[    0.300494] pci 0000:2a:04.0:   bridge window [mem 0xdf000000-0xdf1fffff]
[    0.300507] pci 0000:2a:04.0:   bridge window [mem 0xa0000000-0xa00fffff 64bit pref]
[    0.300676] pci 0000:31:00.0: [8086:1513] type 01 class 0x060400
[    0.300859] pci 0000:31:00.0: enabling Extended Tags
[    0.301120] pci 0000:31:00.0: supports D1 D2
[    0.301121] pci 0000:31:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.301340] pci 0000:31:01.0: [8086:1513] type 01 class 0x060400
[    0.301522] pci 0000:31:01.0: enabling Extended Tags
[    0.301783] pci 0000:31:01.0: supports D1 D2
[    0.301784] pci 0000:31:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.302003] pci 0000:31:02.0: [8086:1513] type 01 class 0x060400
[    0.302185] pci 0000:31:02.0: enabling Extended Tags
[    0.302445] pci 0000:31:02.0: supports D1 D2
[    0.302446] pci 0000:31:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.302672] pci 0000:31:04.0: [8086:1513] type 01 class 0x060400
[    0.302854] pci 0000:31:04.0: enabling Extended Tags
[    0.303119] pci 0000:31:04.0: supports D1 D2
[    0.303120] pci 0000:31:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.303346] pci 0000:31:05.0: [8086:1513] type 01 class 0x060400
[    0.303529] pci 0000:31:05.0: enabling Extended Tags
[    0.303794] pci 0000:31:05.0: supports D1 D2
[    0.303795] pci 0000:31:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.304050] pci 0000:30:00.0: PCI bridge to [bus 31-38]
[    0.304075] pci 0000:30:00.0:   bridge window [mem 0xdf000000-0xdf1fffff]
[    0.304093] pci 0000:30:00.0:   bridge window [mem 0xa0000000-0xa00fffff 64bit pref]
[    0.304256] pci 0000:32:00.0: [12d8:400c] type 01 class 0x060400
[    0.304782] pci 0000:32:00.0: supports D1 D2
[    0.304783] pci 0000:32:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.305027] pci 0000:31:00.0: PCI bridge to [bus 32-34]
[    0.305054] pci 0000:31:00.0:   bridge window [mem 0xdf100000-0xdf1fffff]
[    0.305296] pci 0000:33:03.0: [12d8:400c] type 01 class 0x060400
[    0.305749] pci 0000:33:03.0: supports D1 D2
[    0.305750] pci 0000:33:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.306005] pci 0000:32:00.0: PCI bridge to [bus 33-34]
[    0.306037] pci 0000:32:00.0:   bridge window [mem 0xdf100000-0xdf1fffff]
[    0.306259] pci 0000:34:00.0: [12d8:400e] type 00 class 0x0c0310
[    0.306321] pci 0000:34:00.0: reg 0x10: [mem 0xdf102000-0xdf102fff]
[    0.306687] pci 0000:34:00.0: supports D1 D2
[    0.306688] pci 0000:34:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.306890] pci 0000:34:00.1: [12d8:400e] type 00 class 0x0c0310
[    0.306952] pci 0000:34:00.1: reg 0x10: [mem 0xdf101000-0xdf101fff]
[    0.307308] pci 0000:34:00.1: supports D1 D2
[    0.307309] pci 0000:34:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.307464] pci 0000:34:00.2: [12d8:400f] type 00 class 0x0c0320
[    0.307536] pci 0000:34:00.2: reg 0x10: [mem 0xdf100000-0xdf1000ff]
[    0.307953] pci 0000:34:00.2: supports D1 D2
[    0.307954] pci 0000:34:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.308302] pci 0000:33:03.0: PCI bridge to [bus 34]
[    0.308334] pci 0000:33:03.0:   bridge window [mem 0xdf100000-0xdf1fffff]
[    0.308571] pci 0000:35:00.0: [14e4:16b0] type 00 class 0x020000
[    0.308656] pci 0000:35:00.0: reg 0x10: [mem 0xa0010000-0xa001ffff 64bit pref]
[    0.308704] pci 0000:35:00.0: reg 0x18: [mem 0xa0000000-0xa000ffff 64bit pref]
[    0.309130] pci 0000:35:00.0: PME# supported from D0 D3hot D3cold
[    0.309426] pci 0000:31:01.0: PCI bridge to [bus 35]
[    0.309469] pci 0000:31:01.0:   bridge window [mem 0xa0000000-0xa00fffff 64bit pref]
[    0.309629] pci 0000:36:00.0: [11c1:5901] type 00 class 0x0c0010
[    0.309714] pci 0000:36:00.0: reg 0x10: [mem 0xdf000000-0xdf000fff 64bit]
[    0.310131] pci 0000:36:00.0: supports D1 D2
[    0.310132] pci 0000:36:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.310408] pci 0000:31:02.0: PCI bridge to [bus 36]
[    0.310434] pci 0000:31:02.0:   bridge window [mem 0xdf000000-0xdf0fffff]
[    0.310547] pci 0000:31:04.0: PCI bridge to [bus 37]
[    0.310683] pci 0000:31:05.0: PCI bridge to [bus 38]
[    0.310898] pci 0000:2a:05.0: PCI bridge to [bus 39]
[    0.311080] pci 0000:4b:00.0: [2646:2262] type 00 class 0x010802
[    0.311108] pci 0000:4b:00.0: reg 0x10: [mem 0xef600000-0xef603fff 64bit]
[    0.311328] pci 0000:02:04.0: PCI bridge to [bus 4b]
[    0.311334] pci 0000:02:04.0:   bridge window [mem 0xef600000-0xef6fffff]
[    0.311397] pci 0000:4c:00.0: [1b21:1806] type 01 class 0x060400
[    0.311468] pci 0000:4c:00.0: enabling Extended Tags
[    0.311575] pci 0000:4c:00.0: PME# supported from D0 D3hot D3cold
[    0.311618] pci 0000:4c:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x1 link at 0000:02:08.0 (capable of 15.752 Gb/s with 8.0 GT/s PCIe x2 link)
[    0.311668] pci 0000:02:08.0: PCI bridge to [bus 4c-50]
[    0.311673] pci 0000:02:08.0:   bridge window [io  0xf000-0xffff]
[    0.311676] pci 0000:02:08.0:   bridge window [mem 0xef500000-0xef5fffff]
[    0.311739] pci 0000:4d:00.0: [1b21:1806] type 01 class 0x060400
[    0.311813] pci 0000:4d:00.0: enabling Extended Tags
[    0.311919] pci 0000:4d:00.0: PME# supported from D0 D3hot D3cold
[    0.312017] pci 0000:4d:06.0: [1b21:1806] type 01 class 0x060400
[    0.312090] pci 0000:4d:06.0: enabling Extended Tags
[    0.312197] pci 0000:4d:06.0: PME# supported from D0 D3hot D3cold
[    0.312285] pci 0000:4d:0e.0: [1b21:1806] type 01 class 0x060400
[    0.312358] pci 0000:4d:0e.0: enabling Extended Tags
[    0.312465] pci 0000:4d:0e.0: PME# supported from D0 D3hot D3cold
[    0.312549] pci 0000:4c:00.0: PCI bridge to [bus 4d-50]
[    0.312557] pci 0000:4c:00.0:   bridge window [io  0xf000-0xffff]
[    0.312561] pci 0000:4c:00.0:   bridge window [mem 0xef500000-0xef5fffff]
[    0.312635] pci 0000:4e:00.0: [10ec:8125] type 00 class 0x020000
[    0.312668] pci 0000:4e:00.0: reg 0x10: [io  0xf000-0xf0ff]
[    0.312709] pci 0000:4e:00.0: reg 0x18: [mem 0xef500000-0xef50ffff 64bit]
[    0.312734] pci 0000:4e:00.0: reg 0x20: [mem 0xef510000-0xef513fff 64bit]
[    0.312920] pci 0000:4e:00.0: supports D1 D2
[    0.312921] pci 0000:4e:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.313073] pci 0000:4d:00.0: PCI bridge to [bus 4e]
[    0.313080] pci 0000:4d:00.0:   bridge window [io  0xf000-0xffff]
[    0.313084] pci 0000:4d:00.0:   bridge window [mem 0xef500000-0xef5fffff]
[    0.313133] pci 0000:4d:06.0: PCI bridge to [bus 4f]
[    0.313191] pci 0000:4d:0e.0: PCI bridge to [bus 50]
[    0.313294] pci 0000:51:00.0: [8086:15f3] type 00 class 0x020000
[    0.313318] pci 0000:51:00.0: reg 0x10: [mem 0xef300000-0xef3fffff]
[    0.313353] pci 0000:51:00.0: reg 0x1c: [mem 0xef400000-0xef403fff]
[    0.313495] pci 0000:51:00.0: PME# supported from D0 D3hot D3cold
[    0.313591] pci 0000:02:09.0: PCI bridge to [bus 51]
[    0.313597] pci 0000:02:09.0:   bridge window [mem 0xef300000-0xef4fffff]
[    0.313650] pci 0000:52:00.0: [c0a9:540a] type 00 class 0x010802
[    0.313667] pci 0000:52:00.0: reg 0x10: [mem 0xefd00000-0xefd03fff 64bit]
[    0.313795] pci 0000:00:02.2: PCI bridge to [bus 52]
[    0.313799] pci 0000:00:02.2:   bridge window [mem 0xefd00000-0xefdfffff]
[    0.313833] pci 0000:53:00.0: [1002:1638] type 00 class 0x030000
[    0.313843] pci 0000:53:00.0: reg 0x10: [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.313850] pci 0000:53:00.0: reg 0x18: [mem 0xd0000000-0xd01fffff 64bit pref]
[    0.313855] pci 0000:53:00.0: reg 0x20: [io  0xe000-0xe0ff]
[    0.313860] pci 0000:53:00.0: reg 0x24: [mem 0xefc00000-0xefc7ffff]
[    0.313867] pci 0000:53:00.0: enabling Extended Tags
[    0.313876] pci 0000:53:00.0: BAR 0: assigned to efifb
[    0.313911] pci 0000:53:00.0: PME# supported from D1 D2 D3hot D3cold
[    0.313924] pci 0000:53:00.0: 126.016 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x16 link at 0000:00:08.1 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[    0.313953] pci 0000:53:00.1: [1002:1637] type 00 class 0x040300
[    0.313960] pci 0000:53:00.1: reg 0x10: [mem 0xefc88000-0xefc8bfff]
[    0.313979] pci 0000:53:00.1: enabling Extended Tags
[    0.314004] pci 0000:53:00.1: PME# supported from D1 D2 D3hot D3cold
[    0.314035] pci 0000:53:00.2: [1022:15df] type 00 class 0x108000
[    0.314047] pci 0000:53:00.2: reg 0x18: [mem 0xefb00000-0xefbfffff]
[    0.314055] pci 0000:53:00.2: reg 0x24: [mem 0xefc8c000-0xefc8dfff]
[    0.314062] pci 0000:53:00.2: enabling Extended Tags
[    0.314118] pci 0000:53:00.3: [1022:1639] type 00 class 0x0c0330
[    0.314128] pci 0000:53:00.3: reg 0x10: [mem 0xefa00000-0xefafffff 64bit]
[    0.314149] pci 0000:53:00.3: enabling Extended Tags
[    0.314176] pci 0000:53:00.3: PME# supported from D0 D3hot D3cold
[    0.314209] pci 0000:53:00.4: [1022:1639] type 00 class 0x0c0330
[    0.314219] pci 0000:53:00.4: reg 0x10: [mem 0xef900000-0xef9fffff 64bit]
[    0.314240] pci 0000:53:00.4: enabling Extended Tags
[    0.314267] pci 0000:53:00.4: PME# supported from D0 D3hot D3cold
[    0.314300] pci 0000:53:00.6: [1022:15e3] type 00 class 0x040300
[    0.314307] pci 0000:53:00.6: reg 0x10: [mem 0xefc80000-0xefc87fff]
[    0.314326] pci 0000:53:00.6: enabling Extended Tags
[    0.314351] pci 0000:53:00.6: PME# supported from D0 D3hot D3cold
[    0.314396] pci 0000:00:08.1: PCI bridge to [bus 53]
[    0.314398] pci 0000:00:08.1:   bridge window [io  0xe000-0xefff]
[    0.314400] pci 0000:00:08.1:   bridge window [mem 0xef900000-0xefcfffff]
[    0.314403] pci 0000:00:08.1:   bridge window [mem 0xc0000000-0xd01fffff 64bit pref]
[    0.314656] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    0.314681] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    0.314701] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    0.314727] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    0.314750] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    0.314769] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    0.314788] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    0.314807] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    0.315132] SCSI subsystem initialized
[    0.315136] libata version 3.00 loaded.
[    0.315157] Registered efivars operations
[    0.315200] PCI: Using ACPI for IRQ routing
[    0.319807] PCI: pci_cache_line_size set to 64 bytes
[    0.320102] e820: reserve RAM buffer [mem 0x09c3f000-0x0bffffff]
[    0.320103] e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff]
[    0.320104] e820: reserve RAM buffer [mem 0x0b000000-0x0bffffff]
[    0.320104] e820: reserve RAM buffer [mem 0x7a077000-0x7bffffff]
[    0.320105] e820: reserve RAM buffer [mem 0x7a099000-0x7bffffff]
[    0.320105] e820: reserve RAM buffer [mem 0x936c1018-0x93ffffff]
[    0.320105] e820: reserve RAM buffer [mem 0x936cf018-0x93ffffff]
[    0.320106] e820: reserve RAM buffer [mem 0x93710018-0x93ffffff]
[    0.320106] e820: reserve RAM buffer [mem 0x96088000-0x97ffffff]
[    0.320107] e820: reserve RAM buffer [mem 0x9754d000-0x97ffffff]
[    0.320107] e820: reserve RAM buffer [mem 0x9e000000-0x9fffffff]
[    0.320108] e820: reserve RAM buffer [mem 0x83e300000-0x83fffffff]
[    0.320113] pci 0000:53:00.0: vgaarb: setting as boot VGA device
[    0.320113] pci 0000:53:00.0: vgaarb: bridge control possible
[    0.320113] pci 0000:53:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    0.320113] vgaarb: loaded
[    0.320113] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.320113] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    0.320113] clocksource: Switched to clocksource tsc-early
[    0.320113] VFS: Disk quotas dquot_6.6.0
[    0.320113] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.320113] pnp: PnP ACPI init
[    0.320113] system 00:00: [mem 0xf0000000-0xf7ffffff] has been reserved
[    0.320113] system 00:01: [mem 0x840000000-0x85fffffff window] has been reserved
[    0.320113] system 00:03: [io  0x0a00-0x0a2f] has been reserved
[    0.320113] system 00:03: [io  0x0a30-0x0a3f] has been reserved
[    0.320113] system 00:03: [io  0x0a40-0x0a4f] has been reserved
[    0.320113] system 00:03: [mem 0xfe000000-0xfe00ffff] has been reserved
[    0.320113] pnp 00:05: [dma 0 disabled]
[    0.320113] system 00:06: [io  0x04d0-0x04d1] has been reserved
[    0.320113] system 00:06: [io  0x040b] has been reserved
[    0.320113] system 00:06: [io  0x04d6] has been reserved
[    0.320113] system 00:06: [io  0x0c00-0x0c01] has been reserved
[    0.320113] system 00:06: [io  0x0c14] has been reserved
[    0.320113] system 00:06: [io  0x0c50-0x0c51] has been reserved
[    0.320113] system 00:06: [io  0x0c52] has been reserved
[    0.320113] system 00:06: [io  0x0c6c] has been reserved
[    0.320113] system 00:06: [io  0x0c6f] has been reserved
[    0.320113] system 00:06: [io  0x0cd8-0x0cdf] has been reserved
[    0.320113] system 00:06: [io  0x0800-0x089f] has been reserved
[    0.320113] system 00:06: [io  0x0b00-0x0b0f] has been reserved
[    0.320113] system 00:06: [io  0x0b20-0x0b3f] has been reserved
[    0.320113] system 00:06: [io  0x0900-0x090f] has been reserved
[    0.320113] system 00:06: [io  0x0910-0x091f] has been reserved
[    0.320113] system 00:06: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.320113] system 00:06: [mem 0xfec01000-0xfec01fff] could not be reserved
[    0.320113] system 00:06: [mem 0xfedc0000-0xfedc0fff] has been reserved
[    0.320113] system 00:06: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.320113] system 00:06: [mem 0xfed80000-0xfed8ffff] could not be reserved
[    0.320113] system 00:06: [mem 0xfec10000-0xfec10fff] has been reserved
[    0.320113] system 00:06: [mem 0xff000000-0xffffffff] has been reserved
[    0.320113] pnp: PnP ACPI: found 7 devices
[    0.322811] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.322839] NET: Registered PF_INET protocol family
[    0.322964] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.324942] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    0.324957] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.324960] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.325089] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.325139] TCP: Hash tables configured (established 262144 bind 65536)
[    0.325151] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.325183] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.325231] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.325237] pci 0000:04:01.0: bridge window [io  0x1000-0x0fff] to [bus 06-27] add_size 1000
[    0.325241] pci 0000:31:04.0: bridge window [io  0x1000-0x0fff] to [bus 37] add_size 1000
[    0.325243] pci 0000:31:04.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 37] add_size 200000 add_align 100000
[    0.325246] pci 0000:31:04.0: bridge window [mem 0x00100000-0x000fffff] to [bus 37] add_size 200000 add_align 100000
[    0.325247] pci 0000:31:05.0: bridge window [io  0x1000-0x0fff] to [bus 38] add_size 1000
[    0.325249] pci 0000:31:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 38] add_size 200000 add_align 100000
[    0.325250] pci 0000:31:05.0: bridge window [mem 0x00100000-0x000fffff] to [bus 38] add_size 200000 add_align 100000
[    0.325252] pci 0000:30:00.0: bridge window [io  0x1000-0x0fff] to [bus 31-38] add_size 2000
[    0.325254] pci 0000:2a:04.0: bridge window [io  0x1000-0x0fff] to [bus 30-38] add_size 3000
[    0.325255] pci 0000:2a:05.0: bridge window [io  0x1000-0x0fff] to [bus 39] add_size 1000
[    0.325257] pci 0000:2a:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 39] add_size 200000 add_align 100000
[    0.325258] pci 0000:2a:05.0: bridge window [mem 0x00100000-0x000fffff] to [bus 39] add_size 200000 add_align 100000
[    0.325260] pci 0000:29:00.0: bridge window [io  0x1000-0x0fff] to [bus 2a-39] add_size 4000
[    0.325262] pci 0000:04:04.0: bridge window [io  0x1000-0x0fff] to [bus 29-4a] add_size 5000
[    0.325263] pci 0000:03:00.0: bridge window [io  0x1000-0x0fff] to [bus 04-4a] add_size 6000
[    0.325265] pci 0000:02:00.0: bridge window [io  0x1000-0x0fff] to [bus 03-4a] add_size 6000
[    0.325269] pci 0000:02:00.0: BAR 7: no space for [io  size 0x6000]
[    0.325271] pci 0000:02:00.0: BAR 7: failed to assign [io  size 0x6000]
[    0.325272] pci 0000:02:00.0: BAR 7: no space for [io  size 0x6000]
[    0.325273] pci 0000:02:00.0: BAR 7: failed to assign [io  size 0x6000]
[    0.325275] pci 0000:03:00.0: BAR 7: no space for [io  size 0x6000]
[    0.325276] pci 0000:03:00.0: BAR 7: failed to assign [io  size 0x6000]
[    0.325277] pci 0000:03:00.0: BAR 7: no space for [io  size 0x6000]
[    0.325278] pci 0000:03:00.0: BAR 7: failed to assign [io  size 0x6000]
[    0.325280] pci 0000:04:01.0: BAR 7: no space for [io  size 0x1000]
[    0.325281] pci 0000:04:01.0: BAR 7: failed to assign [io  size 0x1000]
[    0.325282] pci 0000:04:04.0: BAR 7: no space for [io  size 0x5000]
[    0.325283] pci 0000:04:04.0: BAR 7: failed to assign [io  size 0x5000]
[    0.325284] pci 0000:04:04.0: BAR 7: no space for [io  size 0x5000]
[    0.325285] pci 0000:04:04.0: BAR 7: failed to assign [io  size 0x5000]
[    0.325286] pci 0000:04:01.0: BAR 7: no space for [io  size 0x1000]
[    0.325287] pci 0000:04:01.0: BAR 7: failed to assign [io  size 0x1000]
[    0.325289] pci 0000:04:00.0: PCI bridge to [bus 05]
[    0.325299] pci 0000:04:00.0:   bridge window [mem 0xef100000-0xef1fffff]
[    0.325309] pci 0000:04:01.0: PCI bridge to [bus 06-27]
[    0.325315] pci 0000:04:01.0:   bridge window [mem 0xe7000000-0xeeffffff]
[    0.325319] pci 0000:04:01.0:   bridge window [mem 0xb0000000-0xb1ffffff 64bit pref]
[    0.325327] pci 0000:04:02.0: PCI bridge to [bus 28]
[    0.325332] pci 0000:04:02.0:   bridge window [mem 0xef000000-0xef0fffff]
[    0.325343] pci 0000:29:00.0: BAR 7: no space for [io  size 0x4000]
[    0.325344] pci 0000:29:00.0: BAR 7: failed to assign [io  size 0x4000]
[    0.325345] pci 0000:29:00.0: BAR 7: no space for [io  size 0x4000]
[    0.325346] pci 0000:29:00.0: BAR 7: failed to assign [io  size 0x4000]
[    0.325348] pci 0000:2a:05.0: BAR 8: no space for [mem size 0x00200000]
[    0.325349] pci 0000:2a:05.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.325351] pci 0000:2a:05.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.325352] pci 0000:2a:05.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.325353] pci 0000:2a:04.0: BAR 7: no space for [io  size 0x3000]
[    0.325355] pci 0000:2a:04.0: BAR 7: failed to assign [io  size 0x3000]
[    0.325356] pci 0000:2a:05.0: BAR 7: no space for [io  size 0x1000]
[    0.325357] pci 0000:2a:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.325358] pci 0000:2a:05.0: BAR 8: no space for [mem size 0x00200000]
[    0.325359] pci 0000:2a:05.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.325361] pci 0000:2a:05.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.325362] pci 0000:2a:05.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.325363] pci 0000:2a:05.0: BAR 7: no space for [io  size 0x1000]
[    0.325364] pci 0000:2a:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.325365] pci 0000:2a:04.0: BAR 7: no space for [io  size 0x3000]
[    0.325366] pci 0000:2a:04.0: BAR 7: failed to assign [io  size 0x3000]
[    0.325368] pci 0000:2c:03.0: PCI bridge to [bus 2d]
[    0.325380] pci 0000:2c:03.0:   bridge window [mem 0xdf300000-0xdf3fffff]
[    0.325404] pci 0000:2b:00.0: PCI bridge to [bus 2c-2d]
[    0.325417] pci 0000:2b:00.0:   bridge window [mem 0xdf300000-0xdf3fffff]
[    0.325440] pci 0000:2a:00.0: PCI bridge to [bus 2b-2d]
[    0.325449] pci 0000:2a:00.0:   bridge window [mem 0xdf300000-0xdf3fffff]
[    0.325468] pci 0000:2a:01.0: PCI bridge to [bus 2e]
[    0.325483] pci 0000:2a:01.0:   bridge window [mem 0xa0100000-0xa01fffff 64bit pref]
[    0.325496] pci 0000:2a:02.0: PCI bridge to [bus 2f]
[    0.325505] pci 0000:2a:02.0:   bridge window [mem 0xdf200000-0xdf2fffff]
[    0.325524] pci 0000:30:00.0: BAR 7: no space for [io  size 0x2000]
[    0.325525] pci 0000:30:00.0: BAR 7: failed to assign [io  size 0x2000]
[    0.325526] pci 0000:30:00.0: BAR 7: no space for [io  size 0x2000]
[    0.325527] pci 0000:30:00.0: BAR 7: failed to assign [io  size 0x2000]
[    0.325529] pci 0000:31:04.0: BAR 8: no space for [mem size 0x00200000]
[    0.325530] pci 0000:31:04.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.325532] pci 0000:31:04.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.325533] pci 0000:31:04.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.325535] pci 0000:31:05.0: BAR 8: no space for [mem size 0x00200000]
[    0.325536] pci 0000:31:05.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.325537] pci 0000:31:05.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.325538] pci 0000:31:05.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.325540] pci 0000:31:04.0: BAR 7: no space for [io  size 0x1000]
[    0.325541] pci 0000:31:04.0: BAR 7: failed to assign [io  size 0x1000]
[    0.325542] pci 0000:31:05.0: BAR 7: no space for [io  size 0x1000]
[    0.325543] pci 0000:31:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.325544] pci 0000:31:05.0: BAR 8: no space for [mem size 0x00200000]
[    0.325545] pci 0000:31:05.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.325547] pci 0000:31:05.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.325548] pci 0000:31:05.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.325549] pci 0000:31:05.0: BAR 7: no space for [io  size 0x1000]
[    0.325550] pci 0000:31:05.0: BAR 7: failed to assign [io  size 0x1000]
[    0.325552] pci 0000:31:04.0: BAR 8: no space for [mem size 0x00200000]
[    0.325553] pci 0000:31:04.0: BAR 8: failed to assign [mem size 0x00200000]
[    0.325554] pci 0000:31:04.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[    0.325555] pci 0000:31:04.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[    0.325557] pci 0000:31:04.0: BAR 7: no space for [io  size 0x1000]
[    0.325558] pci 0000:31:04.0: BAR 7: failed to assign [io  size 0x1000]
[    0.325559] pci 0000:33:03.0: PCI bridge to [bus 34]
[    0.325575] pci 0000:33:03.0:   bridge window [mem 0xdf100000-0xdf1fffff]
[    0.325607] pci 0000:32:00.0: PCI bridge to [bus 33-34]
[    0.325624] pci 0000:32:00.0:   bridge window [mem 0xdf100000-0xdf1fffff]
[    0.325655] pci 0000:31:00.0: PCI bridge to [bus 32-34]
[    0.325669] pci 0000:31:00.0:   bridge window [mem 0xdf100000-0xdf1fffff]
[    0.325695] pci 0000:31:01.0: PCI bridge to [bus 35]
[    0.325716] pci 0000:31:01.0:   bridge window [mem 0xa0000000-0xa00fffff 64bit pref]
[    0.325734] pci 0000:31:02.0: PCI bridge to [bus 36]
[    0.325747] pci 0000:31:02.0:   bridge window [mem 0xdf000000-0xdf0fffff]
[    0.325773] pci 0000:31:04.0: PCI bridge to [bus 37]
[    0.325811] pci 0000:31:05.0: PCI bridge to [bus 38]
[    0.325850] pci 0000:30:00.0: PCI bridge to [bus 31-38]
[    0.325863] pci 0000:30:00.0:   bridge window [mem 0xdf000000-0xdf1fffff]
[    0.325872] pci 0000:30:00.0:   bridge window [mem 0xa0000000-0xa00fffff 64bit pref]
[    0.325890] pci 0000:2a:04.0: PCI bridge to [bus 30-38]
[    0.325899] pci 0000:2a:04.0:   bridge window [mem 0xdf000000-0xdf1fffff]
[    0.325906] pci 0000:2a:04.0:   bridge window [mem 0xa0000000-0xa00fffff 64bit pref]
[    0.325919] pci 0000:2a:05.0: PCI bridge to [bus 39]
[    0.325945] pci 0000:29:00.0: PCI bridge to [bus 2a-39]
[    0.325954] pci 0000:29:00.0:   bridge window [mem 0xdf000000-0xdf3fffff]
[    0.325961] pci 0000:29:00.0:   bridge window [mem 0xa0000000-0xa01fffff 64bit pref]
[    0.325974] pci 0000:04:04.0: PCI bridge to [bus 29-4a]
[    0.325979] pci 0000:04:04.0:   bridge window [mem 0xdf000000-0xe6ffffff]
[    0.325983] pci 0000:04:04.0:   bridge window [mem 0xa0000000-0xa1ffffff 64bit pref]
[    0.325991] pci 0000:03:00.0: PCI bridge to [bus 04-4a]
[    0.325996] pci 0000:03:00.0:   bridge window [mem 0xdf000000-0xef1fffff]
[    0.326000] pci 0000:03:00.0:   bridge window [mem 0xa0000000-0xb1ffffff 64bit pref]
[    0.326008] pci 0000:02:00.0: PCI bridge to [bus 03-4a]
[    0.326011] pci 0000:02:00.0:   bridge window [mem 0xdf000000-0xef1fffff]
[    0.326014] pci 0000:02:00.0:   bridge window [mem 0xa0000000-0xb1ffffff 64bit pref]
[    0.326019] pci 0000:02:04.0: PCI bridge to [bus 4b]
[    0.326023] pci 0000:02:04.0:   bridge window [mem 0xef600000-0xef6fffff]
[    0.326029] pci 0000:4d:00.0: PCI bridge to [bus 4e]
[    0.326032] pci 0000:4d:00.0:   bridge window [io  0xf000-0xffff]
[    0.326038] pci 0000:4d:00.0:   bridge window [mem 0xef500000-0xef5fffff]
[    0.326048] pci 0000:4d:06.0: PCI bridge to [bus 4f]
[    0.326063] pci 0000:4d:0e.0: PCI bridge to [bus 50]
[    0.326078] pci 0000:4c:00.0: PCI bridge to [bus 4d-50]
[    0.326080] pci 0000:4c:00.0:   bridge window [io  0xf000-0xffff]
[    0.326086] pci 0000:4c:00.0:   bridge window [mem 0xef500000-0xef5fffff]
[    0.326096] pci 0000:02:08.0: PCI bridge to [bus 4c-50]
[    0.326098] pci 0000:02:08.0:   bridge window [io  0xf000-0xffff]
[    0.326102] pci 0000:02:08.0:   bridge window [mem 0xef500000-0xef5fffff]
[    0.326108] pci 0000:02:09.0: PCI bridge to [bus 51]
[    0.326112] pci 0000:02:09.0:   bridge window [mem 0xef300000-0xef4fffff]
[    0.326119] pci 0000:01:00.2: PCI bridge to [bus 02-51]
[    0.326120] pci 0000:01:00.2:   bridge window [io  0xf000-0xffff]
[    0.326124] pci 0000:01:00.2:   bridge window [mem 0xdf000000-0xef6fffff]
[    0.326127] pci 0000:01:00.2:   bridge window [mem 0xa0000000-0xb1ffffff 64bit pref]
[    0.326131] pci 0000:00:02.1: PCI bridge to [bus 01-51]
[    0.326133] pci 0000:00:02.1:   bridge window [io  0xf000-0xffff]
[    0.326135] pci 0000:00:02.1:   bridge window [mem 0xdf000000-0xef7fffff]
[    0.326137] pci 0000:00:02.1:   bridge window [mem 0xa0000000-0xb1ffffff 64bit pref]
[    0.326140] pci 0000:00:02.2: PCI bridge to [bus 52]
[    0.326142] pci 0000:00:02.2:   bridge window [mem 0xefd00000-0xefdfffff]
[    0.326146] pci 0000:00:08.1: PCI bridge to [bus 53]
[    0.326148] pci 0000:00:08.1:   bridge window [io  0xe000-0xefff]
[    0.326150] pci 0000:00:08.1:   bridge window [mem 0xef900000-0xefcfffff]
[    0.326152] pci 0000:00:08.1:   bridge window [mem 0xc0000000-0xd01fffff 64bit pref]
[    0.326155] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    0.326156] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    0.326158] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    0.326159] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[    0.326160] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
[    0.326161] pci_bus 0000:00: resource 9 [mem 0xa0000000-0xefffffff window]
[    0.326162] pci_bus 0000:01: resource 0 [io  0xf000-0xffff]
[    0.326163] pci_bus 0000:01: resource 1 [mem 0xdf000000-0xef7fffff]
[    0.326164] pci_bus 0000:01: resource 2 [mem 0xa0000000-0xb1ffffff 64bit pref]
[    0.326166] pci_bus 0000:02: resource 0 [io  0xf000-0xffff]
[    0.326167] pci_bus 0000:02: resource 1 [mem 0xdf000000-0xef6fffff]
[    0.326168] pci_bus 0000:02: resource 2 [mem 0xa0000000-0xb1ffffff 64bit pref]
[    0.326169] pci_bus 0000:03: resource 1 [mem 0xdf000000-0xef1fffff]
[    0.326170] pci_bus 0000:03: resource 2 [mem 0xa0000000-0xb1ffffff 64bit pref]
[    0.326171] pci_bus 0000:04: resource 1 [mem 0xdf000000-0xef1fffff]
[    0.326172] pci_bus 0000:04: resource 2 [mem 0xa0000000-0xb1ffffff 64bit pref]
[    0.326174] pci_bus 0000:05: resource 1 [mem 0xef100000-0xef1fffff]
[    0.326175] pci_bus 0000:06: resource 1 [mem 0xe7000000-0xeeffffff]
[    0.326176] pci_bus 0000:06: resource 2 [mem 0xb0000000-0xb1ffffff 64bit pref]
[    0.326177] pci_bus 0000:28: resource 1 [mem 0xef000000-0xef0fffff]
[    0.326178] pci_bus 0000:29: resource 1 [mem 0xdf000000-0xe6ffffff]
[    0.326179] pci_bus 0000:29: resource 2 [mem 0xa0000000-0xa1ffffff 64bit pref]
[    0.326180] pci_bus 0000:2a: resource 1 [mem 0xdf000000-0xdf3fffff]
[    0.326181] pci_bus 0000:2a: resource 2 [mem 0xa0000000-0xa01fffff 64bit pref]
[    0.326183] pci_bus 0000:2b: resource 1 [mem 0xdf300000-0xdf3fffff]
[    0.326184] pci_bus 0000:2c: resource 1 [mem 0xdf300000-0xdf3fffff]
[    0.326185] pci_bus 0000:2d: resource 1 [mem 0xdf300000-0xdf3fffff]
[    0.326186] pci_bus 0000:2e: resource 2 [mem 0xa0100000-0xa01fffff 64bit pref]
[    0.326187] pci_bus 0000:2f: resource 1 [mem 0xdf200000-0xdf2fffff]
[    0.326188] pci_bus 0000:30: resource 1 [mem 0xdf000000-0xdf1fffff]
[    0.326189] pci_bus 0000:30: resource 2 [mem 0xa0000000-0xa00fffff 64bit pref]
[    0.326190] pci_bus 0000:31: resource 1 [mem 0xdf000000-0xdf1fffff]
[    0.326191] pci_bus 0000:31: resource 2 [mem 0xa0000000-0xa00fffff 64bit pref]
[    0.326193] pci_bus 0000:32: resource 1 [mem 0xdf100000-0xdf1fffff]
[    0.326194] pci_bus 0000:33: resource 1 [mem 0xdf100000-0xdf1fffff]
[    0.326195] pci_bus 0000:34: resource 1 [mem 0xdf100000-0xdf1fffff]
[    0.326196] pci_bus 0000:35: resource 2 [mem 0xa0000000-0xa00fffff 64bit pref]
[    0.326197] pci_bus 0000:36: resource 1 [mem 0xdf000000-0xdf0fffff]
[    0.326198] pci_bus 0000:4b: resource 1 [mem 0xef600000-0xef6fffff]
[    0.326199] pci_bus 0000:4c: resource 0 [io  0xf000-0xffff]
[    0.326200] pci_bus 0000:4c: resource 1 [mem 0xef500000-0xef5fffff]
[    0.326201] pci_bus 0000:4d: resource 0 [io  0xf000-0xffff]
[    0.326202] pci_bus 0000:4d: resource 1 [mem 0xef500000-0xef5fffff]
[    0.326203] pci_bus 0000:4e: resource 0 [io  0xf000-0xffff]
[    0.326204] pci_bus 0000:4e: resource 1 [mem 0xef500000-0xef5fffff]
[    0.326206] pci_bus 0000:51: resource 1 [mem 0xef300000-0xef4fffff]
[    0.326207] pci_bus 0000:52: resource 1 [mem 0xefd00000-0xefdfffff]
[    0.326208] pci_bus 0000:53: resource 0 [io  0xe000-0xefff]
[    0.326209] pci_bus 0000:53: resource 1 [mem 0xef900000-0xefcfffff]
[    0.326210] pci_bus 0000:53: resource 2 [mem 0xc0000000-0xd01fffff 64bit pref]
[    0.326447] pci 0000:2d:00.0: MSI is not implemented on this device, disabling it
[    0.326449] pci 0000:2d:00.0: PME# is unreliable, disabling it
[    0.326543] pci 0000:2d:00.0: enabling device (0000 -> 0002)
[    0.326604] pci 0000:2d:00.1: MSI is not implemented on this device, disabling it
[    0.326605] pci 0000:2d:00.1: PME# is unreliable, disabling it
[    0.326614] pci 0000:2d:00.1: enabling device (0000 -> 0002)
[    0.326670] pci 0000:2d:00.2: MSI is not implemented on this device, disabling it
[    0.326671] pci 0000:2d:00.2: PME# is unreliable, disabling it
[    0.326712] pci 0000:2d:00.2: EHCI: unrecognized capability 00
[    0.326784] pci 0000:34:00.0: MSI is not implemented on this device, disabling it
[    0.326786] pci 0000:34:00.0: PME# is unreliable, disabling it
[    0.326912] pci 0000:34:00.0: enabling device (0000 -> 0002)
[    0.326983] pci 0000:34:00.1: MSI is not implemented on this device, disabling it
[    0.326985] pci 0000:34:00.1: PME# is unreliable, disabling it
[    0.326995] pci 0000:34:00.1: enabling device (0000 -> 0002)
[    0.327063] pci 0000:34:00.2: MSI is not implemented on this device, disabling it
[    0.327064] pci 0000:34:00.2: PME# is unreliable, disabling it
[    0.327113] pci 0000:34:00.2: EHCI: unrecognized capability 00
[    0.327178] pci 0000:53:00.1: D0 power state depends on 0000:53:00.0
[    0.327182] pci 0000:53:00.3: extending delay after power-on from D3hot to 20 msec
[    0.327244] pci 0000:53:00.4: extending delay after power-on from D3hot to 20 msec
[    0.327272] PCI: CLS 64 bytes, default 64
[    0.327275] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.327277] software IO TLB: mapped [mem 0x000000008d000000-0x0000000091000000] (64MB)
[    0.327281] ACPI: bus type thunderbolt registered
[    0.327313] Trying to unpack rootfs image as initramfs...
[    0.327326] thunderbolt 0000:05:00.0: enabling device (0000 -> 0002)
[    0.327345] thunderbolt 0000:05:00.0: total paths: 12
[    0.327347] thunderbolt 0000:05:00.0: IOMMU DMA protection is disabled
[    0.327468] thunderbolt 0000:05:00.0: allocating TX ring 0 of size 10
[    0.327479] thunderbolt 0000:05:00.0: allocating RX ring 0 of size 10
[    0.327489] thunderbolt 0000:05:00.0: control channel created
[    0.327491] thunderbolt 0000:05:00.0: ICM not supported on this controller
[    0.327497] thunderbolt 0000:05:00.0: freeing RX ring 0
[    0.327503] thunderbolt 0000:05:00.0: freeing TX ring 0
[    0.327507] thunderbolt 0000:05:00.0: allocating TX ring 0 of size 10
[    0.327514] thunderbolt 0000:05:00.0: allocating RX ring 0 of size 10
[    0.327520] thunderbolt 0000:05:00.0: control channel created
[    0.327521] thunderbolt 0000:05:00.0: using software connection manager
[    0.327521] thunderbolt 0000:05:00.0: NHI initialized, starting thunderbolt
[    0.327522] thunderbolt 0000:05:00.0: control channel starting...
[    0.327522] thunderbolt 0000:05:00.0: starting TX ring 0
[    0.327530] thunderbolt 0000:05:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[    0.327531] thunderbolt 0000:05:00.0: starting RX ring 0
[    0.327538] thunderbolt 0000:05:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[    0.327542] thunderbolt 0000:05:00.0: security level set to user
[    0.327688] thunderbolt 0000:05:00.0: current switch config:
[    0.327689] thunderbolt 0000:05:00.0:  Thunderbolt 3 Switch: 8086:15ea (Revision: 6, TB Version: 16)
[    0.327691] thunderbolt 0000:05:00.0:   Max Port Number: 13
[    0.327691] thunderbolt 0000:05:00.0:   Config:
[    0.327691] thunderbolt 0000:05:00.0:    Upstream Port Number: 7 Depth: 0 Route String: 0x0 Enabled: 1, PlugEventsDelay: 255ms
[    0.327692] thunderbolt 0000:05:00.0:    unknown1: 0x0 unknown4: 0x0
[    0.332811] thunderbolt 0000:05:00.0: initializing Switch at 0x0 (depth: 0, up port: 7)
[    0.372748] thunderbolt 0000:05:00.0: 0: uid: 0xedd9a650496900
[    0.374667] thunderbolt 0000:05:00.0:  Port 1: 8086:15ea (Revision: 6, TB Version: 1, Type: Port (0x1))
[    0.374669] thunderbolt 0000:05:00.0:   Max hop id (in/out): 19/19
[    0.374670] thunderbolt 0000:05:00.0:   Max counters: 16
[    0.374670] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[    0.374671] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[    0.376587] thunderbolt 0000:05:00.0:  Port 2: 8086:15ea (Revision: 6, TB Version: 1, Type: Port (0x1))
[    0.376588] thunderbolt 0000:05:00.0:   Max hop id (in/out): 19/19
[    0.376589] thunderbolt 0000:05:00.0:   Max counters: 16
[    0.376590] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[    0.376590] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[    0.378507] thunderbolt 0000:05:00.0:  Port 3: 8086:15ea (Revision: 6, TB Version: 1, Type: Port (0x1))
[    0.378508] thunderbolt 0000:05:00.0:   Max hop id (in/out): 19/19
[    0.378509] thunderbolt 0000:05:00.0:   Max counters: 16
[    0.378509] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[    0.378510] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[    0.380427] thunderbolt 0000:05:00.0:  Port 4: 8086:15ea (Revision: 6, TB Version: 1, Type: Port (0x1))
[    0.380428] thunderbolt 0000:05:00.0:   Max hop id (in/out): 19/19
[    0.380429] thunderbolt 0000:05:00.0:   Max counters: 16
[    0.380429] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[    0.380430] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[    0.380683] thunderbolt 0000:05:00.0:  Port 5: 8086:15ea (Revision: 6, TB Version: 1, Type: DP/HDMI (0xe0101))
[    0.380684] thunderbolt 0000:05:00.0:   Max hop id (in/out): 255/255
[    0.380685] thunderbolt 0000:05:00.0:   Max counters: 2
[    0.380686] thunderbolt 0000:05:00.0:   NFC Credits: 0x180000c
[    0.380686] thunderbolt 0000:05:00.0:   Credits (total/control): 24/0
[    0.380939] thunderbolt 0000:05:00.0:  Port 6: 8086:15ea (Revision: 6, TB Version: 1, Type: DP/HDMI (0xe0101))
[    0.380940] thunderbolt 0000:05:00.0:   Max hop id (in/out): 255/255
[    0.380941] thunderbolt 0000:05:00.0:   Max counters: 2
[    0.380941] thunderbolt 0000:05:00.0:   NFC Credits: 0x180000c
[    0.380942] thunderbolt 0000:05:00.0:   Credits (total/control): 24/0
[    0.381707] thunderbolt 0000:05:00.0:  Port 7: 8086:15ea (Revision: 6, TB Version: 1, Type: NHI (0x2))
[    0.381708] thunderbolt 0000:05:00.0:   Max hop id (in/out): 11/11
[    0.381709] thunderbolt 0000:05:00.0:   Max counters: 16
[    0.381709] thunderbolt 0000:05:00.0:   NFC Credits: 0x1800000
[    0.381710] thunderbolt 0000:05:00.0:   Credits (total/control): 24/0
[    0.381963] thunderbolt 0000:05:00.0:  Port 8: 8086:15ea (Revision: 6, TB Version: 1, Type: PCIe (0x100101))
[    0.381964] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[    0.381965] thunderbolt 0000:05:00.0:   Max counters: 2
[    0.381965] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
[    0.381966] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
[    0.382219] thunderbolt 0000:05:00.0:  Port 9: 8086:15ea (Revision: 6, TB Version: 1, Type: PCIe (0x100101))
[    0.382220] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[    0.382221] thunderbolt 0000:05:00.0:   Max counters: 2
[    0.382221] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
[    0.382222] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
[    0.382731] thunderbolt 0000:05:00.0:  Port 10: 8086:15ea (Revision: 6, TB Version: 1, Type: DP/HDMI (0xe0102))
[    0.382732] thunderbolt 0000:05:00.0:   Max hop id (in/out): 9/9
[    0.382733] thunderbolt 0000:05:00.0:   Max counters: 2
[    0.382733] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
[    0.382734] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
[    0.383243] thunderbolt 0000:05:00.0:  Port 11: 8086:15ea (Revision: 6, TB Version: 1, Type: DP/HDMI (0xe0102))
[    0.383244] thunderbolt 0000:05:00.0:   Max hop id (in/out): 9/9
[    0.383245] thunderbolt 0000:05:00.0:   Max counters: 2
[    0.383245] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
[    0.383246] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
[    0.383499] thunderbolt 0000:05:00.0:  Port 12: 8086:15ea (Revision: 6, TB Version: 1, Type: Inactive (0x0))
[    0.383500] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[    0.383501] thunderbolt 0000:05:00.0:   Max counters: 2
[    0.383501] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
[    0.383502] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
[    0.383755] thunderbolt 0000:05:00.0:  Port 13: 8086:15ea (Revision: 6, TB Version: 1, Type: Inactive (0x0))
[    0.383756] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[    0.383757] thunderbolt 0000:05:00.0:   Max counters: 2
[    0.383757] thunderbolt 0000:05:00.0:   NFC Credits: 0x800000
[    0.383758] thunderbolt 0000:05:00.0:   Credits (total/control): 8/0
[    0.383758] thunderbolt 0000:05:00.0: 0: linked ports 1 <-> 2
[    0.383759] thunderbolt 0000:05:00.0: 0: linked ports 3 <-> 4
[    0.388876] thunderbolt 0000:05:00.0: 0: TMU: supports uni-directional mode
[    0.388876] thunderbolt 0000:05:00.0: 0: TMU: current mode: HiFi
[    0.389388] thunderbolt 0000:05:00.0: 0: TMU: mode set to: normal
[    0.389644] thunderbolt 0000:05:00.0: 0:1: Resetting Port
[    0.421061] thunderbolt 0000:05:00.0: 0:2: Resetting Port
[    0.434545] Freeing initrd memory: 14756K
[    0.461062] thunderbolt 0000:05:00.0: 0:3: Resetting Port
[    0.463181] thunderbolt 0000:05:00.0: acking hot unplug event on 0:3
[    0.463309] thunderbolt 0000:05:00.0: acking hot unplug event on 0:4
[    0.501065] thunderbolt 0000:05:00.0: 0:4: Resetting Port
[    0.544153] thunderbolt 0000:05:00.0: 0:1: is unplugged (state: 7)
[    0.544280] thunderbolt 0000:05:00.0: 0:3: is unplugged (state: 7)
[    0.544793] thunderbolt 0000:05:00.0: discovering Video path starting from 0:5
[    0.544921] thunderbolt 0000:05:00.0: 0:5:  In HopID: 9 => Out port: 4 Out HopID: 8
[    0.544922] thunderbolt 0000:05:00.0: 0:5:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    0.544923] thunderbolt 0000:05:00.0: 0:5:    Counter enabled: 0 Counter index: 2047
[    0.544924] thunderbolt 0000:05:00.0: 0:5:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    0.544925] thunderbolt 0000:05:00.0: 0:5:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    0.544927] thunderbolt 0000:05:00.0: path discovery complete
[    0.545048] thunderbolt 0000:05:00.0: discovering AUX TX path starting from 0:5
[    0.545177] thunderbolt 0000:05:00.0: 0:5:  In HopID: 8 => Out port: 4 Out HopID: 9
[    0.545178] thunderbolt 0000:05:00.0: 0:5:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    0.545178] thunderbolt 0000:05:00.0: 0:5:    Counter enabled: 0 Counter index: 2047
[    0.545179] thunderbolt 0000:05:00.0: 0:5:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    0.545180] thunderbolt 0000:05:00.0: 0:5:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    0.545181] thunderbolt 0000:05:00.0: path discovery complete
[    0.545432] thunderbolt 0000:05:00.0: discovering AUX RX path starting from 0:4
[    0.545560] thunderbolt 0000:05:00.0: 0:4:  In HopID: 8 => Out port: 5 Out HopID: 8
[    0.545561] thunderbolt 0000:05:00.0: 0:4:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    0.545562] thunderbolt 0000:05:00.0: 0:4:    Counter enabled: 0 Counter index: 2047
[    0.545563] thunderbolt 0000:05:00.0: 0:4:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    0.545564] thunderbolt 0000:05:00.0: 0:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    0.545565] thunderbolt 0000:05:00.0: path discovery complete
[    0.545566] thunderbolt 0000:05:00.0: 0:5: path does not end on a DP adapter, cleaning up
[    0.545568] thunderbolt 0000:05:00.0: 0:5 <-> 0:4 (DP): deactivating
[    0.546328] thunderbolt 0000:05:00.0: deactivating Video path from 0:5 to 0:4
[    0.546712] thunderbolt 0000:05:00.0: 0:5: adding -12 NFC credits to 12
[    0.546840] thunderbolt 0000:05:00.0: deactivating AUX TX path from 0:5 to 0:4
[    0.547224] thunderbolt 0000:05:00.0: deactivating AUX RX path from 0:4 to 0:5
[    0.547864] thunderbolt 0000:05:00.0: discovering Video path starting from 0:6
[    0.547993] thunderbolt 0000:05:00.0: 0:6:  In HopID: 9 => Out port: 3 Out HopID: 9
[    0.547994] thunderbolt 0000:05:00.0: 0:6:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    0.547995] thunderbolt 0000:05:00.0: 0:6:    Counter enabled: 0 Counter index: 2047
[    0.547995] thunderbolt 0000:05:00.0: 0:6:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    0.547996] thunderbolt 0000:05:00.0: 0:6:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    0.547997] thunderbolt 0000:05:00.0: path discovery complete
[    0.548120] thunderbolt 0000:05:00.0: discovering AUX TX path starting from 0:6
[    0.548248] thunderbolt 0000:05:00.0: 0:6:  In HopID: 8 => Out port: 3 Out HopID: 10
[    0.548250] thunderbolt 0000:05:00.0: 0:6:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    0.548250] thunderbolt 0000:05:00.0: 0:6:    Counter enabled: 0 Counter index: 2047
[    0.548251] thunderbolt 0000:05:00.0: 0:6:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    0.548252] thunderbolt 0000:05:00.0: 0:6:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    0.548253] thunderbolt 0000:05:00.0: path discovery complete
[    0.548632] thunderbolt 0000:05:00.0: discovering AUX RX path starting from 0:3
[    0.548761] thunderbolt 0000:05:00.0: 0:3:  In HopID: 9 => Out port: 6 Out HopID: 8
[    0.548761] thunderbolt 0000:05:00.0: 0:3:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    0.548762] thunderbolt 0000:05:00.0: 0:3:    Counter enabled: 0 Counter index: 2047
[    0.548763] thunderbolt 0000:05:00.0: 0:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    0.548764] thunderbolt 0000:05:00.0: 0:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    0.548765] thunderbolt 0000:05:00.0: path discovery complete
[    0.548765] thunderbolt 0000:05:00.0: 0:6: path does not end on a DP adapter, cleaning up
[    0.548767] thunderbolt 0000:05:00.0: 0:6 <-> 0:3 (DP): deactivating
[    0.549528] thunderbolt 0000:05:00.0: deactivating Video path from 0:6 to 0:3
[    0.549912] thunderbolt 0000:05:00.0: 0:6: adding -12 NFC credits to 12
[    0.550040] thunderbolt 0000:05:00.0: deactivating AUX TX path from 0:6 to 0:3
[    0.550425] thunderbolt 0000:05:00.0: deactivating AUX RX path from 0:3 to 0:6
[    0.551192] thunderbolt 0000:05:00.0: 0:5: DP IN resource available
[    0.551320] thunderbolt 0000:05:00.0: 0:6: DP IN resource available
[    0.551324] thunderbolt 0000:05:00.0: 0:3: got unplug event for disconnected port, ignoring
[    0.551326] thunderbolt 0000:05:00.0: 0:4: got unplug event for disconnected port, ignoring
[    0.551390] LVT offset 0 assigned for vector 0x400
[    0.551443] perf: AMD IBS detected (0x000003ff)
[    0.551686] workingset: timestamp_bits=60 max_order=23 bucket_order=0
[    0.554292] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    0.554295] io scheduler mq-deadline registered
[    0.554382] pcieport 0000:00:02.1: PME: Signaling with IRQ 43
[    0.554460] pcieport 0000:00:02.2: PME: Signaling with IRQ 44
[    0.554525] pcieport 0000:00:08.1: PME: Signaling with IRQ 45
[    0.555338] pcieport 0000:04:01.0: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    0.555724] pcieport 0000:04:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    0.555769] pcieport 0000:04:04.0: pciehp: Slot(4): Card not present
[    0.555939] pcieport 0000:2a:01.0: Unable to change power state from D3cold to D0, device inaccessible
[    0.555946] pci_bus 0000:2d: busn_res: [bus 2d] is released
[    0.555969] pci_bus 0000:2c: busn_res: [bus 2c-2d] is released
[    0.555993] pcieport 0000:2a:02.0: Unable to change power state from D3cold to D0, device inaccessible
[    0.556033] pcieport 0000:2a:04.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise- Interlock- NoCompl+ IbPresDis- LLActRep- (with Cmd Compl erratum)
[    0.556084] pci_bus 0000:2b: busn_res: [bus 2b-2d] is released
[    0.556115] pcieport 0000:2a:05.0: Unable to change power state from D3cold to D0, device inaccessible
[    0.556169] pcieport 0000:2a:05.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise- Interlock- NoCompl+ IbPresDis- LLActRep- (with Cmd Compl erratum)
[    0.556231] pci_bus 0000:2e: busn_res: [bus 2e] is released
[    0.556299] pcieport 0000:31:01.0: Unable to change power state from D3cold to D0, device inaccessible
[    0.556336] pcieport 0000:31:02.0: Unable to change power state from D3cold to D0, device inaccessible
[    0.556369] pcieport 0000:31:04.0: Unable to change power state from D3cold to D0, device inaccessible
[    0.556370] pci_bus 0000:2f: busn_res: [bus 2f] is released
[    0.556395] pcieport 0000:31:04.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise- Interlock- NoCompl+ IbPresDis- LLActRep- (with Cmd Compl erratum)
[    0.556465] pcieport 0000:31:05.0: Unable to change power state from D3cold to D0, device inaccessible
[    0.556488] pci_bus 0000:34: busn_res: [bus 34] is released
[    0.556494] pcieport 0000:31:05.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise- Interlock- NoCompl+ IbPresDis- LLActRep- (with Cmd Compl erratum)
[    0.556507] pci_bus 0000:33: busn_res: [bus 33-34] is released
[    0.556602] pci_bus 0000:32: busn_res: [bus 32-34] is released
[    0.556739] pci_bus 0000:35: busn_res: [bus 35] is released
[    0.556856] pci_bus 0000:36: busn_res: [bus 36] is released
[    0.556892] pci_bus 0000:37: busn_res: [bus 37] is released
[    0.556990] pci_bus 0000:38: busn_res: [bus 38] is released
[    0.557055] pci_bus 0000:31: busn_res: [bus 31-38] is released
[    0.557166] pci_bus 0000:30: busn_res: [bus 30-38] is released
[    0.557229] pci_bus 0000:39: busn_res: [bus 39] is released
[    0.557343] pci_bus 0000:2a: busn_res: [bus 2a-39] is released
[    0.557478] Estimated ratio of average max frequency by base frequency (times 1024): 1098
[    0.557487] Monitor-Mwait will be used to enter C-1 state
[    0.557491] ACPI: \_SB_.PLTF.C000: Found 3 idle states
[    0.557541] ACPI: \_SB_.PLTF.C002: Found 3 idle states
[    0.557580] ACPI: \_SB_.PLTF.C004: Found 3 idle states
[    0.557617] ACPI: \_SB_.PLTF.C006: Found 3 idle states
[    0.557653] ACPI: \_SB_.PLTF.C008: Found 3 idle states
[    0.557690] ACPI: \_SB_.PLTF.C00A: Found 3 idle states
[    0.557738] ACPI: \_SB_.PLTF.C001: Found 3 idle states
[    0.557787] ACPI: \_SB_.PLTF.C003: Found 3 idle states
[    0.557835] ACPI: \_SB_.PLTF.C005: Found 3 idle states
[    0.557882] ACPI: \_SB_.PLTF.C007: Found 3 idle states
[    0.557930] ACPI: \_SB_.PLTF.C009: Found 3 idle states
[    0.557964] ACPI: \_SB_.PLTF.C00B: Found 3 idle states
[    0.565868] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    0.586499] 00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.588007] brd: module loaded
[    0.588136] nvme nvme0: pci function 0000:4b:00.0
[    0.588183] nvme nvme1: pci function 0000:52:00.0
[    0.588267] Intel(R) 2.5G Ethernet Linux Driver
[    0.588269] Copyright(c) 2018 Intel Corporation.
[    0.588319] igc 0000:51:00.0: PCIe PTM not supported by PCIe bus/controller
[    0.609445] nvme nvme0: missing or invalid SUBNQN field.
[    0.612158] nvme nvme0: 15/0/0 default/read/poll queues
[    0.616356]  nvme0n1: p1 p2 p3
[    0.625896] nvme nvme1: missing or invalid SUBNQN field.
[    0.684240] nvme nvme1: allocated 128 MiB host memory buffer.
[    0.722829] igc 0000:51:00.0: 4.000 Gb/s available PCIe bandwidth (5.0 GT/s PCIe x1 link)
[    0.722838] igc 0000:51:00.0 eth0: MAC: d8:5e:d3:86:cc:c8
[    0.764551] r8169 0000:4e:00.0 eth1: RTL8125B, d8:5e:d3:86:cc:c6, XID 641, IRQ 92
[    0.764563] r8169 0000:4e:00.0 eth1: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[    0.764604] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[    0.764606] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[    0.764733] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.764786] rtc_cmos 00:02: RTC can wake from S4
[    0.765007] rtc_cmos 00:02: registered as rtc0
[    0.765039] rtc_cmos 00:02: setting system clock to 2022-08-11T13:45:50 UTC (1660225550)
[    0.765046] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    0.765553] efifb: probing for efifb
[    0.765560] efifb: framebuffer at 0xc0000000, using 3072k, total 3072k
[    0.765561] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    0.765563] efifb: scrolling: redraw
[    0.765563] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.766047] Console: switching to colour frame buffer device 128x48
[    0.766496] fb0: EFI VGA frame buffer device
[    0.766521] ccp 0000:53:00.2: enabling device (0000 -> 0002)
[    0.782689] ccp 0000:53:00.2: tee enabled
[    0.782698] ccp 0000:53:00.2: psp enabled
[    0.783553] microcode: CPU0: patch_level=0x0a50000d
[    0.783570] microcode: CPU1: patch_level=0x0a50000d
[    0.783583] microcode: CPU2: patch_level=0x0a50000d
[    0.783595] microcode: CPU3: patch_level=0x0a50000d
[    0.783621] microcode: CPU4: patch_level=0x0a50000d
[    0.783637] microcode: CPU5: patch_level=0x0a50000d
[    0.783660] microcode: CPU6: patch_level=0x0a50000d
[    0.783674] microcode: CPU7: patch_level=0x0a50000d
[    0.783687] microcode: CPU8: patch_level=0x0a50000d
[    0.783707] microcode: CPU9: patch_level=0x0a50000d
[    0.783730] microcode: CPU10: patch_level=0x0a50000d
[    0.783741] microcode: CPU11: patch_level=0x0a50000d
[    0.783751] microcode: Microcode Update Driver: v2.2.
[    0.783754] IPI shorthand broadcast: enabled
[    0.783776] sched_clock: Marking stable (783108559, 377413)->(790753224, -7267252)
[    0.783879] registered taskstats version 1
[    0.789365] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[    0.835539] nvme nvme1: 8/0/0 default/read/poll queues
[    0.843286] nvme nvme1: Ignoring bogus Namespace Identifiers
[    0.847863]  nvme1n1: p1 p3 p4 p5
[    0.848512] Freeing unused kernel image (initmem) memory: 952K
[    0.898288] Write protecting the kernel read-only data: 12288k
[    0.898803] Freeing unused kernel image (text/rodata gap) memory: 2044K
[    0.899113] Freeing unused kernel image (rodata/data gap) memory: 152K
[    0.899357] Run /init as init process
[    0.899568]   with arguments:
[    0.899569]     /init
[    0.899569]   with environment:
[    0.899570]     HOME=/
[    0.899570]     TERM=linux
[    0.930376] udevd[1078]: starting version 3.2.9
[    1.586630] tsc: Refined TSC clocksource calibration: 3926.746 MHz
[    1.586851] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x7134176e58f, max_idle_ns: 881590613118 ns
[    1.587221] clocksource: Switched to clocksource tsc
[    1.678371] thunderbolt 0000:05:00.0: acking hot plug event on 0:4
[    1.678392] thunderbolt 0000:05:00.0: 0:4: hotplug: scanning
[    1.678394] thunderbolt 0000:05:00.0: 0:4: hotplug: no switch found
[    1.681077] thunderbolt 0000:05:00.0: acking hot plug event on 0:3
[    1.681093] thunderbolt 0000:05:00.0: 0:3: hotplug: scanning
[    1.681215] thunderbolt 0000:05:00.0: 0:3: is connected, link is up (state: 2)
[    1.681469] thunderbolt 0000:05:00.0: current switch config:
[    1.681471] thunderbolt 0000:05:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[    1.681473] thunderbolt 0000:05:00.0:   Max Port Number: 13
[    1.681474] thunderbolt 0000:05:00.0:   Config:
[    1.681475] thunderbolt 0000:05:00.0:    Upstream Port Number: 0 Depth: 0 Route String: 0x0 Enabled: 0, PlugEventsDelay: 10ms
[    1.681476] thunderbolt 0000:05:00.0:    unknown1: 0x0 unknown4: 0x0
[    1.686039] thunderbolt 0000:05:00.0: initializing Switch at 0x3 (depth: 1, up port: 1)
[    1.703327] thunderbolt 0000:05:00.0: 3: reading drom (length: 0x97)
[    1.757989] thunderbolt 0000:05:00.0: acking hot plug event on 3:3
[    1.774516] thunderbolt 0000:05:00.0: acking hot plug event on 3:4
[    2.126610] clocksource: timekeeping watchdog on CPU3: Marking clocksource 'tsc' as unstable because the skew is too large:
[    2.126869] clocksource:                       'hpet' wd_nsec: 503415867 wd_now: 1c0bc7c wd_last: 152c03d mask: ffffffff
[    2.127125] clocksource:                       'tsc' cs_nsec: 499987231 cs_now: 12f9037050 cs_last: 1283fd8394 mask: ffffffffffffffff
[    2.127656] clocksource:                       'tsc' is current clocksource.
[    2.127922] tsc: Marking TSC unstable due to clocksource watchdog
[    2.128188] TSC found unstable after boot, most likely due to broken BIOS. Use 'tsc=unstable'.
[    2.128454] sched_clock: Marking unstable (2127814703, 377439)<-(2135455434, -7267252)
[    2.128837] clocksource: Checking clocksource tsc synchronization from CPU 4 to CPUs 0-3,6-7.
[    2.129126] clocksource: Switched to clocksource hpet
[    2.196148] thunderbolt 0000:05:00.0: 3: DROM version: 1
[    2.197175] thunderbolt 0000:05:00.0: 3: uid: 0x1000100189170
[    2.200117] thunderbolt 0000:05:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    2.200119] thunderbolt 0000:05:00.0:   Max hop id (in/out): 63/63
[    2.200120] thunderbolt 0000:05:00.0:   Max counters: 32
[    2.200120] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[    2.200121] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[    2.203062] thunderbolt 0000:05:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    2.203063] thunderbolt 0000:05:00.0:   Max hop id (in/out): 63/63
[    2.203064] thunderbolt 0000:05:00.0:   Max counters: 32
[    2.203064] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[    2.203065] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[    2.206007] thunderbolt 0000:05:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    2.206008] thunderbolt 0000:05:00.0:   Max hop id (in/out): 63/63
[    2.206009] thunderbolt 0000:05:00.0:   Max counters: 32
[    2.206009] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[    2.206010] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[    2.208948] thunderbolt 0000:05:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    2.208949] thunderbolt 0000:05:00.0:   Max hop id (in/out): 63/63
[    2.208950] thunderbolt 0000:05:00.0:   Max counters: 32
[    2.208950] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[    2.208951] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[    2.208951] thunderbolt 0000:05:00.0: 3:5: disabled by eeprom
[    2.208952] thunderbolt 0000:05:00.0: 3:6: disabled by eeprom
[    2.209849] thunderbolt 0000:05:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    2.209850] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[    2.209850] thunderbolt 0000:05:00.0:   Max counters: 1
[    2.209851] thunderbolt 0000:05:00.0:   NFC Credits: 0x700000
[    2.209851] thunderbolt 0000:05:00.0:   Credits (total/control): 7/0
[    2.210744] thunderbolt 0000:05:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    2.210745] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[    2.210745] thunderbolt 0000:05:00.0:   Max counters: 1
[    2.210746] thunderbolt 0000:05:00.0:   NFC Credits: 0x700000
[    2.210746] thunderbolt 0000:05:00.0:   Credits (total/control): 7/0
[    2.210747] thunderbolt 0000:05:00.0: 3:9: disabled by eeprom
[    2.211639] thunderbolt 0000:05:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[    2.211640] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[    2.211641] thunderbolt 0000:05:00.0:   Max counters: 1
[    2.211641] thunderbolt 0000:05:00.0:   NFC Credits: 0x700000
[    2.211642] thunderbolt 0000:05:00.0:   Credits (total/control): 7/0
[    2.212792] thunderbolt 0000:05:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[    2.212793] thunderbolt 0000:05:00.0:   Max hop id (in/out): 9/9
[    2.212793] thunderbolt 0000:05:00.0:   Max counters: 2
[    2.212794] thunderbolt 0000:05:00.0:   NFC Credits: 0x700000
[    2.212794] thunderbolt 0000:05:00.0:   Credits (total/control): 7/0
[    2.212795] thunderbolt 0000:05:00.0: 3:12: disabled by eeprom
[    2.212796] thunderbolt 0000:05:00.0: 3:13: disabled by eeprom
[    2.231453] thunderbolt 0000:05:00.0: 3: TMU: current mode: bi-directional, HiFi
[    2.231472] thunderbolt 0-3: new device found, vendor=0x1 device=0x8002
[    2.231714] thunderbolt 0-3: Apple, Inc. Thunderbolt Display
[    2.232400] thunderbolt 0000:05:00.0: 3:3: is connected, link is up (state: 2)
[    2.232655] thunderbolt 0000:05:00.0: current switch config:
[    2.232655] thunderbolt 0000:05:00.0:  Thunderbolt 1 Switch: 8086:1513 (Revision: 2, TB Version: 1)
[    2.232657] thunderbolt 0000:05:00.0:   Max Port Number: 13
[    2.232657] thunderbolt 0000:05:00.0:   Config:
[    2.232658] thunderbolt 0000:05:00.0:    Upstream Port Number: 0 Depth: 0 Route String: 0x0 Enabled: 0, PlugEventsDelay: 10ms
[    2.232659] thunderbolt 0000:05:00.0:    unknown1: 0x0 unknown4: 0x0
[    2.237260] thunderbolt 0000:05:00.0: initializing Switch at 0x303 (depth: 2, up port: 3)
[    2.254674] thunderbolt 0000:05:00.0: 303: reading drom (length: 0x97)
[    2.396620] random: crng init done
[    2.397207] udevd[1080]: starting eudev-3.2.9
[    2.405662] ACPI: \_TZ_.UAD0: Invalid passive threshold
[    2.405984] thermal LNXTHERM:00: registered as thermal_zone0
[    2.406218] ACPI: thermal: Thermal Zone [UAD0] (17 C)
[    2.407182] ACPI: bus type USB registered
[    2.407443] usbcore: registered new interface driver usbfs
[    2.407723] usbcore: registered new interface driver hub
[    2.407987] usbcore: registered new device driver usb
[    2.408821] ACPI Warning: SystemIO range 0x0000000000000B00-0x0000000000000B08 conflicts with OpRegion 0x0000000000000B00-0x0000000000000B0F (\GSA1.SMBI) (20220331/utaddress-204)
[    2.409347] ACPI: OSL: Resource conflict; ACPI support missing from driver?
[    2.409629] ACPI: OSL: Resource conflict: System may be unstable or behave erratically
[    2.409931] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[    2.410215] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
[    2.410548] ACPI Warning: SystemIO range 0x0000000000000B20-0x0000000000000B28 conflicts with OpRegion 0x0000000000000B20-0x0000000000000B3F (\GSA1.SMG0) (20220331/utaddress-204)
[    2.411199] ACPI: OSL: Resource conflict; ACPI support missing from driver?
[    2.411517] ACPI: OSL: Resource conflict: System may be unstable or behave erratically
[    2.411875] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
[    2.412349] ACPI: bus type drm_connector registered
[    2.412383] cryptd: max_cpu_qlen set to 1000
[    2.412424] xhci_hcd 0000:01:00.0: xHCI Host Controller
[    2.412429] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 1
[    2.414488] AVX2 version of gcm_enc/dec engaged.
[    2.414859] AES CTR mode by8 optimization enabled
[    2.428996] [drm] amdgpu kernel modesetting enabled.
[    2.431734] amdgpu: CRAT table disabled by module option
[    2.432009] amdgpu: Virtual CRAT table created for CPU
[    2.432298] amdgpu: Topology: Add CPU node
[    2.432642] Console: switching to colour dummy device 80x25
[    2.432660] amdgpu 0000:53:00.0: vgaarb: deactivate vga console
[    2.432682] amdgpu 0000:53:00.0: enabling device (0006 -> 0007)
[    2.432702] [drm] initializing kernel modesetting (RENOIR 0x1002:0x1638 0x1458:0xD000 0xC9).
[    2.432709] [drm] register mmio base: 0xEFC00000
[    2.432710] [drm] register mmio size: 524288
[    2.433640] [drm] add ip block number 0 <soc15_common>
[    2.433641] [drm] add ip block number 1 <gmc_v9_0>
[    2.433642] [drm] add ip block number 2 <vega10_ih>
[    2.433643] [drm] add ip block number 3 <psp>
[    2.433644] [drm] add ip block number 4 <smu>
[    2.433645] [drm] add ip block number 5 <dm>
[    2.433646] [drm] add ip block number 6 <gfx_v9_0>
[    2.433646] [drm] add ip block number 7 <sdma_v4_0>
[    2.433647] [drm] add ip block number 8 <vcn_v2_0>
[    2.433648] [drm] add ip block number 9 <jpeg_v2_0>
[    2.433655] amdgpu 0000:53:00.0: amdgpu: Fetched VBIOS from VFCT
[    2.433656] amdgpu: ATOM BIOS: 13-CEZANNE-019
[    2.433674] [drm] VCN decode is enabled in VM mode
[    2.433675] [drm] VCN encode is enabled in VM mode
[    2.433676] [drm] JPEG decode is enabled in VM mode
[    2.433677] amdgpu 0000:53:00.0: amdgpu: Trusted Memory Zone (TMZ) feature enabled
[    2.433680] amdgpu 0000:53:00.0: amdgpu: PCIE atomic ops is not supported
[    2.433684] amdgpu 0000:53:00.0: amdgpu: MODE2 reset
[    2.433957] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[    2.433961] amdgpu 0000:53:00.0: amdgpu: VRAM: 512M 0x000000F400000000 - 0x000000F41FFFFFFF (512M used)
[    2.433963] amdgpu 0000:53:00.0: amdgpu: GART: 1024M 0x0000000000000000 - 0x000000003FFFFFFF
[    2.433965] amdgpu 0000:53:00.0: amdgpu: AGP: 267419648M 0x000000F800000000 - 0x0000FFFFFFFFFFFF
[    2.433970] [drm] Detected VRAM RAM=512M, BAR=512M
[    2.433971] [drm] RAM width 128bits DDR4
[    2.433992] [drm] amdgpu: 512M of VRAM memory ready
[    2.433993] [drm] amdgpu: 15733M of GTT memory ready.
[    2.433999] [drm] GART: num cpu pages 262144, num gpu pages 262144
[    2.434072] [drm] PCIE GART of 1024M enabled.
[    2.434075] [drm] PTB located at 0x000000F400A00000
[    2.434141] amdgpu 0000:53:00.0: amdgpu: PSP runtime database doesn't exist
[    2.434143] amdgpu 0000:53:00.0: amdgpu: PSP runtime database doesn't exist
[    2.434187] [drm] Loading DMUB firmware via PSP: version=0x0101001F
[    2.434509] [drm] Found VCN firmware Version ENC: 1.17 DEC: 5 VEP: 0 Revision: 2
[    2.434514] amdgpu 0000:53:00.0: amdgpu: Will use PSP to load VCN firmware
[    2.467700] xhci_hcd 0000:01:00.0: hcc params 0x0200ef81 hci version 0x110 quirks 0x0000000000000410
[    2.467844] xhci_hcd 0000:01:00.0: xHCI Host Controller
[    2.467847] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 2
[    2.467850] xhci_hcd 0000:01:00.0: Host supports USB 3.1 Enhanced SuperSpeed
[    2.467896] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.19
[    2.467899] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.467900] usb usb1: Product: xHCI Host Controller
[    2.467902] usb usb1: Manufacturer: Linux 5.19.0+ xhci-hcd
[    2.467903] usb usb1: SerialNumber: 0000:01:00.0
[    2.467970] hub 1-0:1.0: USB hub found
[    2.467980] hub 1-0:1.0: 10 ports detected
[    2.468158] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.468166] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.19
[    2.468168] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.468169] usb usb2: Product: xHCI Host Controller
[    2.468170] usb usb2: Manufacturer: Linux 5.19.0+ xhci-hcd
[    2.468172] usb usb2: SerialNumber: 0000:01:00.0
[    2.468215] hub 2-0:1.0: USB hub found
[    2.468220] hub 2-0:1.0: 4 ports detected
[    2.468342] xhci_hcd 0000:28:00.0: xHCI Host Controller
[    2.468345] xhci_hcd 0000:28:00.0: new USB bus registered, assigned bus number 3
[    2.469474] xhci_hcd 0000:28:00.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000200009810
[    2.469720] xhci_hcd 0000:28:00.0: xHCI Host Controller
[    2.469722] xhci_hcd 0000:28:00.0: new USB bus registered, assigned bus number 4
[    2.469724] xhci_hcd 0000:28:00.0: Host supports USB 3.1 Enhanced SuperSpeed
[    2.469742] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.19
[    2.469744] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.469746] usb usb3: Product: xHCI Host Controller
[    2.469747] usb usb3: Manufacturer: Linux 5.19.0+ xhci-hcd
[    2.469748] usb usb3: SerialNumber: 0000:28:00.0
[    2.469801] hub 3-0:1.0: USB hub found
[    2.469807] hub 3-0:1.0: 2 ports detected
[    2.469869] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.19
[    2.469871] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.469873] usb usb4: Product: xHCI Host Controller
[    2.469874] usb usb4: Manufacturer: Linux 5.19.0+ xhci-hcd
[    2.469875] usb usb4: SerialNumber: 0000:28:00.0
[    2.469918] hub 4-0:1.0: USB hub found
[    2.469925] hub 4-0:1.0: 2 ports detected
[    2.470003] xhci_hcd 0000:53:00.3: xHCI Host Controller
[    2.470006] xhci_hcd 0000:53:00.3: new USB bus registered, assigned bus number 5
[    2.470098] xhci_hcd 0000:53:00.3: hcc params 0x0268ffe5 hci version 0x110 quirks 0x0000020000000410
[    2.470227] xhci_hcd 0000:53:00.3: xHCI Host Controller
[    2.470229] xhci_hcd 0000:53:00.3: new USB bus registered, assigned bus number 6
[    2.470231] xhci_hcd 0000:53:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    2.470257] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.19
[    2.470259] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.470260] usb usb5: Product: xHCI Host Controller
[    2.470261] usb usb5: Manufacturer: Linux 5.19.0+ xhci-hcd
[    2.470263] usb usb5: SerialNumber: 0000:53:00.3
[    2.470309] hub 5-0:1.0: USB hub found
[    2.470315] hub 5-0:1.0: 4 ports detected
[    2.470431] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.470440] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.19
[    2.470442] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.470444] usb usb6: Product: xHCI Host Controller
[    2.470445] usb usb6: Manufacturer: Linux 5.19.0+ xhci-hcd
[    2.470446] usb usb6: SerialNumber: 0000:53:00.3
[    2.470486] hub 6-0:1.0: USB hub found
[    2.470489] hub 6-0:1.0: 2 ports detected
[    2.470567] xhci_hcd 0000:53:00.4: xHCI Host Controller
[    2.470570] xhci_hcd 0000:53:00.4: new USB bus registered, assigned bus number 7
[    2.470658] xhci_hcd 0000:53:00.4: hcc params 0x0268ffe5 hci version 0x110 quirks 0x0000020000000410
[    2.470790] xhci_hcd 0000:53:00.4: xHCI Host Controller
[    2.470792] xhci_hcd 0000:53:00.4: new USB bus registered, assigned bus number 8
[    2.470793] xhci_hcd 0000:53:00.4: Host supports USB 3.1 Enhanced SuperSpeed
[    2.470808] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.19
[    2.470810] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.470811] usb usb7: Product: xHCI Host Controller
[    2.470812] usb usb7: Manufacturer: Linux 5.19.0+ xhci-hcd
[    2.470813] usb usb7: SerialNumber: 0000:53:00.4
[    2.470851] hub 7-0:1.0: USB hub found
[    2.470856] hub 7-0:1.0: 4 ports detected
[    2.470962] usb usb8: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.470969] usb usb8: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.19
[    2.470970] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.470972] usb usb8: Product: xHCI Host Controller
[    2.470972] usb usb8: Manufacturer: Linux 5.19.0+ xhci-hcd
[    2.470973] usb usb8: SerialNumber: 0000:53:00.4
[    2.471014] hub 8-0:1.0: USB hub found
[    2.471017] hub 8-0:1.0: 2 ports detected
[    2.753577] thunderbolt 0000:05:00.0: 303: DROM version: 1
[    2.754601] thunderbolt 0000:05:00.0: 303: uid: 0x100010102a740
[    2.757545] thunderbolt 0000:05:00.0:  Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    2.757547] thunderbolt 0000:05:00.0:   Max hop id (in/out): 63/63
[    2.757547] thunderbolt 0000:05:00.0:   Max counters: 32
[    2.757548] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[    2.757549] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[    2.760489] thunderbolt 0000:05:00.0:  Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    2.760490] thunderbolt 0000:05:00.0:   Max hop id (in/out): 63/63
[    2.760491] thunderbolt 0000:05:00.0:   Max counters: 32
[    2.760491] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[    2.760492] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[    2.763432] thunderbolt 0000:05:00.0:  Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    2.763433] thunderbolt 0000:05:00.0:   Max hop id (in/out): 63/63
[    2.763434] thunderbolt 0000:05:00.0:   Max counters: 32
[    2.763434] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[    2.763435] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[    2.766376] thunderbolt 0000:05:00.0:  Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[    2.766377] thunderbolt 0000:05:00.0:   Max hop id (in/out): 63/63
[    2.766378] thunderbolt 0000:05:00.0:   Max counters: 32
[    2.766378] thunderbolt 0000:05:00.0:   NFC Credits: 0x3c00000
[    2.766379] thunderbolt 0000:05:00.0:   Credits (total/control): 60/2
[    2.766380] thunderbolt 0000:05:00.0: 303:5: disabled by eeprom
[    2.766380] thunderbolt 0000:05:00.0: 303:6: disabled by eeprom
[    2.767273] thunderbolt 0000:05:00.0:  Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    2.767274] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[    2.767274] thunderbolt 0000:05:00.0:   Max counters: 1
[    2.767275] thunderbolt 0000:05:00.0:   NFC Credits: 0x700000
[    2.767275] thunderbolt 0000:05:00.0:   Credits (total/control): 7/0
[    2.768168] thunderbolt 0000:05:00.0:  Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[    2.768169] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[    2.768170] thunderbolt 0000:05:00.0:   Max counters: 1
[    2.768170] thunderbolt 0000:05:00.0:   NFC Credits: 0x700000
[    2.768171] thunderbolt 0000:05:00.0:   Credits (total/control): 7/0
[    2.768171] thunderbolt 0000:05:00.0: 303:9: disabled by eeprom
[    2.769064] thunderbolt 0000:05:00.0:  Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[    2.769065] thunderbolt 0000:05:00.0:   Max hop id (in/out): 8/8
[    2.769066] thunderbolt 0000:05:00.0:   Max counters: 1
[    2.769066] thunderbolt 0000:05:00.0:   NFC Credits: 0x700000
[    2.769067] thunderbolt 0000:05:00.0:   Credits (total/control): 7/0
[    2.770216] thunderbolt 0000:05:00.0:  Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[    2.770217] thunderbolt 0000:05:00.0:   Max hop id (in/out): 9/9
[    2.770218] thunderbolt 0000:05:00.0:   Max counters: 2
[    2.770218] thunderbolt 0000:05:00.0:   NFC Credits: 0x700000
[    2.770219] thunderbolt 0000:05:00.0:   Credits (total/control): 7/0
[    2.770219] thunderbolt 0000:05:00.0: 303:12: disabled by eeprom
[    2.770220] thunderbolt 0000:05:00.0: 303:13: disabled by eeprom
[    2.776635] usb 1-2: new high-speed USB device number 2 using xhci_hcd
[    2.788300] thunderbolt 0000:05:00.0: 303: TMU: current mode: bi-directional, HiFi
[    2.788314] thunderbolt 0-303: new device found, vendor=0x1 device=0x8002
[    2.788317] thunderbolt 0-303: Apple, Inc. Thunderbolt Display
[    2.788430] thunderbolt 0000:05:00.0: 303:1: is unplugged (state: 7)
[    2.788698] thunderbolt 0000:05:00.0: 3:3: got plug event for connected port, ignoring
[    2.788702] thunderbolt 0000:05:00.0: 3:4: got plug event for connected port, ignoring
[    2.998257] usb 1-2: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice= 6.54
[    2.998261] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.998264] usb 1-2: Product: USB2.1 Hub
[    2.998265] usb 1-2: Manufacturer: GenesysLogic
[    3.005284] hub 1-2:1.0: USB hub found
[    3.009261] hub 1-2:1.0: 4 ports detected
[    3.127734] usb 2-2: new SuperSpeed USB device number 2 using xhci_hcd
[    3.151902] [drm] reserve 0x400000 from 0xf41f800000 for PSP TMR
[    3.159551] usb 2-2: New USB device found, idVendor=05e3, idProduct=0626, bcdDevice= 6.54
[    3.159555] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.159557] usb 2-2: Product: USB3.1 Hub
[    3.159559] usb 2-2: Manufacturer: GenesysLogic
[    3.165977] hub 2-2:1.0: USB hub found
[    3.166270] hub 2-2:1.0: 4 ports detected
[    3.232018] amdgpu 0000:53:00.0: amdgpu: RAS: optional ras ta ucode is not available
[    3.235062] thunderbolt 0000:05:00.0: acking hot plug event on 303:b
[    3.235066] thunderbolt 0000:05:00.0: acking hot plug event on 303:b
[    3.235197] thunderbolt 0000:05:00.0: 303:11: DP OUT resource available
[    3.235200] thunderbolt 0000:05:00.0: looking for DP IN <-> DP OUT pairs:
[    3.235324] thunderbolt 0000:05:00.0: 0:5: DP IN available
[    3.235452] thunderbolt 0000:05:00.0: 303:11: DP OUT available
[    3.235836] thunderbolt 0000:05:00.0: 0:5: sink 0 allocated
[    3.235838] thunderbolt 0000:05:00.0: 0: allocated DP resource for port 5
[    3.235840] thunderbolt 0000:05:00.0: 303:11: calculating available bandwidth
[    3.235963] thunderbolt 0000:05:00.0: 0:3: link total bandwidth 9000 Mb/s
[    3.235964] thunderbolt 0000:05:00.0: 3:1: link total bandwidth 9000 Mb/s
[    3.236093] thunderbolt 0000:05:00.0: 3:3: link total bandwidth 9000 Mb/s
[    3.236093] thunderbolt 0000:05:00.0: 303:3: link total bandwidth 9000 Mb/s
[    3.236094] thunderbolt 0000:05:00.0: available bandwidth for new DP tunnel 9000/9000 Mb/s
[    3.236099] thunderbolt 0000:05:00.0: 0:5 <-> 303:b (DP): activating
[    3.236101] thunderbolt 0000:05:00.0: activating Video path from 0:5 to 303:11
[    3.236102] thunderbolt 0000:05:00.0: 303:4: adding 12 NFC credits to 0
[    3.236220] thunderbolt 0000:05:00.0: 3:2: adding 12 NFC credits to 0
[    3.236338] thunderbolt 0000:05:00.0: 0:5: adding 12 NFC credits to 0
[    3.236593] thunderbolt 0000:05:00.0: 303:4: Writing hop 2
[    3.236594] thunderbolt 0000:05:00.0: 303:4:  In HopID: 8 => Out port: 11 Out HopID: 9
[    3.236595] thunderbolt 0000:05:00.0: 303:4:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    3.236597] thunderbolt 0000:05:00.0: 303:4:    Counter enabled: 0 Counter index: 2047
[    3.236598] thunderbolt 0000:05:00.0: 303:4:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    3.236599] thunderbolt 0000:05:00.0: 303:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    3.236850] thunderbolt 0000:05:00.0: 3:2: Writing hop 1
[    3.236851] thunderbolt 0000:05:00.0: 3:2:  In HopID: 8 => Out port: 4 Out HopID: 8
[    3.236852] thunderbolt 0000:05:00.0: 3:2:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    3.236852] thunderbolt 0000:05:00.0: 3:2:    Counter enabled: 0 Counter index: 2047
[    3.236853] thunderbolt 0000:05:00.0: 3:2:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    3.236854] thunderbolt 0000:05:00.0: 3:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    3.237106] thunderbolt 0000:05:00.0: 0:5: Writing hop 0
[    3.237106] thunderbolt 0000:05:00.0: 0:5:  In HopID: 9 => Out port: 4 Out HopID: 8
[    3.237107] thunderbolt 0000:05:00.0: 0:5:   Weight: 1 Priority: 1 Credits: 0 Drop: 0
[    3.237108] thunderbolt 0000:05:00.0: 0:5:    Counter enabled: 0 Counter index: 2047
[    3.237108] thunderbolt 0000:05:00.0: 0:5:   Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[    3.237109] thunderbolt 0000:05:00.0: 0:5:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    3.237233] thunderbolt 0000:05:00.0: path activation complete
[    3.237233] thunderbolt 0000:05:00.0: activating AUX TX path from 0:5 to 303:11
[    3.237361] thunderbolt 0000:05:00.0: 303:4: Writing hop 2
[    3.237361] thunderbolt 0000:05:00.0: 303:4:  In HopID: 9 => Out port: 11 Out HopID: 8
[    3.237362] thunderbolt 0000:05:00.0: 303:4:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    3.237363] thunderbolt 0000:05:00.0: 303:4:    Counter enabled: 0 Counter index: 2047
[    3.237363] thunderbolt 0000:05:00.0: 303:4:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    3.237364] thunderbolt 0000:05:00.0: 303:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    3.237617] thunderbolt 0000:05:00.0: 3:2: Writing hop 1
[    3.237617] thunderbolt 0000:05:00.0: 3:2:  In HopID: 9 => Out port: 4 Out HopID: 9
[    3.237618] thunderbolt 0000:05:00.0: 3:2:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    3.237619] thunderbolt 0000:05:00.0: 3:2:    Counter enabled: 0 Counter index: 2047
[    3.237619] thunderbolt 0000:05:00.0: 3:2:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    3.237620] thunderbolt 0000:05:00.0: 3:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    3.237873] thunderbolt 0000:05:00.0: 0:5: Writing hop 0
[    3.237873] thunderbolt 0000:05:00.0: 0:5:  In HopID: 8 => Out port: 4 Out HopID: 9
[    3.237874] thunderbolt 0000:05:00.0: 0:5:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    3.237874] thunderbolt 0000:05:00.0: 0:5:    Counter enabled: 0 Counter index: 2047
[    3.237875] thunderbolt 0000:05:00.0: 0:5:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    3.237875] thunderbolt 0000:05:00.0: 0:5:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    3.238001] thunderbolt 0000:05:00.0: path activation complete
[    3.238001] thunderbolt 0000:05:00.0: activating AUX RX path from 303:11 to 0:5
[    3.238129] thunderbolt 0000:05:00.0: 0:4: Writing hop 2
[    3.238130] thunderbolt 0000:05:00.0: 0:4:  In HopID: 8 => Out port: 5 Out HopID: 8
[    3.238131] thunderbolt 0000:05:00.0: 0:4:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    3.238131] thunderbolt 0000:05:00.0: 0:4:    Counter enabled: 0 Counter index: 2047
[    3.238132] thunderbolt 0000:05:00.0: 0:4:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[    3.238133] thunderbolt 0000:05:00.0: 0:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    3.238385] thunderbolt 0000:05:00.0: 3:4: Writing hop 1
[    3.238385] thunderbolt 0000:05:00.0: 3:4:  In HopID: 8 => Out port: 2 Out HopID: 8
[    3.238386] thunderbolt 0000:05:00.0: 3:4:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    3.238387] thunderbolt 0000:05:00.0: 3:4:    Counter enabled: 0 Counter index: 2047
[    3.238387] thunderbolt 0000:05:00.0: 3:4:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    3.238388] thunderbolt 0000:05:00.0: 3:4:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    3.238641] thunderbolt 0000:05:00.0: 303:11: Writing hop 0
[    3.238641] thunderbolt 0000:05:00.0: 303:11:  In HopID: 8 => Out port: 4 Out HopID: 8
[    3.238642] thunderbolt 0000:05:00.0: 303:11:   Weight: 1 Priority: 2 Credits: 1 Drop: 0
[    3.238642] thunderbolt 0000:05:00.0: 303:11:    Counter enabled: 0 Counter index: 2047
[    3.238643] thunderbolt 0000:05:00.0: 303:11:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[    3.238644] thunderbolt 0000:05:00.0: 303:11:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[    3.238769] thunderbolt 0000:05:00.0: path activation complete
[    3.242587] amdgpu 0000:53:00.0: amdgpu: RAP: optional rap ta ucode is not available
[    3.242589] amdgpu 0000:53:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
[    3.243099] amdgpu 0000:53:00.0: amdgpu: SMU is initialized successfully!
[    3.243326] [drm] Display Core initialized with v3.2.196!
[    3.243871] [drm] DMUB hardware initialized: version=0x0101001F
[    3.289139] [drm] forcing DP-1 connector on
[    3.289170] [drm] Got external EDID base block and 1 extension from "edid.bin" for connector "DP-1"
[    3.289181] [drm] forcing DP-2 connector on
[    3.289200] [drm] Got external EDID base block and 1 extension from "edid1.bin" for connector "DP-2"
[    3.290925] [drm] kiq ring mec 2 pipe 1 q 0
[    3.293198] [drm] VCN decode and encode initialized successfully(under DPG Mode).
[    3.293209] [drm] JPEG decode initialized successfully.
[    3.294461] kfd kfd: amdgpu: Allocated 3969056 bytes on gart
[    3.294505] amdgpu: sdma_bitmap: 3
[    3.294520] amdgpu: SRAT table not found
[    3.294521] amdgpu: Virtual CRAT table created for GPU
[    3.295046] amdgpu: Topology: Add dGPU node [0x1638:0x1002]
[    3.295048] kfd kfd: amdgpu: added device 1002:1638
[    3.295103] amdgpu 0000:53:00.0: amdgpu: SE 1, SH per SE 1, CU per SH 8, active_cu_number 7
[    3.295135] amdgpu 0000:53:00.0: amdgpu: ring gfx uses VM inv eng 0 on hub 0
[    3.295138] amdgpu 0000:53:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[    3.295141] amdgpu 0000:53:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[    3.295143] amdgpu 0000:53:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
[    3.295145] amdgpu 0000:53:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
[    3.295146] amdgpu 0000:53:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
[    3.295148] amdgpu 0000:53:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
[    3.295149] amdgpu 0000:53:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
[    3.295150] amdgpu 0000:53:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
[    3.295151] amdgpu 0000:53:00.0: amdgpu: ring kiq_2.1.0 uses VM inv eng 11 on hub 0
[    3.295153] amdgpu 0000:53:00.0: amdgpu: ring sdma0 uses VM inv eng 0 on hub 1
[    3.295154] amdgpu 0000:53:00.0: amdgpu: ring vcn_dec uses VM inv eng 1 on hub 1
[    3.295155] amdgpu 0000:53:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 4 on hub 1
[    3.295156] amdgpu 0000:53:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 5 on hub 1
[    3.295157] amdgpu 0000:53:00.0: amdgpu: ring jpeg_dec uses VM inv eng 6 on hub 1
[    3.295825] [drm] Initialized amdgpu 3.48.0 20150101 for 0000:53:00.0 on minor 0
[    3.298513] fbcon: amdgpudrmfb (fb0) is primary device
[    3.298567] [drm] DSC precompute is not needed.
[    3.306641] usb 1-6: new high-speed USB device number 3 using xhci_hcd
[    3.453347] Console: switching to colour frame buffer device 320x90
[    3.470458] amdgpu 0000:53:00.0: [drm] fb0: amdgpudrmfb frame buffer device
[    3.506410] usb 1-6: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice=85.36
[    3.506425] usb 1-6: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    3.506432] usb 1-6: Product: USB2.0 Hub
[    3.515254] hub 1-6:1.0: USB hub found
[    3.519232] hub 1-6:1.0: 4 ports detected
[    3.626621] usb 1-2.3: new high-speed USB device number 4 using xhci_hcd
[    3.766773] device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com
[    3.828389] usb 1-2.3: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice= 6.54
[    3.828404] usb 1-2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.828411] usb 1-2.3: Product: USB2.1 Hub
[    3.828415] usb 1-2.3: Manufacturer: GenesysLogic
[    3.838259] hub 1-2.3:1.0: USB hub found
[    3.842389] hub 1-2.3:1.0: 4 ports detected
[    3.917640] usb 2-2.3: new SuperSpeed USB device number 3 using xhci_hcd
[    3.951403] usb 2-2.3: New USB device found, idVendor=05e3, idProduct=0626, bcdDevice= 6.54
[    3.951419] usb 2-2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.951426] usb 2-2.3: Product: USB3.1 Hub
[    3.951430] usb 2-2.3: Manufacturer: GenesysLogic
[    3.960231] hub 2-2.3:1.0: USB hub found
[    3.960722] hub 2-2.3:1.0: 4 ports detected
[    4.106944] usb 1-7: new full-speed USB device number 5 using xhci_hcd
[    4.466950] usb 1-6.3: new high-speed USB device number 6 using xhci_hcd
[    4.620368] usb 1-6.3: New USB device found, idVendor=2109, idProduct=2812, bcdDevice= b.e0
[    4.620383] usb 1-6.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.620390] usb 1-6.3: Product: USB2.0 Hub             
[    4.620395] usb 1-6.3: Manufacturer: VIA Labs, Inc.         
[    4.630496] hub 1-6.3:1.0: USB hub found
[    4.633366] hub 1-6.3:1.0: 4 ports detected
[    4.722124] [drm] Adding stream 0000000048d45044 to context failed with err 28!
[    4.722143] [drm:handle_hpd_irq_helper [amdgpu]] *ERROR* Restoring old state failed with -22
[    4.986833] usb 1-6.3.2: new high-speed USB device number 7 using xhci_hcd
[    5.153353] usb 1-6.3.2: New USB device found, idVendor=05ac, idProduct=1006, bcdDevice=96.15
[    5.153369] usb 1-6.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    5.153377] usb 1-6.3.2: Product: Keyboard Hub
[    5.153381] usb 1-6.3.2: Manufacturer: Apple, Inc.
[    5.153386] usb 1-6.3.2: SerialNumber: 000000000000
[    5.164484] hub 1-6.3.2:1.0: USB hub found
[    5.167346] hub 1-6.3.2:1.0: 3 ports detected
[    5.336823] usb 1-6.3.3: new low-speed USB device number 8 using xhci_hcd
[    5.658354] usb 1-6.3.3: New USB device found, idVendor=047d, idProduct=1020, bcdDevice= 1.06
[    5.658369] usb 1-6.3.3: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    5.658376] usb 1-6.3.3: Product: Kensington Expert Mouse
[    5.674210] hid: raw HID events driver (C) Jiri Kosina
[    5.696200] usbcore: registered new interface driver usbhid
[    5.696217] usbhid: USB HID core driver
[    5.696676] input: Kensington Expert Mouse as /devices/pci0000:00/0000:00:02.1/0000:01:00.0/usb1/1-6/1-6.3/1-6.3.3/1-6.3.3:1.0/0003:047D:1020.0001/input/input1
[    5.696736] hid-generic 0003:047D:1020.0001: input,hidraw0: USB HID v1.11 Mouse [Kensington Expert Mouse] on usb-0000:01:00.0-6.3.3/input0
[    5.766799] usb 1-6.3.2.2: new low-speed USB device number 9 using xhci_hcd
[    6.038334] usb 1-6.3.2.2: New USB device found, idVendor=05ac, idProduct=0220, bcdDevice= 0.71
[    6.038350] usb 1-6.3.2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    6.038358] usb 1-6.3.2.2: Product: Apple Keyboard
[    6.038363] usb 1-6.3.2.2: Manufacturer: Apple, Inc
[    6.110380] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:02.1/0000:01:00.0/usb1/1-6/1-6.3/1-6.3.2/1-6.3.2.2/1-6.3.2.2:1.0/0003:05AC:0220.0002/input/input2
[    6.176943] apple 0003:05AC:0220.0002: input,hidraw1: USB HID v1.11 Keyboard [Apple, Inc Apple Keyboard] on usb-0000:01:00.0-6.3.2.2/input0
[    6.177458] apple 0003:05AC:0220.0003: Fn key not found (Apple Wireless Keyboard clone?), disabling Fn key handling
[    6.177901] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:02.1/0000:01:00.0/usb1/1-6/1-6.3/1-6.3.2/1-6.3.2.2/1-6.3.2.2:1.1/0003:05AC:0220.0003/input/input3
[    6.186836] usb 1-6.3.4: new high-speed USB device number 10 using xhci_hcd
[    6.256918] apple 0003:05AC:0220.0003: input,hidraw2: USB HID v1.11 Device [Apple, Inc Apple Keyboard] on usb-0000:01:00.0-6.3.2.2/input1
[    6.381323] usb 1-6.3.4: New USB device found, idVendor=0bda, idProduct=8153, bcdDevice=30.00
[    6.381773] usb 1-6.3.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    6.382175] usb 1-6.3.4: Product: USB 10/100/1000 LAN
[    6.382560] usb 1-6.3.4: Manufacturer: Realtek
[    6.382932] usb 1-6.3.4: SerialNumber: F01E341F8303
[    9.481141] usb 1-7: New USB device found, idVendor=048d, idProduct=5702, bcdDevice= 0.01
[    9.481580] usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    9.482001] usb 1-7: Product: ITE Device
[    9.482376] usb 1-7: Manufacturer: ITE Tech. Inc.
[    9.500894] hid-generic 0003:048D:5702.0004: hiddev96,hidraw3: USB HID v1.12 Device [ITE Tech. Inc. ITE Device] on usb-0000:01:00.0-7/input0
[    9.646856] usb 1-10: new high-speed USB device number 11 using xhci_hcd
[    9.846217] usb 1-10: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice=85.36
[    9.846670] usb 1-10: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    9.847091] usb 1-10: Product: USB2.0 Hub
[    9.862270] hub 1-10:1.0: USB hub found
[    9.866201] hub 1-10:1.0: 4 ports detected
[    9.926858] RTL8226B_RTL8221B 2.5Gbps PHY r8169-0-4e00:00: attached PHY driver (mii_bus:phy_addr=r8169-0-4e00:00, irq=MAC)
[   10.207002] r8169 0000:4e:00.0 eth1: Link is Down
[   13.345028] r8169 0000:4e:00.0 eth1: Link is Up - 1Gbps/Full - flow control off
[   14.725324] r8169 0000:4e:00.0 eth1: Link is Down
[   17.255804] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Quota mode: none.
[   17.531014] udevd[1547]: starting version 3.2.9
[   17.565943] udevd[1548]: starting eudev-3.2.9
[   17.583433] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input4
[   17.584050] ACPI: button: Power Button [PWRB]
[   17.584744] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
[   17.592493] thunderbolt 0000:05:00.0: 0:9 <-> 3:a (PCI): activating
[   17.592498] thunderbolt 0000:05:00.0: activating PCIe Down path from 0:9 to 3:10
[   17.592619] thunderbolt 0000:05:00.0: 3:1: Writing hop 1
[   17.592621] thunderbolt 0000:05:00.0: 3:1:  In HopID: 8 => Out port: 10 Out HopID: 8
[   17.592622] thunderbolt 0000:05:00.0: 3:1:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   17.592623] thunderbolt 0000:05:00.0: 3:1:    Counter enabled: 0 Counter index: 2047
[   17.592623] thunderbolt 0000:05:00.0: 3:1:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   17.592624] thunderbolt 0000:05:00.0: 3:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   17.593143] thunderbolt 0000:05:00.0: 0:9: Writing hop 0
[   17.593145] thunderbolt 0000:05:00.0: 0:9:  In HopID: 8 => Out port: 3 Out HopID: 8
[   17.593146] thunderbolt 0000:05:00.0: 0:9:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   17.593147] thunderbolt 0000:05:00.0: 0:9:    Counter enabled: 0 Counter index: 2047
[   17.593149] thunderbolt 0000:05:00.0: 0:9:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   17.593150] thunderbolt 0000:05:00.0: 0:9:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   17.593256] thunderbolt 0000:05:00.0: path activation complete
[   17.593257] thunderbolt 0000:05:00.0: activating PCIe Up path from 3:10 to 0:9
[   17.593640] thunderbolt 0000:05:00.0: 0:3: Writing hop 1
[   17.593642] thunderbolt 0000:05:00.0: 0:3:  In HopID: 8 => Out port: 9 Out HopID: 8
[   17.593644] thunderbolt 0000:05:00.0: 0:3:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   17.593646] thunderbolt 0000:05:00.0: 0:3:    Counter enabled: 0 Counter index: 2047
[   17.593647] thunderbolt 0000:05:00.0: 0:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   17.593648] thunderbolt 0000:05:00.0: 0:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   17.594011] thunderbolt 0000:05:00.0: 3:10: Writing hop 0
[   17.594013] thunderbolt 0000:05:00.0: 3:10:  In HopID: 8 => Out port: 1 Out HopID: 8
[   17.594013] thunderbolt 0000:05:00.0: 3:10:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   17.594014] thunderbolt 0000:05:00.0: 3:10:    Counter enabled: 0 Counter index: 2047
[   17.594015] thunderbolt 0000:05:00.0: 3:10:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   17.594015] thunderbolt 0000:05:00.0: 3:10:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   17.594034] thunderbolt 0000:05:00.0: path activation complete
[   17.594761] thunderbolt 0000:05:00.0: 3:7 <-> 303:a (PCI): activating
[   17.594764] thunderbolt 0000:05:00.0: activating PCIe Down path from 3:7 to 303:10
[   17.594888] thunderbolt 0000:05:00.0: 303:3: Writing hop 1
[   17.594889] thunderbolt 0000:05:00.0: 303:3:  In HopID: 8 => Out port: 10 Out HopID: 8
[   17.594891] thunderbolt 0000:05:00.0: 303:3:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   17.594892] thunderbolt 0000:05:00.0: 303:3:    Counter enabled: 0 Counter index: 2047
[   17.594893] thunderbolt 0000:05:00.0: 303:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   17.594894] thunderbolt 0000:05:00.0: 303:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   17.595144] thunderbolt 0000:05:00.0: 3:7: Writing hop 0
[   17.595145] thunderbolt 0000:05:00.0: 3:7:  In HopID: 8 => Out port: 3 Out HopID: 8
[   17.595146] thunderbolt 0000:05:00.0: 3:7:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   17.595147] thunderbolt 0000:05:00.0: 3:7:    Counter enabled: 0 Counter index: 2047
[   17.595148] thunderbolt 0000:05:00.0: 3:7:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   17.595149] thunderbolt 0000:05:00.0: 3:7:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   17.595272] thunderbolt 0000:05:00.0: path activation complete
[   17.595273] thunderbolt 0000:05:00.0: activating PCIe Up path from 303:10 to 3:7
[   17.595397] thunderbolt 0000:05:00.0: 3:3: Writing hop 1
[   17.595399] thunderbolt 0000:05:00.0: 3:3:  In HopID: 8 => Out port: 7 Out HopID: 8
[   17.595400] thunderbolt 0000:05:00.0: 3:3:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[   17.595401] thunderbolt 0000:05:00.0: 3:3:    Counter enabled: 0 Counter index: 2047
[   17.595402] thunderbolt 0000:05:00.0: 3:3:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[   17.595403] thunderbolt 0000:05:00.0: 3:3:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   17.595657] thunderbolt 0000:05:00.0: 303:10: Writing hop 0
[   17.595658] thunderbolt 0000:05:00.0: 303:10:  In HopID: 8 => Out port: 3 Out HopID: 8
[   17.595659] thunderbolt 0000:05:00.0: 303:10:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[   17.595661] thunderbolt 0000:05:00.0: 303:10:    Counter enabled: 0 Counter index: 2047
[   17.595662] thunderbolt 0000:05:00.0: 303:10:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[   17.595663] thunderbolt 0000:05:00.0: 303:10:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[   17.595788] thunderbolt 0000:05:00.0: path activation complete
[   17.612605] mousedev: PS/2 mouse device common for all mice
[   17.614397] SVM: TSC scaling supported
[   17.614763] kvm: Nested Virtualization enabled
[   17.615126] SVM: kvm: Nested Paging enabled
[   17.615490] SVM: Virtual VMLOAD VMSAVE supported
[   17.615858] SVM: Virtual GIF supported
[   17.616218] SVM: LBR virtualization supported
[   17.616645] ACPI: button: Power Button [PWRF]
[   17.616844] pcieport 0000:04:04.0: pciehp: Slot(4): Card present
[   17.624951] snd_hda_intel 0000:53:00.1: enabling device (0000 -> 0002)
[   17.625492] snd_hda_intel 0000:53:00.6: enabling device (0000 -> 0002)
[   17.630486] snd_hda_intel 0000:53:00.1: bound 0000:53:00.0 (ops amdgpu_exit [amdgpu])
[   17.631547] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:08.1/0000:53:00.1/sound/card0/input6
[   17.631948] input: HD-Audio Generic HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:08.1/0000:53:00.1/sound/card0/input7
[   17.632330] input: HD-Audio Generic HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:08.1/0000:53:00.1/sound/card0/input8
[   17.632708] input: HD-Audio Generic HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:08.1/0000:53:00.1/sound/card0/input9
[   17.642270] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC1220: line_outs=3 (0x14/0x15/0x16/0x0/0x0) type:line
[   17.642653] snd_hda_codec_realtek hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   17.643023] snd_hda_codec_realtek hdaudioC1D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[   17.643372] snd_hda_codec_realtek hdaudioC1D0:    mono: mono_out=0x0
[   17.643727] snd_hda_codec_realtek hdaudioC1D0:    dig-out=0x1e/0x0
[   17.644078] snd_hda_codec_realtek hdaudioC1D0:    inputs:
[   17.644079] snd_hda_codec_realtek hdaudioC1D0:      Front Mic=0x19
[   17.644080] snd_hda_codec_realtek hdaudioC1D0:      Rear Mic=0x18
[   17.644080] snd_hda_codec_realtek hdaudioC1D0:      Line=0x1a
[   17.727287] input: HD-Audio Generic Front Mic as /devices/pci0000:00/0000:00:08.1/0000:53:00.6/sound/card1/input10
[   17.727725] input: HD-Audio Generic Rear Mic as /devices/pci0000:00/0000:00:08.1/0000:53:00.6/sound/card1/input11
[   17.728134] input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:08.1/0000:53:00.6/sound/card1/input12
[   17.728537] input: HD-Audio Generic Line Out Front as /devices/pci0000:00/0000:00:08.1/0000:53:00.6/sound/card1/input13
[   17.728872] input: HD-Audio Generic Line Out Surround as /devices/pci0000:00/0000:00:08.1/0000:53:00.6/sound/card1/input14
[   17.729309] input: HD-Audio Generic Line Out CLFE as /devices/pci0000:00/0000:00:08.1/0000:53:00.6/sound/card1/input15
[   17.729724] input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:08.1/0000:53:00.6/sound/card1/input16
[   17.786946] pci 0000:29:00.0: [8086:1513] type 01 class 0x060400
[   17.787533] pci 0000:29:00.0: enabling Extended Tags
[   17.788054] pci 0000:29:00.0: supports D1 D2
[   17.788360] pci 0000:29:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   17.788817] pcieport 0000:04:04.0: ASPM: current common clock configuration is inconsistent, reconfiguring
[   17.816885] pci 0000:29:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   17.817446] pci 0000:2a:00.0: [8086:1513] type 01 class 0x060400
[   17.817884] pci 0000:2a:00.0: enabling Extended Tags
[   17.818372] pci 0000:2a:00.0: supports D1 D2
[   17.818676] pci 0000:2a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   17.819147] pci 0000:2a:01.0: [8086:1513] type 01 class 0x060400
[   17.819567] pci 0000:2a:01.0: enabling Extended Tags
[   17.820046] pci 0000:2a:01.0: supports D1 D2
[   17.820343] pci 0000:2a:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[   17.820795] pci 0000:2a:02.0: [8086:1513] type 01 class 0x060400
[   17.821204] pci 0000:2a:02.0: enabling Extended Tags
[   17.821673] pci 0000:2a:02.0: supports D1 D2
[   17.821959] pci 0000:2a:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[   17.822410] pci 0000:2a:04.0: [8086:1513] type 01 class 0x060400
[   17.822816] pci 0000:2a:04.0: enabling Extended Tags
[   17.823279] pci 0000:2a:04.0: supports D1 D2
[   17.823564] pci 0000:2a:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[   17.824015] pci 0000:2a:05.0: [8086:1513] type 01 class 0x060400
[   17.824420] pci 0000:2a:05.0: enabling Extended Tags
[   17.824889] pci 0000:2a:05.0: supports D1 D2
[   17.825176] pci 0000:2a:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[   17.825640] pci 0000:29:00.0: PCI bridge to [bus 2a-4a]
[   17.825948] pci 0000:29:00.0:   bridge window [io  0x0000-0x0fff]
[   17.826243] pci 0000:29:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   17.826541] pci 0000:29:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   17.826908] pci 0000:2a:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   17.827205] pci 0000:2a:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   17.827502] pci 0000:2a:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   17.827796] pci 0000:2a:04.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   17.828089] pci 0000:2a:05.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   17.828512] pci 0000:2b:00.0: [12d8:400c] type 01 class 0x060400
[   17.829155] pci 0000:2b:00.0: supports D1 D2
[   17.829429] pci 0000:2b:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   17.856697] pci 0000:2a:00.0: PCI bridge to [bus 2b-4a]
[   17.857035] pci 0000:2a:00.0:   bridge window [io  0x0000-0x0fff]
[   17.857366] pci 0000:2a:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   17.857664] pci 0000:2a:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   17.857962] pci 0000:2b:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   17.858471] pci 0000:2c:03.0: [12d8:400c] type 01 class 0x060400
[   17.859077] pci 0000:2c:03.0: supports D1 D2
[   17.859352] pci 0000:2c:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[   17.859839] pci 0000:2b:00.0: PCI bridge to [bus 2c-4a]
[   17.860137] pci 0000:2b:00.0:   bridge window [io  0x0000-0x0fff]
[   17.860428] pci 0000:2b:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   17.860725] pci 0000:2b:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   17.861010] pci 0000:2c:03.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   17.861486] pci 0000:2d:00.0: [12d8:400e] type 00 class 0x0c0310
[   17.861819] pci 0000:2d:00.0: reg 0x10: [mem 0x00000000-0x00000fff]
[   17.862354] pci 0000:2d:00.0: supports D1 D2
[   17.862631] pci 0000:2d:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   17.863052] pci 0000:2d:00.1: [12d8:400e] type 00 class 0x0c0310
[   17.863371] pci 0000:2d:00.1: reg 0x10: [mem 0x00000000-0x00000fff]
[   17.863919] pci 0000:2d:00.1: supports D1 D2
[   17.864191] pci 0000:2d:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[   17.864577] pci 0000:2d:00.2: [12d8:400f] type 00 class 0x0c0320
[   17.864896] pci 0000:2d:00.2: reg 0x10: [mem 0x00000000-0x000000ff]
[   17.865423] pci 0000:2d:00.2: supports D1 D2
[   17.865691] pci 0000:2d:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[   17.866332] pci 0000:2c:03.0: PCI bridge to [bus 2d-4a]
[   17.866640] pci 0000:2c:03.0:   bridge window [io  0x0000-0x0fff]
[   17.866936] pci 0000:2c:03.0:   bridge window [mem 0x00000000-0x000fffff]
[   17.867232] pci 0000:2c:03.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   17.867506] pci_bus 0000:2d: busn_res: [bus 2d-4a] end is updated to 2d
[   17.867785] pci_bus 0000:2c: busn_res: [bus 2c-4a] end is updated to 2d
[   17.868063] pci_bus 0000:2b: busn_res: [bus 2b-4a] end is updated to 2d
[   17.868468] pci 0000:2e:00.0: [14e4:16b0] type 00 class 0x020000
[   17.868794] pci 0000:2e:00.0: reg 0x10: [mem 0x00000000-0x0000ffff 64bit pref]
[   17.869110] pci 0000:2e:00.0: reg 0x18: [mem 0x00000000-0x0000ffff 64bit pref]
[   17.869687] pci 0000:2e:00.0: PME# supported from D0 D3hot D3cold
[   17.896931] pci 0000:2a:01.0: PCI bridge to [bus 2e-4a]
[   17.897258] pci 0000:2a:01.0:   bridge window [io  0x0000-0x0fff]
[   17.897553] pci 0000:2a:01.0:   bridge window [mem 0x00000000-0x000fffff]
[   17.897831] pci 0000:2a:01.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   17.898096] pci_bus 0000:2e: busn_res: [bus 2e-4a] end is updated to 2e
[   17.898525] pci 0000:2f:00.0: [11c1:5901] type 00 class 0x0c0010
[   17.898868] pci 0000:2f:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[   17.899461] pci 0000:2f:00.0: supports D1 D2
[   17.899729] pci 0000:2f:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   17.907234] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   17.907875] ehci-pci: EHCI PCI platform driver
[   17.908319] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[   17.909018] ohci-pci: OHCI PCI platform driver
[   17.926698] pci 0000:2a:02.0: PCI bridge to [bus 2f-4a]
[   17.927108] pci 0000:2a:02.0:   bridge window [io  0x0000-0x0fff]
[   17.927412] pci 0000:2a:02.0:   bridge window [mem 0x00000000-0x000fffff]
[   17.927732] pci 0000:2a:02.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   17.927990] pci_bus 0000:2f: busn_res: [bus 2f-4a] end is updated to 2f
[   17.928433] pci 0000:30:00.0: [8086:1513] type 01 class 0x060400
[   17.928843] pci 0000:30:00.0: enabling Extended Tags
[   17.929358] pci 0000:30:00.0: supports D1 D2
[   17.929609] pci 0000:30:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   17.956914] pci 0000:2a:04.0: PCI bridge to [bus 30-4a]
[   17.957229] pci 0000:2a:04.0:   bridge window [io  0x0000-0x0fff]
[   17.957519] pci 0000:2a:04.0:   bridge window [mem 0x00000000-0x000fffff]
[   17.957789] pci 0000:2a:04.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   17.958048] pci 0000:30:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   17.958542] pci 0000:31:00.0: [8086:1513] type 01 class 0x060400
[   17.958958] pci 0000:31:00.0: enabling Extended Tags
[   17.959472] pci 0000:31:00.0: supports D1 D2
[   17.959719] pci 0000:31:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   17.960210] pci 0000:31:01.0: [8086:1513] type 01 class 0x060400
[   17.960622] pci 0000:31:01.0: enabling Extended Tags
[   17.961128] pci 0000:31:01.0: supports D1 D2
[   17.961376] pci 0000:31:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[   17.961849] pci 0000:31:02.0: [8086:1513] type 01 class 0x060400
[   17.962267] pci 0000:31:02.0: enabling Extended Tags
[   17.962772] pci 0000:31:02.0: supports D1 D2
[   17.963019] pci 0000:31:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[   17.963500] pci 0000:31:04.0: [8086:1513] type 01 class 0x060400
[   17.963908] pci 0000:31:04.0: enabling Extended Tags
[   17.964418] pci 0000:31:04.0: supports D1 D2
[   17.964664] pci 0000:31:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[   17.965144] pci 0000:31:05.0: [8086:1513] type 01 class 0x060400
[   17.965555] pci 0000:31:05.0: enabling Extended Tags
[   17.966061] pci 0000:31:05.0: supports D1 D2
[   17.966309] pci 0000:31:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[   17.966901] pci 0000:30:00.0: PCI bridge to [bus 31-4a]
[   17.967180] pci 0000:30:00.0:   bridge window [io  0x0000-0x0fff]
[   17.967444] pci 0000:30:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   17.967727] pci 0000:30:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   17.967990] pci 0000:31:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   17.968270] pci 0000:31:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   17.968548] pci 0000:31:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   17.968824] pci 0000:31:04.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   17.969097] pci 0000:31:05.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   17.969555] pci 0000:32:00.0: [12d8:400c] type 01 class 0x060400
[   17.970305] pci 0000:32:00.0: supports D1 D2
[   17.970557] pci 0000:32:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   17.971081] pci 0000:31:00.0: PCI bridge to [bus 32-4a]
[   17.971371] pci 0000:31:00.0:   bridge window [io  0x0000-0x0fff]
[   17.971642] pci 0000:31:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   17.971919] pci 0000:31:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   17.972186] pci 0000:32:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   17.972735] pci 0000:33:03.0: [12d8:400c] type 01 class 0x060400
[   17.973408] pci 0000:33:03.0: supports D1 D2
[   17.973657] pci 0000:33:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[   17.974166] pci 0000:32:00.0: PCI bridge to [bus 33-4a]
[   17.974448] pci 0000:32:00.0:   bridge window [io  0x0000-0x0fff]
[   17.974710] pci 0000:32:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   17.974981] pci 0000:32:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   17.975238] pci 0000:33:03.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   17.975751] pci 0000:34:00.0: [12d8:400e] type 00 class 0x0c0310
[   17.976071] pci 0000:34:00.0: reg 0x10: [mem 0x00000000-0x00000fff]
[   17.976785] pci 0000:34:00.0: supports D1 D2
[   17.977035] pci 0000:34:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   17.977834] pci 0000:34:00.1: [12d8:400e] type 00 class 0x0c0310
[   17.978149] pci 0000:34:00.1: reg 0x10: [mem 0x00000000-0x00000fff]
[   17.978757] pci 0000:34:00.1: supports D1 D2
[   17.979004] pci 0000:34:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[   17.979412] pci 0000:34:00.2: [12d8:400f] type 00 class 0x0c0320
[   17.979724] pci 0000:34:00.2: reg 0x10: [mem 0x00000000-0x000000ff]
[   17.980333] pci 0000:34:00.2: supports D1 D2
[   17.980581] pci 0000:34:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[   17.981339] pci 0000:33:03.0: PCI bridge to [bus 34-4a]
[   17.981615] pci 0000:33:03.0:   bridge window [io  0x0000-0x0fff]
[   17.981880] pci 0000:33:03.0:   bridge window [mem 0x00000000-0x000fffff]
[   17.982153] pci 0000:33:03.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   17.982403] pci_bus 0000:34: busn_res: [bus 34-4a] end is updated to 34
[   17.982672] pci_bus 0000:33: busn_res: [bus 33-4a] end is updated to 34
[   17.982931] pci_bus 0000:32: busn_res: [bus 32-4a] end is updated to 34
[   17.983371] pci 0000:35:00.0: [14e4:16b0] type 00 class 0x020000
[   17.983706] pci 0000:35:00.0: reg 0x10: [mem 0x00000000-0x0000ffff 64bit pref]
[   17.984006] pci 0000:35:00.0: reg 0x18: [mem 0x00000000-0x0000ffff 64bit pref]
[   17.984666] pci 0000:35:00.0: PME# supported from D0 D3hot D3cold
[   17.985238] pci 0000:31:01.0: PCI bridge to [bus 35-4a]
[   17.985512] pci 0000:31:01.0:   bridge window [io  0x0000-0x0fff]
[   17.985780] pci 0000:31:01.0:   bridge window [mem 0x00000000-0x000fffff]
[   17.986053] pci 0000:31:01.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   17.986308] pci_bus 0000:35: busn_res: [bus 35-4a] end is updated to 35
[   17.986804] pci 0000:36:00.0: [11c1:5901] type 00 class 0x0c0010
[   17.987139] pci 0000:36:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[   17.987787] pci 0000:36:00.0: supports D1 D2
[   17.988034] pci 0000:36:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   17.988581] pci 0000:31:02.0: PCI bridge to [bus 36-4a]
[   17.988860] pci 0000:31:02.0:   bridge window [io  0x0000-0x0fff]
[   17.989125] pci 0000:31:02.0:   bridge window [mem 0x00000000-0x000fffff]
[   17.989397] pci 0000:31:02.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   17.989652] pci_bus 0000:36: busn_res: [bus 36-4a] end is updated to 36
[   17.990020] pci 0000:31:04.0: PCI bridge to [bus 37-4a]
[   17.990299] pci 0000:31:04.0:   bridge window [io  0x0000-0x0fff]
[   17.990566] pci 0000:31:04.0:   bridge window [mem 0x00000000-0x000fffff]
[   17.990837] pci 0000:31:04.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   17.991096] pci_bus 0000:37: busn_res: [bus 37-4a] end is updated to 3d
[   17.991469] pci 0000:31:05.0: PCI bridge to [bus 3e-4a]
[   17.991746] pci 0000:31:05.0:   bridge window [io  0x0000-0x0fff]
[   17.992014] pci 0000:31:05.0:   bridge window [mem 0x00000000-0x000fffff]
[   17.992288] pci 0000:31:05.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   17.992542] pci_bus 0000:3e: busn_res: [bus 3e-4a] end is updated to 3f
[   17.992797] pci_bus 0000:31: busn_res: [bus 31-4a] end is updated to 3f
[   17.993054] pci_bus 0000:30: busn_res: [bus 30-4a] end is updated to 3f
[   17.993388] pci 0000:2a:05.0: PCI bridge to [bus 40-4a]
[   17.993649] pci 0000:2a:05.0:   bridge window [io  0x0000-0x0fff]
[   17.993902] pci 0000:2a:05.0:   bridge window [mem 0x00000000-0x000fffff]
[   17.994159] pci 0000:2a:05.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   17.994401] pci_bus 0000:40: busn_res: [bus 40-4a] end is updated to 4a
[   17.994655] pci_bus 0000:2a: busn_res: [bus 2a-4a] end is updated to 4a
[   17.994909] pci 0000:31:04.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 37-3d] add_size 100000 add_align 100000
[   17.995160] pci 0000:31:04.0: bridge window [mem 0x00100000-0x001fffff] to [bus 37-3d] add_size 100000 add_align 100000
[   17.995410] pci 0000:31:05.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 3e-3f] add_size 100000 add_align 100000
[   17.995662] pci 0000:31:05.0: bridge window [mem 0x00100000-0x001fffff] to [bus 3e-3f] add_size 100000 add_align 100000
[   17.995915] pci 0000:30:00.0: bridge window [mem 0x00100000-0x005fffff 64bit pref] to [bus 31-3f] add_size 200000 add_align 100000
[   17.996172] pci 0000:30:00.0: bridge window [mem 0x00100000-0x005fffff] to [bus 31-3f] add_size 200000 add_align 100000
[   17.996429] pci 0000:2a:04.0: bridge window [mem 0x00100000-0x005fffff 64bit pref] to [bus 30-3f] add_size 200000 add_align 100000
[   17.996788] pci 0000:2a:04.0: bridge window [mem 0x00100000-0x005fffff] to [bus 30-3f] add_size 200000 add_align 100000
[   17.997050] pci 0000:2a:05.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 40-4a] add_size 100000 add_align 100000
[   17.997312] pci 0000:2a:05.0: bridge window [mem 0x00100000-0x001fffff] to [bus 40-4a] add_size 100000 add_align 100000
[   17.997573] pci 0000:29:00.0: bridge window [mem 0x00100000-0x009fffff 64bit pref] to [bus 2a-4a] add_size 300000 add_align 100000
[   17.997830] pci 0000:29:00.0: bridge window [mem 0x00100000-0x009fffff] to [bus 2a-4a] add_size 300000 add_align 100000
[   17.998091] pcieport 0000:04:04.0: BAR 7: no space for [io  size 0x9000]
[   17.998352] pcieport 0000:04:04.0: BAR 7: failed to assign [io  size 0x9000]
[   17.998613] pci 0000:29:00.0: BAR 8: assigned [mem 0xdf000000-0xe6ffffff]
[   17.998879] pci 0000:29:00.0: BAR 9: assigned [mem 0xa0000000-0xa1ffffff 64bit pref]
[   17.999144] pci 0000:29:00.0: BAR 7: no space for [io  size 0x9000]
[   17.999412] pci 0000:29:00.0: BAR 7: failed to assign [io  size 0x9000]
[   17.999683] pci 0000:2a:00.0: BAR 8: assigned [mem 0xdf000000-0xdf0fffff]
[   17.999950] pci 0000:2a:00.0: BAR 9: assigned [mem 0xa0000000-0xa00fffff 64bit pref]
[   18.000219] pci 0000:2a:01.0: BAR 8: assigned [mem 0xdf100000-0xdf1fffff]
[   18.000487] pci 0000:2a:01.0: BAR 9: assigned [mem 0xa0100000-0xa01fffff 64bit pref]
[   18.000752] pci 0000:2a:02.0: BAR 8: assigned [mem 0xdf200000-0xdf2fffff]
[   18.001018] pci 0000:2a:02.0: BAR 9: assigned [mem 0xa0200000-0xa02fffff 64bit pref]
[   18.001285] pci 0000:2a:04.0: BAR 8: assigned [mem 0xdf300000-0xe317ffff]
[   18.001552] pci 0000:2a:04.0: BAR 9: assigned [mem 0xa0300000-0xa117ffff 64bit pref]
[   18.001818] pci 0000:2a:05.0: BAR 8: assigned [mem 0xe3200000-0xe6ffffff]
[   18.002082] pci 0000:2a:05.0: BAR 9: assigned [mem 0xa1200000-0xa1ffffff 64bit pref]
[   18.002348] pci 0000:2a:00.0: BAR 7: no space for [io  size 0x1000]
[   18.002611] pci 0000:2a:00.0: BAR 7: failed to assign [io  size 0x1000]
[   18.002873] pci 0000:2a:01.0: BAR 7: no space for [io  size 0x1000]
[   18.003135] pci 0000:2a:01.0: BAR 7: failed to assign [io  size 0x1000]
[   18.003400] pci 0000:2a:02.0: BAR 7: no space for [io  size 0x1000]
[   18.003664] pci 0000:2a:02.0: BAR 7: failed to assign [io  size 0x1000]
[   18.003926] pci 0000:2a:04.0: BAR 7: no space for [io  size 0x3000]
[   18.004188] pci 0000:2a:04.0: BAR 7: failed to assign [io  size 0x3000]
[   18.004449] pci 0000:2a:05.0: BAR 7: no space for [io  size 0x3000]
[   18.004710] pci 0000:2a:05.0: BAR 7: failed to assign [io  size 0x3000]
[   18.004971] pci 0000:2b:00.0: BAR 8: assigned [mem 0xdf000000-0xdf0fffff]
[   18.005234] pci 0000:2b:00.0: BAR 9: assigned [mem 0xa0000000-0xa00fffff 64bit pref]
[   18.005495] pci 0000:2b:00.0: BAR 7: no space for [io  size 0x1000]
[   18.005757] pci 0000:2b:00.0: BAR 7: failed to assign [io  size 0x1000]
[   18.006018] pci 0000:2c:03.0: BAR 8: assigned [mem 0xdf000000-0xdf0fffff]
[   18.006279] pci 0000:2c:03.0: BAR 9: assigned [mem 0xa0000000-0xa00fffff 64bit pref]
[   18.006540] pci 0000:2c:03.0: BAR 7: no space for [io  size 0x1000]
[   18.006893] pci 0000:2c:03.0: BAR 7: failed to assign [io  size 0x1000]
[   18.007156] pci 0000:2d:00.0: BAR 0: assigned [mem 0xdf000000-0xdf000fff]
[   18.007432] pci 0000:2d:00.1: BAR 0: assigned [mem 0xdf001000-0xdf001fff]
[   18.007705] pci 0000:2d:00.2: BAR 0: assigned [mem 0xdf002000-0xdf0020ff]
[   18.007976] pci 0000:2c:03.0: PCI bridge to [bus 2d]
[   18.008260] pci 0000:2c:03.0:   bridge window [mem 0xdf000000-0xdf0fffff]
[   18.008529] pci 0000:2c:03.0:   bridge window [mem 0xa0000000-0xa00fffff 64bit pref]
[   18.008808] pci 0000:2b:00.0: PCI bridge to [bus 2c-2d]
[   18.009085] pci 0000:2b:00.0:   bridge window [mem 0xdf000000-0xdf0fffff]
[   18.009360] pci 0000:2b:00.0:   bridge window [mem 0xa0000000-0xa00fffff 64bit pref]
[   18.009639] pci 0000:2a:00.0: PCI bridge to [bus 2b-2d]
[   18.009911] pci 0000:2a:00.0:   bridge window [mem 0xdf000000-0xdf0fffff]
[   18.010183] pci 0000:2a:00.0:   bridge window [mem 0xa0000000-0xa00fffff 64bit pref]
[   18.010460] pci 0000:2e:00.0: BAR 0: assigned [mem 0xa0100000-0xa010ffff 64bit pref]
[   18.010752] pci 0000:2e:00.0: BAR 2: assigned [mem 0xa0110000-0xa011ffff 64bit pref]
[   18.011044] pci 0000:2a:01.0: PCI bridge to [bus 2e]
[   18.011317] pci 0000:2a:01.0:   bridge window [mem 0xdf100000-0xdf1fffff]
[   18.011588] pci 0000:2a:01.0:   bridge window [mem 0xa0100000-0xa01fffff 64bit pref]
[   18.011863] pci 0000:2f:00.0: BAR 0: assigned [mem 0xdf200000-0xdf200fff 64bit]
[   18.012154] pci 0000:2a:02.0: PCI bridge to [bus 2f]
[   18.012425] pci 0000:2a:02.0:   bridge window [mem 0xdf200000-0xdf2fffff]
[   18.012690] pci 0000:2a:02.0:   bridge window [mem 0xa0200000-0xa02fffff 64bit pref]
[   18.012964] pci 0000:30:00.0: BAR 8: assigned [mem 0xdf300000-0xe317ffff]
[   18.013223] pci 0000:30:00.0: BAR 9: assigned [mem 0xa0300000-0xa117ffff 64bit pref]
[   18.013483] pci 0000:30:00.0: BAR 7: no space for [io  size 0x3000]
[   18.013745] pci 0000:30:00.0: BAR 7: failed to assign [io  size 0x3000]
[   18.014006] pci 0000:31:00.0: BAR 8: assigned [mem 0xdf300000-0xdf3fffff]
[   18.014265] pci 0000:31:00.0: BAR 9: assigned [mem 0xa0300000-0xa03fffff 64bit pref]
[   18.014524] pci 0000:31:01.0: BAR 8: assigned [mem 0xdf400000-0xdf4fffff]
[   18.014784] pci 0000:31:01.0: BAR 9: assigned [mem 0xa0400000-0xa04fffff 64bit pref]
[   18.015045] pci 0000:31:02.0: BAR 8: assigned [mem 0xdf500000-0xdf5fffff]
[   18.015304] pci 0000:31:02.0: BAR 9: assigned [mem 0xa0500000-0xa05fffff 64bit pref]
[   18.015561] pci 0000:31:04.0: BAR 8: assigned [mem 0xdf600000-0xe13bffff]
[   18.015818] pci 0000:31:04.0: BAR 9: assigned [mem 0xa0600000-0xa0bbffff 64bit pref]
[   18.016075] pci 0000:31:05.0: BAR 8: assigned [mem 0xe1400000-0xe317ffff]
[   18.016333] pci 0000:31:05.0: BAR 9: assigned [mem 0xa0c00000-0xa117ffff 64bit pref]
[   18.016671] pci 0000:31:00.0: BAR 7: no space for [io  size 0x1000]
[   18.016936] pci 0000:31:00.0: BAR 7: failed to assign [io  size 0x1000]
[   18.017196] pci 0000:31:01.0: BAR 7: no space for [io  size 0x1000]
[   18.017454] pci 0000:31:01.0: BAR 7: failed to assign [io  size 0x1000]
[   18.017713] pci 0000:31:02.0: BAR 7: no space for [io  size 0x1000]
[   18.017973] pci 0000:31:02.0: BAR 7: failed to assign [io  size 0x1000]
[   18.018233] pci 0000:31:04.0: BAR 7: no space for [io  size 0x1000]
[   18.018491] pci 0000:31:04.0: BAR 7: failed to assign [io  size 0x1000]
[   18.018751] pci 0000:31:05.0: BAR 7: no space for [io  size 0x1000]
[   18.019007] pci 0000:31:05.0: BAR 7: failed to assign [io  size 0x1000]
[   18.019263] pci 0000:32:00.0: BAR 8: assigned [mem 0xdf300000-0xdf3fffff]
[   18.019516] pci 0000:32:00.0: BAR 9: assigned [mem 0xa0300000-0xa03fffff 64bit pref]
[   18.019769] pci 0000:32:00.0: BAR 7: no space for [io  size 0x1000]
[   18.020024] pci 0000:32:00.0: BAR 7: failed to assign [io  size 0x1000]
[   18.020274] pci 0000:33:03.0: BAR 8: assigned [mem 0xdf300000-0xdf3fffff]
[   18.020525] pci 0000:33:03.0: BAR 9: assigned [mem 0xa0300000-0xa03fffff 64bit pref]
[   18.020775] pci 0000:33:03.0: BAR 7: no space for [io  size 0x1000]
[   18.021022] pci 0000:33:03.0: BAR 7: failed to assign [io  size 0x1000]
[   18.021271] pci 0000:34:00.0: BAR 0: assigned [mem 0xdf300000-0xdf300fff]
[   18.021533] pci 0000:34:00.1: BAR 0: assigned [mem 0xdf301000-0xdf301fff]
[   18.021792] pci 0000:34:00.2: BAR 0: assigned [mem 0xdf302000-0xdf3020ff]
[   18.022046] pci 0000:33:03.0: PCI bridge to [bus 34]
[   18.022302] pci 0000:33:03.0:   bridge window [mem 0xdf300000-0xdf3fffff]
[   18.022561] pci 0000:33:03.0:   bridge window [mem 0xa0300000-0xa03fffff 64bit pref]
[   18.022826] pci 0000:32:00.0: PCI bridge to [bus 33-34]
[   18.023077] pci 0000:32:00.0:   bridge window [mem 0xdf300000-0xdf3fffff]
[   18.023329] pci 0000:32:00.0:   bridge window [mem 0xa0300000-0xa03fffff 64bit pref]
[   18.023591] pci 0000:31:00.0: PCI bridge to [bus 32-34]
[   18.023845] pci 0000:31:00.0:   bridge window [mem 0xdf300000-0xdf3fffff]
[   18.024095] pci 0000:31:00.0:   bridge window [mem 0xa0300000-0xa03fffff 64bit pref]
[   18.024357] pci 0000:35:00.0: BAR 0: assigned [mem 0xa0400000-0xa040ffff 64bit pref]
[   18.024636] pci 0000:35:00.0: BAR 2: assigned [mem 0xa0410000-0xa041ffff 64bit pref]
[   18.024914] pci 0000:31:01.0: PCI bridge to [bus 35]
[   18.025166] pci 0000:31:01.0:   bridge window [mem 0xdf400000-0xdf4fffff]
[   18.025417] pci 0000:31:01.0:   bridge window [mem 0xa0400000-0xa04fffff 64bit pref]
[   18.025677] pci 0000:36:00.0: BAR 0: assigned [mem 0xdf500000-0xdf500fff 64bit]
[   18.025958] pci 0000:31:02.0: PCI bridge to [bus 36]
[   18.026212] pci 0000:31:02.0:   bridge window [mem 0xdf500000-0xdf5fffff]
[   18.026465] pci 0000:31:02.0:   bridge window [mem 0xa0500000-0xa05fffff 64bit pref]
[   18.026806] pci 0000:31:04.0: PCI bridge to [bus 37-3d]
[   18.027064] pci 0000:31:04.0:   bridge window [mem 0xdf600000-0xe13bffff]
[   18.027317] pci 0000:31:04.0:   bridge window [mem 0xa0600000-0xa0bbffff 64bit pref]
[   18.027579] pci 0000:31:05.0: PCI bridge to [bus 3e-3f]
[   18.027834] pci 0000:31:05.0:   bridge window [mem 0xe1400000-0xe317ffff]
[   18.028088] pci 0000:31:05.0:   bridge window [mem 0xa0c00000-0xa117ffff 64bit pref]
[   18.028346] pci 0000:30:00.0: PCI bridge to [bus 31-3f]
[   18.028604] pci 0000:30:00.0:   bridge window [mem 0xdf300000-0xe317ffff]
[   18.028858] pci 0000:30:00.0:   bridge window [mem 0xa0300000-0xa117ffff 64bit pref]
[   18.029120] pci 0000:2a:04.0: PCI bridge to [bus 30-3f]
[   18.029373] pci 0000:2a:04.0:   bridge window [mem 0xdf300000-0xe317ffff]
[   18.029625] pci 0000:2a:04.0:   bridge window [mem 0xa0300000-0xa117ffff 64bit pref]
[   18.029882] pci 0000:2a:05.0: PCI bridge to [bus 40-4a]
[   18.030135] pci 0000:2a:05.0:   bridge window [mem 0xe3200000-0xe6ffffff]
[   18.030387] pci 0000:2a:05.0:   bridge window [mem 0xa1200000-0xa1ffffff 64bit pref]
[   18.030644] pci 0000:29:00.0: PCI bridge to [bus 2a-4a]
[   18.030893] pci 0000:29:00.0:   bridge window [mem 0xdf000000-0xe6ffffff]
[   18.031139] pci 0000:29:00.0:   bridge window [mem 0xa0000000-0xa1ffffff 64bit pref]
[   18.031399] pcieport 0000:04:04.0: PCI bridge to [bus 29-4a]
[   18.031656] pcieport 0000:04:04.0:   bridge window [mem 0xdf000000-0xe6ffffff]
[   18.031912] pcieport 0000:04:04.0:   bridge window [mem 0xa0000000-0xa1ffffff 64bit pref]
[   18.032170] PCI: No. 2 try to assign unassigned res
[   18.032175] pcieport 0000:04:04.0: BAR 7: no space for [io  size 0xb000]
[   18.032420] pcieport 0000:04:04.0: BAR 7: failed to assign [io  size 0xb000]
[   18.032664] pci 0000:29:00.0: BAR 7: no space for [io  size 0xb000]
[   18.032909] pci 0000:29:00.0: BAR 7: failed to assign [io  size 0xb000]
[   18.033155] pci 0000:2a:00.0: BAR 7: no space for [io  size 0x1000]
[   18.033400] pci 0000:2a:00.0: BAR 7: failed to assign [io  size 0x1000]
[   18.033644] pci 0000:2a:01.0: BAR 7: no space for [io  size 0x1000]
[   18.033890] pci 0000:2a:01.0: BAR 7: failed to assign [io  size 0x1000]
[   18.034135] pci 0000:2a:02.0: BAR 7: no space for [io  size 0x1000]
[   18.034380] pci 0000:2a:02.0: BAR 7: failed to assign [io  size 0x1000]
[   18.034623] pci 0000:2a:04.0: BAR 7: no space for [io  size 0x4000]
[   18.034867] pci 0000:2a:04.0: BAR 7: failed to assign [io  size 0x4000]
[   18.035112] pci 0000:2a:05.0: BAR 7: no space for [io  size 0x4000]
[   18.035355] pci 0000:2a:05.0: BAR 7: failed to assign [io  size 0x4000]
[   18.035599] pci 0000:2b:00.0: BAR 7: no space for [io  size 0x1000]
[   18.035844] pci 0000:2b:00.0: BAR 7: failed to assign [io  size 0x1000]
[   18.036087] pci 0000:2c:03.0: BAR 7: no space for [io  size 0x1000]
[   18.036332] pci 0000:2c:03.0: BAR 7: failed to assign [io  size 0x1000]
[   18.036655] pci 0000:2c:03.0: PCI bridge to [bus 2d]
[   18.036912] pci 0000:2c:03.0:   bridge window [mem 0xdf000000-0xdf0fffff]
[   18.037166] pci 0000:2c:03.0:   bridge window [mem 0xa0000000-0xa00fffff 64bit pref]
[   18.037429] pci 0000:2b:00.0: PCI bridge to [bus 2c-2d]
[   18.037690] pci 0000:2b:00.0:   bridge window [mem 0xdf000000-0xdf0fffff]
[   18.037947] pci 0000:2b:00.0:   bridge window [mem 0xa0000000-0xa00fffff 64bit pref]
[   18.038211] pci 0000:2a:00.0: PCI bridge to [bus 2b-2d]
[   18.038469] pci 0000:2a:00.0:   bridge window [mem 0xdf000000-0xdf0fffff]
[   18.038726] pci 0000:2a:00.0:   bridge window [mem 0xa0000000-0xa00fffff 64bit pref]
[   18.038990] pci 0000:2a:01.0: PCI bridge to [bus 2e]
[   18.039248] pci 0000:2a:01.0:   bridge window [mem 0xdf100000-0xdf1fffff]
[   18.039506] pci 0000:2a:01.0:   bridge window [mem 0xa0100000-0xa01fffff 64bit pref]
[   18.039770] pci 0000:2a:02.0: PCI bridge to [bus 2f]
[   18.040027] pci 0000:2a:02.0:   bridge window [mem 0xdf200000-0xdf2fffff]
[   18.040285] pci 0000:2a:02.0:   bridge window [mem 0xa0200000-0xa02fffff 64bit pref]
[   18.040548] pci 0000:30:00.0: BAR 7: no space for [io  size 0x4000]
[   18.040797] pci 0000:30:00.0: BAR 7: failed to assign [io  size 0x4000]
[   18.041048] pci 0000:31:00.0: BAR 7: no space for [io  size 0x1000]
[   18.041296] pci 0000:31:00.0: BAR 7: failed to assign [io  size 0x1000]
[   18.041544] pci 0000:31:01.0: BAR 7: no space for [io  size 0x1000]
[   18.041795] pci 0000:31:01.0: BAR 7: failed to assign [io  size 0x1000]
[   18.042043] pci 0000:31:02.0: BAR 7: no space for [io  size 0x1000]
[   18.042291] pci 0000:31:02.0: BAR 7: failed to assign [io  size 0x1000]
[   18.042540] pci 0000:31:04.0: BAR 7: no space for [io  size 0x0800]
[   18.042789] pci 0000:31:04.0: BAR 7: failed to assign [io  size 0x0800]
[   18.043036] pci 0000:31:05.0: BAR 7: no space for [io  size 0x1000]
[   18.043282] pci 0000:31:05.0: BAR 7: failed to assign [io  size 0x1000]
[   18.043529] pci 0000:32:00.0: BAR 7: no space for [io  size 0x1000]
[   18.043775] pci 0000:32:00.0: BAR 7: failed to assign [io  size 0x1000]
[   18.044021] pci 0000:33:03.0: BAR 7: no space for [io  size 0x1000]
[   18.044270] pci 0000:33:03.0: BAR 7: failed to assign [io  size 0x1000]
[   18.044520] pci 0000:33:03.0: PCI bridge to [bus 34]
[   18.044787] pci 0000:33:03.0:   bridge window [mem 0xdf300000-0xdf3fffff]
[   18.045051] pci 0000:33:03.0:   bridge window [mem 0xa0300000-0xa03fffff 64bit pref]
[   18.045325] pci 0000:32:00.0: PCI bridge to [bus 33-34]
[   18.045593] pci 0000:32:00.0:   bridge window [mem 0xdf300000-0xdf3fffff]
[   18.045856] pci 0000:32:00.0:   bridge window [mem 0xa0300000-0xa03fffff 64bit pref]
[   18.046129] pci 0000:31:00.0: PCI bridge to [bus 32-34]
[   18.046394] pci 0000:31:00.0:   bridge window [mem 0xdf300000-0xdf3fffff]
[   18.046732] pci 0000:31:00.0:   bridge window [mem 0xa0300000-0xa03fffff 64bit pref]
[   18.047004] pci 0000:31:01.0: PCI bridge to [bus 35]
[   18.047270] pci 0000:31:01.0:   bridge window [mem 0xdf400000-0xdf4fffff]
[   18.047534] pci 0000:31:01.0:   bridge window [mem 0xa0400000-0xa04fffff 64bit pref]
[   18.047807] pci 0000:31:02.0: PCI bridge to [bus 36]
[   18.048074] pci 0000:31:02.0:   bridge window [mem 0xdf500000-0xdf5fffff]
[   18.048337] pci 0000:31:02.0:   bridge window [mem 0xa0500000-0xa05fffff 64bit pref]
[   18.048609] pci 0000:31:04.0: PCI bridge to [bus 37-3d]
[   18.048876] pci 0000:31:04.0:   bridge window [mem 0xdf600000-0xe13bffff]
[   18.049138] pci 0000:31:04.0:   bridge window [mem 0xa0600000-0xa0bbffff 64bit pref]
[   18.049410] pci 0000:31:05.0: PCI bridge to [bus 3e-3f]
[   18.049677] pci 0000:31:05.0:   bridge window [mem 0xe1400000-0xe317ffff]
[   18.049941] pci 0000:31:05.0:   bridge window [mem 0xa0c00000-0xa117ffff 64bit pref]
[   18.050213] pci 0000:30:00.0: PCI bridge to [bus 31-3f]
[   18.050481] pci 0000:30:00.0:   bridge window [mem 0xdf300000-0xe317ffff]
[   18.050746] pci 0000:30:00.0:   bridge window [mem 0xa0300000-0xa117ffff 64bit pref]
[   18.051019] pci 0000:2a:04.0: PCI bridge to [bus 30-3f]
[   18.051282] pci 0000:2a:04.0:   bridge window [mem 0xdf300000-0xe317ffff]
[   18.051544] pci 0000:2a:04.0:   bridge window [mem 0xa0300000-0xa117ffff 64bit pref]
[   18.051811] pci 0000:2a:05.0: PCI bridge to [bus 40-4a]
[   18.052075] pci 0000:2a:05.0:   bridge window [mem 0xe3200000-0xe6ffffff]
[   18.052336] pci 0000:2a:05.0:   bridge window [mem 0xa1200000-0xa1ffffff 64bit pref]
[   18.052603] pci 0000:29:00.0: PCI bridge to [bus 2a-4a]
[   18.052867] pci 0000:29:00.0:   bridge window [mem 0xdf000000-0xe6ffffff]
[   18.053127] pci 0000:29:00.0:   bridge window [mem 0xa0000000-0xa1ffffff 64bit pref]
[   18.053399] pcieport 0000:04:04.0: PCI bridge to [bus 29-4a]
[   18.053660] pcieport 0000:04:04.0:   bridge window [mem 0xdf000000-0xe6ffffff]
[   18.053928] pcieport 0000:04:04.0:   bridge window [mem 0xa0000000-0xa1ffffff 64bit pref]
[   18.054219] pcieport 0000:29:00.0: enabling device (0000 -> 0002)
[   18.054806] pcieport 0000:2a:00.0: enabling device (0000 -> 0002)
[   18.055483] pcieport 0000:2a:01.0: enabling device (0000 -> 0002)
[   18.056066] pcieport 0000:2a:02.0: enabling device (0000 -> 0002)
[   18.056666] pcieport 0000:2a:04.0: enabling device (0000 -> 0002)
[   18.056983] pcieport 0000:2a:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[   18.057480] pcieport 0000:2a:05.0: enabling device (0000 -> 0002)
[   18.057843] pcieport 0000:2a:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[   18.058357] pcieport 0000:2b:00.0: enabling device (0000 -> 0002)
[   18.058711] pcieport 0000:2c:03.0: enabling device (0000 -> 0002)
[   18.059105] pci 0000:2d:00.0: MSI is not implemented on this device, disabling it
[   18.059373] pci 0000:2d:00.0: PME# is unreliable, disabling it
[   18.059655] pci 0000:2d:00.0: enabling device (0000 -> 0002)
[   18.060033] ohci-pci 0000:2d:00.0: OHCI PCI host controller
[   18.060302] ohci-pci 0000:2d:00.0: new USB bus registered, assigned bus number 9
[   18.060599] ohci-pci 0000:2d:00.0: irq 121, io mem 0xdf000000
[   18.140704] usb usb9: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.19
[   18.141025] usb usb9: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   18.141337] usb usb9: Product: OHCI PCI host controller
[   18.141613] usb usb9: Manufacturer: Linux 5.19.0+ ohci_hcd
[   18.141885] usb usb9: SerialNumber: 0000:2d:00.0
[   18.142263] hub 9-0:1.0: USB hub found
[   18.142643] hub 9-0:1.0: 2 ports detected
[   18.143255] pci 0000:2d:00.1: MSI is not implemented on this device, disabling it
[   18.143685] pci 0000:2d:00.1: PME# is unreliable, disabling it
[   18.144117] pci 0000:2d:00.1: enabling device (0000 -> 0002)
[   18.144750] ohci-pci 0000:2d:00.1: OHCI PCI host controller
[   18.145156] ohci-pci 0000:2d:00.1: new USB bus registered, assigned bus number 10
[   18.145458] ohci-pci 0000:2d:00.1: irq 25, io mem 0xdf001000
[   18.210950] usb usb10: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.19
[   18.211277] usb usb10: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   18.211573] usb usb10: Product: OHCI PCI host controller
[   18.211850] usb usb10: Manufacturer: Linux 5.19.0+ ohci_hcd
[   18.212128] usb usb10: SerialNumber: 0000:2d:00.1
[   18.212538] hub 10-0:1.0: USB hub found
[   18.212915] hub 10-0:1.0: 2 ports detected
[   18.213482] pci 0000:2d:00.2: MSI is not implemented on this device, disabling it
[   18.213922] pci 0000:2d:00.2: PME# is unreliable, disabling it
[   18.214589] pci 0000:2d:00.2: enabling device (0000 -> 0002)
[   18.215096] pci 0000:2d:00.2: EHCI: unrecognized capability 00
[   18.215612] ehci-pci 0000:2d:00.2: EHCI Host Controller
[   18.216020] ehci-pci 0000:2d:00.2: new USB bus registered, assigned bus number 11
[   18.216389] ehci-pci 0000:2d:00.2: irq 50, io mem 0xdf002000
[   18.256869] ehci-pci 0000:2d:00.2: USB 2.0 started, EHCI 1.00
[   18.257239] usb usb11: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.19
[   18.257549] usb usb11: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   18.257836] usb usb11: Product: EHCI Host Controller
[   18.258119] usb usb11: Manufacturer: Linux 5.19.0+ ehci_hcd
[   18.258402] usb usb11: SerialNumber: 0000:2d:00.2
[   18.258786] hub 11-0:1.0: USB hub found
[   18.259161] hub 11-0:1.0: 4 ports detected
[   18.376744] hub 9-0:1.0: USB hub found
[   18.377244] hub 9-0:1.0: 2 ports detected
[   18.496900] hub 10-0:1.0: USB hub found
[   18.497394] hub 10-0:1.0: 2 ports detected
[   18.497765] tg3 0000:2e:00.0: enabling device (0000 -> 0002)
[   18.550464] tg3 0000:2e:00.0 eth2: Tigon3 [partno(BCM957761) rev 57785100] (PCI Express) MAC address c8:2a:14:4f:80:3e
[   18.550831] tg3 0000:2e:00.0 eth2: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   18.551119] tg3 0000:2e:00.0 eth2: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[   18.551407] tg3 0000:2e:00.0 eth2: dma_rwctrl[00000001] dma_mask[64-bit]
[   18.551924] pcieport 0000:30:00.0: enabling device (0000 -> 0002)
[   18.552751] tg3 0000:2e:00.0 eth4: renamed from eth2
[   18.552753] pcieport 0000:31:00.0: enabling device (0000 -> 0002)
[   18.553875] pcieport 0000:31:01.0: enabling device (0000 -> 0002)
[   18.554559] pcieport 0000:31:02.0: enabling device (0000 -> 0002)
[   18.555232] pcieport 0000:31:04.0: enabling device (0000 -> 0002)
[   18.555613] pcieport 0000:31:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[   18.556271] pcieport 0000:31:05.0: enabling device (0000 -> 0002)
[   18.556707] pcieport 0000:31:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ (with Cmd Compl erratum)
[   18.557016] usb 11-1: new high-speed USB device number 2 using ehci-pci
[   18.557639] pcieport 0000:32:00.0: enabling device (0000 -> 0002)
[   18.558037] pcieport 0000:33:03.0: enabling device (0000 -> 0002)
[   18.558513] pci 0000:34:00.0: MSI is not implemented on this device, disabling it
[   18.558820] pci 0000:34:00.0: PME# is unreliable, disabling it
[   18.559148] pci 0000:34:00.0: enabling device (0000 -> 0002)
[   18.559574] ohci-pci 0000:34:00.0: OHCI PCI host controller
[   18.559885] ohci-pci 0000:34:00.0: new USB bus registered, assigned bus number 12
[   18.560216] ohci-pci 0000:34:00.0: irq 121, io mem 0xdf300000
[   18.630739] usb usb12: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.19
[   18.631102] usb usb12: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   18.631450] usb usb12: Product: OHCI PCI host controller
[   18.631756] usb usb12: Manufacturer: Linux 5.19.0+ ohci_hcd
[   18.632062] usb usb12: SerialNumber: 0000:34:00.0
[   18.632483] hub 12-0:1.0: USB hub found
[   18.632807] hub 12-0:1.0: 2 ports detected
[   18.633206] pci 0000:34:00.1: MSI is not implemented on this device, disabling it
[   18.633523] pci 0000:34:00.1: PME# is unreliable, disabling it
[   18.633859] pci 0000:34:00.1: enabling device (0000 -> 0002)
[   18.634333] ohci-pci 0000:34:00.1: OHCI PCI host controller
[   18.634676] ohci-pci 0000:34:00.1: new USB bus registered, assigned bus number 13
[   18.635007] ohci-pci 0000:34:00.1: irq 25, io mem 0xdf301000
[   18.700956] usb usb13: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.19
[   18.701327] usb usb13: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   18.701656] usb usb13: Product: OHCI PCI host controller
[   18.701974] usb usb13: Manufacturer: Linux 5.19.0+ ohci_hcd
[   18.702285] usb usb13: SerialNumber: 0000:34:00.1
[   18.702733] hub 13-0:1.0: USB hub found
[   18.703152] hub 13-0:1.0: 2 ports detected
[   18.703777] pci 0000:34:00.2: MSI is not implemented on this device, disabling it
[   18.704252] pci 0000:34:00.2: PME# is unreliable, disabling it
[   18.704736] pci 0000:34:00.2: enabling device (0000 -> 0002)
[   18.705298] pci 0000:34:00.2: EHCI: unrecognized capability 00
[   18.705947] ehci-pci 0000:34:00.2: EHCI Host Controller
[   18.706393] ehci-pci 0000:34:00.2: new USB bus registered, assigned bus number 14
[   18.706850] ehci-pci 0000:34:00.2: irq 50, io mem 0xdf302000
[   18.746856] ehci-pci 0000:34:00.2: USB 2.0 started, EHCI 1.00
[   18.747243] usb usb14: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.19
[   18.747569] usb usb14: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   18.747868] usb usb14: Product: EHCI Host Controller
[   18.748165] usb usb14: Manufacturer: Linux 5.19.0+ ehci_hcd
[   18.748461] usb usb14: SerialNumber: 0000:34:00.2
[   18.748861] hub 14-0:1.0: USB hub found
[   18.749261] hub 14-0:1.0: 4 ports detected
[   18.777325] usb 11-1: New USB device found, idVendor=05ac, idProduct=9127, bcdDevice= 1.00
[   18.777650] usb 11-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[   18.778225] hub 11-1:1.0: USB hub found
[   18.779037] hub 11-1:1.0: 7 ports detected
[   18.866960] hub 12-0:1.0: USB hub found
[   18.867505] hub 12-0:1.0: 2 ports detected
[   18.996921] hub 13-0:1.0: USB hub found
[   18.997464] hub 13-0:1.0: 2 ports detected
[   18.997861] tg3 0000:35:00.0: enabling device (0000 -> 0002)
[   19.046635] usb 14-1: new high-speed USB device number 2 using ehci-pci
[   19.078200] tg3 0000:35:00.0 eth2: Tigon3 [partno(BCM957761) rev 57785100] (PCI Express) MAC address 38:c9:86:48:0c:c8
[   19.078608] tg3 0000:35:00.0 eth2: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   19.078914] tg3 0000:35:00.0 eth2: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[   19.079216] tg3 0000:35:00.0 eth2: dma_rwctrl[00000001] dma_mask[64-bit]
[   19.079637] tg3 0000:35:00.0 eth3: renamed from eth2
[   19.096639] usb 11-1.4: new full-speed USB device number 3 using ehci-pci
[   19.257530] usb 14-1: New USB device found, idVendor=05ac, idProduct=9127, bcdDevice= 1.00
[   19.257918] usb 14-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[   19.258547] hub 14-1:1.0: USB hub found
[   19.259138] hub 14-1:1.0: 7 ports detected
[   19.266473] usb 11-1.4: New USB device found, idVendor=05ac, idProduct=1107, bcdDevice= 2.09
[   19.266853] usb 11-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   19.267205] usb 11-1.4: Product: Display Audio
[   19.267545] usb 11-1.4: Manufacturer: Apple Inc.
[   19.267849] usb 11-1.4: SerialNumber: 152303D9
[   19.279301] input: Apple Inc. Display Audio as /devices/pci0000:00/0000:00:02.1/0000:01:00.2/0000:02:00.0/0000:03:00.0/0000:04:04.0/0000:29:00.0/0000:2a:00.0/0000:2b:00.0/0000:2c:03.0/0000:2d:00.2/usb11/11-1/11-1.4/11-1.4:1.3/0003:05AC:1107.0005/input/input17
[   19.279876] hid-generic 0003:05AC:1107.0005: input,hidraw4: USB HID v1.11 Device [Apple Inc. Display Audio] on usb-0000:2d:00.2-1.4/input3
[   19.310229] usb 11-1.4: 1:1: cannot get freq at ep 0x4
[   19.386808] usb 11-1.5: new high-speed USB device number 4 using ehci-pci
[   19.478257] usb 11-1.4: 1:2: cannot get freq at ep 0x4
[   19.486270] usb 11-1.4: 2:1: cannot get freq at ep 0x84
[   19.524313] usb 11-1.4: Warning! Unlikely big volume range (=16384), cval->res is probably wrong.
[   19.524706] usb 11-1.4: [2] FU [PCM Playback Volume] ch = 2, val = -16384/0/1
[   19.555080] usb 11-1.5: New USB device found, idVendor=05ac, idProduct=1112, bcdDevice=71.60
[   19.555479] usb 11-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   19.555817] usb 11-1.5: Product: FaceTime HD Camera (Display)
[   19.556146] usb 11-1.5: Manufacturer: Apple Inc.
[   19.556473] usb 11-1.5: SerialNumber: CCGB690CKUDJ9DFX
[   19.559272] usb 11-1.4: Warning! Unlikely big volume range (=15872), cval->res is probably wrong.
[   19.559655] usb 11-1.4: [5] FU [Mic Capture Volume] ch = 1, val = -11264/4608/1
[   19.560181] usbcore: registered new interface driver snd-usb-audio
[   19.586808] usb 14-1.4: new full-speed USB device number 3 using ehci-pci
[   19.747708] usb 14-1.4: New USB device found, idVendor=05ac, idProduct=1107, bcdDevice= 2.09
[   19.748104] usb 14-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   19.748484] usb 14-1.4: Product: Display Audio
[   19.748815] usb 14-1.4: Manufacturer: Apple Inc.
[   19.749133] usb 14-1.4: SerialNumber: 1A0E0738
[   19.763202] usb 14-1.4: 1:1: cannot get freq at ep 0x4
[   19.796835] usb 11-1.7: new full-speed USB device number 5 using ehci-pci
[   19.931378] usb 14-1.4: 1:2: cannot get freq at ep 0x4
[   19.939377] usb 14-1.4: 2:1: cannot get freq at ep 0x84
[   19.949423] usb 11-1.7: New USB device found, idVendor=05ac, idProduct=9227, bcdDevice= 1.37
[   19.949834] usb 11-1.7: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   19.950191] usb 11-1.7: Product: Apple Thunderbolt Display
[   19.950512] usb 11-1.7: Manufacturer: Apple Inc.
[   19.950829] usb 11-1.7: SerialNumber: 152303D9
[   19.952950] hid-generic 0003:05AC:9227.0006: hiddev97,hidraw5: USB HID v1.11 Device [Apple Inc. Apple Thunderbolt Display] on usb-0000:2d:00.2-1.7/input0
[   19.977296] usb 14-1.4: Warning! Unlikely big volume range (=16384), cval->res is probably wrong.
[   19.977684] usb 14-1.4: [2] FU [PCM Playback Volume] ch = 2, val = -16384/0/1
[   20.014395] usb 14-1.4: Warning! Unlikely big volume range (=15872), cval->res is probably wrong.
[   20.014785] usb 14-1.4: [5] FU [Mic Capture Volume] ch = 1, val = -11264/4608/1
[   20.026203] input: Apple Inc. Display Audio as /devices/pci0000:00/0000:00:02.1/0000:01:00.2/0000:02:00.0/0000:03:00.0/0000:04:04.0/0000:29:00.0/0000:2a:04.0/0000:30:00.0/0000:31:00.0/0000:32:00.0/0000:33:03.0/0000:34:00.2/usb14/14-1/14-1.4/14-1.4:1.3/0003:05AC:1107.0007/input/input18
[   20.026691] hid-generic 0003:05AC:1107.0007: input,hidraw6: USB HID v1.11 Device [Apple Inc. Display Audio] on usb-0000:34:00.2-1.4/input3
[   20.126671] usb 14-1.5: new high-speed USB device number 4 using ehci-pci
[   20.293789] usb 14-1.5: New USB device found, idVendor=05ac, idProduct=1112, bcdDevice=71.60
[   20.294210] usb 14-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   20.294606] usb 14-1.5: Product: FaceTime HD Camera (Display)
[   20.294961] usb 14-1.5: Manufacturer: Apple Inc.
[   20.295313] usb 14-1.5: SerialNumber: CC2G3101FFDJ9FLP
[   20.491973] EXT4-fs (dm-0): re-mounted. Quota mode: none.
[   20.526641] usb 14-1.7: new full-speed USB device number 5 using ehci-pci
[   20.688756] usb 14-1.7: New USB device found, idVendor=05ac, idProduct=9227, bcdDevice= 1.39
[   20.689146] usb 14-1.7: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   20.689516] usb 14-1.7: Product: Apple Thunderbolt Display
[   20.689889] usb 14-1.7: Manufacturer: Apple Inc.
[   20.690258] usb 14-1.7: SerialNumber: 1A0E0738
[   20.692364] hid-generic 0003:05AC:9227.0008: hiddev98,hidraw7: USB HID v1.11 Device [Apple Inc. Apple Thunderbolt Display] on usb-0000:34:00.2-1.7/input0
[   20.792902] it87: loading out-of-tree module taints kernel.
[   20.793581] it87: it87 driver version v1.0-48-g40bec4b
[   20.794018] it87: Found IT8688E chip at 0xa40, revision 1
[   20.794438] it87: Beeping is supported
[   20.794840] ACPI Warning: SystemIO range 0x0000000000000A45-0x0000000000000A46 conflicts with OpRegion 0x0000000000000A45-0x0000000000000A46 (\GSA1.SIO1) (20220331/utaddress-204)
[   20.795241] ACPI: OSL: Resource conflict; ACPI support missing from driver?
[   20.795638] ACPI: OSL: Resource conflict: System may be unstable or behave erratically
[   20.796779] it87: Found IT8792E/IT8795E chip at 0xa60, revision 3
[   20.797204] it87: Beeping is supported
[   20.799461] EXT4-fs (nvme0n1p2): mounted filesystem with ordered data mode. Quota mode: none.
[   20.804412] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Quota mode: none.
[   20.813458] Adding 134217724k swap on /dev/mapper/swap.  Priority:-2 extents:1 across:134217724k SS
[   20.905600] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[   20.907623] br1: port 1(eth0) entered blocking state
[   20.908121] br1: port 1(eth0) entered disabled state
[   20.908609] device eth0 entered promiscuous mode
[   20.985378] br1: port 2(eth1) entered blocking state
[   20.985849] br1: port 2(eth1) entered disabled state
[   20.986360] device eth1 entered promiscuous mode
[   21.026874] RTL8226B_RTL8221B 2.5Gbps PHY r8169-0-4e00:00: attached PHY driver (mii_bus:phy_addr=r8169-0-4e00:00, irq=MAC)
[   21.306992] r8169 0000:4e:00.0 eth1: Link is Down
[   21.330810] NET: Registered PF_PACKET protocol family
[   24.151289] r8169 0000:4e:00.0 eth1: Link is Up - 1Gbps/Full - flow control off
[   24.151758] br1: port 2(eth1) entered blocking state
[   24.152156] br1: port 2(eth1) entered forwarding state
[   26.479169] RPC: Registered named UNIX socket transport module.
[   26.479573] RPC: Registered udp transport module.
[   26.479969] RPC: Registered tcp transport module.
[   26.480360] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   26.483077] FS-Cache: Loaded
[   26.501063] Key type dns_resolver registered
[   26.504228] NFS: Registering the id_resolver key type
[   26.504621] Key type id_resolver registered
[   26.505004] Key type id_legacy registered

Regards,
Brad

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-08-11 14:17                                                                                     ` Brad Campbell
@ 2022-08-12  9:35                                                                                       ` Mika Westerberg
  2022-08-12 10:16                                                                                         ` Brad Campbell
  0 siblings, 1 reply; 47+ messages in thread
From: Mika Westerberg @ 2022-08-12  9:35 UTC (permalink / raw)
  To: Brad Campbell; +Cc: linux-kernel

Hi Brad,

On Thu, Aug 11, 2022 at 10:17:02PM +0800, Brad Campbell wrote:
> G'day Mika,
> > Okay, do you see in the dmesg whether the DP tunnels are actually
> > created when you see the issue?
> > 
> 
> Yes, the DP tunnels appear to be created. Xorg sees them and believes they are there :
> 
> brad@bkd:~$ grep -A1 EDID  /var/log/Xorg.0.log.old 
> [    29.377] (II) AMDGPU(0): EDID for output HDMI-A-0
> [    29.377] (II) AMDGPU(0): Manufacturer: DEL  Model: a19d  Serial#: 810240841
> --
> [    29.377] (II) AMDGPU(0): EDID Version: 1.3
> [    29.377] (II) AMDGPU(0): Digital Display Input
> --
> [    29.377] (II) AMDGPU(0): Number of EDID sections to follow: 1
> [    29.377] (II) AMDGPU(0): EDID (in hex):
> [    29.377] (II) AMDGPU(0): 	00ffffffffffff0010ac9da1494b4b30
> --
> [    29.377] (II) AMDGPU(0): EDID for output DisplayPort-0
> [    29.377] (II) AMDGPU(0): Manufacturer: APP  Model: 9227  Serial#: 354616281
> --
> [    29.377] (II) AMDGPU(0): EDID Version: 1.4
> [    29.377] (II) AMDGPU(0): Digital Display Input
> --
> [    29.378] (II) AMDGPU(0): Number of EDID sections to follow: 1
> [    29.378] (II) AMDGPU(0): EDID (in hex):
> [    29.378] (II) AMDGPU(0): 	00ffffffffffff0006102792d9032315
> --
> [    29.378] (II) AMDGPU(0): EDID for output DisplayPort-1
> [    29.378] (II) AMDGPU(0): Manufacturer: APP  Model: 9227  Serial#: 437126968
> --
> [    29.378] (II) AMDGPU(0): EDID Version: 1.4
> [    29.378] (II) AMDGPU(0): Digital Display Input
> --
> [    29.378] (II) AMDGPU(0): Number of EDID sections to follow: 1
> [    29.378] (II) AMDGPU(0): EDID (in hex):
> [    29.378] (II) AMDGPU(0): 	00ffffffffffff000610279238070e1a
> 
> This test was done with thunderbolt compiled in just to demonstrate,
> but any load sequence or combination
> winds up with the same issue.

I went through your log but could not find anything out of ordinary from
TBT perspective. The tunnels get cleaned up by the discovery code and
then re-created after the reset completes and they seem to be fine. You
may try to add some sort of delay like 100ms or so after the DPR reset
but I doubt it changes anything.

^ permalink raw reply	[flat|nested] 47+ messages in thread

* Re: Apple Thunderbolt Display chaining
  2022-08-12  9:35                                                                                       ` Mika Westerberg
@ 2022-08-12 10:16                                                                                         ` Brad Campbell
  0 siblings, 0 replies; 47+ messages in thread
From: Brad Campbell @ 2022-08-12 10:16 UTC (permalink / raw)
  To: Mika Westerberg; +Cc: linux-kernel

G'day Mika,

On 12/8/22 17:35, Mika Westerberg wrote:
> Hi Brad,
> 
> On Thu, Aug 11, 2022 at 10:17:02PM +0800, Brad Campbell wrote:
>> G'day Mika,
>>> Okay, do you see in the dmesg whether the DP tunnels are actually
>>> created when you see the issue?
>>>
>>
>> Yes, the DP tunnels appear to be created. Xorg sees them and believes they are there :
>>
>> brad@bkd:~$ grep -A1 EDID  /var/log/Xorg.0.log.old 
>> [    29.377] (II) AMDGPU(0): EDID for output HDMI-A-0
>> [    29.377] (II) AMDGPU(0): Manufacturer: DEL  Model: a19d  Serial#: 810240841
>> --
>> [    29.377] (II) AMDGPU(0): EDID Version: 1.3
>> [    29.377] (II) AMDGPU(0): Digital Display Input
>> --
>> [    29.377] (II) AMDGPU(0): Number of EDID sections to follow: 1
>> [    29.377] (II) AMDGPU(0): EDID (in hex):
>> [    29.377] (II) AMDGPU(0): 	00ffffffffffff0010ac9da1494b4b30
>> --
>> [    29.377] (II) AMDGPU(0): EDID for output DisplayPort-0
>> [    29.377] (II) AMDGPU(0): Manufacturer: APP  Model: 9227  Serial#: 354616281
>> --
>> [    29.377] (II) AMDGPU(0): EDID Version: 1.4
>> [    29.377] (II) AMDGPU(0): Digital Display Input
>> --
>> [    29.378] (II) AMDGPU(0): Number of EDID sections to follow: 1
>> [    29.378] (II) AMDGPU(0): EDID (in hex):
>> [    29.378] (II) AMDGPU(0): 	00ffffffffffff0006102792d9032315
>> --
>> [    29.378] (II) AMDGPU(0): EDID for output DisplayPort-1
>> [    29.378] (II) AMDGPU(0): Manufacturer: APP  Model: 9227  Serial#: 437126968
>> --
>> [    29.378] (II) AMDGPU(0): EDID Version: 1.4
>> [    29.378] (II) AMDGPU(0): Digital Display Input
>> --
>> [    29.378] (II) AMDGPU(0): Number of EDID sections to follow: 1
>> [    29.378] (II) AMDGPU(0): EDID (in hex):
>> [    29.378] (II) AMDGPU(0): 	00ffffffffffff000610279238070e1a
>>
>> This test was done with thunderbolt compiled in just to demonstrate,
>> but any load sequence or combination
>> winds up with the same issue.
> 
> I went through your log but could not find anything out of ordinary from
> TBT perspective. The tunnels get cleaned up by the discovery code and
> then re-created after the reset completes and they seem to be fine. You
> may try to add some sort of delay like 100ms or so after the DPR reset
> but I doubt it changes anything.
> 

I'll have a bit more of a play. I compiled both thunderbolt and amdgpu as modules
and played with them both blacklisted and then loading both manually from the console
after boot to see if there was any timing interaction with the DP tunnels. I normally
have to force the DP links up and provide the EDID on the kernel command line, but
if I give it sufficient time between thunderbolt discovery and amdgpu load it picks up
the links *and* manages to load the EDID from both without anything having to be forced.

I think with your diagnostic assistance I've learned enough about how the architecture
works to keep futzing around to see if I can find some determinism in the system and
figure out what is going on. I'll keep cracking at it and try not to bother you unless
I really can't figure it out.

I'm beginning to think as I'm the only person that seems to be running this hardware
it's some perverse combination that anyone else is highly unlikely to run into. Worst
case I still have my existing workarounds.

I really, _really_ appreciate your assistance.

Regards,
Brad

^ permalink raw reply	[flat|nested] 47+ messages in thread

end of thread, other threads:[~2022-08-12 10:17 UTC | newest]

Thread overview: 47+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <acbb3a86-ea15-47ec-90fa-72fbd94921b1@fnarfbargle.com>
2022-03-29 11:31 ` Apple Thunderbolt Display chaining Mika Westerberg
2022-03-29 12:35   ` Brad Campbell
2022-03-29 13:00     ` Mika Westerberg
2022-03-29 14:06       ` Brad Campbell
2022-03-30 10:18         ` Mika Westerberg
2022-03-30 13:19           ` Brad Campbell
2022-03-30 13:43             ` Mika Westerberg
2022-03-30 14:24               ` Brad Campbell
2022-03-30 14:47                 ` Mika Westerberg
2022-03-31  9:02                   ` Brad Campbell
2022-03-31 16:36                     ` Mika Westerberg
2022-04-01  5:48                       ` Brad Campbell
2022-04-01 14:30                         ` Mika Westerberg
2022-04-01 15:05                           ` Brad Campbell
2022-04-04 10:10                             ` Mika Westerberg
2022-04-04 11:38                               ` Brad Campbell
2022-04-04 12:53                                 ` Mika Westerberg
2022-04-06  2:51                                   ` Brad Campbell
2022-04-06 14:56                                     ` Mika Westerberg
2022-08-05  7:41                                       ` Brad Campbell
2022-08-05 11:30                                         ` Mika Westerberg
2022-08-05 12:43                                           ` Brad Campbell
2022-08-05 13:01                                             ` Mika Westerberg
2022-08-05 14:13                                               ` Brad Campbell
2022-08-05 14:21                                                 ` Mika Westerberg
2022-08-05 14:43                                                   ` Brad Campbell
2022-08-06  6:13                                                     ` Mika Westerberg
2022-08-06  9:41                                                       ` Brad Campbell
2022-08-08  9:51                                                         ` Mika Westerberg
2022-08-08 11:55                                                           ` Brad Campbell
2022-08-08 12:25                                                             ` Brad Campbell
2022-08-08 12:46                                                               ` Mika Westerberg
2022-08-08 13:27                                                                 ` Brad Campbell
2022-08-09 10:23                                                                   ` Mika Westerberg
2022-08-09 10:40                                                                     ` Brad Campbell
2022-08-09 10:55                                                                       ` Mika Westerberg
2022-08-09 11:03                                                                         ` Brad Campbell
2022-08-09 11:08                                                                         ` Brad Campbell
2022-08-09 14:42                                                                           ` Mika Westerberg
2022-08-09 15:16                                                                             ` Brad Campbell
2022-08-09 15:50                                                                               ` Mika Westerberg
2022-08-10  7:40                                                                                 ` Brad Campbell
2022-08-11  9:50                                                                                   ` Mika Westerberg
2022-08-11 14:17                                                                                     ` Brad Campbell
2022-08-12  9:35                                                                                       ` Mika Westerberg
2022-08-12 10:16                                                                                         ` Brad Campbell
2022-08-08 12:42                                                             ` Mika Westerberg

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.