lkml.org 
[lkml]   [2019]   [Sep]   [3]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: Thunderbolt DP oddity on v5.2.9 on iMac 12,2
From
Date
G'day Mika,

I'm sending you two dmesg because with that patch applied, a warm boot
(as in reboot) comes up with all 3 heads, but a cold boot only has the
two. I thought that was odd, so I reproduced it a couple of times just
to check.

So cold boot is dmesg.07 and warm boot is dmesg.06. If I cold boot I get
2 displays. A reboot from there results in all 3.

I compiled, installed and rebooted into all 3 heads (which somewhat
threw me, so I tried it a couple of times).

So that patch certainly made a difference. Timing/race issue?

Regards,
Brad

On 3/9/19 6:13 pm, Mika Westerberg wrote:
> Hi Brad,
>
> On Thu, Aug 29, 2019 at 12:27:08AM +0800, Brad Campbell wrote:
>> It wouldn't surprise me if the firmware was doing something funky. It was
>> one of the first Thunderbolt equipped models and the support docs explicitly
>> say only one Thunderbolt display in Windows and two in later versions of
>> OSX. It almost needs a quirk to say "firmware does something we don't like,
>> reset the controller and re-discover from scratch".
>>
>> Anyway, I'm not in any hurry. It doesn't get rebooted often and it's not in
>> any way preventing me using the machine. In fact, upgrading the third head
>> from an old 24" 1920x1200 to the second Thunderbolt display has been
>> invaluable.
>
> Can you apply the below patch and then boot with two monitors connected?
> Then send me the dmesg. It does not fix anything but should log a bit
> more.
>
> diff --git a/drivers/thunderbolt/tb.c b/drivers/thunderbolt/tb.c
> index 1f7a9e1cc09c..28a72336558a 100644
> --- a/drivers/thunderbolt/tb.c
> +++ b/drivers/thunderbolt/tb.c
> @@ -313,8 +313,10 @@ static struct tb_port *tb_find_unused_port(struct tb_switch *sw,
> continue;
> if (!sw->ports[i].cap_adap)
> continue;
> - if (tb_port_is_enabled(&sw->ports[i]))
> + if (tb_port_is_enabled(&sw->ports[i])) {
> + tb_port_dbg(&sw->ports[i], "this already enabled\n");
> continue;
> + }
> return &sw->ports[i];
> }
> return NULL;
> @@ -365,16 +367,25 @@ static int tb_tunnel_dp(struct tb *tb, struct tb_port *out)
> struct tb_tunnel *tunnel;
> struct tb_port *in;
>
> - if (tb_port_is_enabled(out))
> + tb_port_dbg(out, "trying to tunnel DP\n");
> +
> + if (tb_port_is_enabled(out)) {
> + tb_port_dbg(out, "DP OUT port already enabled\n");
> return 0;
> + }
> +
> + tb_port_dbg(out, "finding free DP IN port\n");
>
> do {
> sw = tb_to_switch(sw->dev.parent);
> if (!sw)
> return 0;
> + tb_sw_dbg(sw, "finding available DP IN\n");
> in = tb_find_unused_port(sw, TB_TYPE_DP_HDMI_IN);
> } while (!in);
>
> + tb_port_dbg(in, "found DP IN\n");
> +
> tunnel = tb_tunnel_alloc_dp(tb, in, out);
> if (!tunnel) {
> tb_port_dbg(out, "DP tunnel allocation failed\n");
> diff --git a/drivers/thunderbolt/tunnel.c b/drivers/thunderbolt/tunnel.c
> index 5a99234826e7..93c2c965bdde 100644
> --- a/drivers/thunderbolt/tunnel.c
> +++ b/drivers/thunderbolt/tunnel.c
> @@ -351,9 +351,23 @@ struct tb_tunnel *tb_tunnel_discover_dp(struct tb *tb, struct tb_port *in)
> struct tb_tunnel *tunnel;
> struct tb_port *port;
> struct tb_path *path;
> + u32 data[2];
> + int ret;
> +
> + tb_port_dbg(in, "start DP discover\n");
>
> - if (!tb_dp_port_is_enabled(in))
> + if (!tb_dp_port_is_enabled(in)) {
> + tb_port_dbg(in, "DP port enabled\n");
> return NULL;
> + }
> +
> + ret = tb_port_read(in, data, TB_CFG_PORT, in->cap_adap,
> + ARRAY_SIZE(data));
> + if (ret)
> + return NULL;
> +
> + tb_port_dbg(in, "data[0]=0x%08x\n", data[0]);
> + tb_port_dbg(in, "data[1]=0x%08x\n", data[1]);
>
> tunnel = tb_tunnel_alloc(tb, 3, TB_TUNNEL_DP);
> if (!tunnel)
>

[ 0.000000] Linux version 5.2.9+ (brad@bkmac) (gcc version 6.3.0 20170516 (Debian 6.3.0-18+deb9u1)) #7 SMP Tue Sep 3 19:02:50 AWST 2019
[ 0.000000] Command line: \\boot\vmlinuz-5.2.9+ ro root=UUID=de35d1a6-e0e1-40b0-b46a-3974a04adf4b libata.allow_tpm=1 thunderbolt.dyndbg initrd=boot\initrd.img-5.2.9+
[ 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] 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-0x000000046fefffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] e820: update [mem 0x88ebc018-0x88ed6e57] usable ==> usable
[ 0.000000] e820: update [mem 0x88ebc018-0x88ed6e57] usable ==> usable
[ 0.000000] e820: update [mem 0x88fb4018-0x88fbca57] usable ==> usable
[ 0.000000] e820: update [mem 0x88fb4018-0x88fbca57] usable ==> usable
[ 0.000000] e820: update [mem 0x88eaa018-0x88ebbe49] usable ==> usable
[ 0.000000] e820: update [mem 0x88eaa018-0x88ebbe49] 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-0x0000000088eaa017] usable
[ 0.000000] reserve setup_data: [mem 0x0000000088eaa018-0x0000000088ebbe49] usable
[ 0.000000] reserve setup_data: [mem 0x0000000088ebbe4a-0x0000000088ebc017] usable
[ 0.000000] reserve setup_data: [mem 0x0000000088ebc018-0x0000000088ed6e57] usable
[ 0.000000] reserve setup_data: [mem 0x0000000088ed6e58-0x0000000088fb4017] usable
[ 0.000000] reserve setup_data: [mem 0x0000000088fb4018-0x0000000088fbca57] usable
[ 0.000000] reserve setup_data: [mem 0x0000000088fbca58-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-0x000000046fefffff] 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.176 MHz processor
[ 0.000197] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000197] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000203] last_pfn = 0x46ff00 max_arch_pfn = 0x400000000
[ 0.000206] MTRR default type: write-back
[ 0.000207] MTRR fixed ranges enabled:
[ 0.000208] 00000-9FFFF write-back
[ 0.000208] A0000-BFFFF uncachable
[ 0.000209] C0000-DFFFF write-protect
[ 0.000209] E0000-FFFFF uncachable
[ 0.000210] MTRR variable ranges enabled:
[ 0.000211] 0 base 0C0000000 mask FC0000000 uncachable
[ 0.000212] 1 base 0A0000000 mask FE0000000 uncachable
[ 0.000212] 2 base 090000000 mask FF0000000 uncachable
[ 0.000213] 3 base 08F800000 mask FFF800000 uncachable
[ 0.000213] 4 disabled
[ 0.000213] 5 disabled
[ 0.000214] 6 disabled
[ 0.000214] 7 disabled
[ 0.000214] 8 disabled
[ 0.000215] 9 disabled
[ 0.001085] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.001318] last_pfn = 0x8efa3 max_arch_pfn = 0x400000000
[ 0.001373] reserving inaccessible SNB gfx pages
[ 0.001376] BRK [0x02001000, 0x02001fff] PGTABLE
[ 0.001378] BRK [0x02002000, 0x02002fff] PGTABLE
[ 0.001379] BRK [0x02003000, 0x02003fff] PGTABLE
[ 0.001433] BRK [0x02004000, 0x02004fff] PGTABLE
[ 0.001731] BRK [0x02005000, 0x02005fff] PGTABLE
[ 0.001736] BRK [0x02006000, 0x02006fff] PGTABLE
[ 0.002436] Secure boot disabled
[ 0.002437] RAMDISK: [mem 0x7f58e000-0x7fffefff]
[ 0.002443] ACPI: Early table checksum verification disabled
[ 0.002445] ACPI: RSDP 0x000000008ED8E014 000024 (v02 APPLE )
[ 0.002448] ACPI: XSDT 0x000000008ED8E1C0 0000A4 (v01 APPLE Apple00 0000F000 01000013)
[ 0.002452] ACPI: FACP 0x000000008ED8C000 0000F4 (v04 APPLE Apple00 0000F000 Loki 0000005F)
[ 0.002456] ACPI: DSDT 0x000000008ED81000 0053FB (v01 APPLE iMac 00210001 INTL 20061109)
[ 0.002458] ACPI: FACS 0x000000008ED3E000 000040
[ 0.002460] ACPI: FACS 0x000000008ED3E000 000040
[ 0.002462] ACPI: HPET 0x000000008ED8B000 000038 (v01 APPLE Apple00 00000001 Loki 0000005F)
[ 0.002464] ACPI: APIC 0x000000008ED8A000 0000BC (v02 APPLE Apple00 00000001 Loki 0000005F)
[ 0.002466] ACPI: SBST 0x000000008ED88000 000030 (v01 APPLE Apple00 00000001 Loki 0000005F)
[ 0.002468] ACPI: ECDT 0x000000008ED87000 000053 (v01 APPLE Apple00 00000001 Loki 0000005F)
[ 0.002470] ACPI: SSDT 0x000000008ED7E000 00020D (v01 APPLE SataAhci 00001000 INTL 20061109)
[ 0.002472] ACPI: SSDT 0x000000008ED7C000 0000B1 (v01 APPLE SmcDppt 00001000 INTL 20061109)
[ 0.002474] ACPI: SSDT 0x000000008ED7A000 000646 (v01 APPLE UsbNoRmh 00001000 INTL 20061109)
[ 0.002475] ACPI: SSDT 0x000000008ED78000 00013D (v01 APPLE SataPrt1 00001000 INTL 20061109)
[ 0.002477] ACPI: SSDT 0x000000008ED77000 0000A0 (v02 APPLE IGHda 00001000 INTL 20061109)
[ 0.002479] ACPI: SSDT 0x000000008ED75000 000032 (v01 APPLE SsdtS3 00001000 INTL 20061109)
[ 0.002481] ACPI: SSDT 0x000000008ED74000 000548 (v01 PmRef Cpu0Ist 00003000 INTL 20061109)
[ 0.002483] ACPI: SSDT 0x000000008ED73000 0009B1 (v01 PmRef CpuPm 00003000 INTL 20061109)
[ 0.002485] ACPI: SSDT 0x000000008ED72000 000315 (v01 PmRef Cpu0Tst 00003000 INTL 20061109)
[ 0.002487] ACPI: SSDT 0x000000008ED71000 00037A (v01 PmRef ApTst 00003000 INTL 20061109)
[ 0.002489] ACPI: MCFG 0x000000008ED89000 00003C (v01 APPLE Apple00 00000001 Loki 0000005F)
[ 0.002494] ACPI: DMI detected to setup _OSI("Darwin"): Apple hardware
[ 0.002496] ACPI: Local APIC address 0xfee00000
[ 0.002513] Zone ranges:
[ 0.002514] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.002515] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.002516] Normal [mem 0x0000000100000000-0x000000046fefffff]
[ 0.002516] Movable zone start for each node
[ 0.002517] Early memory node ranges
[ 0.002518] node 0: [mem 0x0000000000001000-0x000000000008dfff]
[ 0.002518] node 0: [mem 0x0000000000090000-0x000000000009ffff]
[ 0.002519] node 0: [mem 0x0000000000100000-0x000000001fffffff]
[ 0.002520] node 0: [mem 0x0000000020200000-0x000000003fffffff]
[ 0.002520] node 0: [mem 0x0000000040200000-0x000000008ed32fff]
[ 0.002521] node 0: [mem 0x000000008ed5f000-0x000000008ed70fff]
[ 0.002522] node 0: [mem 0x000000008ed8f000-0x000000008ee5afff]
[ 0.002522] node 0: [mem 0x000000008ee8f000-0x000000008eed6fff]
[ 0.002523] node 0: [mem 0x000000008eeff000-0x000000008efa2fff]
[ 0.002523] node 0: [mem 0x0000000100000000-0x000000046fefffff]
[ 0.002549] Zeroed struct page in unavailable ranges: 5478 pages
[ 0.002550] Initmem setup node 0 [mem 0x0000000000001000-0x000000046fefffff]
[ 0.002551] On node 0 totalpages: 4188570
[ 0.002552] DMA zone: 64 pages used for memmap
[ 0.002553] DMA zone: 157 pages reserved
[ 0.002553] DMA zone: 3997 pages, LIFO batch:0
[ 0.002574] DMA32 zone: 9068 pages used for memmap
[ 0.002575] DMA32 zone: 580349 pages, LIFO batch:63
[ 0.007371] Normal zone: 56316 pages used for memmap
[ 0.007372] Normal zone: 3604224 pages, LIFO batch:63
[ 0.031719] ACPI: PM-Timer IO Port: 0x408
[ 0.031722] ACPI: Local APIC address 0xfee00000
[ 0.031727] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.031728] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.031728] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.031729] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[ 0.031730] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[ 0.031730] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[ 0.031731] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[ 0.031732] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[ 0.031741] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[ 0.031743] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.031744] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.031745] ACPI: IRQ0 used by override.
[ 0.031746] ACPI: IRQ9 used by override.
[ 0.031748] Using ACPI (MADT) for SMP configuration information
[ 0.031749] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.031753] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[ 0.031772] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.031773] PM: Registered nosave memory: [mem 0x0008e000-0x0008ffff]
[ 0.031775] PM: Registered nosave memory: [mem 0x000a0000-0x000bffff]
[ 0.031775] PM: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[ 0.031777] PM: Registered nosave memory: [mem 0x20000000-0x201fffff]
[ 0.031778] PM: Registered nosave memory: [mem 0x40000000-0x401fffff]
[ 0.031779] PM: Registered nosave memory: [mem 0x88eaa000-0x88eaafff]
[ 0.031781] PM: Registered nosave memory: [mem 0x88ebb000-0x88ebbfff]
[ 0.031782] PM: Registered nosave memory: [mem 0x88ebc000-0x88ebcfff]
[ 0.031783] PM: Registered nosave memory: [mem 0x88ed6000-0x88ed6fff]
[ 0.031784] PM: Registered nosave memory: [mem 0x88fb4000-0x88fb4fff]
[ 0.031786] PM: Registered nosave memory: [mem 0x88fbc000-0x88fbcfff]
[ 0.031787] PM: Registered nosave memory: [mem 0x8ed33000-0x8ed5efff]
[ 0.031789] PM: Registered nosave memory: [mem 0x8ed71000-0x8ed8efff]
[ 0.031790] PM: Registered nosave memory: [mem 0x8ee5b000-0x8ee8efff]
[ 0.031792] PM: Registered nosave memory: [mem 0x8eed7000-0x8eefefff]
[ 0.031794] PM: Registered nosave memory: [mem 0x8efa3000-0x8f8fffff]
[ 0.031794] PM: Registered nosave memory: [mem 0x8f900000-0xe00f7fff]
[ 0.031795] PM: Registered nosave memory: [mem 0xe00f8000-0xe00f8fff]
[ 0.031795] PM: Registered nosave memory: [mem 0xe00f9000-0xfed1bfff]
[ 0.031796] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[ 0.031796] PM: Registered nosave memory: [mem 0xfed20000-0xffed7fff]
[ 0.031797] PM: Registered nosave memory: [mem 0xffed8000-0xffefffff]
[ 0.031798] PM: Registered nosave memory: [mem 0xfff00000-0xffffffff]
[ 0.031799] [mem 0x8f900000-0xe00f7fff] available for PCI devices
[ 0.031802] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[ 0.066663] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[ 0.066827] percpu: Embedded 43 pages/cpu s136472 r8192 d31464 u262144
[ 0.066834] pcpu-alloc: s136472 r8192 d31464 u262144 alloc=1*2097152
[ 0.066834] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
[ 0.066853] Built 1 zonelists, mobility grouping on. Total pages: 4122965
[ 0.066854] Kernel command line: \\boot\vmlinuz-5.2.9+ ro root=UUID=de35d1a6-e0e1-40b0-b46a-3974a04adf4b libata.allow_tpm=1 thunderbolt.dyndbg initrd=boot\initrd.img-5.2.9+
[ 0.067714] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[ 0.068128] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[ 0.109263] Memory: 16275804K/16754280K available (8195K kernel code, 429K rwdata, 1460K rodata, 920K init, 800K bss, 478476K reserved, 0K cma-reserved)
[ 0.109309] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[ 0.109345] rcu: Hierarchical RCU implementation.
[ 0.109346] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[ 0.109355] NR_IRQS: 4352, nr_irqs: 488, preallocated irqs: 16
[ 0.109560] random: get_random_bytes called from start_kernel+0x27f/0x438 with crng_init=0
[ 0.109577] Console: colour dummy device 80x25
[ 0.109759] printk: console [tty0] enabled
[ 0.109763] ACPI: Core revision 20190509
[ 0.109903] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[ 0.109912] hpet clockevent registered
[ 0.109917] APIC: Switch to symmetric I/O mode setup
[ 0.110295] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.126582] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x3102f4b6233, max_idle_ns: 440795238297 ns
[ 0.126586] Calibrating delay loop (skipped), value calculated using timer frequency.. 6803.70 BogoMIPS (lpj=11333920)
[ 0.126588] pid_max: default: 32768 minimum: 301
[ 0.131814] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
[ 0.131845] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
[ 0.131961] process: using mwait in idle threads
[ 0.131964] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[ 0.131966] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[ 0.131968] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.131970] Spectre V2 : Spectre mitigation: kernel not compiled with retpoline; no mitigation available!
[ 0.131971] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[ 0.131975] MDS: Mitigation: Clear CPU buffers
[ 0.132071] Freeing SMP alternatives memory: 20K
[ 0.132341] TSC deadline timer enabled
[ 0.132343] smpboot: CPU0: Intel(R) Core(TM) i7-2600 CPU @ 3.40GHz (family: 0x6, model: 0x2a, stepping: 0x7)
[ 0.132398] Performance Events: PEBS fmt1+, SandyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
[ 0.132407] ... version: 3
[ 0.132408] ... bit width: 48
[ 0.132409] ... generic registers: 4
[ 0.132410] ... value mask: 0000ffffffffffff
[ 0.132412] ... max period: 00007fffffffffff
[ 0.132413] ... fixed-purpose events: 3
[ 0.132414] ... event mask: 000000070000000f
[ 0.132439] rcu: Hierarchical SRCU implementation.
[ 0.132645] smp: Bringing up secondary CPUs ...
[ 0.132688] x86: Booting SMP configuration:
[ 0.132689] .... node #0, CPUs: #1 #2 #3 #4
[ 0.136603] 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.136658] #5 #6 #7
[ 0.142280] smp: Brought up 1 node, 8 CPUs
[ 0.142280] smpboot: Max logical packages: 1
[ 0.142280] smpboot: Total of 8 processors activated (54424.60 BogoMIPS)
[ 0.143439] devtmpfs: initialized
[ 0.143439] PM: Registering ACPI NVS region [mem 0x8ed33000-0x8ed5efff] (180224 bytes)
[ 0.143439] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[ 0.143439] futex hash table entries: 2048 (order: 5, 131072 bytes)
[ 0.143439] NET: Registered protocol family 16
[ 0.143471] cpuidle: using governor ladder
[ 0.143471] cpuidle: using governor menu
[ 0.143471] ACPI: bus type PCI registered
[ 0.143471] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.143471] PCI: MMCONFIG for domain 0000 [bus 00-fb] at [mem 0xe0000000-0xefbfffff] (base 0xe0000000)
[ 0.143471] PCI: not using MMCONFIG
[ 0.143471] PCI: Using configuration type 1 for base access
[ 0.143471] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[ 0.144020] ACPI: Disabled all _OSI OS vendors
[ 0.144020] ACPI: Added _OSI(Module Device)
[ 0.144020] ACPI: Added _OSI(Processor Device)
[ 0.144020] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.144020] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.144020] ACPI: Added _OSI(Linux-Dell-Video)
[ 0.144020] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[ 0.144020] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[ 0.144020] ACPI: Added _OSI(Darwin)
[ 0.147501] ACPI: 11 ACPI AML tables successfully acquired and loaded
[ 0.147735] ACPI: EC: EC started
[ 0.147737] ACPI: EC: interrupt blocked
[ 0.149095] ACPI: \: Used as first EC
[ 0.149097] ACPI: \: GPE=0x17, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.149099] ACPI: EC: Boot ECDT EC used to handle transactions
[ 0.149373] ACPI: BIOS _OSI(Darwin) query honored via DMI
[ 0.149538] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[ 0.149742] ACPI: Dynamic OEM Table Load:
[ 0.149749] ACPI: SSDT 0xFFFF88845D058800 000781 (v01 PmRef Cpu0Cst 00003001 INTL 20061109)
[ 0.149846] ACPI: Dynamic OEM Table Load:
[ 0.149846] ACPI: SSDT 0xFFFF88845D051800 0003A4 (v01 PmRef ApIst 00003000 INTL 20061109)
[ 0.149846] ACPI: Dynamic OEM Table Load:
[ 0.149846] ACPI: SSDT 0xFFFF88845D4ECA00 000119 (v01 PmRef ApCst 00003000 INTL 20061109)
[ 0.149846] ACPI: Interpreter enabled
[ 0.149846] ACPI: (supports S0 S3 S4 S5)
[ 0.149846] ACPI: Using IOAPIC for interrupt routing
[ 0.149928] PCI: MMCONFIG for domain 0000 [bus 00-fb] at [mem 0xe0000000-0xefbfffff] (base 0xe0000000)
[ 0.149928] PCI: MMCONFIG at [mem 0xe0000000-0xefbfffff] reserved in ACPI motherboard resources
[ 0.149928] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.149928] ACPI: Enabled 6 GPEs in block 00 to 3F
[ 0.154667] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.154673] acpi PNP0A08:00: _OSC: OS assumes control of [PCIeHotplug SHPCHotplug AER PCIeCapability LTR]
[ 0.154677] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-fb] only partially covers this bridge
[ 0.154817] PCI host bridge to bus 0000:00
[ 0.154820] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.154822] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.154824] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.154827] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff window]
[ 0.154829] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
[ 0.154831] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
[ 0.154833] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window]
[ 0.154836] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
[ 0.154838] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[ 0.154840] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[ 0.154842] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
[ 0.154844] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
[ 0.154846] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[ 0.154849] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
[ 0.154851] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
[ 0.154853] pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff window]
[ 0.154855] pci_bus 0000:00: root bus resource [mem 0x8f900000-0xfeafffff window]
[ 0.154857] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff window]
[ 0.154860] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 0.154866] pci 0000:00:00.0: [8086:0100] type 00 class 0x060000
[ 0.154932] pci 0000:00:01.0: [8086:0101] type 01 class 0x060400
[ 0.154963] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.155018] pci 0000:00:02.0: [8086:0102] type 00 class 0x038000
[ 0.155027] pci 0000:00:02.0: reg 0x10: [mem 0xa8000000-0xa83fffff 64bit]
[ 0.155032] pci 0000:00:02.0: reg 0x18: [mem 0xa0000000-0xa7ffffff 64bit pref]
[ 0.155036] pci 0000:00:02.0: reg 0x20: [io 0x3000-0x303f]
[ 0.155109] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
[ 0.155133] pci 0000:00:16.0: reg 0x10: [mem 0xa8907100-0xa890710f 64bit]
[ 0.155199] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[ 0.155258] pci 0000:00:1a.0: [8086:1c2c] type 00 class 0x0c0300
[ 0.155299] pci 0000:00:1a.0: reg 0x20: [io 0x3140-0x315f]
[ 0.155384] pci 0000:00:1a.7: [8086:1c2d] type 00 class 0x0c0320
[ 0.155404] pci 0000:00:1a.7: reg 0x10: [mem 0xa8906c00-0xa8906fff]
[ 0.155480] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
[ 0.155568] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
[ 0.155586] pci 0000:00:1b.0: reg 0x10: [mem 0xa8900000-0xa8903fff 64bit]
[ 0.155644] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.155699] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
[ 0.155782] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.155844] pci 0000:00:1c.1: [8086:1c12] type 01 class 0x060400
[ 0.155928] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[ 0.155990] pci 0000:00:1c.2: [8086:1c14] type 01 class 0x060400
[ 0.156073] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[ 0.156134] pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
[ 0.156217] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[ 0.156279] pci 0000:00:1d.0: [8086:1c27] type 00 class 0x0c0300
[ 0.156320] pci 0000:00:1d.0: reg 0x20: [io 0x30e0-0x30ff]
[ 0.156404] pci 0000:00:1d.7: [8086:1c26] type 00 class 0x0c0320
[ 0.156424] pci 0000:00:1d.7: reg 0x10: [mem 0xa8906800-0xa8906bff]
[ 0.156499] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[ 0.156584] pci 0000:00:1f.0: [8086:1c44] type 00 class 0x060100
[ 0.156731] pci 0000:00:1f.2: [8086:1c02] type 00 class 0x010601
[ 0.156747] pci 0000:00:1f.2: reg 0x10: [io 0x3168-0x316f]
[ 0.156754] pci 0000:00:1f.2: reg 0x14: [io 0x317c-0x317f]
[ 0.156761] pci 0000:00:1f.2: reg 0x18: [io 0x3160-0x3167]
[ 0.156768] pci 0000:00:1f.2: reg 0x1c: [io 0x3178-0x317b]
[ 0.156774] pci 0000:00:1f.2: reg 0x20: [io 0x3060-0x307f]
[ 0.156781] pci 0000:00:1f.2: reg 0x24: [mem 0xa8906000-0xa89067ff]
[ 0.156816] pci 0000:00:1f.2: PME# supported from D3hot
[ 0.156869] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
[ 0.156886] pci 0000:00:1f.3: reg 0x10: [mem 0xa8907000-0xa89070ff 64bit]
[ 0.156900] pci 0000:00:1f.3: reg 0x20: [io 0xefa0-0xefbf]
[ 0.156988] pci 0000:01:00.0: [1002:6720] type 00 class 0x030000
[ 0.157007] pci 0000:01:00.0: reg 0x10: [mem 0x90000000-0x9fffffff 64bit pref]
[ 0.157018] pci 0000:01:00.0: reg 0x18: [mem 0xa8800000-0xa881ffff 64bit]
[ 0.157025] pci 0000:01:00.0: reg 0x20: [io 0x2000-0x20ff]
[ 0.157037] pci 0000:01:00.0: reg 0x30: [mem 0xa8820000-0xa883ffff pref]
[ 0.157043] pci 0000:01:00.0: enabling Extended Tags
[ 0.157052] pci 0000:01:00.0: BAR 0: assigned to efifb
[ 0.157082] pci 0000:01:00.0: supports D1 D2
[ 0.157140] pci 0000:01:00.1: [1002:aa88] type 00 class 0x040300
[ 0.157159] pci 0000:01:00.1: reg 0x10: [mem 0xa8840000-0xa8843fff 64bit]
[ 0.157183] pci 0000:01:00.1: enabling Extended Tags
[ 0.157219] pci 0000:01:00.1: supports D1 D2
[ 0.157281] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.157284] pci 0000:00:01.0: bridge window [io 0x2000-0x2fff]
[ 0.157287] pci 0000:00:01.0: bridge window [mem 0xa8800000-0xa88fffff]
[ 0.157290] pci 0000:00:01.0: bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[ 0.157357] pci 0000:02:00.0: [14e4:16b4] type 00 class 0x020000
[ 0.157402] pci 0000:02:00.0: reg 0x10: [mem 0xa8400000-0xa840ffff 64bit pref]
[ 0.157424] pci 0000:02:00.0: reg 0x18: [mem 0xa8410000-0xa841ffff 64bit pref]
[ 0.157575] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[ 0.157684] pci 0000:00:1c.0: PCI bridge to [bus 02]
[ 0.157690] pci 0000:00:1c.0: bridge window [mem 0xa8700000-0xa87fffff]
[ 0.157696] pci 0000:00:1c.0: bridge window [mem 0xa8400000-0xa84fffff 64bit pref]
[ 0.157758] pci 0000:03:00.0: [168c:0030] type 00 class 0x028000
[ 0.157798] pci 0000:03:00.0: reg 0x10: [mem 0xa8600000-0xa861ffff 64bit]
[ 0.157858] pci 0000:03:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[ 0.157945] pci 0000:03:00.0: supports D1 D2
[ 0.157947] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.158042] pci 0000:00:1c.1: PCI bridge to [bus 03]
[ 0.158048] pci 0000:00:1c.1: bridge window [mem 0xa8600000-0xa86fffff]
[ 0.158115] pci 0000:04:00.0: [11c1:5901] type 00 class 0x0c0010
[ 0.158159] pci 0000:04:00.0: reg 0x10: [mem 0xa8500000-0xa8500fff 64bit]
[ 0.158317] pci 0000:04:00.0: supports D1 D2
[ 0.158319] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.158442] pci 0000:00:1c.2: PCI bridge to [bus 04]
[ 0.158448] pci 0000:00:1c.2: bridge window [mem 0xa8500000-0xa85fffff]
[ 0.158508] pci 0000:05:00.0: [8086:1513] type 01 class 0x060400
[ 0.158585] pci 0000:05:00.0: enabling Extended Tags
[ 0.158674] pci 0000:05:00.0: supports D1 D2
[ 0.158675] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.158779] pci 0000:00:1c.4: PCI bridge to [bus 05-cb]
[ 0.158783] pci 0000:00:1c.4: bridge window [io 0x4000-0x5fff]
[ 0.158787] pci 0000:00:1c.4: bridge window [mem 0xa8a00000-0xad8fffff]
[ 0.158792] pci 0000:00:1c.4: bridge window [mem 0xacf00000-0xb10fffff 64bit pref]
[ 0.158868] acpiphp: Slot [3] registered
[ 0.158894] acpiphp: Slot [4] registered
[ 0.158922] pci 0000:06:00.0: [8086:1513] type 01 class 0x060400
[ 0.159007] pci 0000:06:00.0: enabling Extended Tags
[ 0.159101] pci 0000:06:00.0: supports D1 D2
[ 0.159102] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.159185] pci 0000:06:03.0: [8086:1513] type 01 class 0x060400
[ 0.159269] pci 0000:06:03.0: enabling Extended Tags
[ 0.159365] pci 0000:06:03.0: supports D1 D2
[ 0.159367] pci 0000:06:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.159445] pci 0000:06:04.0: [8086:1513] type 01 class 0x060400
[ 0.159529] pci 0000:06:04.0: enabling Extended Tags
[ 0.159625] pci 0000:06:04.0: supports D1 D2
[ 0.159626] pci 0000:06:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.159706] pci 0000:06:05.0: [8086:1513] type 01 class 0x060400
[ 0.159789] pci 0000:06:05.0: enabling Extended Tags
[ 0.159885] pci 0000:06:05.0: supports D1 D2
[ 0.159887] pci 0000:06:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.159970] pci 0000:06:06.0: [8086:1513] type 01 class 0x060400
[ 0.160054] pci 0000:06:06.0: enabling Extended Tags
[ 0.160149] pci 0000:06:06.0: supports D1 D2
[ 0.160151] pci 0000:06:06.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.160256] pci 0000:05:00.0: PCI bridge to [bus 06-cb]
[ 0.160264] pci 0000:05:00.0: bridge window [io 0x4000-0x4fff]
[ 0.160269] pci 0000:05:00.0: bridge window [mem 0xa8a00000-0xa98fffff]
[ 0.160277] pci 0000:05:00.0: bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[ 0.160331] acpiphp: Slot [1] registered
[ 0.160357] pci 0000:07:00.0: [8086:1513] type 00 class 0x088000
[ 0.160400] pci 0000:07:00.0: reg 0x10: [mem 0xa8a00000-0xa8a3ffff]
[ 0.160416] pci 0000:07:00.0: reg 0x14: [mem 0xa8a40000-0xa8a40fff]
[ 0.160495] pci 0000:07:00.0: enabling Extended Tags
[ 0.160615] pci 0000:07:00.0: supports D1 D2
[ 0.160616] pci 0000:07:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.160766] pci 0000:06:00.0: PCI bridge to [bus 07]
[ 0.160777] pci 0000:06:00.0: bridge window [mem 0xa8a00000-0xa8afffff]
[ 0.160830] pci 0000:06:03.0: PCI bridge to [bus 08-38]
[ 0.160843] pci 0000:06:03.0: bridge window [mem 0xa8b00000-0xa8bfffff]
[ 0.160929] pci 0000:39:00.0: [8086:1513] type 01 class 0x060400
[ 0.161070] pci 0000:39:00.0: enabling Extended Tags
[ 0.161236] pci 0000:39:00.0: supports D1 D2
[ 0.161237] pci 0000:39:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.169966] pci 0000:06:04.0: PCI bridge to [bus 39-69]
[ 0.169982] pci 0000:06:04.0: bridge window [mem 0xa8c00000-0xa90fffff]
[ 0.169994] pci 0000:06:04.0: bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[ 0.170104] pci 0000:3a:00.0: [8086:1513] type 01 class 0x060400
[ 0.170256] pci 0000:3a:00.0: enabling Extended Tags
[ 0.170426] pci 0000:3a:00.0: supports D1 D2
[ 0.170428] pci 0000:3a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.170542] pci 0000:3a:01.0: [8086:1513] type 01 class 0x060400
[ 0.170693] pci 0000:3a:01.0: enabling Extended Tags
[ 0.170862] pci 0000:3a:01.0: supports D1 D2
[ 0.170864] pci 0000:3a:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.170979] pci 0000:3a:02.0: [8086:1513] type 01 class 0x060400
[ 0.171130] pci 0000:3a:02.0: enabling Extended Tags
[ 0.171300] pci 0000:3a:02.0: supports D1 D2
[ 0.171302] pci 0000:3a:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.171420] pci 0000:3a:04.0: [8086:1513] type 01 class 0x060400
[ 0.171554] pci 0000:3a:04.0: enabling Extended Tags
[ 0.171727] pci 0000:3a:04.0: supports D1 D2
[ 0.171729] pci 0000:3a:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.171848] pci 0000:3a:05.0: [8086:1513] type 01 class 0x060400
[ 0.171982] pci 0000:3a:05.0: enabling Extended Tags
[ 0.172155] pci 0000:3a:05.0: supports D1 D2
[ 0.172157] pci 0000:3a:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.172322] pci 0000:39:00.0: PCI bridge to [bus 3a-41]
[ 0.172341] pci 0000:39:00.0: bridge window [mem 0xa8c00000-0xa90fffff]
[ 0.172354] pci 0000:39:00.0: bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[ 0.172469] pci 0000:3b:00.0: [12d8:400c] type 01 class 0x060400
[ 0.172870] pci 0000:3b:00.0: supports D1 D2
[ 0.172872] pci 0000:3b:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.183304] pci 0000:3a:00.0: PCI bridge to [bus 3b-3d]
[ 0.183328] pci 0000:3a:00.0: bridge window [mem 0xa9000000-0xa90fffff]
[ 0.186586] pci 0000:3c:03.0: [12d8:400c] type 01 class 0x060400
[ 0.186586] pci 0000:3c:03.0: supports D1 D2
[ 0.186586] pci 0000:3c:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.186613] pci 0000:3b:00.0: PCI bridge to [bus 3c-3d]
[ 0.186613] pci 0000:3b:00.0: bridge window [mem 0xa9000000-0xa90fffff]
[ 0.186613] pci 0000:3d:00.0: [12d8:400e] type 00 class 0x0c0310
[ 0.186613] pci 0000:3d:00.0: reg 0x10: [mem 0xa9001000-0xa9001fff]
[ 0.186613] pci 0000:3d:00.0: supports D1 D2
[ 0.186613] pci 0000:3d:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.186613] pci 0000:3d:00.1: [12d8:400e] type 00 class 0x0c0310
[ 0.186613] pci 0000:3d:00.1: reg 0x10: [mem 0xa9000000-0xa9000fff]
[ 0.186613] pci 0000:3d:00.1: supports D1 D2
[ 0.186613] pci 0000:3d:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.186613] pci 0000:3d:00.2: [12d8:400f] type 00 class 0x0c0320
[ 0.186613] pci 0000:3d:00.2: reg 0x10: [mem 0xa9002000-0xa90020ff]
[ 0.186613] pci 0000:3d:00.2: supports D1 D2
[ 0.186613] pci 0000:3d:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.186613] pci 0000:3c:03.0: PCI bridge to [bus 3d]
[ 0.186613] pci 0000:3c:03.0: bridge window [mem 0xa9000000-0xa90fffff]
[ 0.186613] pci 0000:3e:00.0: [14e4:16b0] type 00 class 0x020000
[ 0.186613] pci 0000:3e:00.0: reg 0x10: [mem 0xacf00000-0xacf0ffff 64bit pref]
[ 0.186613] pci 0000:3e:00.0: reg 0x18: [mem 0xacf10000-0xacf1ffff 64bit pref]
[ 0.186613] pci 0000:3e:00.0: PME# supported from D0 D3hot D3cold
[ 0.199983] pci 0000:3a:01.0: PCI bridge to [bus 3e]
[ 0.200007] pci 0000:3a:01.0: bridge window [mem 0xa8f00000-0xa8ffffff]
[ 0.200023] pci 0000:3a:01.0: bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[ 0.203252] pci 0000:3f:00.0: [11c1:5901] type 00 class 0x0c0010
[ 0.203252] pci 0000:3f:00.0: reg 0x10: [mem 0xa8e00000-0xa8e00fff 64bit]
[ 0.203252] pci 0000:3f:00.0: supports D1 D2
[ 0.203252] pci 0000:3f:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.213314] pci 0000:3a:02.0: PCI bridge to [bus 3f]
[ 0.213338] pci 0000:3a:02.0: bridge window [mem 0xa8e00000-0xa8efffff]
[ 0.216593] pci 0000:3a:04.0: PCI bridge to [bus 40]
[ 0.216593] pci 0000:3a:04.0: bridge window [mem 0xa8d00000-0xa8dfffff]
[ 0.216601] pci 0000:3a:05.0: PCI bridge to [bus 41]
[ 0.216601] pci 0000:3a:05.0: bridge window [mem 0xa8c00000-0xa8cfffff]
[ 0.216601] pci 0000:6a:00.0: [8086:1513] type 01 class 0x060400
[ 0.216601] pci 0000:6a:00.0: enabling Extended Tags
[ 0.216601] pci 0000:6a:00.0: supports D1 D2
[ 0.216601] pci 0000:6a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.226630] pci 0000:06:05.0: PCI bridge to [bus 6a-9a]
[ 0.226642] pci 0000:06:05.0: bridge window [io 0x4000-0x4fff]
[ 0.226650] pci 0000:06:05.0: bridge window [mem 0xa9100000-0xa97fffff]
[ 0.226662] pci 0000:06:05.0: bridge window [mem 0xad000000-0xad0fffff 64bit pref]
[ 0.229919] pci 0000:6b:00.0: [8086:1513] type 01 class 0x060400
[ 0.229919] pci 0000:6b:00.0: enabling Extended Tags
[ 0.229919] pci 0000:6b:00.0: supports D1 D2
[ 0.229919] pci 0000:6b:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.229938] pci 0000:6b:01.0: [8086:1513] type 01 class 0x060400
[ 0.229938] pci 0000:6b:01.0: enabling Extended Tags
[ 0.229938] pci 0000:6b:01.0: supports D1 D2
[ 0.229938] pci 0000:6b:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.229938] pci 0000:6b:02.0: [8086:1513] type 01 class 0x060400
[ 0.229938] pci 0000:6b:02.0: enabling Extended Tags
[ 0.229938] pci 0000:6b:02.0: supports D1 D2
[ 0.229938] pci 0000:6b:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.229938] pci 0000:6b:03.0: [8086:1513] type 01 class 0x060400
[ 0.229938] pci 0000:6b:03.0: enabling Extended Tags
[ 0.229938] pci 0000:6b:03.0: supports D1 D2
[ 0.229938] pci 0000:6b:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.229938] pci 0000:6b:04.0: [8086:1513] type 01 class 0x060400
[ 0.229938] pci 0000:6b:04.0: enabling Extended Tags
[ 0.229938] pci 0000:6b:04.0: supports D1 D2
[ 0.229938] pci 0000:6b:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.229938] pci 0000:6b:05.0: [8086:1513] type 01 class 0x060400
[ 0.229938] pci 0000:6b:05.0: enabling Extended Tags
[ 0.229938] pci 0000:6b:05.0: supports D1 D2
[ 0.229938] pci 0000:6b:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.229938] pci 0000:6a:00.0: PCI bridge to [bus 6b-76]
[ 0.229938] pci 0000:6a:00.0: bridge window [io 0x4000-0x4fff]
[ 0.229938] pci 0000:6a:00.0: bridge window [mem 0xa9100000-0xa97fffff]
[ 0.229938] pci 0000:6a:00.0: bridge window [mem 0xad000000-0xad0fffff 64bit pref]
[ 0.229938] pci 0000:6c:00.0: [12d8:400c] type 01 class 0x060400
[ 0.229995] pci 0000:6c:00.0: supports D1 D2
[ 0.229997] pci 0000:6c:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.243304] pci 0000:6b:00.0: PCI bridge to [bus 6c-6e]
[ 0.243328] pci 0000:6b:00.0: bridge window [mem 0xa9700000-0xa97fffff]
[ 0.246587] pci 0000:6d:03.0: [12d8:400c] type 01 class 0x060400
[ 0.246587] pci 0000:6d:03.0: supports D1 D2
[ 0.246587] pci 0000:6d:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.246613] pci 0000:6c:00.0: PCI bridge to [bus 6d-6e]
[ 0.246613] pci 0000:6c:00.0: bridge window [mem 0xa9700000-0xa97fffff]
[ 0.246613] pci 0000:6e:00.0: [12d8:400e] type 00 class 0x0c0310
[ 0.246613] pci 0000:6e:00.0: reg 0x10: [mem 0xa9701000-0xa9701fff]
[ 0.246613] pci 0000:6e:00.0: supports D1 D2
[ 0.246613] pci 0000:6e:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.246613] pci 0000:6e:00.1: [12d8:400e] type 00 class 0x0c0310
[ 0.246613] pci 0000:6e:00.1: reg 0x10: [mem 0xa9700000-0xa9700fff]
[ 0.246613] pci 0000:6e:00.1: supports D1 D2
[ 0.246613] pci 0000:6e:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.246613] pci 0000:6e:00.2: [12d8:400f] type 00 class 0x0c0320
[ 0.246613] pci 0000:6e:00.2: reg 0x10: [mem 0xa9702000-0xa97020ff]
[ 0.246613] pci 0000:6e:00.2: supports D1 D2
[ 0.246613] pci 0000:6e:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.246613] pci 0000:6d:03.0: PCI bridge to [bus 6e]
[ 0.246613] pci 0000:6d:03.0: bridge window [mem 0xa9700000-0xa97fffff]
[ 0.246613] pci 0000:6f:00.0: [14e4:16b0] type 00 class 0x020000
[ 0.246613] pci 0000:6f:00.0: reg 0x10: [mem 0xad000000-0xad00ffff 64bit pref]
[ 0.246613] pci 0000:6f:00.0: reg 0x18: [mem 0xad010000-0xad01ffff 64bit pref]
[ 0.246613] pci 0000:6f:00.0: PME# supported from D0 D3hot D3cold
[ 0.259985] pci 0000:6b:01.0: PCI bridge to [bus 6f]
[ 0.260009] pci 0000:6b:01.0: bridge window [mem 0xa9600000-0xa96fffff]
[ 0.260025] pci 0000:6b:01.0: bridge window [mem 0xad000000-0xad0fffff 64bit pref]
[ 0.263253] pci 0000:70:00.0: [11c1:5901] type 00 class 0x0c0010
[ 0.263253] pci 0000:70:00.0: reg 0x10: [mem 0xa9500000-0xa9500fff 64bit]
[ 0.263253] pci 0000:70:00.0: supports D1 D2
[ 0.263253] pci 0000:70:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.273315] pci 0000:6b:02.0: PCI bridge to [bus 70]
[ 0.273338] pci 0000:6b:02.0: bridge window [mem 0xa9500000-0xa95fffff]
[ 0.276588] pci 0000:6b:03.0: PCI bridge to [bus 71]
[ 0.276588] pci 0000:6b:03.0: bridge window [mem 0xa9400000-0xa94fffff]
[ 0.276606] pci 0000:72:00.0: [8086:1549] type 01 class 0x060400
[ 0.276606] pci 0000:72:00.0: enabling Extended Tags
[ 0.276606] pci 0000:72:00.0: supports D1 D2
[ 0.276606] pci 0000:72:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.286650] pci 0000:6b:04.0: PCI bridge to [bus 72-75]
[ 0.286668] pci 0000:6b:04.0: bridge window [io 0x4000-0x4fff]
[ 0.286678] pci 0000:6b:04.0: bridge window [mem 0xa9200000-0xa93fffff]
[ 0.289919] pci 0000:73:00.0: [8086:1549] type 01 class 0x060400
[ 0.289919] pci 0000:73:00.0: enabling Extended Tags
[ 0.289919] pci 0000:73:00.0: supports D1 D2
[ 0.289919] pci 0000:73:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.289944] pci 0000:73:01.0: [8086:1549] type 01 class 0x060400
[ 0.289944] pci 0000:73:01.0: enabling Extended Tags
[ 0.289944] pci 0000:73:01.0: supports D1 D2
[ 0.289944] pci 0000:73:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.289948] pci 0000:72:00.0: PCI bridge to [bus 73-75]
[ 0.289948] pci 0000:72:00.0: bridge window [io 0x4000-0x4fff]
[ 0.289948] pci 0000:72:00.0: bridge window [mem 0xa9200000-0xa93fffff]
[ 0.289948] pci 0000:74:00.0: [1b21:1142] type 00 class 0x0c0330
[ 0.289948] pci 0000:74:00.0: reg 0x10: [mem 0xa9300000-0xa9307fff 64bit]
[ 0.289948] pci 0000:74:00.0: PME# supported from D3cold
[ 0.289948] pci 0000:73:00.0: PCI bridge to [bus 74]
[ 0.289948] pci 0000:73:00.0: bridge window [mem 0xa9300000-0xa93fffff]
[ 0.289949] pci 0000:75:00.0: [1b21:0612] type 00 class 0x010601
[ 0.289949] pci 0000:75:00.0: reg 0x10: [io 0x4028-0x402f]
[ 0.289949] pci 0000:75:00.0: reg 0x14: [io 0x4034-0x4037]
[ 0.289949] pci 0000:75:00.0: reg 0x18: [io 0x4020-0x4027]
[ 0.289949] pci 0000:75:00.0: reg 0x1c: [io 0x4030-0x4033]
[ 0.289949] pci 0000:75:00.0: reg 0x20: [io 0x4000-0x401f]
[ 0.289949] pci 0000:75:00.0: reg 0x24: [mem 0xa9200000-0xa92001ff]
[ 0.289949] pci 0000:75:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[ 0.289979] pci 0000:73:01.0: PCI bridge to [bus 75]
[ 0.289998] pci 0000:73:01.0: bridge window [io 0x4000-0x4fff]
[ 0.290008] pci 0000:73:01.0: bridge window [mem 0xa9200000-0xa92fffff]
[ 0.293273] pci 0000:6b:05.0: PCI bridge to [bus 76]
[ 0.293273] pci 0000:6b:05.0: bridge window [mem 0xa9100000-0xa91fffff]
[ 0.293273] pci 0000:06:06.0: PCI bridge to [bus 9b-cb]
[ 0.293273] pci 0000:06:06.0: bridge window [mem 0xa9800000-0xa98fffff]
[ 0.293273] pci_bus 0000:00: on NUMA node 0
[ 0.293273] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
[ 0.293273] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
[ 0.293273] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
[ 0.293273] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
[ 0.293273] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
[ 0.293273] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
[ 0.293273] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
[ 0.293273] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
[ 0.293273] ACPI: EC: interrupt unblocked
[ 0.293273] ACPI: EC: event unblocked
[ 0.293273] ACPI: \_SB_.PCI0.LPCB.EC__: GPE=0x17, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.293273] ACPI: \_SB_.PCI0.LPCB.EC__: Boot DSDT EC used to handle transactions and events
[ 0.293273] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[ 0.293273] pci 0000:01:00.0: vgaarb: bridge control possible
[ 0.293273] pci 0000:01:00.0: vgaarb: setting as boot device
[ 0.293273] vgaarb: loaded
[ 0.293315] SCSI subsystem initialized
[ 0.293327] libata version 3.00 loaded.
[ 0.293327] Registered efivars operations
[ 0.336701] PCI: Using ACPI for IRQ routing
[ 0.346011] PCI: pci_cache_line_size set to 64 bytes
[ 0.346016] pci 0000:00:1c.4: can't claim BAR 9 [mem 0xacf00000-0xb10fffff 64bit pref]: address conflict with PCI Bus 0000:05 [mem 0xa8a00000-0xad8fffff]
[ 0.346313] e820: reserve RAM buffer [mem 0x0008e000-0x0008ffff]
[ 0.346314] e820: reserve RAM buffer [mem 0x88eaa018-0x8bffffff]
[ 0.346315] e820: reserve RAM buffer [mem 0x88ebc018-0x8bffffff]
[ 0.346316] e820: reserve RAM buffer [mem 0x88fb4018-0x8bffffff]
[ 0.346316] e820: reserve RAM buffer [mem 0x8ed33000-0x8fffffff]
[ 0.346318] e820: reserve RAM buffer [mem 0x8ed71000-0x8fffffff]
[ 0.346319] e820: reserve RAM buffer [mem 0x8ee5b000-0x8fffffff]
[ 0.346320] e820: reserve RAM buffer [mem 0x8eed7000-0x8fffffff]
[ 0.346320] e820: reserve RAM buffer [mem 0x8efa3000-0x8fffffff]
[ 0.346321] e820: reserve RAM buffer [mem 0x46ff00000-0x46fffffff]
[ 0.346600] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 0.346600] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[ 0.350938] clocksource: Switched to clocksource tsc-early
[ 0.350958] VFS: Disk quotas dquot_6.6.0
[ 0.350969] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.350995] pnp: PnP ACPI init
[ 0.351101] system 00:00: [mem 0xfed00000-0xfed003ff] has been reserved
[ 0.351110] system 00:00: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
[ 0.351159] system 00:01: [io 0x0680-0x069f] has been reserved
[ 0.351163] system 00:01: [io 0x1000-0x100f] has been reserved
[ 0.351167] system 00:01: [io 0xffff] has been reserved
[ 0.351169] system 00:01: [io 0xffff] has been reserved
[ 0.351171] system 00:01: [io 0x0400-0x047f] has been reserved
[ 0.351173] system 00:01: [io 0x0500-0x057f] has been reserved
[ 0.351175] system 00:01: [io 0x164e-0x164f] has been reserved
[ 0.351180] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.351198] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.351348] system 00:03: [mem 0xfed1c000-0xfed1ffff] has been reserved
[ 0.351353] system 00:03: [mem 0xfed10000-0xfed17fff] has been reserved
[ 0.351357] system 00:03: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.351359] system 00:03: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.351361] system 00:03: [mem 0xe0000000-0xefffffff] could not be reserved
[ 0.351363] system 00:03: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.351366] system 00:03: [mem 0xfed90000-0xfed93fff] has been reserved
[ 0.351368] system 00:03: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 0.351370] system 00:03: [mem 0xff000000-0xffffffff] could not be reserved
[ 0.351372] system 00:03: [mem 0xfee00000-0xfeefffff] has been reserved
[ 0.351378] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.351461] pnp: PnP ACPI: found 4 devices
[ 0.351476] pci 0000:01:00.0: assigning 75 device properties
[ 0.351476] pci 0000:04:00.0: assigning 2 device properties
[ 0.351476] pci 0000:07:00.0: assigning 5 device properties
[ 0.351476] pci 0000:3f:00.0: assigning 2 device properties
[ 0.351476] pci 0000:70:00.0: assigning 2 device properties
[ 0.351476] pci 0000:00:1b.0: assigning 4 device properties
[ 0.355570] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.355570] pci 0000:03:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[ 0.355570] pci 0000:75:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[ 0.355570] pci 0000:06:03.0: bridge window [io 0x1000-0x0fff] to [bus 08-38] add_size 1000
[ 0.355570] pci 0000:06:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 08-38] add_size 200000 add_align 100000
[ 0.355570] pci 0000:3a:04.0: bridge window [io 0x1000-0x0fff] to [bus 40] add_size 1000
[ 0.355570] pci 0000:3a:04.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 40] add_size 200000 add_align 100000
[ 0.355570] pci 0000:3a:05.0: bridge window [io 0x1000-0x0fff] to [bus 41] add_size 1000
[ 0.355570] pci 0000:3a:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 41] add_size 200000 add_align 100000
[ 0.355570] pci 0000:39:00.0: bridge window [io 0x1000-0x0fff] to [bus 3a-41] add_size 2000
[ 0.355570] pci 0000:06:04.0: bridge window [io 0x1000-0x0fff] to [bus 39-69] add_size 3000
[ 0.355570] pci 0000:6b:04.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 72-75] add_size 200000 add_align 100000
[ 0.355570] pci 0000:6b:05.0: bridge window [io 0x1000-0x0fff] to [bus 76] add_size 1000
[ 0.355570] pci 0000:6b:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 76] add_size 200000 add_align 100000
[ 0.355570] pci 0000:06:06.0: bridge window [io 0x1000-0x0fff] to [bus 9b-cb] add_size 1000
[ 0.355570] pci 0000:06:06.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 9b-cb] add_size 200000 add_align 100000
[ 0.355570] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.355570] pci 0000:00:01.0: bridge window [io 0x2000-0x2fff]
[ 0.355570] pci 0000:00:01.0: bridge window [mem 0xa8800000-0xa88fffff]
[ 0.355570] pci 0000:00:01.0: bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[ 0.355570] pci 0000:00:1c.0: PCI bridge to [bus 02]
[ 0.355570] pci 0000:00:1c.0: bridge window [mem 0xa8700000-0xa87fffff]
[ 0.355570] pci 0000:00:1c.0: bridge window [mem 0xa8400000-0xa84fffff 64bit pref]
[ 0.355570] pci 0000:03:00.0: BAR 6: assigned [mem 0xa8620000-0xa862ffff pref]
[ 0.355570] pci 0000:00:1c.1: PCI bridge to [bus 03]
[ 0.355570] pci 0000:00:1c.1: bridge window [mem 0xa8600000-0xa86fffff]
[ 0.355570] pci 0000:00:1c.2: PCI bridge to [bus 04]
[ 0.355570] pci 0000:00:1c.2: bridge window [mem 0xa8500000-0xa85fffff]
[ 0.355570] pci 0000:06:03.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[ 0.355570] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[ 0.355570] pci 0000:06:06.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[ 0.355570] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[ 0.355570] pci 0000:06:03.0: BAR 7: no space for [io size 0x1000]
[ 0.355570] pci 0000:06:03.0: BAR 7: failed to assign [io size 0x1000]
[ 0.355570] pci 0000:06:04.0: BAR 7: no space for [io size 0x3000]
[ 0.355570] pci 0000:06:04.0: BAR 7: failed to assign [io size 0x3000]
[ 0.355570] pci 0000:06:06.0: BAR 7: no space for [io size 0x1000]
[ 0.355570] pci 0000:06:06.0: BAR 7: failed to assign [io size 0x1000]
[ 0.355570] pci 0000:06:06.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[ 0.355570] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[ 0.355570] pci 0000:06:06.0: BAR 7: no space for [io size 0x1000]
[ 0.355570] pci 0000:06:06.0: BAR 7: failed to assign [io size 0x1000]
[ 0.355570] pci 0000:06:04.0: BAR 7: no space for [io size 0x3000]
[ 0.355570] pci 0000:06:04.0: BAR 7: failed to assign [io size 0x3000]
[ 0.355570] pci 0000:06:03.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[ 0.355570] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[ 0.355570] pci 0000:06:03.0: BAR 7: no space for [io size 0x1000]
[ 0.355570] pci 0000:06:03.0: BAR 7: failed to assign [io size 0x1000]
[ 0.355570] pci 0000:06:00.0: PCI bridge to [bus 07]
[ 0.355570] pci 0000:06:00.0: bridge window [mem 0xa8a00000-0xa8afffff]
[ 0.355570] pci 0000:06:03.0: PCI bridge to [bus 08-38]
[ 0.355570] pci 0000:06:03.0: bridge window [mem 0xa8b00000-0xa8bfffff]
[ 0.355570] pci 0000:39:00.0: BAR 7: no space for [io size 0x2000]
[ 0.355570] pci 0000:39:00.0: BAR 7: failed to assign [io size 0x2000]
[ 0.355570] pci 0000:39:00.0: BAR 7: no space for [io size 0x2000]
[ 0.355570] pci 0000:39:00.0: BAR 7: failed to assign [io size 0x2000]
[ 0.355570] pci 0000:3a:04.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[ 0.355570] pci 0000:3a:04.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[ 0.355570] pci 0000:3a:05.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[ 0.355570] pci 0000:3a:05.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[ 0.355570] pci 0000:3a:04.0: BAR 7: no space for [io size 0x1000]
[ 0.355570] pci 0000:3a:04.0: BAR 7: failed to assign [io size 0x1000]
[ 0.355570] pci 0000:3a:05.0: BAR 7: no space for [io size 0x1000]
[ 0.355570] pci 0000:3a:05.0: BAR 7: failed to assign [io size 0x1000]
[ 0.355570] pci 0000:3a:05.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[ 0.355570] pci 0000:3a:05.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[ 0.355570] pci 0000:3a:05.0: BAR 7: no space for [io size 0x1000]
[ 0.355570] pci 0000:3a:05.0: BAR 7: failed to assign [io size 0x1000]
[ 0.355570] pci 0000:3a:04.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[ 0.355570] pci 0000:3a:04.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[ 0.355570] pci 0000:3a:04.0: BAR 7: no space for [io size 0x1000]
[ 0.355570] pci 0000:3a:04.0: BAR 7: failed to assign [io size 0x1000]
[ 0.355570] pci 0000:3c:03.0: PCI bridge to [bus 3d]
[ 0.355570] pci 0000:3c:03.0: bridge window [mem 0xa9000000-0xa90fffff]
[ 0.355570] pci 0000:3b:00.0: PCI bridge to [bus 3c-3d]
[ 0.355570] pci 0000:3b:00.0: bridge window [mem 0xa9000000-0xa90fffff]
[ 0.355570] pci 0000:3a:00.0: PCI bridge to [bus 3b-3d]
[ 0.355570] pci 0000:3a:00.0: bridge window [mem 0xa9000000-0xa90fffff]
[ 0.355570] pci 0000:3a:01.0: PCI bridge to [bus 3e]
[ 0.355570] pci 0000:3a:01.0: bridge window [mem 0xa8f00000-0xa8ffffff]
[ 0.355570] pci 0000:3a:01.0: bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[ 0.355570] pci 0000:3a:02.0: PCI bridge to [bus 3f]
[ 0.355570] pci 0000:3a:02.0: bridge window [mem 0xa8e00000-0xa8efffff]
[ 0.355570] pci 0000:3a:04.0: PCI bridge to [bus 40]
[ 0.355570] pci 0000:3a:04.0: bridge window [mem 0xa8d00000-0xa8dfffff]
[ 0.355570] pci 0000:3a:05.0: PCI bridge to [bus 41]
[ 0.355570] pci 0000:3a:05.0: bridge window [mem 0xa8c00000-0xa8cfffff]
[ 0.355570] pci 0000:39:00.0: PCI bridge to [bus 3a-41]
[ 0.355570] pci 0000:39:00.0: bridge window [mem 0xa8c00000-0xa90fffff]
[ 0.355570] pci 0000:39:00.0: bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[ 0.355570] pci 0000:06:04.0: PCI bridge to [bus 39-69]
[ 0.355570] pci 0000:06:04.0: bridge window [mem 0xa8c00000-0xa90fffff]
[ 0.355570] pci 0000:06:04.0: bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[ 0.355570] pci 0000:6b:04.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[ 0.355570] pci 0000:6b:04.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[ 0.355570] pci 0000:6b:05.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[ 0.355570] pci 0000:6b:05.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[ 0.355570] pci 0000:6b:05.0: BAR 7: no space for [io size 0x1000]
[ 0.355570] pci 0000:6b:05.0: BAR 7: failed to assign [io size 0x1000]
[ 0.355570] pci 0000:6b:05.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[ 0.355570] pci 0000:6b:05.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[ 0.355570] pci 0000:6b:05.0: BAR 7: no space for [io size 0x1000]
[ 0.355570] pci 0000:6b:05.0: BAR 7: failed to assign [io size 0x1000]
[ 0.355570] pci 0000:6b:04.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[ 0.355570] pci 0000:6b:04.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[ 0.355570] pci 0000:6d:03.0: PCI bridge to [bus 6e]
[ 0.355570] pci 0000:6d:03.0: bridge window [mem 0xa9700000-0xa97fffff]
[ 0.355570] pci 0000:6c:00.0: PCI bridge to [bus 6d-6e]
[ 0.355570] pci 0000:6c:00.0: bridge window [mem 0xa9700000-0xa97fffff]
[ 0.355570] pci 0000:6b:00.0: PCI bridge to [bus 6c-6e]
[ 0.355570] pci 0000:6b:00.0: bridge window [mem 0xa9700000-0xa97fffff]
[ 0.355570] pci 0000:6b:01.0: PCI bridge to [bus 6f]
[ 0.355570] pci 0000:6b:01.0: bridge window [mem 0xa9600000-0xa96fffff]
[ 0.355570] pci 0000:6b:01.0: bridge window [mem 0xad000000-0xad0fffff 64bit pref]
[ 0.355570] pci 0000:6b:02.0: PCI bridge to [bus 70]
[ 0.355570] pci 0000:6b:02.0: bridge window [mem 0xa9500000-0xa95fffff]
[ 0.355570] pci 0000:6b:03.0: PCI bridge to [bus 71]
[ 0.355570] pci 0000:6b:03.0: bridge window [mem 0xa9400000-0xa94fffff]
[ 0.356601] pci 0000:73:00.0: PCI bridge to [bus 74]
[ 0.356615] pci 0000:73:00.0: bridge window [mem 0xa9300000-0xa93fffff]
[ 0.356642] pci 0000:75:00.0: BAR 6: assigned [mem 0xa9210000-0xa921ffff pref]
[ 0.356644] pci 0000:73:01.0: PCI bridge to [bus 75]
[ 0.356650] pci 0000:73:01.0: bridge window [io 0x4000-0x4fff]
[ 0.356664] pci 0000:73:01.0: bridge window [mem 0xa9200000-0xa92fffff]
[ 0.356690] pci 0000:72:00.0: PCI bridge to [bus 73-75]
[ 0.356696] pci 0000:72:00.0: bridge window [io 0x4000-0x4fff]
[ 0.356710] pci 0000:72:00.0: bridge window [mem 0xa9200000-0xa93fffff]
[ 0.356736] pci 0000:6b:04.0: PCI bridge to [bus 72-75]
[ 0.356740] pci 0000:6b:04.0: bridge window [io 0x4000-0x4fff]
[ 0.356751] pci 0000:6b:04.0: bridge window [mem 0xa9200000-0xa93fffff]
[ 0.356770] pci 0000:6b:05.0: PCI bridge to [bus 76]
[ 0.356780] pci 0000:6b:05.0: bridge window [mem 0xa9100000-0xa91fffff]
[ 0.356799] pci 0000:6a:00.0: PCI bridge to [bus 6b-76]
[ 0.356803] pci 0000:6a:00.0: bridge window [io 0x4000-0x4fff]
[ 0.356813] pci 0000:6a:00.0: bridge window [mem 0xa9100000-0xa97fffff]
[ 0.356821] pci 0000:6a:00.0: bridge window [mem 0xad000000-0xad0fffff 64bit pref]
[ 0.356834] pci 0000:06:05.0: PCI bridge to [bus 6a-9a]
[ 0.356837] pci 0000:06:05.0: bridge window [io 0x4000-0x4fff]
[ 0.356844] pci 0000:06:05.0: bridge window [mem 0xa9100000-0xa97fffff]
[ 0.356849] pci 0000:06:05.0: bridge window [mem 0xad000000-0xad0fffff 64bit pref]
[ 0.356857] pci 0000:06:06.0: PCI bridge to [bus 9b-cb]
[ 0.356864] pci 0000:06:06.0: bridge window [mem 0xa9800000-0xa98fffff]
[ 0.356875] pci 0000:05:00.0: PCI bridge to [bus 06-cb]
[ 0.356878] pci 0000:05:00.0: bridge window [io 0x4000-0x4fff]
[ 0.356885] pci 0000:05:00.0: bridge window [mem 0xa8a00000-0xa98fffff]
[ 0.356890] pci 0000:05:00.0: bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[ 0.356898] pci 0000:00:1c.4: PCI bridge to [bus 05-cb]
[ 0.356900] pci 0000:00:1c.4: bridge window [io 0x4000-0x5fff]
[ 0.356905] pci 0000:00:1c.4: bridge window [mem 0xa8a00000-0xad8fffff]
[ 0.356913] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.356915] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.356917] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.356919] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff window]
[ 0.356921] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff window]
[ 0.356923] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff window]
[ 0.356925] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff window]
[ 0.356926] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff window]
[ 0.356928] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff window]
[ 0.356930] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff window]
[ 0.356932] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff window]
[ 0.356934] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff window]
[ 0.356936] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff window]
[ 0.356938] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff window]
[ 0.356940] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff window]
[ 0.356942] pci_bus 0000:00: resource 19 [mem 0x000f0000-0x000fffff window]
[ 0.356944] pci_bus 0000:00: resource 20 [mem 0x8f900000-0xfeafffff window]
[ 0.356946] pci_bus 0000:00: resource 21 [mem 0xfed40000-0xfed44fff window]
[ 0.356948] pci_bus 0000:01: resource 0 [io 0x2000-0x2fff]
[ 0.356950] pci_bus 0000:01: resource 1 [mem 0xa8800000-0xa88fffff]
[ 0.356951] pci_bus 0000:01: resource 2 [mem 0x90000000-0x9fffffff 64bit pref]
[ 0.356954] pci_bus 0000:02: resource 1 [mem 0xa8700000-0xa87fffff]
[ 0.356956] pci_bus 0000:02: resource 2 [mem 0xa8400000-0xa84fffff 64bit pref]
[ 0.356958] pci_bus 0000:03: resource 1 [mem 0xa8600000-0xa86fffff]
[ 0.356960] pci_bus 0000:04: resource 1 [mem 0xa8500000-0xa85fffff]
[ 0.356962] pci_bus 0000:05: resource 0 [io 0x4000-0x5fff]
[ 0.356963] pci_bus 0000:05: resource 1 [mem 0xa8a00000-0xad8fffff]
[ 0.356965] pci_bus 0000:06: resource 0 [io 0x4000-0x4fff]
[ 0.356967] pci_bus 0000:06: resource 1 [mem 0xa8a00000-0xa98fffff]
[ 0.356969] pci_bus 0000:06: resource 2 [mem 0xacf00000-0xad0fffff 64bit pref]
[ 0.356971] pci_bus 0000:07: resource 1 [mem 0xa8a00000-0xa8afffff]
[ 0.356973] pci_bus 0000:08: resource 1 [mem 0xa8b00000-0xa8bfffff]
[ 0.356975] pci_bus 0000:39: resource 1 [mem 0xa8c00000-0xa90fffff]
[ 0.356977] pci_bus 0000:39: resource 2 [mem 0xacf00000-0xacffffff 64bit pref]
[ 0.356979] pci_bus 0000:3a: resource 1 [mem 0xa8c00000-0xa90fffff]
[ 0.356981] pci_bus 0000:3a: resource 2 [mem 0xacf00000-0xacffffff 64bit pref]
[ 0.356983] pci_bus 0000:3b: resource 1 [mem 0xa9000000-0xa90fffff]
[ 0.356985] pci_bus 0000:3c: resource 1 [mem 0xa9000000-0xa90fffff]
[ 0.356986] pci_bus 0000:3d: resource 1 [mem 0xa9000000-0xa90fffff]
[ 0.356988] pci_bus 0000:3e: resource 1 [mem 0xa8f00000-0xa8ffffff]
[ 0.356990] pci_bus 0000:3e: resource 2 [mem 0xacf00000-0xacffffff 64bit pref]
[ 0.356992] pci_bus 0000:3f: resource 1 [mem 0xa8e00000-0xa8efffff]
[ 0.356994] pci_bus 0000:40: resource 1 [mem 0xa8d00000-0xa8dfffff]
[ 0.356996] pci_bus 0000:41: resource 1 [mem 0xa8c00000-0xa8cfffff]
[ 0.356998] pci_bus 0000:6a: resource 0 [io 0x4000-0x4fff]
[ 0.357000] pci_bus 0000:6a: resource 1 [mem 0xa9100000-0xa97fffff]
[ 0.357002] pci_bus 0000:6a: resource 2 [mem 0xad000000-0xad0fffff 64bit pref]
[ 0.357004] pci_bus 0000:6b: resource 0 [io 0x4000-0x4fff]
[ 0.357005] pci_bus 0000:6b: resource 1 [mem 0xa9100000-0xa97fffff]
[ 0.357007] pci_bus 0000:6b: resource 2 [mem 0xad000000-0xad0fffff 64bit pref]
[ 0.357009] pci_bus 0000:6c: resource 1 [mem 0xa9700000-0xa97fffff]
[ 0.357011] pci_bus 0000:6d: resource 1 [mem 0xa9700000-0xa97fffff]
[ 0.357013] pci_bus 0000:6e: resource 1 [mem 0xa9700000-0xa97fffff]
[ 0.357015] pci_bus 0000:6f: resource 1 [mem 0xa9600000-0xa96fffff]
[ 0.357017] pci_bus 0000:6f: resource 2 [mem 0xad000000-0xad0fffff 64bit pref]
[ 0.357019] pci_bus 0000:70: resource 1 [mem 0xa9500000-0xa95fffff]
[ 0.357021] pci_bus 0000:71: resource 1 [mem 0xa9400000-0xa94fffff]
[ 0.357023] pci_bus 0000:72: resource 0 [io 0x4000-0x4fff]
[ 0.357025] pci_bus 0000:72: resource 1 [mem 0xa9200000-0xa93fffff]
[ 0.357026] pci_bus 0000:73: resource 0 [io 0x4000-0x4fff]
[ 0.357028] pci_bus 0000:73: resource 1 [mem 0xa9200000-0xa93fffff]
[ 0.357030] pci_bus 0000:74: resource 1 [mem 0xa9300000-0xa93fffff]
[ 0.357032] pci_bus 0000:75: resource 0 [io 0x4000-0x4fff]
[ 0.357034] pci_bus 0000:75: resource 1 [mem 0xa9200000-0xa92fffff]
[ 0.357035] pci_bus 0000:76: resource 1 [mem 0xa9100000-0xa91fffff]
[ 0.357037] pci_bus 0000:9b: resource 1 [mem 0xa9800000-0xa98fffff]
[ 0.357085] NET: Registered protocol family 2
[ 0.357168] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes)
[ 0.357190] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.357326] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[ 0.357434] TCP: Hash tables configured (established 131072 bind 65536)
[ 0.357457] UDP hash table entries: 8192 (order: 6, 262144 bytes)
[ 0.357490] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
[ 0.357539] NET: Registered protocol family 1
[ 0.357964] pci 0000:05:00.0: CLS mismatch (256 != 128), using 64 bytes
[ 0.358373] pci 0000:3d:00.2: EHCI: unrecognized capability 00
[ 0.358714] pci 0000:6e:00.2: EHCI: unrecognized capability 00
[ 0.358851] pci 0000:74:00.0: enabling device (0000 -> 0002)
[ 0.358971] Trying to unpack rootfs image as initramfs...
[ 0.487905] Freeing initrd memory: 10692K
[ 0.487946] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.487948] software IO TLB: mapped [mem 0x84e59000-0x88e59000] (64MB)
[ 0.488240] thunderbolt 0000:07:00.0: ICM not supported on this controller
[ 0.488249] thunderbolt 0000:07:00.0: NHI initialized, starting thunderbolt
[ 0.488252] thunderbolt 0000:07:00.0: allocating TX ring 0 of size 10
[ 0.488264] thunderbolt 0000:07:00.0: allocating RX ring 0 of size 10
[ 0.488272] thunderbolt 0000:07:00.0: control channel created
[ 0.488273] thunderbolt 0000:07:00.0: control channel starting...
[ 0.488274] thunderbolt 0000:07:00.0: starting TX ring 0
[ 0.488283] thunderbolt 0000:07:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[ 0.488283] thunderbolt 0000:07:00.0: starting RX ring 0
[ 0.488291] thunderbolt 0000:07:00.0: enabling interrupt at register 0x38204 bit 0 (0x0 -> 0x1)
[ 0.488449] thunderbolt 0000:07:00.0: current switch config:
[ 0.488452] thunderbolt 0000:07:00.0: Switch: 8086:1513 (Revision: 2, TB Version: 1)
[ 0.488453] thunderbolt 0000:07:00.0: Max Port Number: 13
[ 0.488455] thunderbolt 0000:07:00.0: Config:
[ 0.488457] thunderbolt 0000:07:00.0: Upstream Port Number: 6 Depth: 0 Route String: 0x0 Enabled: 1, PlugEventsDelay: 255ms
[ 0.488459] thunderbolt 0000:07:00.0: unknown1: 0x0 unknown4: 0x0
[ 0.489729] thunderbolt 0000:07:00.0: initializing Switch at 0x0 (depth: 0, up port: 6)
[ 0.491777] thunderbolt 0000:07:00.0: 0: uid: 0x1000a13f2da20
[ 0.491905] thunderbolt 0000:07:00.0: Port 0: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[ 0.491907] thunderbolt 0000:07:00.0: Max hop id (in/out): 7/7
[ 0.491908] thunderbolt 0000:07:00.0: Max counters: 8
[ 0.491910] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 0.493184] thunderbolt 0000:07:00.0: Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[ 0.493186] thunderbolt 0000:07:00.0: Max hop id (in/out): 63/63
[ 0.493187] thunderbolt 0000:07:00.0: Max counters: 32
[ 0.493189] thunderbolt 0000:07:00.0: NFC Credits: 0x3c00000
[ 0.494464] thunderbolt 0000:07:00.0: Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[ 0.494466] thunderbolt 0000:07:00.0: Max hop id (in/out): 63/63
[ 0.494467] thunderbolt 0000:07:00.0: Max counters: 32
[ 0.494469] thunderbolt 0000:07:00.0: NFC Credits: 0x3c00000
[ 0.495744] thunderbolt 0000:07:00.0: Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[ 0.495745] thunderbolt 0000:07:00.0: Max hop id (in/out): 63/63
[ 0.495747] thunderbolt 0000:07:00.0: Max counters: 32
[ 0.495748] thunderbolt 0000:07:00.0: NFC Credits: 0x3c00000
[ 0.497024] thunderbolt 0000:07:00.0: Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[ 0.497026] thunderbolt 0000:07:00.0: Max hop id (in/out): 63/63
[ 0.497027] thunderbolt 0000:07:00.0: Max counters: 32
[ 0.497028] thunderbolt 0000:07:00.0: NFC Credits: 0x3c00000
[ 0.497030] thunderbolt 0000:07:00.0: 0:5: disabled by eeprom
[ 0.497920] thunderbolt 0000:07:00.0: Port 6: 8086:1513 (Revision: 2, TB Version: 1, Type: NHI (0x2))
[ 0.497921] thunderbolt 0000:07:00.0: Max hop id (in/out): 31/31
[ 0.497923] thunderbolt 0000:07:00.0: Max counters: 32
[ 0.497924] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 0.498944] thunderbolt 0000:07:00.0: Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[ 0.498945] thunderbolt 0000:07:00.0: Max hop id (in/out): 8/8
[ 0.498947] thunderbolt 0000:07:00.0: Max counters: 1
[ 0.498948] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 0.499968] thunderbolt 0000:07:00.0: Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[ 0.499970] thunderbolt 0000:07:00.0: Max hop id (in/out): 8/8
[ 0.499971] thunderbolt 0000:07:00.0: Max counters: 1
[ 0.499973] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 0.500991] thunderbolt 0000:07:00.0: Port 9: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[ 0.500993] thunderbolt 0000:07:00.0: Max hop id (in/out): 8/8
[ 0.500994] thunderbolt 0000:07:00.0: Max counters: 1
[ 0.500996] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 0.502015] thunderbolt 0000:07:00.0: Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[ 0.502017] thunderbolt 0000:07:00.0: Max hop id (in/out): 8/8
[ 0.502018] thunderbolt 0000:07:00.0: Max counters: 1
[ 0.502020] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 0.503167] thunderbolt 0000:07:00.0: Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[ 0.503169] thunderbolt 0000:07:00.0: Max hop id (in/out): 9/9
[ 0.503170] thunderbolt 0000:07:00.0: Max counters: 2
[ 0.503172] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 0.504192] thunderbolt 0000:07:00.0: Port 12: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0101))
[ 0.504193] thunderbolt 0000:07:00.0: Max hop id (in/out): 9/9
[ 0.504195] thunderbolt 0000:07:00.0: Max counters: 2
[ 0.504196] thunderbolt 0000:07:00.0: NFC Credits: 0x700005
[ 0.504572] random: fast init done
[ 0.505215] thunderbolt 0000:07:00.0: Port 13: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0101))
[ 0.505217] thunderbolt 0000:07:00.0: Max hop id (in/out): 9/9
[ 0.505218] thunderbolt 0000:07:00.0: Max counters: 2
[ 0.505220] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 0.505344] thunderbolt 0000:07:00.0: 0:1: is connected, link is up (state: 2)
[ 0.505599] thunderbolt 0000:07:00.0: current switch config:
[ 0.505601] thunderbolt 0000:07:00.0: Switch: 8086:1513 (Revision: 2, TB Version: 1)
[ 0.505602] thunderbolt 0000:07:00.0: Max Port Number: 13
[ 0.505604] thunderbolt 0000:07:00.0: Config:
[ 0.505606] thunderbolt 0000:07:00.0: Upstream Port Number: 1 Depth: 1 Route String: 0x1 Enabled: 1, PlugEventsDelay: 255ms
[ 0.505608] thunderbolt 0000:07:00.0: unknown1: 0x0 unknown4: 0x0
[ 0.506880] thunderbolt 0000:07:00.0: initializing Switch at 0x1 (depth: 1, up port: 1)
[ 0.524287] thunderbolt 0000:07:00.0: 1: reading drom (length: 0x97)
[ 1.018853] thunderbolt 0000:07:00.0: 1: uid: 0x100010102a740
[ 1.018981] thunderbolt 0000:07:00.0: Port 0: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[ 1.018983] thunderbolt 0000:07:00.0: Max hop id (in/out): 7/7
[ 1.018984] thunderbolt 0000:07:00.0: Max counters: 8
[ 1.018986] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 1.020261] thunderbolt 0000:07:00.0: Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[ 1.020263] thunderbolt 0000:07:00.0: Max hop id (in/out): 63/63
[ 1.020264] thunderbolt 0000:07:00.0: Max counters: 32
[ 1.020266] thunderbolt 0000:07:00.0: NFC Credits: 0x3c00000
[ 1.021541] thunderbolt 0000:07:00.0: Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[ 1.021543] thunderbolt 0000:07:00.0: Max hop id (in/out): 63/63
[ 1.021544] thunderbolt 0000:07:00.0: Max counters: 32
[ 1.021546] thunderbolt 0000:07:00.0: NFC Credits: 0x3c0000e
[ 1.022821] thunderbolt 0000:07:00.0: Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[ 1.022822] thunderbolt 0000:07:00.0: Max hop id (in/out): 63/63
[ 1.022824] thunderbolt 0000:07:00.0: Max counters: 32
[ 1.022825] thunderbolt 0000:07:00.0: NFC Credits: 0x3c00000
[ 1.024101] thunderbolt 0000:07:00.0: Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[ 1.024102] thunderbolt 0000:07:00.0: Max hop id (in/out): 63/63
[ 1.024104] thunderbolt 0000:07:00.0: Max counters: 32
[ 1.024105] thunderbolt 0000:07:00.0: NFC Credits: 0x3c00000
[ 1.024107] thunderbolt 0000:07:00.0: 1:5: disabled by eeprom
[ 1.024109] thunderbolt 0000:07:00.0: 1:6: disabled by eeprom
[ 1.025124] thunderbolt 0000:07:00.0: Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[ 1.025126] thunderbolt 0000:07:00.0: Max hop id (in/out): 8/8
[ 1.025128] thunderbolt 0000:07:00.0: Max counters: 1
[ 1.025129] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 1.026148] thunderbolt 0000:07:00.0: Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[ 1.026150] thunderbolt 0000:07:00.0: Max hop id (in/out): 8/8
[ 1.026151] thunderbolt 0000:07:00.0: Max counters: 1
[ 1.026153] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 1.026155] thunderbolt 0000:07:00.0: 1:9: disabled by eeprom
[ 1.027173] thunderbolt 0000:07:00.0: Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[ 1.027174] thunderbolt 0000:07:00.0: Max hop id (in/out): 8/8
[ 1.027176] thunderbolt 0000:07:00.0: Max counters: 1
[ 1.027177] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 1.028324] thunderbolt 0000:07:00.0: Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[ 1.028326] thunderbolt 0000:07:00.0: Max hop id (in/out): 9/9
[ 1.028327] thunderbolt 0000:07:00.0: Max counters: 2
[ 1.028329] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 1.028330] thunderbolt 0000:07:00.0: 1:c: disabled by eeprom
[ 1.028332] thunderbolt 0000:07:00.0: 1:d: disabled by eeprom
[ 1.028348] thunderbolt 0-1: new device found, vendor=0x1 device=0x8002
[ 1.028353] thunderbolt 0-1: Apple, Inc. Thunderbolt Display
[ 1.028452] thunderbolt 0000:07:00.0: 1:3: is unplugged (state: 7)
[ 1.028836] thunderbolt 0000:07:00.0: 0:3: is connected, link is up (state: 2)
[ 1.029091] thunderbolt 0000:07:00.0: current switch config:
[ 1.029094] thunderbolt 0000:07:00.0: Switch: 8086:1513 (Revision: 2, TB Version: 1)
[ 1.029095] thunderbolt 0000:07:00.0: Max Port Number: 13
[ 1.029096] thunderbolt 0000:07:00.0: Config:
[ 1.029099] thunderbolt 0000:07:00.0: Upstream Port Number: 1 Depth: 1 Route String: 0x3 Enabled: 1, PlugEventsDelay: 255ms
[ 1.029100] thunderbolt 0000:07:00.0: unknown1: 0x0 unknown4: 0x0
[ 1.030373] thunderbolt 0000:07:00.0: initializing Switch at 0x3 (depth: 1, up port: 1)
[ 1.047779] thunderbolt 0000:07:00.0: 3: reading drom (length: 0x97)
[ 1.348313] random: crng init done
[ 1.542348] thunderbolt 0000:07:00.0: 3: uid: 0x1000100189170
[ 1.542476] thunderbolt 0000:07:00.0: Port 0: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[ 1.542477] thunderbolt 0000:07:00.0: Max hop id (in/out): 7/7
[ 1.542479] thunderbolt 0000:07:00.0: Max counters: 8
[ 1.542480] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 1.543755] thunderbolt 0000:07:00.0: Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[ 1.543757] thunderbolt 0000:07:00.0: Max hop id (in/out): 63/63
[ 1.543758] thunderbolt 0000:07:00.0: Max counters: 32
[ 1.543760] thunderbolt 0000:07:00.0: NFC Credits: 0x3c00000
[ 1.545035] thunderbolt 0000:07:00.0: Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[ 1.545037] thunderbolt 0000:07:00.0: Max hop id (in/out): 63/63
[ 1.545038] thunderbolt 0000:07:00.0: Max counters: 32
[ 1.545040] thunderbolt 0000:07:00.0: NFC Credits: 0x3c00000
[ 1.546315] thunderbolt 0000:07:00.0: Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[ 1.546316] thunderbolt 0000:07:00.0: Max hop id (in/out): 63/63
[ 1.546318] thunderbolt 0000:07:00.0: Max counters: 32
[ 1.546319] thunderbolt 0000:07:00.0: NFC Credits: 0x3c00000
[ 1.547595] thunderbolt 0000:07:00.0: Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[ 1.547597] thunderbolt 0000:07:00.0: Max hop id (in/out): 63/63
[ 1.547598] thunderbolt 0000:07:00.0: Max counters: 32
[ 1.547600] thunderbolt 0000:07:00.0: NFC Credits: 0x3c00000
[ 1.547601] thunderbolt 0000:07:00.0: 3:5: disabled by eeprom
[ 1.547603] thunderbolt 0000:07:00.0: 3:6: disabled by eeprom
[ 1.548619] thunderbolt 0000:07:00.0: Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[ 1.548620] thunderbolt 0000:07:00.0: Max hop id (in/out): 8/8
[ 1.548622] thunderbolt 0000:07:00.0: Max counters: 1
[ 1.548623] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 1.549643] thunderbolt 0000:07:00.0: Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[ 1.549644] thunderbolt 0000:07:00.0: Max hop id (in/out): 8/8
[ 1.549646] thunderbolt 0000:07:00.0: Max counters: 1
[ 1.549647] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 1.549649] thunderbolt 0000:07:00.0: 3:9: disabled by eeprom
[ 1.550667] thunderbolt 0000:07:00.0: Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[ 1.550668] thunderbolt 0000:07:00.0: Max hop id (in/out): 8/8
[ 1.550670] thunderbolt 0000:07:00.0: Max counters: 1
[ 1.550671] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 1.551819] thunderbolt 0000:07:00.0: Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[ 1.551820] thunderbolt 0000:07:00.0: Max hop id (in/out): 9/9
[ 1.551822] thunderbolt 0000:07:00.0: Max counters: 2
[ 1.551823] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 1.551825] thunderbolt 0000:07:00.0: 3:c: disabled by eeprom
[ 1.551826] thunderbolt 0000:07:00.0: 3:d: disabled by eeprom
[ 1.551842] thunderbolt 0-3: new device found, vendor=0x1 device=0x8002
[ 1.551848] thunderbolt 0-3: Apple, Inc. Thunderbolt Display
[ 1.551947] thunderbolt 0000:07:00.0: 3:3: is connected, link is up (state: 2)
[ 1.552202] thunderbolt 0000:07:00.0: current switch config:
[ 1.552204] thunderbolt 0000:07:00.0: Switch: 8086:1549 (Revision: 0, TB Version: 1)
[ 1.552206] thunderbolt 0000:07:00.0: Max Port Number: 2
[ 1.552207] thunderbolt 0000:07:00.0: Config:
[ 1.552209] thunderbolt 0000:07:00.0: Upstream Port Number: 1 Depth: 2 Route String: 0x303 Enabled: 1, PlugEventsDelay: 255ms
[ 1.552211] thunderbolt 0000:07:00.0: unknown1: 0x0 unknown4: 0x0
[ 1.553740] thunderbolt 0000:07:00.0: initializing Switch at 0x303 (depth: 2, up port: 1)
[ 1.571145] thunderbolt 0000:07:00.0: 303: reading drom (length: 0x57)
[ 1.860155] thunderbolt 0000:07:00.0: 303: uid: 0xa704745a007000
[ 1.860283] thunderbolt 0000:07:00.0: Port 0: 8086:1549 (Revision: 0, TB Version: 1, Type: Port (0x1))
[ 1.860285] thunderbolt 0000:07:00.0: Max hop id (in/out): 7/7
[ 1.860286] thunderbolt 0000:07:00.0: Max counters: 8
[ 1.860288] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 1.860923] thunderbolt 0000:07:00.0: Port 1: 8086:1549 (Revision: 0, TB Version: 1, Type: Port (0x1))
[ 1.860924] thunderbolt 0000:07:00.0: Max hop id (in/out): 8/8
[ 1.860926] thunderbolt 0000:07:00.0: Max counters: 4
[ 1.860927] thunderbolt 0000:07:00.0: NFC Credits: 0x3c00000
[ 1.861307] thunderbolt 0000:07:00.0: Port 2: 8086:1549 (Revision: 0, TB Version: 1, Type: PCIe (0x100102))
[ 1.861308] thunderbolt 0000:07:00.0: Max hop id (in/out): 8/8
[ 1.861310] thunderbolt 0000:07:00.0: Max counters: 2
[ 1.861311] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 1.861325] thunderbolt 0-303: new device found, vendor=0xa7 device=0x4
[ 1.861330] thunderbolt 0-303: Kanex Thunderbolt to eSATA+USB3.0 Adapter
[ 1.861562] thunderbolt 0000:07:00.0: 3:b: DP adapter HPD set, queuing hotplug
[ 1.863227] thunderbolt 0000:07:00.0: 0:7 <-> 1:a (PCI): discovered
[ 1.864762] thunderbolt 0000:07:00.0: 0:8 <-> 3:a (PCI): discovered
[ 1.865018] thunderbolt 0000:07:00.0: 0:c: start DP discover
[ 1.865274] thunderbolt 0000:07:00.0: 0:c: data[0]=0xc008043e
[ 1.865276] thunderbolt 0000:07:00.0: 0:c: data[1]=0x00004009
[ 1.867322] thunderbolt 0000:07:00.0: 0:c <-> 1:b (DP): discovered
[ 1.867324] thunderbolt 0000:07:00.0: 0:d: start DP discover
[ 1.867450] thunderbolt 0000:07:00.0: 0:d: DP port not enabled
[ 1.869242] thunderbolt 0000:07:00.0: 3:7 <-> 303:2 (PCI): discovered
[ 1.869402] thunderbolt 0000:07:00.0: 3:b: trying to tunnel DP
[ 1.869505] thunderbolt 0000:07:00.0: 3:b: finding free DP IN port
[ 1.869506] thunderbolt 0000:07:00.0: 0: finding available DP IN
[ 1.869525] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer
[ 1.869527] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[ 1.869529] RAPL PMU: hw unit of domain package 2^-16 Joules
[ 1.869530] RAPL PMU: hw unit of domain pp1-gpu 2^-16 Joules
[ 1.869622] thunderbolt 0000:07:00.0: 0:c: this already enabled
[ 1.869754] thunderbolt 0000:07:00.0: 0:d: found DP IN
[ 1.869759] thunderbolt 0000:07:00.0: 0:d <-> 3:b (DP): activating
[ 1.869762] thunderbolt 0000:07:00.0: activating Video path from 0:d to 3:b
[ 1.869763] thunderbolt 0000:07:00.0: 3:2: adding 5 NFC credits to 0
[ 1.869878] thunderbolt 0000:07:00.0: 0:d: adding 5 NFC credits to 0
[ 1.869907] Initialise system trusted keyrings
[ 1.869928] workingset: timestamp_bits=62 max_order=22 bucket_order=0
[ 1.870135] thunderbolt 0000:07:00.0: 3:2: Writing hop 1
[ 1.870137] thunderbolt 0000:07:00.0: 3:2: In HopID: 8 => Out port: 11 Out HopID: 9
[ 1.870138] thunderbolt 0000:07:00.0: 3:2: Weight: 1 Priority: 1 Credits: 0 Drop: 0
[ 1.870140] thunderbolt 0000:07:00.0: 3:2: Counter enabled: 0 Counter index: 2047
[ 1.870141] thunderbolt 0000:07:00.0: 3:2: Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[ 1.870143] thunderbolt 0000:07:00.0: 3:2: Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[ 1.870856] Key type asymmetric registered
[ 1.870859] Asymmetric key parser 'x509' registered
[ 1.870865] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
[ 1.871742] pcieport 0000:06:03.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ LLActRep+ (with Cmd Compl erratum)
[ 1.871928] pcieport 0000:06:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ LLActRep+ (with Cmd Compl erratum)
[ 1.872100] pcieport 0000:06:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ LLActRep+ (with Cmd Compl erratum)
[ 1.872272] ------------[ cut here ]------------
[ 1.872275] thunderbolt 0000:07:00.0: CFG_ERROR(0:d): Invalid config space or offset
[ 1.872286] WARNING: CPU: 6 PID: 7 at drivers/thunderbolt/ctl.c:271 tb_cfg_print_error.isra.1+0x15a/0x1b0
[ 1.872288] Modules linked in:
[ 1.872290] CPU: 6 PID: 7 Comm: kworker/u16:0 Not tainted 5.2.9+ #7
[ 1.872292] pcieport 0000:06:06.0: pciehp: Slot #6 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ LLActRep+ (with Cmd Compl erratum)
[ 1.872295] Hardware name: Apple Inc. iMac12,2/Mac-942B59F58194171B, BIOS 87.0.0.0.0 06/14/2019
[ 1.872298] Workqueue: thunderbolt0 tb_handle_hotplug
[ 1.872301] RIP: 0010:tb_cfg_print_error.isra.1+0x15a/0x1b0
[ 1.872303] Code: 00 48 85 db 74 4a 48 81 c7 b0 00 00 00 e8 fe d4 f8 ff 41 89 e8 4c 89 e1 48 89 da 48 89 c6 48 c7 c7 f0 65 b2 81 e8 b6 cf cf ff <0f> 0b 48 83 c4 08 5b 5d 41 5c c3 48 c7 c7 70 7f ad 81 48 89 34 24
[ 1.872307] RSP: 0000:ffffc90000063d20 EFLAGS: 00010282
[ 1.872308] RAX: 0000000000000000 RBX: ffff88845d0d6c20 RCX: ffffffff81c2cd18
[ 1.872310] RDX: 0000000000000001 RSI: 0000000000000086 RDI: ffffffff81f4c6ac
[ 1.872312] RBP: 000000000000000d R08: 0000000000000000 R09: 000000000000048e
[ 1.872314] R10: ffffea0011750580 R11: 0720072007200720 R12: 0000000000000000
[ 1.872315] R13: ffffffff81c613c2 R14: 0000000000000000 R15: ffffffff81c612d2
[ 1.872317] FS: 0000000000000000(0000) GS:ffff88845f980000(0000) knlGS:0000000000000000
[ 1.872319] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1.872321] CR2: 0000000000000000 CR3: 0000000001c09001 CR4: 00000000000606a0
[ 1.872322] Call Trace:
[ 1.872326] tb_cfg_read+0xb9/0xd0
[ 1.872329] __tb_path_deactivate_hop+0x98/0x210
[ 1.872331] tb_path_activate+0x228/0x7d0
[ 1.872333] tb_tunnel_restart+0x95/0x200
[ 1.872335] tb_handle_hotplug+0x5cf/0x810
[ 1.872338] process_one_work+0x1b4/0x340
[ 1.872340] worker_thread+0x44/0x3d0
[ 1.872342] kthread+0xeb/0x120
[ 1.872344] ? process_one_work+0x340/0x340
[ 1.872346] ? kthread_park+0xa0/0xa0
[ 1.872348] ret_from_fork+0x1f/0x30
[ 1.872351] ---[ end trace 44f9c86e48b5d76b ]---
[ 1.872353] thunderbolt 0000:07:00.0: 0:d: Writing hop 0
[ 1.872354] thunderbolt 0000:07:00.0: 0:d: In HopID: 9 => Out port: 4 Out HopID: 8
[ 1.872355] thunderbolt 0000:07:00.0: 0:d: Weight: 1 Priority: 1 Credits: 0 Drop: 0
[ 1.872356] thunderbolt 0000:07:00.0: 0:d: Counter enabled: 0 Counter index: 2047
[ 1.872357] thunderbolt 0000:07:00.0: 0:d: Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[ 1.872358] thunderbolt 0000:07:00.0: 0:d: Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[ 1.872399] thunderbolt 0000:07:00.0: path activation complete
[ 1.872401] thunderbolt 0000:07:00.0: activating AUX TX path from 0:d to 3:b
[ 1.872527] thunderbolt 0000:07:00.0: 3:2: Writing hop 1
[ 1.872528] thunderbolt 0000:07:00.0: 3:2: In HopID: 9 => Out port: 11 Out HopID: 8
[ 1.872529] thunderbolt 0000:07:00.0: 3:2: Weight: 1 Priority: 2 Credits: 1 Drop: 0
[ 1.872530] thunderbolt 0000:07:00.0: 3:2: Counter enabled: 0 Counter index: 2047
[ 1.872531] thunderbolt 0000:07:00.0: 3:2: Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[ 1.872532] thunderbolt 0000:07:00.0: 3:2: Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[ 1.873446] pcieport 0000:3a:04.0: enabling device (0000 -> 0002)
[ 1.873538] pcieport 0000:3a:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ LLActRep+ (with Cmd Compl erratum)
[ 1.873740] pcieport 0000:3a:05.0: enabling device (0000 -> 0002)
[ 1.873839] pcieport 0000:3a:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ LLActRep+ (with Cmd Compl erratum)
[ 1.874368] ------------[ cut here ]------------
[ 1.874370] thunderbolt 0000:07:00.0: CFG_ERROR(0:d): Invalid config space or offset
[ 1.874375] WARNING: CPU: 6 PID: 7 at drivers/thunderbolt/ctl.c:271 tb_cfg_print_error.isra.1+0x15a/0x1b0
[ 1.874377] Modules linked in:
[ 1.874379] CPU: 6 PID: 7 Comm: kworker/u16:0 Tainted: G W 5.2.9+ #7
[ 1.874381] Hardware name: Apple Inc. iMac12,2/Mac-942B59F58194171B, BIOS 87.0.0.0.0 06/14/2019
[ 1.874383] Workqueue: thunderbolt0 tb_handle_hotplug
[ 1.874385] RIP: 0010:tb_cfg_print_error.isra.1+0x15a/0x1b0
[ 1.874387] Code: 00 48 85 db 74 4a 48 81 c7 b0 00 00 00 e8 fe d4 f8 ff 41 89 e8 4c 89 e1 48 89 da 48 89 c6 48 c7 c7 f0 65 b2 81 e8 b6 cf cf ff <0f> 0b 48 83 c4 08 5b 5d 41 5c c3 48 c7 c7 70 7f ad 81 48 89 34 24
[ 1.874390] RSP: 0000:ffffc90000063d20 EFLAGS: 00010282
[ 1.874392] RAX: 0000000000000000 RBX: ffff88845d0d6c20 RCX: ffffffff81c2cd18
[ 1.874394] RDX: 0000000000000001 RSI: 0000000000000086 RDI: ffffffff81f4c6ac
[ 1.874395] RBP: 000000000000000d R08: 0000000000000000 R09: 00000000000004c0
[ 1.874397] R10: ffffea0011750580 R11: 0720072007200720 R12: 0000000000000000
[ 1.874399] R13: ffffffff81c613c2 R14: 0000000000000000 R15: ffffffff81c612d2
[ 1.874401] FS: 0000000000000000(0000) GS:ffff88845f980000(0000) knlGS:0000000000000000
[ 1.874403] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1.874404] CR2: 0000000000000000 CR3: 0000000001c09001 CR4: 00000000000606a0
[ 1.874406] Call Trace:
[ 1.874408] tb_cfg_read+0xb9/0xd0
[ 1.874410] __tb_path_deactivate_hop+0x98/0x210
[ 1.874412] tb_path_activate+0x228/0x7d0
[ 1.874414] tb_tunnel_restart+0x95/0x200
[ 1.874416] tb_handle_hotplug+0x5cf/0x810
[ 1.874417] process_one_work+0x1b4/0x340
[ 1.874419] worker_thread+0x44/0x3d0
[ 1.874421] kthread+0xeb/0x120
[ 1.874423] ? process_one_work+0x340/0x340
[ 1.874425] ? kthread_park+0xa0/0xa0
[ 1.874427] ret_from_fork+0x1f/0x30
[ 1.874428] ---[ end trace 44f9c86e48b5d76c ]---
[ 1.874430] thunderbolt 0000:07:00.0: 0:d: Writing hop 0
[ 1.874431] thunderbolt 0000:07:00.0: 0:d: In HopID: 8 => Out port: 4 Out HopID: 9
[ 1.874432] thunderbolt 0000:07:00.0: 0:d: Weight: 1 Priority: 2 Credits: 1 Drop: 0
[ 1.874433] thunderbolt 0000:07:00.0: 0:d: Counter enabled: 0 Counter index: 2047
[ 1.874434] thunderbolt 0000:07:00.0: 0:d: Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[ 1.874435] thunderbolt 0000:07:00.0: 0:d: Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[ 1.874496] thunderbolt 0000:07:00.0: path activation complete
[ 1.874497] thunderbolt 0000:07:00.0: activating AUX RX path from 3:b to 0:d
[ 1.874625] thunderbolt 0000:07:00.0: 0:4: Writing hop 1
[ 1.874625] thunderbolt 0000:07:00.0: 0:4: In HopID: 8 => Out port: 13 Out HopID: 8
[ 1.874626] thunderbolt 0000:07:00.0: 0:4: Weight: 1 Priority: 2 Credits: 1 Drop: 0
[ 1.874627] thunderbolt 0000:07:00.0: 0:4: Counter enabled: 0 Counter index: 2047
[ 1.874628] thunderbolt 0000:07:00.0: 0:4: Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[ 1.874629] thunderbolt 0000:07:00.0: 0:4: Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[ 1.874880] thunderbolt 0000:07:00.0: 3:b: Writing hop 0
[ 1.874881] thunderbolt 0000:07:00.0: 3:b: In HopID: 8 => Out port: 2 Out HopID: 8
[ 1.874882] thunderbolt 0000:07:00.0: 3:b: Weight: 1 Priority: 2 Credits: 1 Drop: 0
[ 1.874883] thunderbolt 0000:07:00.0: 3:b: Counter enabled: 0 Counter index: 2047
[ 1.874884] thunderbolt 0000:07:00.0: 3:b: Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[ 1.874885] thunderbolt 0000:07:00.0: 3:b: Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[ 1.875008] thunderbolt 0000:07:00.0: path activation complete
[ 1.875278] pcieport 0000:6b:03.0: enabling device (0000 -> 0002)
[ 1.875623] pcieport 0000:6b:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ LLActRep+ (with Cmd Compl erratum)
[ 1.875822] pcieport 0000:6b:05.0: enabling device (0000 -> 0002)
[ 1.875915] pcieport 0000:6b:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ LLActRep+ (with Cmd Compl erratum)
[ 1.877324] efifb: probing for efifb
[ 1.877346] efifb: framebuffer at 0x90010000, using 14400k, total 14400k
[ 1.877348] efifb: mode is 2560x1440x32, linelength=10240, pages=1
[ 1.877350] efifb: scrolling: redraw
[ 1.877351] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 1.886867] Console: switching to colour frame buffer device 320x90
[ 1.895942] fb0: EFI VGA frame buffer device
[ 1.895966] intel_idle: MWAIT substates: 0x1120
[ 1.895967] intel_idle: v0.4.1 model 0x2A
[ 1.896166] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 1.903834] brd: module loaded
[ 1.903876] i8042: PNP: No PS/2 controller found.
[ 1.903931] mousedev: PS/2 mouse device common for all mice
[ 1.903968] intel_pstate: Intel P-state driver initializing
[ 1.904201] Key type dns_resolver registered
[ 1.904285] microcode: sig=0x206a7, pf=0x2, revision=0x2f
[ 1.904403] microcode: Microcode Update Driver: v2.2.
[ 1.904417] sched_clock: Marking stable (1904006128, 388805)->(1917971073, -13576140)
[ 1.904630] registered taskstats version 1
[ 1.904657] Loading compiled-in X.509 certificates
[ 1.905756] Freeing unused kernel image memory: 920K
[ 1.943307] Write protecting the kernel read-only data: 12288k
[ 1.944046] Freeing unused kernel image memory: 2020K
[ 1.944295] Freeing unused kernel image memory: 588K
[ 1.944325] Run /init as init process
[ 2.002636] udevd[1407]: starting version 3.2.2
[ 2.004097] udevd[1408]: starting eudev-3.2.2
[ 2.016224] ACPI: bus type USB registered
[ 2.016278] usbcore: registered new interface driver usbfs
[ 2.016313] usbcore: registered new interface driver hub
[ 2.016354] usbcore: registered new device driver usb
[ 2.016470] tg3.c:v3.137 (May 11, 2014)
[ 2.018213] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 2.018390] ehci-pci: EHCI PCI platform driver
[ 2.018527] ehci-pci 0000:00:1a.7: EHCI Host Controller
[ 2.018563] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 1
[ 2.018613] ehci-pci 0000:00:1a.7: debug port 2
[ 2.018626] uhci_hcd: USB Universal Host Controller Interface driver
[ 2.020525] ahci 0000:00:1f.2: version 3.0
[ 2.022406] cryptd: max_cpu_qlen set to 1000
[ 2.022540] ehci-pci 0000:00:1a.7: cache line size of 64 is not supported
[ 2.022587] ehci-pci 0000:00:1a.7: irq 23, io mem 0xa8906c00
[ 2.024807] AVX version of gcm_enc/dec engaged.
[ 2.024831] AES CTR mode by8 optimization enabled
[ 2.030719] radeon: unknown parameter 'pm' ignored
[ 2.030730] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x7 impl SATA mode
[ 2.030781] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst
[ 2.030866] [drm] radeon kernel modesetting enabled.
[ 2.030925] radeon 0000:01:00.0: remove_conflicting_pci_framebuffers: bar 0: 0x90000000 -> 0x9fffffff
[ 2.030971] radeon 0000:01:00.0: remove_conflicting_pci_framebuffers: bar 2: 0xa8800000 -> 0xa881ffff
[ 2.031016] checking generic (90010000 e10000) vs hw (90000000 10000000)
[ 2.031017] fb0: switching to radeondrmfb from EFI VGA
[ 2.031061] Console: switching to colour dummy device 80x25
[ 2.031153] radeon 0000:01:00.0: vgaarb: deactivate vga console
[ 2.031279] [drm] initializing kernel modesetting (BARTS 0x1002:0x6720 0x106B:0x0B00 0x00).
[ 2.033267] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[ 2.033298] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.02
[ 2.033301] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.033303] usb usb1: Product: EHCI Host Controller
[ 2.033305] usb usb1: Manufacturer: Linux 5.2.9+ ehci_hcd
[ 2.033306] usb usb1: SerialNumber: 0000:00:1a.7
[ 2.033379] hub 1-0:1.0: USB hub found
[ 2.033384] hub 1-0:1.0: 6 ports detected
[ 2.033623] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[ 2.033624] xhci_hcd 0000:74:00.0: xHCI Host Controller
[ 2.033630] xhci_hcd 0000:74:00.0: new USB bus registered, assigned bus number 2
[ 2.033633] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
[ 2.033687] tg3 0000:02:00.0 eth0: Tigon3 [partno(BCM957765) rev 57785100] (PCI Express) MAC address 3c:07:54:14:b2:08
[ 2.033692] uhci_hcd 0000:00:1a.0: detected 2 ports
[ 2.033693] tg3 0000:02:00.0 eth0: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[ 2.033694] tg3 0000:02:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[ 2.033699] tg3 0000:02:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[ 2.033860] uhci_hcd 0000:00:1a.0: irq 21, io base 0x00003140
[ 2.034537] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.02
[ 2.034541] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.034543] usb usb3: Product: UHCI Host Controller
[ 2.034544] usb usb3: Manufacturer: Linux 5.2.9+ uhci_hcd
[ 2.034546] usb usb3: SerialNumber: 0000:00:1a.0
[ 2.035133] hub 3-0:1.0: USB hub found
[ 2.035303] hub 3-0:1.0: 2 ports detected
[ 2.054094] scsi host0: ahci
[ 2.054249] scsi host1: ahci
[ 2.054338] scsi host2: ahci
[ 2.054393] scsi host3: ahci
[ 2.054556] scsi host4: ahci
[ 2.054643] scsi host5: ahci
[ 2.054693] ata1: SATA max UDMA/133 abar m2048@0xa8906000 port 0xa8906100 irq 62
[ 2.054708] ata2: SATA max UDMA/133 abar m2048@0xa8906000 port 0xa8906180 irq 62
[ 2.054724] ata3: SATA max UDMA/133 abar m2048@0xa8906000 port 0xa8906200 irq 62
[ 2.054726] ata4: DUMMY
[ 2.054727] ata5: DUMMY
[ 2.054728] ata6: DUMMY
[ 2.055451] ahci 0000:75:00.0: SSS flag set, parallel bus scan disabled
[ 2.055977] ahci 0000:75:00.0: AHCI 0001.0200 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
[ 2.055982] ahci 0000:75:00.0: flags: 64bit ncq sntf stag led clo pmp pio slum part ccc sxs
[ 2.056543] scsi host6: ahci
[ 2.056609] scsi host7: ahci
[ 2.056663] ata7: SATA max UDMA/133 abar m512@0xa9200000 port 0xa9200100 irq 63
[ 2.056690] ata8: SATA max UDMA/133 abar m512@0xa9200000 port 0xa9200180 irq 63
[ 2.073548] firewire_ohci 0000:04:00.0: added OHCI v1.10 device as card 0, 8 IR + 8 IT contexts, quirks 0x0, physUB
[ 2.095130] xhci_hcd 0000:74:00.0: hcc params 0x0200e081 hci version 0x100 quirks 0x0000000010000410
[ 2.096310] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.02
[ 2.096315] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.096319] usb usb2: Product: xHCI Host Controller
[ 2.096322] usb usb2: Manufacturer: Linux 5.2.9+ xhci-hcd
[ 2.096326] usb usb2: SerialNumber: 0000:74:00.0
[ 2.096425] hub 2-0:1.0: USB hub found
[ 2.096475] hub 2-0:1.0: 2 ports detected
[ 2.096727] ehci-pci 0000:00:1d.7: EHCI Host Controller
[ 2.096733] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 4
[ 2.096863] ehci-pci 0000:00:1d.7: debug port 2
[ 2.096951] xhci_hcd 0000:74:00.0: xHCI Host Controller
[ 2.096958] xhci_hcd 0000:74:00.0: new USB bus registered, assigned bus number 5
[ 2.096964] xhci_hcd 0000:74:00.0: Host supports USB 3.0 SuperSpeed
[ 2.097034] usb usb5: We don't know the algorithms for LPM for this host, disabling LPM.
[ 2.097056] usb usb5: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.02
[ 2.097060] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.097064] usb usb5: Product: xHCI Host Controller
[ 2.097067] usb usb5: Manufacturer: Linux 5.2.9+ xhci-hcd
[ 2.097071] usb usb5: SerialNumber: 0000:74:00.0
[ 2.097246] hub 5-0:1.0: USB hub found
[ 2.097280] hub 5-0:1.0: 2 ports detected
[ 2.100245] tg3 0000:3e:00.0 eth1: Tigon3 [partno(BCM957761) rev 57785100] (PCI Express) MAC address 38:c9:86:48:0c:c8
[ 2.100251] tg3 0000:3e:00.0 eth1: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[ 2.100256] tg3 0000:3e:00.0 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[ 2.100260] tg3 0000:3e:00.0 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[ 2.101000] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
[ 2.101011] ehci-pci 0000:00:1d.7: irq 22, io mem 0xa8906800
[ 2.113263] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[ 2.113290] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.02
[ 2.113293] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.113295] usb usb4: Product: EHCI Host Controller
[ 2.113297] usb usb4: Manufacturer: Linux 5.2.9+ ehci_hcd
[ 2.113299] usb usb4: SerialNumber: 0000:00:1d.7
[ 2.113547] hub 4-0:1.0: USB hub found
[ 2.113689] hub 4-0:1.0: 8 ports detected
[ 2.114136] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[ 2.114144] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
[ 2.114204] uhci_hcd 0000:00:1d.0: detected 2 ports
[ 2.114409] uhci_hcd 0000:00:1d.0: irq 19, io base 0x000030e0
[ 2.114636] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.02
[ 2.114642] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.114647] usb usb6: Product: UHCI Host Controller
[ 2.114650] usb usb6: Manufacturer: Linux 5.2.9+ uhci_hcd
[ 2.114654] usb usb6: SerialNumber: 0000:00:1d.0
[ 2.114736] hub 6-0:1.0: USB hub found
[ 2.114746] hub 6-0:1.0: 2 ports detected
[ 2.114928] ehci-pci 0000:3d:00.2: EHCI Host Controller
[ 2.114936] ehci-pci 0000:3d:00.2: new USB bus registered, assigned bus number 7
[ 2.115391] ehci-pci 0000:3d:00.2: irq 17, io mem 0xa9002000
[ 2.126623] ehci-pci 0000:3d:00.2: USB 2.0 started, EHCI 1.00
[ 2.126650] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.02
[ 2.126653] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.126655] usb usb7: Product: EHCI Host Controller
[ 2.126657] usb usb7: Manufacturer: Linux 5.2.9+ ehci_hcd
[ 2.126659] usb usb7: SerialNumber: 0000:3d:00.2
[ 2.126811] hub 7-0:1.0: USB hub found
[ 2.126818] hub 7-0:1.0: 4 ports detected
[ 2.127332] ehci-pci 0000:6e:00.2: EHCI Host Controller
[ 2.127336] ehci-pci 0000:6e:00.2: new USB bus registered, assigned bus number 8
[ 2.127672] ehci-pci 0000:6e:00.2: irq 18, io mem 0xa9702000
[ 2.130216] firewire_ohci 0000:3f:00.0: added OHCI v1.10 device as card 1, 8 IR + 8 IT contexts, quirks 0x0, physUB
[ 2.139954] ehci-pci 0000:6e:00.2: USB 2.0 started, EHCI 1.00
[ 2.139980] usb usb8: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.02
[ 2.139983] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.139985] usb usb8: Product: EHCI Host Controller
[ 2.139987] usb usb8: Manufacturer: Linux 5.2.9+ ehci_hcd
[ 2.139989] usb usb8: SerialNumber: 0000:6e:00.2
[ 2.140145] hub 8-0:1.0: USB hub found
[ 2.140151] hub 8-0:1.0: 4 ports detected
[ 2.163438] tg3 0000:6f:00.0 eth2: Tigon3 [partno(BCM957761) rev 57785100] (PCI Express) MAC address c8:2a:14:4f:80:3e
[ 2.163443] tg3 0000:6f:00.0 eth2: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[ 2.163445] tg3 0000:6f:00.0 eth2: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[ 2.163448] tg3 0000:6f:00.0 eth2: dma_rwctrl[00000001] dma_mask[64-bit]
[ 2.186840] firewire_ohci 0000:70:00.0: added OHCI v1.10 device as card 2, 8 IR + 8 IT contexts, quirks 0x0, physUB
[ 2.366468] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 2.366671] usb 1-1: new high-speed USB device number 2 using ehci-pci
[ 2.367471] ATOM BIOS: Apple
[ 2.367602] radeon 0000:01:00.0: VRAM: 1024M 0x0000000000000000 - 0x000000003FFFFFFF (1024M used)
[ 2.367605] radeon 0000:01:00.0: GTT: 1024M 0x0000000040000000 - 0x000000007FFFFFFF
[ 2.367611] [drm] Detected VRAM RAM=1024M, BAR=256M
[ 2.367613] [drm] RAM width 256bits DDR
[ 2.367705] [TTM] Zone kernel: Available graphics memory: 8193212 KiB
[ 2.367707] [TTM] Zone dma32: Available graphics memory: 2097152 KiB
[ 2.367715] [TTM] Initializing pool allocator
[ 2.367719] [TTM] Initializing DMA pool allocator
[ 2.367733] [drm] radeon: 1024M of VRAM memory ready
[ 2.367734] [drm] radeon: 1024M of GTT memory ready.
[ 2.367739] [drm] Loading BARTS Microcode
[ 2.367785] [drm] External GPIO thermal controller with fan control
[ 2.367800] == power state 0 ==
[ 2.367802] ui class: none
[ 2.367803] internal class: boot
[ 2.367804] caps:
[ 2.367805] uvd vclk: 0 dclk: 0
[ 2.367807] power level 0 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 2.367808] power level 1 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 2.367810] power level 2 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 2.367811] status: c r b
[ 2.367812] == power state 1 ==
[ 2.367814] ui class: performance
[ 2.367814] internal class: none
[ 2.367816] caps:
[ 2.367817] uvd vclk: 0 dclk: 0
[ 2.367818] power level 0 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 2.367819] power level 1 sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[ 2.367821] power level 2 sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[ 2.367822] status:
[ 2.367823] == power state 2 ==
[ 2.367824] ui class: none
[ 2.367825] internal class: uvd
[ 2.367826] caps: video
[ 2.367827] uvd vclk: 54000 dclk: 40000
[ 2.367828] power level 0 sclk: 29800 mclk: 90000 vddc: 950 vddci: 1100
[ 2.367830] power level 1 sclk: 29800 mclk: 90000 vddc: 950 vddci: 1100
[ 2.367831] power level 2 sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[ 2.367832] status:
[ 2.367833] == power state 3 ==
[ 2.367834] ui class: none
[ 2.367835] internal class: uvd_mvc
[ 2.367836] caps: video
[ 2.367838] uvd vclk: 70000 dclk: 56000
[ 2.367839] power level 0 sclk: 50200 mclk: 90000 vddc: 1050 vddci: 1100
[ 2.367840] power level 1 sclk: 50200 mclk: 90000 vddc: 1050 vddci: 1100
[ 2.367842] power level 2 sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[ 2.367843] status:
[ 2.367844] == power state 4 ==
[ 2.367845] ui class: battery
[ 2.367845] internal class: none
[ 2.367847] caps:
[ 2.367848] uvd vclk: 0 dclk: 0
[ 2.367849] power level 0 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 2.367850] power level 1 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 2.367852] power level 2 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 2.367853] status:
[ 2.368145] ata2.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[ 2.368231] ata2.00: supports DRM functions and may not be fully accessible
[ 2.368963] ata2.00: disabling queued TRIM support
[ 2.368964] ata2.00: ATA-9: Samsung SSD 850 EVO 500GB, EMT02B6Q, max UDMA/133
[ 2.368967] ata2.00: 976773168 sectors, multi 1: LBA48 NCQ (depth 32), AA
[ 2.369849] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 2.369874] ata7: SATA link down (SStatus 0 SControl 300)
[ 2.369915] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 2.370812] ata2.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[ 2.370889] ata2.00: supports DRM functions and may not be fully accessible
[ 2.371520] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[ 2.371526] ata2.00: disabling queued TRIM support
[ 2.371581] ata1.00: supports DRM functions and may not be fully accessible
[ 2.371669] ata3.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[ 2.371674] ata3.00: ATAPI: OPTIARC DVD RW AD-5690H, 4AH5, max UDMA/100
[ 2.372247] ata1.00: disabling queued TRIM support
[ 2.372247] ata1.00: ATA-9: Samsung SSD 850 PRO 256GB, EXM03B6Q, max UDMA/133
[ 2.372250] ata1.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 32), AA
[ 2.372734] [drm] radeon: dpm initialized
[ 2.372793] [drm] GART: num cpu pages 262144, num gpu pages 262144
[ 2.372911] ata2.00: configured for UDMA/133
[ 2.373196] [drm] enabling PCIE gen 2 link speeds, disable with radeon.pcie_gen2=0
[ 2.373756] ata3.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[ 2.373761] ata3.00: configured for UDMA/100
[ 2.374104] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[ 2.374156] ata1.00: supports DRM functions and may not be fully accessible
[ 2.374732] ata1.00: disabling queued TRIM support
[ 2.376217] ata1.00: configured for UDMA/133
[ 2.376353] scsi 0:0:0:0: Direct-Access ATA Samsung SSD 850 3B6Q PQ: 0 ANSI: 5
[ 2.376499] scsi 1:0:0:0: Direct-Access ATA Samsung SSD 850 2B6Q PQ: 0 ANSI: 5
[ 2.377269] sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[ 2.377283] sd 0:0:0:0: [sda] Write Protect is off
[ 2.377289] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 2.377294] sd 1:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[ 2.377304] sd 1:0:0:0: [sdb] Write Protect is off
[ 2.377306] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.377308] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 2.377324] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.377612] sdb: sdb1
[ 2.377892] scsi 2:0:0:0: CD-ROM OPTIARC DVD RW AD-5690H 4AH5 PQ: 0 ANSI: 5
[ 2.378028] sd 1:0:0:0: [sdb] supports TCG Opal
[ 2.378030] sd 1:0:0:0: [sdb] Attached SCSI disk
[ 2.378311] sda: sda1 sda2 sda3 sda4 sda5 sda6
[ 2.378814] sd 0:0:0:0: [sda] supports TCG Opal
[ 2.378816] sd 0:0:0:0: [sda] Attached SCSI disk
[ 2.389120] [drm] PCIE GART of 1024M enabled (table at 0x0000000000162000).
[ 2.389224] radeon 0000:01:00.0: WB enabled
[ 2.389226] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000040000c00 and cpu addr 0x00000000e2d392e2
[ 2.389229] radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000040000c0c and cpu addr 0x00000000a0a5980a
[ 2.390003] radeon 0000:01:00.0: fence driver on ring 5 use gpu addr 0x0000000000072118 and cpu addr 0x00000000c3630192
[ 2.390011] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 2.390013] [drm] Driver supports precise vblank timestamp query.
[ 2.390016] radeon 0000:01:00.0: radeon: MSI limited to 32-bit
[ 2.390053] radeon 0000:01:00.0: radeon: using MSI.
[ 2.390096] [drm] radeon: irq initialized.
[ 2.406462] [drm] ring test on 0 succeeded in 3 usecs
[ 2.406473] [drm] ring test on 3 succeeded in 7 usecs
[ 2.449925] usb 4-1: new high-speed USB device number 2 using ehci-pci
[ 2.456599] usb 7-1: new high-speed USB device number 2 using ehci-pci
[ 2.469933] usb 8-1: new high-speed USB device number 2 using ehci-pci
[ 2.523624] usb 1-1: New USB device found, idVendor=0424, idProduct=2514, bcdDevice= 0.03
[ 2.523628] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 2.523768] hub 1-1:1.0: USB hub found
[ 2.523873] hub 1-1:1.0: 3 ports detected
[ 2.583578] [drm] ring test on 5 succeeded in 2 usecs
[ 2.583586] [drm] UVD initialized successfully.
[ 2.583699] [drm] ib test on ring 0 succeeded in 0 usecs
[ 2.583820] [drm] ib test on ring 3 succeeded in 0 usecs
[ 2.603754] usb 7-1: New USB device found, idVendor=05ac, idProduct=9127, bcdDevice= 1.00
[ 2.603758] usb 7-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 2.604008] hub 7-1:1.0: USB hub found
[ 2.604236] hub 7-1:1.0: 7 ports detected
[ 2.606870] usb 4-1: New USB device found, idVendor=0424, idProduct=2514, bcdDevice= 0.03
[ 2.606874] usb 4-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 2.607011] hub 4-1:1.0: USB hub found
[ 2.607119] hub 4-1:1.0: 4 ports detected
[ 2.616702] firewire_core 0000:04:00.0: created device fw0: GUID a4b197fffe3f2da2, S800
[ 2.616738] firewire_core 0000:04:00.0: phy config: new root=ffc0, gap_count=63
[ 2.617168] usb 8-1: New USB device found, idVendor=05ac, idProduct=9127, bcdDevice= 1.00
[ 2.617171] usb 8-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 2.617438] hub 8-1:1.0: USB hub found
[ 2.617664] hub 8-1:1.0: 7 ports detected
[ 2.643365] firewire_core 0000:3f:00.0: created device fw1: GUID 000a2702006cfdfb, S800
[ 2.643380] firewire_core 0000:3f:00.0: phy config: new root=ffc0, gap_count=63
[ 2.653256] usb 1-2: new high-speed USB device number 3 using ehci-pci
[ 2.696655] firewire_core 0000:70:00.0: created device fw2: GUID 000a27020040c4ba, S800
[ 2.696661] firewire_core 0000:70:00.0: phy config: new root=ffc0, gap_count=63
[ 2.738663] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 2.738696] sd 1:0:0:0: Attached scsi generic sg1 type 0
[ 2.738719] sr 2:0:0:0: Attached scsi generic sg2 type 5
[ 2.778802] sr 2:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda caddy
[ 2.778812] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 2.779083] sr 2:0:0:0: Attached scsi CD-ROM sr0
[ 2.821417] usb 1-2: New USB device found, idVendor=05ac, idProduct=850b, bcdDevice= 7.55
[ 2.821425] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 2.821429] usb 1-2: Product: FaceTime HD Camera (Built-in)
[ 2.821433] usb 1-2: Manufacturer: Apple Inc.
[ 2.821436] usb 1-2: SerialNumber: CCGB8K062WDDJRLX
[ 2.879956] usb 1-1.1: new full-speed USB device number 4 using ehci-pci
[ 2.883304] tsc: Refined TSC clocksource calibration: 3400.025 MHz
[ 2.883307] usb 7-1.4: new full-speed USB device number 3 using ehci-pci
[ 2.883331] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x31026635618, max_idle_ns: 440795254572 ns
[ 2.883380] clocksource: Switched to clocksource tsc
[ 2.889951] usb 4-1.1: new high-speed USB device number 3 using ehci-pci
[ 2.896617] usb 8-1.4: new full-speed USB device number 3 using ehci-pci
[ 2.979307] usb 1-1.1: New USB device found, idVendor=0a5c, idProduct=4500, bcdDevice= 1.00
[ 2.979315] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.979320] usb 1-1.1: Product: BRCM2046 Hub
[ 2.979323] usb 1-1.1: Manufacturer: Apple Inc.
[ 2.979704] hub 1-1.1:1.0: USB hub found
[ 2.979862] hub 1-1.1:1.0: 3 ports detected
[ 2.989667] usb 7-1.4: New USB device found, idVendor=05ac, idProduct=1107, bcdDevice= 2.09
[ 2.989675] usb 7-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 2.989680] usb 7-1.4: Product: Display Audio
[ 2.989683] usb 7-1.4: Manufacturer: Apple Inc.
[ 2.989687] usb 7-1.4: SerialNumber: 1A0E0738
[ 2.991838] hidraw: raw HID events driver (C) Jiri Kosina
[ 2.993395] usb 4-1.1: New USB device found, idVendor=05ac, idProduct=8403, bcdDevice=98.33
[ 2.993403] usb 4-1.1: New USB device strings: Mfr=3, Product=4, SerialNumber=2
[ 2.993407] usb 4-1.1: Product: Card Reader
[ 2.993411] usb 4-1.1: Manufacturer: Apple
[ 2.993414] usb 4-1.1: SerialNumber: 000000009833
[ 2.995443] usb-storage 4-1.1:1.0: USB Mass Storage device detected
[ 2.995547] scsi host8: usb-storage 4-1.1:1.0
[ 2.995644] usbcore: registered new interface driver usb-storage
[ 3.002686] usb 8-1.4: New USB device found, idVendor=05ac, idProduct=1107, bcdDevice= 2.09
[ 3.002694] usb 8-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3.002699] usb 8-1.4: Product: Display Audio
[ 3.002702] usb 8-1.4: Manufacturer: Apple Inc.
[ 3.002705] usb 8-1.4: SerialNumber: 152303D9
[ 3.014370] usbcore: registered new interface driver usbhid
[ 3.014376] usbhid: USB HID core driver
[ 3.016423] input: Apple Inc. Display Audio as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:04.0/0000:39:00.0/0000:3a:00.0/0000:3b:00.0/0000:3c:03.0/0000:3d:00.2/usb7/7-1/7-1.4/7-1.4:1.3/0003:05AC:1107.0001/input/input0
[ 3.016481] hid-generic 0003:05AC:1107.0001: input,hidraw0: USB HID v1.11 Device [Apple Inc. Display Audio] on usb-0000:3d:00.2-1.4/input3
[ 3.016629] input: Apple Inc. Display Audio as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:05.0/0000:6a:00.0/0000:6b:00.0/0000:6c:00.0/0000:6d:03.0/0000:6e:00.2/usb8/8-1/8-1.4/8-1.4:1.3/0003:05AC:1107.0002/input/input1
[ 3.016710] hid-generic 0003:05AC:1107.0002: input,hidraw1: USB HID v1.11 Device [Apple Inc. Display Audio] on usb-0000:6e:00.2-1.4/input3
[ 3.049766] ata8: SATA link down (SStatus 0 SControl 300)
[ 3.056605] usb 1-1.3: new high-speed USB device number 5 using ehci-pci
[ 3.066654] usb 4-1.2: new low-speed USB device number 4 using ehci-pci
[ 3.079959] usb 7-1.5: new high-speed USB device number 4 using ehci-pci
[ 3.086626] usb 8-1.5: new high-speed USB device number 4 using ehci-pci
[ 3.162435] usb 1-1.3: New USB device found, idVendor=05ac, idProduct=1006, bcdDevice=96.15
[ 3.162443] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3.162448] usb 1-1.3: Product: Keyboard Hub
[ 3.162452] usb 1-1.3: Manufacturer: Apple, Inc.
[ 3.162455] usb 1-1.3: SerialNumber: 000000000000
[ 3.162975] hub 1-1.3:1.0: USB hub found
[ 3.163141] hub 1-1.3:1.0: 3 ports detected
[ 3.169392] usb 4-1.2: New USB device found, idVendor=05ac, idProduct=8242, bcdDevice= 0.16
[ 3.169401] usb 4-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 3.169406] usb 4-1.2: Product: IR Receiver
[ 3.169409] usb 4-1.2: Manufacturer: Apple Computer, Inc.
[ 3.174711] 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.193108] usb 7-1.5: New USB device found, idVendor=05ac, idProduct=1112, bcdDevice=71.60
[ 3.193116] usb 7-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3.193121] usb 7-1.5: Product: FaceTime HD Camera (Display)
[ 3.193124] usb 7-1.5: Manufacturer: Apple Inc.
[ 3.193128] usb 7-1.5: SerialNumber: CC2G3101FFDJ9FLP
[ 3.200381] usb 8-1.5: New USB device found, idVendor=05ac, idProduct=1112, bcdDevice=71.60
[ 3.200389] usb 8-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3.200394] usb 8-1.5: Product: FaceTime HD Camera (Display)
[ 3.200398] usb 8-1.5: Manufacturer: Apple Inc.
[ 3.200401] usb 8-1.5: SerialNumber: CCGB690CKUDJ9DFX
[ 3.230077] 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.256712] [drm] ib test on ring 5 succeeded
[ 3.259948] usb 1-1.1.1: new full-speed USB device number 6 using ehci-pci
[ 3.269942] usb 7-1.7: new full-speed USB device number 5 using ehci-pci
[ 3.276621] usb 8-1.7: new full-speed USB device number 5 using ehci-pci
[ 3.313283] [drm] radeon atom DIG backlight initialized
[ 3.313291] [drm] Radeon Display Connectors
[ 3.313294] [drm] Connector 0:
[ 3.313297] [drm] eDP-1
[ 3.313299] [drm] HPD3
[ 3.313303] [drm] DDC: 0x6450 0x6450 0x6454 0x6454 0x6458 0x6458 0x645c 0x645c
[ 3.313306] [drm] Encoders:
[ 3.313309] [drm] LCD1: INTERNAL_UNIPHY2
[ 3.313311] [drm] Connector 1:
[ 3.313313] [drm] DP-1
[ 3.313316] [drm] HPD1
[ 3.313318] [drm] DDC: 0x6430 0x6430 0x6434 0x6434 0x6438 0x6438 0x643c 0x643c
[ 3.313322] [drm] Encoders:
[ 3.313324] [drm] DFP1: INTERNAL_UNIPHY1
[ 3.313327] [drm] Connector 2:
[ 3.313329] [drm] DP-2
[ 3.313331] [drm] HPD2
[ 3.313334] [drm] DDC: 0x6440 0x6440 0x6444 0x6444 0x6448 0x6448 0x644c 0x644c
[ 3.313337] [drm] Encoders:
[ 3.313339] [drm] DFP2: INTERNAL_UNIPHY1
[ 3.313342] [drm] Connector 3:
[ 3.313344] [drm] DP-3
[ 3.313346] [drm] HPD4
[ 3.313349] [drm] DDC: 0x6460 0x6460 0x6464 0x6464 0x6468 0x6468 0x646c 0x646c
[ 3.313352] [drm] Encoders:
[ 3.313355] [drm] DFP3: INTERNAL_UNIPHY2
[ 3.313357] [drm] Connector 4:
[ 3.313359] [drm] DP-4
[ 3.313361] [drm] HPD5
[ 3.313364] [drm] DDC: 0x6470 0x6470 0x6474 0x6474 0x6478 0x6478 0x647c 0x647c
[ 3.313367] [drm] Encoders:
[ 3.313370] [drm] DFP4: INTERNAL_UNIPHY
[ 3.313372] [drm] Connector 5:
[ 3.313374] [drm] VGA-1
[ 3.313377] [drm] DDC: 0x64d8 0x64d8 0x64dc 0x64dc 0x64e0 0x64e0 0x64e4 0x64e4
[ 3.313381] [drm] Encoders:
[ 3.313383] [drm] CRT1: INTERNAL_KLDSCP_DAC1
[ 3.323668] switching from power state:
[ 3.323674] ui class: none
[ 3.323676] internal class: boot
[ 3.323680] caps:
[ 3.323683] uvd vclk: 0 dclk: 0
[ 3.323686] power level 0 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 3.323690] power level 1 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 3.323694] power level 2 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 3.323696] status: c b
[ 3.323699] switching to power state:
[ 3.323702] ui class: performance
[ 3.323704] internal class: none
[ 3.323707] caps:
[ 3.323709] uvd vclk: 0 dclk: 0
[ 3.323712] power level 0 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 3.323716] power level 1 sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[ 3.323719] power level 2 sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[ 3.323722] status: r
[ 3.361145] usb 1-1.1.1: New USB device found, idVendor=05ac, idProduct=8215, bcdDevice= 2.08
[ 3.361153] usb 1-1.1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3.361158] usb 1-1.1.1: Product: Bluetooth USB Host Controller
[ 3.361162] usb 1-1.1.1: Manufacturer: Apple Inc.
[ 3.361165] usb 1-1.1.1: SerialNumber: 3451C9ED7F9B
[ 3.368846] usb 7-1.7: New USB device found, idVendor=05ac, idProduct=9227, bcdDevice= 1.39
[ 3.368856] usb 7-1.7: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3.368862] usb 7-1.7: Product: Apple Thunderbolt Display
[ 3.368866] usb 7-1.7: Manufacturer: Apple Inc.
[ 3.368870] usb 7-1.7: SerialNumber: 1A0E0738
[ 3.370878] hid-generic 0003:05AC:9227.0004: hiddev97,hidraw3: USB HID v1.11 Device [Apple Inc. Apple Thunderbolt Display] on usb-0000:3d:00.2-1.7/input0
[ 3.375358] usb 8-1.7: New USB device found, idVendor=05ac, idProduct=9227, bcdDevice= 1.37
[ 3.375363] usb 8-1.7: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3.375366] usb 8-1.7: Product: Apple Thunderbolt Display
[ 3.375369] usb 8-1.7: Manufacturer: Apple Inc.
[ 3.375371] usb 8-1.7: SerialNumber: 152303D9
[ 3.377509] hid-generic 0003:05AC:9227.0005: hiddev98,hidraw4: USB HID v1.11 Device [Apple Inc. Apple Thunderbolt Display] on usb-0000:6e:00.2-1.7/input0
[ 3.449934] usb 1-1.3.2: new low-speed USB device number 7 using ehci-pci
[ 3.560016] usb 1-1.3.2: New USB device found, idVendor=05ac, idProduct=0220, bcdDevice= 0.71
[ 3.560020] usb 1-1.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 3.560022] usb 1-1.3.2: Product: Apple Keyboard
[ 3.560023] usb 1-1.3.2: Manufacturer: Apple, Inc
[ 3.566747] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.3/1-1.3.2/1-1.3.2:1.0/0003:05AC:0220.0006/input/input3
[ 3.623317] apple 0003:05AC:0220.0006: input,hidraw5: USB HID v1.11 Keyboard [Apple, Inc Apple Keyboard] on usb-0000:00:1a.7-1.3.2/input0
[ 3.623417] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.3/1-1.3.2/1-1.3.2:1.1/0003:05AC:0220.0007/input/input4
[ 3.679983] apple 0003:05AC:0220.0007: input,hidraw6: USB HID v1.11 Device [Apple, Inc Apple Keyboard] on usb-0000:00:1a.7-1.3.2/input1
[ 3.793266] usb 1-1.3.3: new low-speed USB device number 8 using ehci-pci
[ 3.905774] usb 1-1.3.3: New USB device found, idVendor=047d, idProduct=1020, bcdDevice= 1.00
[ 3.905778] usb 1-1.3.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 3.905780] usb 1-1.3.3: Product: Kensington Expert Mouse
[ 3.905782] usb 1-1.3.3: Manufacturer: Kensington
[ 3.908528] input: Kensington Kensington Expert Mouse as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.3/1-1.3.3/1-1.3.3:1.0/0003:047D:1020.0008/input/input5
[ 3.908698] hid-generic 0003:047D:1020.0008: input,hidraw7: USB HID v1.10 Mouse [Kensington Kensington Expert Mouse] on usb-0000:00:1a.7-1.3.3/input0
[ 4.005198] scsi 8:0:0:0: Direct-Access APPLE SD Card Reader 1.00 PQ: 0 ANSI: 0
[ 4.005431] sd 8:0:0:0: Attached scsi generic sg3 type 0
[ 4.007382] sd 8:0:0:0: [sdc] Attached SCSI removable disk
[ 4.602328] [drm] fb mappable at 0x90363000
[ 4.602334] [drm] vram apper at 0x90000000
[ 4.602337] [drm] size 14745600
[ 4.602339] [drm] fb depth is 24
[ 4.602342] [drm] pitch is 10240
[ 4.602483] fbcon: radeondrmfb (fb0) is primary device
[ 5.404864] switching from power state:
[ 5.404864] ui class: performance
[ 5.404865] internal class: none
[ 5.404865] caps:
[ 5.404866] uvd vclk: 0 dclk: 0
[ 5.404866] power level 0 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 5.404867] power level 1 sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[ 5.404867] power level 2 sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[ 5.404867] status: c r
[ 5.404868] switching to power state:
[ 5.404868] ui class: performance
[ 5.404868] internal class: none
[ 5.404869] caps:
[ 5.404869] uvd vclk: 0 dclk: 0
[ 5.404870] power level 0 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 5.404870] power level 1 sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[ 5.404871] power level 2 sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[ 5.404871] status: c r
[ 6.516758] switching from power state:
[ 6.516759] ui class: performance
[ 6.516760] internal class: none
[ 6.516761] caps:
[ 6.516763] uvd vclk: 0 dclk: 0
[ 6.516764] power level 0 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 6.516765] power level 1 sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[ 6.516766] power level 2 sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[ 6.516766] status: c r
[ 6.516768] switching to power state:
[ 6.516768] ui class: performance
[ 6.516769] internal class: none
[ 6.516769] caps:
[ 6.516770] uvd vclk: 0 dclk: 0
[ 6.516771] power level 0 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 6.516772] power level 1 sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[ 6.516773] power level 2 sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[ 6.516773] status: c r
[ 6.597510] Console: switching to colour frame buffer device 320x90
[ 6.605405] radeon 0000:01:00.0: fb0: radeondrmfb frame buffer device
[ 6.620075] [drm] Initialized radeon 2.50.0 20080528 for 0000:01:00.0 on minor 0
[ 6.855839] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
[ 7.050058] udevd[1803]: starting version 3.2.2
[ 7.076053] udevd[1804]: starting eudev-3.2.2
[ 7.099908] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input6
[ 7.099971] ACPI: Power Button [PWRB]
[ 7.100215] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input7
[ 7.102209] ACPI: Sleep Button [SLPB]
[ 7.105057] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input8
[ 7.106938] ACPI: Power Button [PWRF]
[ 7.121251] snd_hda_intel 0000:00:1b.0: enabling device (0000 -> 0002)
[ 7.123077] snd_hda_intel 0000:01:00.1: enabling device (0000 -> 0002)
[ 7.130372] videodev: Linux video capture interface: v2.00
[ 7.154353] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input9
[ 7.156863] uvcvideo: Found UVC 1.00 device FaceTime HD Camera (Built-in) (05ac:850b)
[ 7.181836] input: FaceTime HD Camera (Built-in): as /devices/pci0000:00/0000:00:1a.7/usb1/1-2/1-2:1.0/input/input10
[ 7.184023] uvcvideo: Found UVC 1.00 device FaceTime HD Camera (Display) (05ac:1112)
[ 7.203517] snd_hda_codec_cirrus hdaudioC0D0: autoconfig for CS4206: line_outs=2 (0x9/0xb/0x0/0x0/0x0) type:speaker
[ 7.205579] snd_hda_codec_cirrus hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 7.207534] snd_hda_codec_cirrus hdaudioC0D0: hp_outs=1 (0xa/0x0/0x0/0x0/0x0)
[ 7.209124] input: FaceTime HD Camera (Display): F as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:04.0/0000:39:00.0/0000:3a:00.0/0000:3b:00.0/0000:3c:03.0/0000:3d:00.2/usb7/7-1/7-1.5/7-1.5:1.0/input/input11
[ 7.209415] snd_hda_codec_cirrus hdaudioC0D0: mono: mono_out=0x0
[ 7.212572] uvcvideo: Found UVC 1.00 device FaceTime HD Camera (Display) (05ac:1112)
[ 7.213431] snd_hda_codec_cirrus hdaudioC0D0: dig-out=0x10/0x0
[ 7.217379] snd_hda_codec_cirrus hdaudioC0D0: inputs:
[ 7.218731] snd_hda_codec_cirrus hdaudioC0D0: Mic=0xd
[ 7.220006] snd_hda_codec_cirrus hdaudioC0D0: Line=0xc
[ 7.221941] snd_hda_codec_cirrus hdaudioC0D0: dig-in=0xf
[ 7.224094] Bluetooth: Core ver 2.22
[ 7.225309] NET: Registered protocol family 31
[ 7.227165] Bluetooth: HCI device and connection manager initialized
[ 7.229137] Bluetooth: HCI socket layer initialized
[ 7.230993] Bluetooth: L2CAP socket layer initialized
[ 7.232221] Bluetooth: SCO socket layer initialized
[ 7.233498] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[ 7.234680] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
[ 7.235850] input: HDA Intel PCH SPDIF In as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
[ 7.240518] input: FaceTime HD Camera (Display): F as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:05.0/0000:6a:00.0/0000:6b:00.0/0000:6c:00.0/0000:6d:03.0/0000:6e:00.2/usb8/8-1/8-1.5/8-1.5:1.0/input/input15
[ 7.241774] usbcore: registered new interface driver uvcvideo
[ 7.242974] USB Video Class driver (1.1.1)
[ 7.251523] usbcore: registered new interface driver btusb
[ 7.344818] usb 7-1.4: 1:1: cannot get freq at ep 0x4
[ 7.349815] usb 7-1.4: 1:2: cannot get freq at ep 0x4
[ 7.355817] usb 7-1.4: 2:1: cannot get freq at ep 0x84
[ 7.364876] Bluetooth: hci0: BCM: chip id 254 build 0518
[ 7.367877] Bluetooth: hci0: BCM: product 05ac:8215
[ 7.370872] Bluetooth: hci0: BCM: features 0x00
[ 7.373817] usb 7-1.4: Warning! Unlikely big volume range (=16384), cval->res is probably wrong.
[ 7.375074] usb 7-1.4: [2] FU [PCM Playback Volume] ch = 2, val = -16384/0/1
[ 7.388851] Bluetooth: hci0: Bluetooth USB Host Controller
[ 7.391816] usb 7-1.4: Warning! Unlikely big volume range (=15872), cval->res is probably wrong.
[ 7.393100] usb 7-1.4: [5] FU [Mic Capture Volume] ch = 1, val = -11264/4608/1
[ 7.423804] applesmc: key=332 fan=3 temp=50 index=49 acc=0 lux=2 kbd=0
[ 7.425157] applesmc applesmc.768: hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[ 7.570296] usb 8-1.4: 1:1: cannot get freq at ep 0x4
[ 7.577296] usb 8-1.4: 1:2: cannot get freq at ep 0x4
[ 7.585296] usb 8-1.4: 2:1: cannot get freq at ep 0x84
[ 7.604292] usb 8-1.4: Warning! Unlikely big volume range (=16384), cval->res is probably wrong.
[ 7.606674] usb 8-1.4: [2] FU [PCM Playback Volume] ch = 2, val = -16384/0/1
[ 7.626300] usb 8-1.4: Warning! Unlikely big volume range (=15872), cval->res is probably wrong.
[ 7.628716] usb 8-1.4: [5] FU [Mic Capture Volume] ch = 1, val = -11264/4608/1
[ 7.631817] usbcore: registered new interface driver snd-usb-audio
[ 9.226633] Adding 16777212k swap on /dev/sda5. Priority:-2 extents:1 across:16777212k SS
[ 9.252699] EXT4-fs (sda6): re-mounted. Opts: errors=remount-ro
[ 9.405366] device-mapper: ioctl: 4.40.0-ioctl (2019-01-18) initialised: dm-devel@redhat.com
[ 9.568943] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: errors=remount-ro,commit=30
[ 9.749449] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[ 9.757845] br0: port 1(eth0) entered blocking state
[ 9.761209] br0: port 1(eth0) entered disabled state
[ 9.765122] device eth0 entered promiscuous mode
[ 10.080545] NET: Registered protocol family 17
[ 13.476921] tg3 0000:02:00.0 eth0: Link is up at 1000 Mbps, full duplex
[ 13.479921] tg3 0000:02:00.0 eth0: Flow control is off for TX and off for RX
[ 13.482873] tg3 0000:02:00.0 eth0: EEE is enabled
[ 13.485804] br0: port 1(eth0) entered blocking state
[ 13.488704] br0: port 1(eth0) entered forwarding state
[ 14.715092] RPC: Registered named UNIX socket transport module.
[ 14.717447] RPC: Registered udp transport module.
[ 14.718881] RPC: Registered tcp transport module.
[ 14.720244] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 14.724972] FS-Cache: Loaded
[ 14.730473] FS-Cache: Netfs 'nfs' registered for caching
[ 14.739672] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[ 14.761743] NFS: Registering the id_resolver key type
[ 14.763776] Key type id_resolver registered
[ 14.765450] Key type id_legacy registered
[ 15.828516] elogind[3534]: New seat seat0.
[ 15.832309] elogind[3534]: Watching system buttons on /dev/input/event8 (Power Button)
[ 15.834492] elogind[3534]: Watching system buttons on /dev/input/event6 (Power Button)
[ 15.834543] elogind[3534]: Watching system buttons on /dev/input/event7 (Sleep Button)
[ 15.834601] elogind[3534]: Watching system buttons on /dev/input/event3 (Apple, Inc Apple Keyboard)
[ 16.113295] radeon_dp_aux_transfer_native: 158 callbacks suppressed
[ 19.608834] elogind[3534]: New session c1 of user brad.
[ 21.130098] radeon_dp_aux_transfer_native: 452 callbacks suppressed
[ 38.932082] switching from power state:
[ 38.932085] ui class: performance
[ 38.932086] internal class: none
[ 38.932087] caps:
[ 38.932088] uvd vclk: 0 dclk: 0
[ 38.932089] power level 0 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 38.932090] power level 1 sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[ 38.932091] power level 2 sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[ 38.932091] status: c
[ 38.932092] switching to power state:
[ 38.932093] ui class: battery
[ 38.932093] internal class: none
[ 38.932094] caps:
[ 38.932095] uvd vclk: 0 dclk: 0
[ 38.932096] power level 0 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 38.932096] power level 1 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 38.932097] power level 2 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 38.932098] status: r
[ 0.000000] Linux version 5.2.9+ (brad@bkmac) (gcc version 6.3.0 20170516 (Debian 6.3.0-18+deb9u1)) #7 SMP Tue Sep 3 19:02:50 AWST 2019
[ 0.000000] Command line: \\boot\vmlinuz-5.2.9+ ro root=UUID=de35d1a6-e0e1-40b0-b46a-3974a04adf4b libata.allow_tpm=1 thunderbolt.dyndbg initrd=boot\initrd.img-5.2.9+
[ 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] 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-0x000000046fefffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] e820: update [mem 0x88ee3018-0x88efde57] usable ==> usable
[ 0.000000] e820: update [mem 0x88ee3018-0x88efde57] usable ==> usable
[ 0.000000] e820: update [mem 0x88fdb018-0x88fe3a57] usable ==> usable
[ 0.000000] e820: update [mem 0x88fdb018-0x88fe3a57] usable ==> usable
[ 0.000000] e820: update [mem 0x88ed1018-0x88ee2e49] usable ==> usable
[ 0.000000] e820: update [mem 0x88ed1018-0x88ee2e49] 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-0x0000000088ed1017] usable
[ 0.000000] reserve setup_data: [mem 0x0000000088ed1018-0x0000000088ee2e49] usable
[ 0.000000] reserve setup_data: [mem 0x0000000088ee2e4a-0x0000000088ee3017] usable
[ 0.000000] reserve setup_data: [mem 0x0000000088ee3018-0x0000000088efde57] usable
[ 0.000000] reserve setup_data: [mem 0x0000000088efde58-0x0000000088fdb017] usable
[ 0.000000] reserve setup_data: [mem 0x0000000088fdb018-0x0000000088fe3a57] usable
[ 0.000000] reserve setup_data: [mem 0x0000000088fe3a58-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-0x000000046fefffff] 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.065 MHz processor
[ 0.000172] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000173] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000179] last_pfn = 0x46ff00 max_arch_pfn = 0x400000000
[ 0.000182] MTRR default type: write-back
[ 0.000182] MTRR fixed ranges enabled:
[ 0.000183] 00000-9FFFF write-back
[ 0.000184] A0000-BFFFF uncachable
[ 0.000184] C0000-DFFFF write-protect
[ 0.000185] E0000-FFFFF uncachable
[ 0.000185] MTRR variable ranges enabled:
[ 0.000186] 0 base 0C0000000 mask FC0000000 uncachable
[ 0.000187] 1 base 0A0000000 mask FE0000000 uncachable
[ 0.000187] 2 base 090000000 mask FF0000000 uncachable
[ 0.000188] 3 base 08F800000 mask FFF800000 uncachable
[ 0.000188] 4 disabled
[ 0.000189] 5 disabled
[ 0.000189] 6 disabled
[ 0.000189] 7 disabled
[ 0.000190] 8 disabled
[ 0.000190] 9 disabled
[ 0.001061] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.001294] last_pfn = 0x8efa3 max_arch_pfn = 0x400000000
[ 0.001346] reserving inaccessible SNB gfx pages
[ 0.001350] BRK [0x02001000, 0x02001fff] PGTABLE
[ 0.001352] BRK [0x02002000, 0x02002fff] PGTABLE
[ 0.001352] BRK [0x02003000, 0x02003fff] PGTABLE
[ 0.001407] BRK [0x02004000, 0x02004fff] PGTABLE
[ 0.001709] BRK [0x02005000, 0x02005fff] PGTABLE
[ 0.001715] BRK [0x02006000, 0x02006fff] PGTABLE
[ 0.002411] Secure boot disabled
[ 0.002412] RAMDISK: [mem 0x7f58e000-0x7fffefff]
[ 0.002418] ACPI: Early table checksum verification disabled
[ 0.002421] ACPI: RSDP 0x000000008ED8E014 000024 (v02 APPLE )
[ 0.002424] ACPI: XSDT 0x000000008ED8E1C0 0000A4 (v01 APPLE Apple00 0000F000 01000013)
[ 0.002428] ACPI: FACP 0x000000008ED8C000 0000F4 (v04 APPLE Apple00 0000F000 Loki 0000005F)
[ 0.002432] ACPI: DSDT 0x000000008ED81000 0053FB (v01 APPLE iMac 00210001 INTL 20061109)
[ 0.002434] ACPI: FACS 0x000000008ED3E000 000040
[ 0.002436] ACPI: FACS 0x000000008ED3E000 000040
[ 0.002438] ACPI: HPET 0x000000008ED8B000 000038 (v01 APPLE Apple00 00000001 Loki 0000005F)
[ 0.002440] ACPI: APIC 0x000000008ED8A000 0000BC (v02 APPLE Apple00 00000001 Loki 0000005F)
[ 0.002442] ACPI: SBST 0x000000008ED88000 000030 (v01 APPLE Apple00 00000001 Loki 0000005F)
[ 0.002444] ACPI: ECDT 0x000000008ED87000 000053 (v01 APPLE Apple00 00000001 Loki 0000005F)
[ 0.002445] ACPI: SSDT 0x000000008ED7E000 00020D (v01 APPLE SataAhci 00001000 INTL 20061109)
[ 0.002448] ACPI: SSDT 0x000000008ED7C000 0000B1 (v01 APPLE SmcDppt 00001000 INTL 20061109)
[ 0.002450] ACPI: SSDT 0x000000008ED7A000 000646 (v01 APPLE UsbNoRmh 00001000 INTL 20061109)
[ 0.002452] ACPI: SSDT 0x000000008ED78000 00013D (v01 APPLE SataPrt1 00001000 INTL 20061109)
[ 0.002453] ACPI: SSDT 0x000000008ED77000 0000A0 (v02 APPLE IGHda 00001000 INTL 20061109)
[ 0.002455] ACPI: SSDT 0x000000008ED75000 000032 (v01 APPLE SsdtS3 00001000 INTL 20061109)
[ 0.002457] ACPI: SSDT 0x000000008ED74000 000548 (v01 PmRef Cpu0Ist 00003000 INTL 20061109)
[ 0.002459] ACPI: SSDT 0x000000008ED73000 0009B1 (v01 PmRef CpuPm 00003000 INTL 20061109)
[ 0.002461] ACPI: SSDT 0x000000008ED72000 000315 (v01 PmRef Cpu0Tst 00003000 INTL 20061109)
[ 0.002463] ACPI: SSDT 0x000000008ED71000 00037A (v01 PmRef ApTst 00003000 INTL 20061109)
[ 0.002465] ACPI: MCFG 0x000000008ED89000 00003C (v01 APPLE Apple00 00000001 Loki 0000005F)
[ 0.002470] ACPI: DMI detected to setup _OSI("Darwin"): Apple hardware
[ 0.002472] ACPI: Local APIC address 0xfee00000
[ 0.002489] Zone ranges:
[ 0.002489] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.002490] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.002491] Normal [mem 0x0000000100000000-0x000000046fefffff]
[ 0.002492] Movable zone start for each node
[ 0.002493] Early memory node ranges
[ 0.002494] node 0: [mem 0x0000000000001000-0x000000000008dfff]
[ 0.002494] node 0: [mem 0x0000000000090000-0x000000000009ffff]
[ 0.002495] node 0: [mem 0x0000000000100000-0x000000001fffffff]
[ 0.002496] node 0: [mem 0x0000000020200000-0x000000003fffffff]
[ 0.002496] node 0: [mem 0x0000000040200000-0x000000008ed32fff]
[ 0.002497] node 0: [mem 0x000000008ed5f000-0x000000008ed70fff]
[ 0.002497] node 0: [mem 0x000000008ed8f000-0x000000008ee5afff]
[ 0.002498] node 0: [mem 0x000000008ee8f000-0x000000008eed6fff]
[ 0.002499] node 0: [mem 0x000000008eeff000-0x000000008efa2fff]
[ 0.002499] node 0: [mem 0x0000000100000000-0x000000046fefffff]
[ 0.002525] Zeroed struct page in unavailable ranges: 5478 pages
[ 0.002526] Initmem setup node 0 [mem 0x0000000000001000-0x000000046fefffff]
[ 0.002528] On node 0 totalpages: 4188570
[ 0.002529] DMA zone: 64 pages used for memmap
[ 0.002529] DMA zone: 157 pages reserved
[ 0.002530] DMA zone: 3997 pages, LIFO batch:0
[ 0.002551] DMA32 zone: 9068 pages used for memmap
[ 0.002551] DMA32 zone: 580349 pages, LIFO batch:63
[ 0.007348] Normal zone: 56316 pages used for memmap
[ 0.007349] Normal zone: 3604224 pages, LIFO batch:63
[ 0.031692] ACPI: PM-Timer IO Port: 0x408
[ 0.031695] ACPI: Local APIC address 0xfee00000
[ 0.031700] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.031701] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.031701] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.031702] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[ 0.031703] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[ 0.031703] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[ 0.031704] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[ 0.031705] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[ 0.031714] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[ 0.031716] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.031717] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.031718] ACPI: IRQ0 used by override.
[ 0.031719] ACPI: IRQ9 used by override.
[ 0.031721] Using ACPI (MADT) for SMP configuration information
[ 0.031722] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.031726] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[ 0.031744] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.031746] PM: Registered nosave memory: [mem 0x0008e000-0x0008ffff]
[ 0.031747] PM: Registered nosave memory: [mem 0x000a0000-0x000bffff]
[ 0.031748] PM: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[ 0.031749] PM: Registered nosave memory: [mem 0x20000000-0x201fffff]
[ 0.031751] PM: Registered nosave memory: [mem 0x40000000-0x401fffff]
[ 0.031752] PM: Registered nosave memory: [mem 0x88ed1000-0x88ed1fff]
[ 0.031754] PM: Registered nosave memory: [mem 0x88ee2000-0x88ee2fff]
[ 0.031754] PM: Registered nosave memory: [mem 0x88ee3000-0x88ee3fff]
[ 0.031756] PM: Registered nosave memory: [mem 0x88efd000-0x88efdfff]
[ 0.031757] PM: Registered nosave memory: [mem 0x88fdb000-0x88fdbfff]
[ 0.031759] PM: Registered nosave memory: [mem 0x88fe3000-0x88fe3fff]
[ 0.031760] PM: Registered nosave memory: [mem 0x8ed33000-0x8ed5efff]
[ 0.031762] PM: Registered nosave memory: [mem 0x8ed71000-0x8ed8efff]
[ 0.031763] PM: Registered nosave memory: [mem 0x8ee5b000-0x8ee8efff]
[ 0.031765] PM: Registered nosave memory: [mem 0x8eed7000-0x8eefefff]
[ 0.031766] PM: Registered nosave memory: [mem 0x8efa3000-0x8f8fffff]
[ 0.031767] PM: Registered nosave memory: [mem 0x8f900000-0xe00f7fff]
[ 0.031767] PM: Registered nosave memory: [mem 0xe00f8000-0xe00f8fff]
[ 0.031768] PM: Registered nosave memory: [mem 0xe00f9000-0xfed1bfff]
[ 0.031769] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[ 0.031769] PM: Registered nosave memory: [mem 0xfed20000-0xffed7fff]
[ 0.031770] PM: Registered nosave memory: [mem 0xffed8000-0xffefffff]
[ 0.031770] PM: Registered nosave memory: [mem 0xfff00000-0xffffffff]
[ 0.031772] [mem 0x8f900000-0xe00f7fff] available for PCI devices
[ 0.031775] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[ 0.066627] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[ 0.066792] percpu: Embedded 43 pages/cpu s136472 r8192 d31464 u262144
[ 0.066798] pcpu-alloc: s136472 r8192 d31464 u262144 alloc=1*2097152
[ 0.066799] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
[ 0.066817] Built 1 zonelists, mobility grouping on. Total pages: 4122965
[ 0.066818] Kernel command line: \\boot\vmlinuz-5.2.9+ ro root=UUID=de35d1a6-e0e1-40b0-b46a-3974a04adf4b libata.allow_tpm=1 thunderbolt.dyndbg initrd=boot\initrd.img-5.2.9+
[ 0.067678] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[ 0.068095] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[ 0.109232] Memory: 16275956K/16754280K available (8195K kernel code, 429K rwdata, 1460K rodata, 920K init, 800K bss, 478324K reserved, 0K cma-reserved)
[ 0.109278] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[ 0.109315] rcu: Hierarchical RCU implementation.
[ 0.109316] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[ 0.109325] NR_IRQS: 4352, nr_irqs: 488, preallocated irqs: 16
[ 0.109529] random: get_random_bytes called from start_kernel+0x27f/0x438 with crng_init=0
[ 0.109547] Console: colour dummy device 80x25
[ 0.109729] printk: console [tty0] enabled
[ 0.109734] ACPI: Core revision 20190509
[ 0.109874] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[ 0.109883] hpet clockevent registered
[ 0.109887] APIC: Switch to symmetric I/O mode setup
[ 0.110266] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.126553] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x31028c534a7, max_idle_ns: 440795366700 ns
[ 0.126556] Calibrating delay loop (skipped), value calculated using timer frequency.. 6802.46 BogoMIPS (lpj=11333550)
[ 0.126559] pid_max: default: 32768 minimum: 301
[ 0.131930] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
[ 0.131961] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
[ 0.132077] process: using mwait in idle threads
[ 0.132081] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[ 0.132083] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[ 0.132084] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.132087] Spectre V2 : Spectre mitigation: kernel not compiled with retpoline; no mitigation available!
[ 0.132088] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[ 0.132092] MDS: Mitigation: Clear CPU buffers
[ 0.132187] Freeing SMP alternatives memory: 20K
[ 0.132456] TSC deadline timer enabled
[ 0.132458] smpboot: CPU0: Intel(R) Core(TM) i7-2600 CPU @ 3.40GHz (family: 0x6, model: 0x2a, stepping: 0x7)
[ 0.132514] Performance Events: PEBS fmt1+, SandyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
[ 0.132522] ... version: 3
[ 0.132523] ... bit width: 48
[ 0.132524] ... generic registers: 4
[ 0.132526] ... value mask: 0000ffffffffffff
[ 0.132527] ... max period: 00007fffffffffff
[ 0.132528] ... fixed-purpose events: 3
[ 0.132530] ... event mask: 000000070000000f
[ 0.132554] rcu: Hierarchical SRCU implementation.
[ 0.132761] smp: Bringing up secondary CPUs ...
[ 0.132804] x86: Booting SMP configuration:
[ 0.132805] .... node #0, CPUs: #1 #2 #3 #4
[ 0.136574] 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.136628] #5 #6 #7
[ 0.142252] smp: Brought up 1 node, 8 CPUs
[ 0.142252] smpboot: Max logical packages: 1
[ 0.142252] smpboot: Total of 8 processors activated (54422.75 BogoMIPS)
[ 0.143408] devtmpfs: initialized
[ 0.143408] PM: Registering ACPI NVS region [mem 0x8ed33000-0x8ed5efff] (180224 bytes)
[ 0.143408] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[ 0.143408] futex hash table entries: 2048 (order: 5, 131072 bytes)
[ 0.143408] NET: Registered protocol family 16
[ 0.143452] cpuidle: using governor ladder
[ 0.143452] cpuidle: using governor menu
[ 0.143452] ACPI: bus type PCI registered
[ 0.143452] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.143452] PCI: MMCONFIG for domain 0000 [bus 00-fb] at [mem 0xe0000000-0xefbfffff] (base 0xe0000000)
[ 0.143452] PCI: not using MMCONFIG
[ 0.143452] PCI: Using configuration type 1 for base access
[ 0.143452] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[ 0.143912] ACPI: Disabled all _OSI OS vendors
[ 0.143912] ACPI: Added _OSI(Module Device)
[ 0.143912] ACPI: Added _OSI(Processor Device)
[ 0.143912] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.143912] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.143912] ACPI: Added _OSI(Linux-Dell-Video)
[ 0.143912] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[ 0.143912] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[ 0.143912] ACPI: Added _OSI(Darwin)
[ 0.147401] ACPI: 11 ACPI AML tables successfully acquired and loaded
[ 0.147636] ACPI: EC: EC started
[ 0.147638] ACPI: EC: interrupt blocked
[ 0.147831] ACPI: \: Used as first EC
[ 0.147831] ACPI: \: GPE=0x17, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.147831] ACPI: EC: Boot ECDT EC used to handle transactions
[ 0.147831] ACPI: BIOS _OSI(Darwin) query honored via DMI
[ 0.147870] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[ 0.148079] ACPI: Dynamic OEM Table Load:
[ 0.148085] ACPI: SSDT 0xFFFF88845D0C8800 000781 (v01 PmRef Cpu0Cst 00003001 INTL 20061109)
[ 0.148311] ACPI: Dynamic OEM Table Load:
[ 0.148317] ACPI: SSDT 0xFFFF88845D0D1400 0003A4 (v01 PmRef ApIst 00003000 INTL 20061109)
[ 0.148452] ACPI: Dynamic OEM Table Load:
[ 0.148457] ACPI: SSDT 0xFFFF88845D584000 000119 (v01 PmRef ApCst 00003000 INTL 20061109)
[ 0.148513] ACPI: Interpreter enabled
[ 0.148513] ACPI: (supports S0 S3 S4 S5)
[ 0.148513] ACPI: Using IOAPIC for interrupt routing
[ 0.149890] PCI: MMCONFIG for domain 0000 [bus 00-fb] at [mem 0xe0000000-0xefbfffff] (base 0xe0000000)
[ 0.149890] PCI: MMCONFIG at [mem 0xe0000000-0xefbfffff] reserved in ACPI motherboard resources
[ 0.149890] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.149890] ACPI: Enabled 6 GPEs in block 00 to 3F
[ 0.153822] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.153829] acpi PNP0A08:00: _OSC: OS assumes control of [PCIeHotplug SHPCHotplug AER PCIeCapability LTR]
[ 0.153833] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-fb] only partially covers this bridge
[ 0.153967] PCI host bridge to bus 0000:00
[ 0.153970] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.153972] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.153974] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.153976] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff window]
[ 0.153978] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
[ 0.153981] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
[ 0.153983] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window]
[ 0.153985] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
[ 0.153987] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[ 0.153989] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[ 0.153992] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
[ 0.153994] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
[ 0.153996] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[ 0.153998] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
[ 0.154000] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
[ 0.154002] pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff window]
[ 0.154005] pci_bus 0000:00: root bus resource [mem 0x8f900000-0xfeafffff window]
[ 0.154008] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff window]
[ 0.154010] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 0.154016] pci 0000:00:00.0: [8086:0100] type 00 class 0x060000
[ 0.154080] pci 0000:00:01.0: [8086:0101] type 01 class 0x060400
[ 0.154109] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.154162] pci 0000:00:02.0: [8086:0102] type 00 class 0x038000
[ 0.154171] pci 0000:00:02.0: reg 0x10: [mem 0xa8000000-0xa83fffff 64bit]
[ 0.154176] pci 0000:00:02.0: reg 0x18: [mem 0xa0000000-0xa7ffffff 64bit pref]
[ 0.154180] pci 0000:00:02.0: reg 0x20: [io 0x3000-0x303f]
[ 0.154250] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
[ 0.154273] pci 0000:00:16.0: reg 0x10: [mem 0xa8907100-0xa890710f 64bit]
[ 0.154340] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[ 0.154397] pci 0000:00:1a.0: [8086:1c2c] type 00 class 0x0c0300
[ 0.154437] pci 0000:00:1a.0: reg 0x20: [io 0x3140-0x315f]
[ 0.154519] pci 0000:00:1a.7: [8086:1c2d] type 00 class 0x0c0320
[ 0.154539] pci 0000:00:1a.7: reg 0x10: [mem 0xa8906c00-0xa8906fff]
[ 0.154614] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
[ 0.154699] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
[ 0.154717] pci 0000:00:1b.0: reg 0x10: [mem 0xa8900000-0xa8903fff 64bit]
[ 0.154775] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.154827] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
[ 0.154910] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.154969] pci 0000:00:1c.1: [8086:1c12] type 01 class 0x060400
[ 0.155051] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[ 0.155110] pci 0000:00:1c.2: [8086:1c14] type 01 class 0x060400
[ 0.155193] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[ 0.155252] pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
[ 0.155334] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[ 0.155393] pci 0000:00:1d.0: [8086:1c27] type 00 class 0x0c0300
[ 0.155433] pci 0000:00:1d.0: reg 0x20: [io 0x30e0-0x30ff]
[ 0.155515] pci 0000:00:1d.7: [8086:1c26] type 00 class 0x0c0320
[ 0.155535] pci 0000:00:1d.7: reg 0x10: [mem 0xa8906800-0xa8906bff]
[ 0.155609] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[ 0.155691] pci 0000:00:1f.0: [8086:1c44] type 00 class 0x060100
[ 0.155834] pci 0000:00:1f.2: [8086:1c02] type 00 class 0x010601
[ 0.155850] pci 0000:00:1f.2: reg 0x10: [io 0x3168-0x316f]
[ 0.155857] pci 0000:00:1f.2: reg 0x14: [io 0x317c-0x317f]
[ 0.155863] pci 0000:00:1f.2: reg 0x18: [io 0x3160-0x3167]
[ 0.155870] pci 0000:00:1f.2: reg 0x1c: [io 0x3178-0x317b]
[ 0.155877] pci 0000:00:1f.2: reg 0x20: [io 0x3060-0x307f]
[ 0.155884] pci 0000:00:1f.2: reg 0x24: [mem 0xa8906000-0xa89067ff]
[ 0.155918] pci 0000:00:1f.2: PME# supported from D3hot
[ 0.155967] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
[ 0.155982] pci 0000:00:1f.3: reg 0x10: [mem 0xa8907000-0xa89070ff 64bit]
[ 0.155996] pci 0000:00:1f.3: reg 0x20: [io 0xefa0-0xefbf]
[ 0.156076] pci 0000:01:00.0: [1002:6720] type 00 class 0x030000
[ 0.156096] pci 0000:01:00.0: reg 0x10: [mem 0x90000000-0x9fffffff 64bit pref]
[ 0.156106] pci 0000:01:00.0: reg 0x18: [mem 0xa8800000-0xa881ffff 64bit]
[ 0.156114] pci 0000:01:00.0: reg 0x20: [io 0x2000-0x20ff]
[ 0.156126] pci 0000:01:00.0: reg 0x30: [mem 0xa8820000-0xa883ffff pref]
[ 0.156132] pci 0000:01:00.0: enabling Extended Tags
[ 0.156140] pci 0000:01:00.0: BAR 0: assigned to efifb
[ 0.156170] pci 0000:01:00.0: supports D1 D2
[ 0.156226] pci 0000:01:00.1: [1002:aa88] type 00 class 0x040300
[ 0.156245] pci 0000:01:00.1: reg 0x10: [mem 0xa8840000-0xa8843fff 64bit]
[ 0.156269] pci 0000:01:00.1: enabling Extended Tags
[ 0.156304] pci 0000:01:00.1: supports D1 D2
[ 0.156364] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.156366] pci 0000:00:01.0: bridge window [io 0x2000-0x2fff]
[ 0.156369] pci 0000:00:01.0: bridge window [mem 0xa8800000-0xa88fffff]
[ 0.156372] pci 0000:00:01.0: bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[ 0.156433] pci 0000:02:00.0: [14e4:16b4] type 00 class 0x020000
[ 0.156478] pci 0000:02:00.0: reg 0x10: [mem 0xa8400000-0xa840ffff 64bit pref]
[ 0.156500] pci 0000:02:00.0: reg 0x18: [mem 0xa8410000-0xa841ffff 64bit pref]
[ 0.156500] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[ 0.156500] pci 0000:00:1c.0: PCI bridge to [bus 02]
[ 0.156500] pci 0000:00:1c.0: bridge window [mem 0xa8700000-0xa87fffff]
[ 0.156500] pci 0000:00:1c.0: bridge window [mem 0xa8400000-0xa84fffff 64bit pref]
[ 0.156561] pci 0000:03:00.0: [168c:0030] type 00 class 0x028000
[ 0.156561] pci 0000:03:00.0: reg 0x10: [mem 0xa8600000-0xa861ffff 64bit]
[ 0.156561] pci 0000:03:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[ 0.156561] pci 0000:03:00.0: supports D1 D2
[ 0.156561] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.156563] pci 0000:00:1c.1: PCI bridge to [bus 03]
[ 0.156563] pci 0000:00:1c.1: bridge window [mem 0xa8600000-0xa86fffff]
[ 0.156564] pci 0000:04:00.0: [11c1:5901] type 00 class 0x0c0010
[ 0.156564] pci 0000:04:00.0: reg 0x10: [mem 0xa8500000-0xa8500fff 64bit]
[ 0.156564] pci 0000:04:00.0: supports D1 D2
[ 0.156564] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.156564] pci 0000:00:1c.2: PCI bridge to [bus 04]
[ 0.156564] pci 0000:00:1c.2: bridge window [mem 0xa8500000-0xa85fffff]
[ 0.156564] pci 0000:05:00.0: [8086:1513] type 01 class 0x060400
[ 0.156564] pci 0000:05:00.0: enabling Extended Tags
[ 0.156564] pci 0000:05:00.0: supports D1 D2
[ 0.156564] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.156564] pci 0000:00:1c.4: PCI bridge to [bus 05-cb]
[ 0.156564] pci 0000:00:1c.4: bridge window [io 0x4000-0x5fff]
[ 0.156564] pci 0000:00:1c.4: bridge window [mem 0xa8a00000-0xad8fffff]
[ 0.156564] pci 0000:00:1c.4: bridge window [mem 0xacf00000-0xb10fffff 64bit pref]
[ 0.156564] acpiphp: Slot [3] registered
[ 0.156564] acpiphp: Slot [4] registered
[ 0.156564] pci 0000:06:00.0: [8086:1513] type 01 class 0x060400
[ 0.156564] pci 0000:06:00.0: enabling Extended Tags
[ 0.156564] pci 0000:06:00.0: supports D1 D2
[ 0.156564] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.156564] pci 0000:06:03.0: [8086:1513] type 01 class 0x060400
[ 0.156564] pci 0000:06:03.0: enabling Extended Tags
[ 0.156564] pci 0000:06:03.0: supports D1 D2
[ 0.156564] pci 0000:06:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.156564] pci 0000:06:04.0: [8086:1513] type 01 class 0x060400
[ 0.156564] pci 0000:06:04.0: enabling Extended Tags
[ 0.156564] pci 0000:06:04.0: supports D1 D2
[ 0.156564] pci 0000:06:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.156565] pci 0000:06:05.0: [8086:1513] type 01 class 0x060400
[ 0.156565] pci 0000:06:05.0: enabling Extended Tags
[ 0.156565] pci 0000:06:05.0: supports D1 D2
[ 0.156565] pci 0000:06:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.156565] pci 0000:06:06.0: [8086:1513] type 01 class 0x060400
[ 0.156565] pci 0000:06:06.0: enabling Extended Tags
[ 0.156565] pci 0000:06:06.0: supports D1 D2
[ 0.156565] pci 0000:06:06.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.156565] pci 0000:05:00.0: PCI bridge to [bus 06-cb]
[ 0.156565] pci 0000:05:00.0: bridge window [io 0x4000-0x4fff]
[ 0.156565] pci 0000:05:00.0: bridge window [mem 0xa8a00000-0xa98fffff]
[ 0.156565] pci 0000:05:00.0: bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[ 0.156565] acpiphp: Slot [1] registered
[ 0.156565] pci 0000:07:00.0: [8086:1513] type 00 class 0x088000
[ 0.156565] pci 0000:07:00.0: reg 0x10: [mem 0xa8a00000-0xa8a3ffff]
[ 0.156565] pci 0000:07:00.0: reg 0x14: [mem 0xa8a40000-0xa8a40fff]
[ 0.156565] pci 0000:07:00.0: enabling Extended Tags
[ 0.156565] pci 0000:07:00.0: supports D1 D2
[ 0.156565] pci 0000:07:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.156565] pci 0000:06:00.0: PCI bridge to [bus 07]
[ 0.156565] pci 0000:06:00.0: bridge window [mem 0xa8a00000-0xa8afffff]
[ 0.156565] pci 0000:06:03.0: PCI bridge to [bus 08-38]
[ 0.156565] pci 0000:06:03.0: bridge window [mem 0xa8b00000-0xa8bfffff]
[ 0.159941] pci 0000:39:00.0: [8086:1513] type 01 class 0x060400
[ 0.160083] pci 0000:39:00.0: enabling Extended Tags
[ 0.160249] pci 0000:39:00.0: supports D1 D2
[ 0.160250] pci 0000:39:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.166602] pci 0000:06:04.0: PCI bridge to [bus 39-69]
[ 0.166617] pci 0000:06:04.0: bridge window [mem 0xa8c00000-0xa90fffff]
[ 0.166629] pci 0000:06:04.0: bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[ 0.166739] pci 0000:3a:00.0: [8086:1513] type 01 class 0x060400
[ 0.166890] pci 0000:3a:00.0: enabling Extended Tags
[ 0.167061] pci 0000:3a:00.0: supports D1 D2
[ 0.167062] pci 0000:3a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.169895] pci 0000:3a:01.0: [8086:1513] type 01 class 0x060400
[ 0.169895] pci 0000:3a:01.0: enabling Extended Tags
[ 0.169895] pci 0000:3a:01.0: supports D1 D2
[ 0.169895] pci 0000:3a:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.169897] pci 0000:3a:02.0: [8086:1513] type 01 class 0x060400
[ 0.169897] pci 0000:3a:02.0: enabling Extended Tags
[ 0.169897] pci 0000:3a:02.0: supports D1 D2
[ 0.169897] pci 0000:3a:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.169897] pci 0000:3a:04.0: [8086:1513] type 01 class 0x060400
[ 0.169897] pci 0000:3a:04.0: enabling Extended Tags
[ 0.169897] pci 0000:3a:04.0: supports D1 D2
[ 0.169897] pci 0000:3a:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.169897] pci 0000:3a:05.0: [8086:1513] type 01 class 0x060400
[ 0.169897] pci 0000:3a:05.0: enabling Extended Tags
[ 0.169897] pci 0000:3a:05.0: supports D1 D2
[ 0.169897] pci 0000:3a:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.169897] pci 0000:39:00.0: PCI bridge to [bus 3a-41]
[ 0.169897] pci 0000:39:00.0: bridge window [mem 0xa8c00000-0xa90fffff]
[ 0.169897] pci 0000:39:00.0: bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[ 0.169897] pci 0000:3b:00.0: [12d8:400c] type 01 class 0x060400
[ 0.169897] pci 0000:3b:00.0: supports D1 D2
[ 0.169897] pci 0000:3b:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.179944] pci 0000:3a:00.0: PCI bridge to [bus 3b-3d]
[ 0.179968] pci 0000:3a:00.0: bridge window [mem 0xa9000000-0xa90fffff]
[ 0.180157] pci 0000:3c:03.0: [12d8:400c] type 01 class 0x060400
[ 0.180509] pci 0000:3c:03.0: supports D1 D2
[ 0.180511] pci 0000:3c:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.183229] pci 0000:3b:00.0: PCI bridge to [bus 3c-3d]
[ 0.183229] pci 0000:3b:00.0: bridge window [mem 0xa9000000-0xa90fffff]
[ 0.183231] pci 0000:3d:00.0: [12d8:400e] type 00 class 0x0c0310
[ 0.183231] pci 0000:3d:00.0: reg 0x10: [mem 0xa9001000-0xa9001fff]
[ 0.183231] pci 0000:3d:00.0: supports D1 D2
[ 0.183231] pci 0000:3d:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.183231] pci 0000:3d:00.1: [12d8:400e] type 00 class 0x0c0310
[ 0.183231] pci 0000:3d:00.1: reg 0x10: [mem 0xa9000000-0xa9000fff]
[ 0.183231] pci 0000:3d:00.1: supports D1 D2
[ 0.183231] pci 0000:3d:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.183231] pci 0000:3d:00.2: [12d8:400f] type 00 class 0x0c0320
[ 0.183231] pci 0000:3d:00.2: reg 0x10: [mem 0xa9002000-0xa90020ff]
[ 0.183231] pci 0000:3d:00.2: supports D1 D2
[ 0.183231] pci 0000:3d:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.183231] pci 0000:3c:03.0: PCI bridge to [bus 3d]
[ 0.183231] pci 0000:3c:03.0: bridge window [mem 0xa9000000-0xa90fffff]
[ 0.183231] pci 0000:3e:00.0: [14e4:16b0] type 00 class 0x020000
[ 0.183231] pci 0000:3e:00.0: reg 0x10: [mem 0xacf00000-0xacf0ffff 64bit pref]
[ 0.183231] pci 0000:3e:00.0: reg 0x18: [mem 0xacf10000-0xacf1ffff 64bit pref]
[ 0.183231] pci 0000:3e:00.0: PME# supported from D0 D3hot D3cold
[ 0.196623] pci 0000:3a:01.0: PCI bridge to [bus 3e]
[ 0.196646] pci 0000:3a:01.0: bridge window [mem 0xa8f00000-0xa8ffffff]
[ 0.196663] pci 0000:3a:01.0: bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[ 0.196784] pci 0000:3f:00.0: [11c1:5901] type 00 class 0x0c0010
[ 0.196877] pci 0000:3f:00.0: reg 0x10: [mem 0xa8e00000-0xa8e00fff 64bit]
[ 0.197224] pci 0000:3f:00.0: supports D1 D2
[ 0.197225] pci 0000:3f:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.209951] pci 0000:3a:02.0: PCI bridge to [bus 3f]
[ 0.209974] pci 0000:3a:02.0: bridge window [mem 0xa8e00000-0xa8efffff]
[ 0.210071] pci 0000:3a:04.0: PCI bridge to [bus 40]
[ 0.210090] pci 0000:3a:04.0: bridge window [mem 0xa8d00000-0xa8dfffff]
[ 0.213228] pci 0000:3a:05.0: PCI bridge to [bus 41]
[ 0.213228] pci 0000:3a:05.0: bridge window [mem 0xa8c00000-0xa8cfffff]
[ 0.213230] pci 0000:6a:00.0: [8086:1513] type 01 class 0x060400
[ 0.213230] pci 0000:6a:00.0: enabling Extended Tags
[ 0.213230] pci 0000:6a:00.0: supports D1 D2
[ 0.213230] pci 0000:6a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.223268] pci 0000:06:05.0: PCI bridge to [bus 6a-9a]
[ 0.223280] pci 0000:06:05.0: bridge window [io 0x4000-0x4fff]
[ 0.223288] pci 0000:06:05.0: bridge window [mem 0xa9100000-0xa97fffff]
[ 0.223299] pci 0000:06:05.0: bridge window [mem 0xad000000-0xad0fffff 64bit pref]
[ 0.223409] pci 0000:6b:00.0: [8086:1513] type 01 class 0x060400
[ 0.223559] pci 0000:6b:00.0: enabling Extended Tags
[ 0.223730] pci 0000:6b:00.0: supports D1 D2
[ 0.223731] pci 0000:6b:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.226561] pci 0000:6b:01.0: [8086:1513] type 01 class 0x060400
[ 0.226561] pci 0000:6b:01.0: enabling Extended Tags
[ 0.226561] pci 0000:6b:01.0: supports D1 D2
[ 0.226561] pci 0000:6b:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.226563] pci 0000:6b:02.0: [8086:1513] type 01 class 0x060400
[ 0.226563] pci 0000:6b:02.0: enabling Extended Tags
[ 0.226563] pci 0000:6b:02.0: supports D1 D2
[ 0.226563] pci 0000:6b:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.226563] pci 0000:6b:03.0: [8086:1513] type 01 class 0x060400
[ 0.226563] pci 0000:6b:03.0: enabling Extended Tags
[ 0.226563] pci 0000:6b:03.0: supports D1 D2
[ 0.226563] pci 0000:6b:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.226563] pci 0000:6b:04.0: [8086:1513] type 01 class 0x060400
[ 0.226563] pci 0000:6b:04.0: enabling Extended Tags
[ 0.226563] pci 0000:6b:04.0: supports D1 D2
[ 0.226563] pci 0000:6b:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.226563] pci 0000:6b:05.0: [8086:1513] type 01 class 0x060400
[ 0.226563] pci 0000:6b:05.0: enabling Extended Tags
[ 0.226563] pci 0000:6b:05.0: supports D1 D2
[ 0.226563] pci 0000:6b:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.226563] pci 0000:6a:00.0: PCI bridge to [bus 6b-76]
[ 0.226563] pci 0000:6a:00.0: bridge window [io 0x4000-0x4fff]
[ 0.226563] pci 0000:6a:00.0: bridge window [mem 0xa9100000-0xa97fffff]
[ 0.226563] pci 0000:6a:00.0: bridge window [mem 0xad000000-0xad0fffff 64bit pref]
[ 0.226563] pci 0000:6c:00.0: [12d8:400c] type 01 class 0x060400
[ 0.226603] pci 0000:6c:00.0: supports D1 D2
[ 0.226605] pci 0000:6c:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.239942] pci 0000:6b:00.0: PCI bridge to [bus 6c-6e]
[ 0.239965] pci 0000:6b:00.0: bridge window [mem 0xa9700000-0xa97fffff]
[ 0.240154] pci 0000:6d:03.0: [12d8:400c] type 01 class 0x060400
[ 0.240504] pci 0000:6d:03.0: supports D1 D2
[ 0.240506] pci 0000:6d:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.243228] pci 0000:6c:00.0: PCI bridge to [bus 6d-6e]
[ 0.243228] pci 0000:6c:00.0: bridge window [mem 0xa9700000-0xa97fffff]
[ 0.243229] pci 0000:6e:00.0: [12d8:400e] type 00 class 0x0c0310
[ 0.243229] pci 0000:6e:00.0: reg 0x10: [mem 0xa9701000-0xa9701fff]
[ 0.243229] pci 0000:6e:00.0: supports D1 D2
[ 0.243229] pci 0000:6e:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.243229] pci 0000:6e:00.1: [12d8:400e] type 00 class 0x0c0310
[ 0.243229] pci 0000:6e:00.1: reg 0x10: [mem 0xa9700000-0xa9700fff]
[ 0.243229] pci 0000:6e:00.1: supports D1 D2
[ 0.243229] pci 0000:6e:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.243229] pci 0000:6e:00.2: [12d8:400f] type 00 class 0x0c0320
[ 0.243229] pci 0000:6e:00.2: reg 0x10: [mem 0xa9702000-0xa97020ff]
[ 0.243229] pci 0000:6e:00.2: supports D1 D2
[ 0.243229] pci 0000:6e:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.243229] pci 0000:6d:03.0: PCI bridge to [bus 6e]
[ 0.243229] pci 0000:6d:03.0: bridge window [mem 0xa9700000-0xa97fffff]
[ 0.243229] pci 0000:6f:00.0: [14e4:16b0] type 00 class 0x020000
[ 0.243229] pci 0000:6f:00.0: reg 0x10: [mem 0xad000000-0xad00ffff 64bit pref]
[ 0.243229] pci 0000:6f:00.0: reg 0x18: [mem 0xad010000-0xad01ffff 64bit pref]
[ 0.243229] pci 0000:6f:00.0: PME# supported from D0 D3hot D3cold
[ 0.256621] pci 0000:6b:01.0: PCI bridge to [bus 6f]
[ 0.256644] pci 0000:6b:01.0: bridge window [mem 0xa9600000-0xa96fffff]
[ 0.256661] pci 0000:6b:01.0: bridge window [mem 0xad000000-0xad0fffff 64bit pref]
[ 0.256782] pci 0000:70:00.0: [11c1:5901] type 00 class 0x0c0010
[ 0.256875] pci 0000:70:00.0: reg 0x10: [mem 0xa9500000-0xa9500fff 64bit]
[ 0.257221] pci 0000:70:00.0: supports D1 D2
[ 0.257223] pci 0000:70:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.269950] pci 0000:6b:02.0: PCI bridge to [bus 70]
[ 0.269973] pci 0000:6b:02.0: bridge window [mem 0xa9500000-0xa95fffff]
[ 0.270069] pci 0000:6b:03.0: PCI bridge to [bus 71]
[ 0.270088] pci 0000:6b:03.0: bridge window [mem 0xa9400000-0xa94fffff]
[ 0.273228] pci 0000:72:00.0: [8086:1549] type 01 class 0x060400
[ 0.273228] pci 0000:72:00.0: enabling Extended Tags
[ 0.273228] pci 0000:72:00.0: supports D1 D2
[ 0.273228] pci 0000:72:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.283288] pci 0000:6b:04.0: PCI bridge to [bus 72-75]
[ 0.283305] pci 0000:6b:04.0: bridge window [io 0x4000-0x4fff]
[ 0.283315] pci 0000:6b:04.0: bridge window [mem 0xa9200000-0xa93fffff]
[ 0.283468] pci 0000:73:00.0: [8086:1549] type 01 class 0x060400
[ 0.283683] pci 0000:73:00.0: enabling Extended Tags
[ 0.283925] pci 0000:73:00.0: supports D1 D2
[ 0.283927] pci 0000:73:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.286563] pci 0000:73:01.0: [8086:1549] type 01 class 0x060400
[ 0.286563] pci 0000:73:01.0: enabling Extended Tags
[ 0.286563] pci 0000:73:01.0: supports D1 D2
[ 0.286563] pci 0000:73:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.286564] pci 0000:72:00.0: PCI bridge to [bus 73-75]
[ 0.286564] pci 0000:72:00.0: bridge window [io 0x4000-0x4fff]
[ 0.286564] pci 0000:72:00.0: bridge window [mem 0xa9200000-0xa93fffff]
[ 0.286564] pci 0000:74:00.0: [1b21:1142] type 00 class 0x0c0330
[ 0.286564] pci 0000:74:00.0: reg 0x10: [mem 0xa9300000-0xa9307fff 64bit]
[ 0.286564] pci 0000:74:00.0: PME# supported from D3cold
[ 0.286564] pci 0000:73:00.0: PCI bridge to [bus 74]
[ 0.286564] pci 0000:73:00.0: bridge window [mem 0xa9300000-0xa93fffff]
[ 0.286564] pci 0000:75:00.0: [1b21:0612] type 00 class 0x010601
[ 0.286564] pci 0000:75:00.0: reg 0x10: [io 0x4028-0x402f]
[ 0.286564] pci 0000:75:00.0: reg 0x14: [io 0x4034-0x4037]
[ 0.286564] pci 0000:75:00.0: reg 0x18: [io 0x4020-0x4027]
[ 0.286564] pci 0000:75:00.0: reg 0x1c: [io 0x4030-0x4033]
[ 0.286564] pci 0000:75:00.0: reg 0x20: [io 0x4000-0x401f]
[ 0.286564] pci 0000:75:00.0: reg 0x24: [mem 0xa9200000-0xa92001ff]
[ 0.286564] pci 0000:75:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[ 0.286590] pci 0000:73:01.0: PCI bridge to [bus 75]
[ 0.286609] pci 0000:73:01.0: bridge window [io 0x4000-0x4fff]
[ 0.286619] pci 0000:73:01.0: bridge window [mem 0xa9200000-0xa92fffff]
[ 0.286764] pci 0000:6b:05.0: PCI bridge to [bus 76]
[ 0.286783] pci 0000:6b:05.0: bridge window [mem 0xa9100000-0xa91fffff]
[ 0.289895] pci 0000:06:06.0: PCI bridge to [bus 9b-cb]
[ 0.289895] pci 0000:06:06.0: bridge window [mem 0xa9800000-0xa98fffff]
[ 0.289895] pci_bus 0000:00: on NUMA node 0
[ 0.289897] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
[ 0.289897] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
[ 0.289897] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
[ 0.289897] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
[ 0.289897] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
[ 0.289897] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
[ 0.289897] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
[ 0.289897] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
[ 0.289898] ACPI: EC: interrupt unblocked
[ 0.289898] ACPI: EC: event unblocked
[ 0.289898] ACPI: \_SB_.PCI0.LPCB.EC__: GPE=0x17, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.289898] ACPI: \_SB_.PCI0.LPCB.EC__: Boot DSDT EC used to handle transactions and events
[ 0.289900] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[ 0.289905] pci 0000:01:00.0: vgaarb: bridge control possible
[ 0.289906] pci 0000:01:00.0: vgaarb: setting as boot device
[ 0.289908] vgaarb: loaded
[ 0.289948] SCSI subsystem initialized
[ 0.289963] libata version 3.00 loaded.
[ 0.289963] Registered efivars operations
[ 0.333232] PCI: Using ACPI for IRQ routing
[ 0.343827] PCI: pci_cache_line_size set to 64 bytes
[ 0.343832] pci 0000:00:1c.4: can't claim BAR 9 [mem 0xacf00000-0xb10fffff 64bit pref]: address conflict with PCI Bus 0000:05 [mem 0xa8a00000-0xad8fffff]
[ 0.344129] e820: reserve RAM buffer [mem 0x0008e000-0x0008ffff]
[ 0.344130] e820: reserve RAM buffer [mem 0x88ed1018-0x8bffffff]
[ 0.344131] e820: reserve RAM buffer [mem 0x88ee3018-0x8bffffff]
[ 0.344131] e820: reserve RAM buffer [mem 0x88fdb018-0x8bffffff]
[ 0.344132] e820: reserve RAM buffer [mem 0x8ed33000-0x8fffffff]
[ 0.344133] e820: reserve RAM buffer [mem 0x8ed71000-0x8fffffff]
[ 0.344134] e820: reserve RAM buffer [mem 0x8ee5b000-0x8fffffff]
[ 0.344135] e820: reserve RAM buffer [mem 0x8eed7000-0x8fffffff]
[ 0.344136] e820: reserve RAM buffer [mem 0x8efa3000-0x8fffffff]
[ 0.344137] e820: reserve RAM buffer [mem 0x46ff00000-0x46fffffff]
[ 0.346568] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 0.346568] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[ 0.346576] clocksource: Switched to clocksource tsc-early
[ 0.346576] VFS: Disk quotas dquot_6.6.0
[ 0.346576] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.346576] pnp: PnP ACPI init
[ 0.346623] system 00:00: [mem 0xfed00000-0xfed003ff] has been reserved
[ 0.346718] system 00:00: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
[ 0.346727] system 00:01: [io 0x0680-0x069f] has been reserved
[ 0.346727] system 00:01: [io 0x1000-0x100f] has been reserved
[ 0.346727] system 00:01: [io 0xffff] has been reserved
[ 0.346727] system 00:01: [io 0xffff] has been reserved
[ 0.346727] system 00:01: [io 0x0400-0x047f] has been reserved
[ 0.346727] system 00:01: [io 0x0500-0x057f] has been reserved
[ 0.346727] system 00:01: [io 0x164e-0x164f] has been reserved
[ 0.346769] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.346786] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.346947] system 00:03: [mem 0xfed1c000-0xfed1ffff] has been reserved
[ 0.346950] system 00:03: [mem 0xfed10000-0xfed17fff] has been reserved
[ 0.346952] system 00:03: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.346954] system 00:03: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.346956] system 00:03: [mem 0xe0000000-0xefffffff] could not be reserved
[ 0.346958] system 00:03: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.346960] system 00:03: [mem 0xfed90000-0xfed93fff] has been reserved
[ 0.346962] system 00:03: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 0.346964] system 00:03: [mem 0xff000000-0xffffffff] could not be reserved
[ 0.346966] system 00:03: [mem 0xfee00000-0xfeefffff] has been reserved
[ 0.346971] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.347050] pnp: PnP ACPI: found 4 devices
[ 0.348137] pci 0000:01:00.0: assigning 75 device properties
[ 0.348169] pci 0000:04:00.0: assigning 2 device properties
[ 0.348181] pci 0000:07:00.0: assigning 5 device properties
[ 0.348193] pci 0000:3f:00.0: assigning 2 device properties
[ 0.348204] pci 0000:70:00.0: assigning 2 device properties
[ 0.348214] pci 0000:00:1b.0: assigning 4 device properties
[ 0.352739] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.352743] pci 0000:03:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[ 0.352747] pci 0000:75:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[ 0.352753] pci 0000:06:03.0: bridge window [io 0x1000-0x0fff] to [bus 08-38] add_size 1000
[ 0.352756] pci 0000:06:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 08-38] add_size 200000 add_align 100000
[ 0.352760] pci 0000:3a:04.0: bridge window [io 0x1000-0x0fff] to [bus 40] add_size 1000
[ 0.352763] pci 0000:3a:04.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 40] add_size 200000 add_align 100000
[ 0.352766] pci 0000:3a:05.0: bridge window [io 0x1000-0x0fff] to [bus 41] add_size 1000
[ 0.352768] pci 0000:3a:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 41] add_size 200000 add_align 100000
[ 0.352772] pci 0000:39:00.0: bridge window [io 0x1000-0x0fff] to [bus 3a-41] add_size 2000
[ 0.352774] pci 0000:06:04.0: bridge window [io 0x1000-0x0fff] to [bus 39-69] add_size 3000
[ 0.352779] pci 0000:6b:04.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 72-75] add_size 200000 add_align 100000
[ 0.352782] pci 0000:6b:05.0: bridge window [io 0x1000-0x0fff] to [bus 76] add_size 1000
[ 0.352784] pci 0000:6b:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 76] add_size 200000 add_align 100000
[ 0.352788] pci 0000:06:06.0: bridge window [io 0x1000-0x0fff] to [bus 9b-cb] add_size 1000
[ 0.352790] pci 0000:06:06.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 9b-cb] add_size 200000 add_align 100000
[ 0.352795] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.352797] pci 0000:00:01.0: bridge window [io 0x2000-0x2fff]
[ 0.352800] pci 0000:00:01.0: bridge window [mem 0xa8800000-0xa88fffff]
[ 0.352803] pci 0000:00:01.0: bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[ 0.352806] pci 0000:00:1c.0: PCI bridge to [bus 02]
[ 0.352811] pci 0000:00:1c.0: bridge window [mem 0xa8700000-0xa87fffff]
[ 0.352815] pci 0000:00:1c.0: bridge window [mem 0xa8400000-0xa84fffff 64bit pref]
[ 0.352822] pci 0000:03:00.0: BAR 6: assigned [mem 0xa8620000-0xa862ffff pref]
[ 0.352825] pci 0000:00:1c.1: PCI bridge to [bus 03]
[ 0.352829] pci 0000:00:1c.1: bridge window [mem 0xa8600000-0xa86fffff]
[ 0.352837] pci 0000:00:1c.2: PCI bridge to [bus 04]
[ 0.352841] pci 0000:00:1c.2: bridge window [mem 0xa8500000-0xa85fffff]
[ 0.352851] pci 0000:06:03.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[ 0.352854] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[ 0.352857] pci 0000:06:06.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[ 0.352859] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[ 0.352862] pci 0000:06:03.0: BAR 7: no space for [io size 0x1000]
[ 0.352864] pci 0000:06:03.0: BAR 7: failed to assign [io size 0x1000]
[ 0.352866] pci 0000:06:04.0: BAR 7: no space for [io size 0x3000]
[ 0.352867] pci 0000:06:04.0: BAR 7: failed to assign [io size 0x3000]
[ 0.352870] pci 0000:06:06.0: BAR 7: no space for [io size 0x1000]
[ 0.352872] pci 0000:06:06.0: BAR 7: failed to assign [io size 0x1000]
[ 0.352875] pci 0000:06:06.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[ 0.352878] pci 0000:06:06.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[ 0.352880] pci 0000:06:06.0: BAR 7: no space for [io size 0x1000]
[ 0.352882] pci 0000:06:06.0: BAR 7: failed to assign [io size 0x1000]
[ 0.352884] pci 0000:06:04.0: BAR 7: no space for [io size 0x3000]
[ 0.352886] pci 0000:06:04.0: BAR 7: failed to assign [io size 0x3000]
[ 0.352889] pci 0000:06:03.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[ 0.352891] pci 0000:06:03.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[ 0.352893] pci 0000:06:03.0: BAR 7: no space for [io size 0x1000]
[ 0.352895] pci 0000:06:03.0: BAR 7: failed to assign [io size 0x1000]
[ 0.352897] pci 0000:06:00.0: PCI bridge to [bus 07]
[ 0.352904] pci 0000:06:00.0: bridge window [mem 0xa8a00000-0xa8afffff]
[ 0.352915] pci 0000:06:03.0: PCI bridge to [bus 08-38]
[ 0.352922] pci 0000:06:03.0: bridge window [mem 0xa8b00000-0xa8bfffff]
[ 0.352933] pci 0000:39:00.0: BAR 7: no space for [io size 0x2000]
[ 0.352935] pci 0000:39:00.0: BAR 7: failed to assign [io size 0x2000]
[ 0.352937] pci 0000:39:00.0: BAR 7: no space for [io size 0x2000]
[ 0.352939] pci 0000:39:00.0: BAR 7: failed to assign [io size 0x2000]
[ 0.352943] pci 0000:3a:04.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[ 0.352945] pci 0000:3a:04.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[ 0.352949] pci 0000:3a:05.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[ 0.352951] pci 0000:3a:05.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[ 0.352953] pci 0000:3a:04.0: BAR 7: no space for [io size 0x1000]
[ 0.352955] pci 0000:3a:04.0: BAR 7: failed to assign [io size 0x1000]
[ 0.352957] pci 0000:3a:05.0: BAR 7: no space for [io size 0x1000]
[ 0.352959] pci 0000:3a:05.0: BAR 7: failed to assign [io size 0x1000]
[ 0.352962] pci 0000:3a:05.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[ 0.352964] pci 0000:3a:05.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[ 0.352966] pci 0000:3a:05.0: BAR 7: no space for [io size 0x1000]
[ 0.352968] pci 0000:3a:05.0: BAR 7: failed to assign [io size 0x1000]
[ 0.352971] pci 0000:3a:04.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[ 0.352973] pci 0000:3a:04.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[ 0.352975] pci 0000:3a:04.0: BAR 7: no space for [io size 0x1000]
[ 0.352977] pci 0000:3a:04.0: BAR 7: failed to assign [io size 0x1000]
[ 0.352979] pci 0000:3c:03.0: PCI bridge to [bus 3d]
[ 0.352992] pci 0000:3c:03.0: bridge window [mem 0xa9000000-0xa90fffff]
[ 0.353017] pci 0000:3b:00.0: PCI bridge to [bus 3c-3d]
[ 0.353030] pci 0000:3b:00.0: bridge window [mem 0xa9000000-0xa90fffff]
[ 0.353055] pci 0000:3a:00.0: PCI bridge to [bus 3b-3d]
[ 0.353065] pci 0000:3a:00.0: bridge window [mem 0xa9000000-0xa90fffff]
[ 0.353084] pci 0000:3a:01.0: PCI bridge to [bus 3e]
[ 0.353094] pci 0000:3a:01.0: bridge window [mem 0xa8f00000-0xa8ffffff]
[ 0.353102] pci 0000:3a:01.0: bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[ 0.353116] pci 0000:3a:02.0: PCI bridge to [bus 3f]
[ 0.353126] pci 0000:3a:02.0: bridge window [mem 0xa8e00000-0xa8efffff]
[ 0.353145] pci 0000:3a:04.0: PCI bridge to [bus 40]
[ 0.353155] pci 0000:3a:04.0: bridge window [mem 0xa8d00000-0xa8dfffff]
[ 0.353174] pci 0000:3a:05.0: PCI bridge to [bus 41]
[ 0.353184] pci 0000:3a:05.0: bridge window [mem 0xa8c00000-0xa8cfffff]
[ 0.353203] pci 0000:39:00.0: PCI bridge to [bus 3a-41]
[ 0.353213] pci 0000:39:00.0: bridge window [mem 0xa8c00000-0xa90fffff]
[ 0.353221] pci 0000:39:00.0: bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[ 0.353236] pci 0000:06:04.0: PCI bridge to [bus 39-69]
[ 0.353242] pci 0000:06:04.0: bridge window [mem 0xa8c00000-0xa90fffff]
[ 0.353247] pci 0000:06:04.0: bridge window [mem 0xacf00000-0xacffffff 64bit pref]
[ 0.353258] pci 0000:6b:04.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[ 0.353260] pci 0000:6b:04.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[ 0.353263] pci 0000:6b:05.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[ 0.353265] pci 0000:6b:05.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[ 0.353268] pci 0000:6b:05.0: BAR 7: no space for [io size 0x1000]
[ 0.353269] pci 0000:6b:05.0: BAR 7: failed to assign [io size 0x1000]
[ 0.353272] pci 0000:6b:05.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[ 0.353275] pci 0000:6b:05.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[ 0.353277] pci 0000:6b:05.0: BAR 7: no space for [io size 0x1000]
[ 0.353279] pci 0000:6b:05.0: BAR 7: failed to assign [io size 0x1000]
[ 0.353282] pci 0000:6b:04.0: BAR 9: no space for [mem size 0x00200000 64bit pref]
[ 0.353284] pci 0000:6b:04.0: BAR 9: failed to assign [mem size 0x00200000 64bit pref]
[ 0.353286] pci 0000:6d:03.0: PCI bridge to [bus 6e]
[ 0.353300] pci 0000:6d:03.0: bridge window [mem 0xa9700000-0xa97fffff]
[ 0.353324] pci 0000:6c:00.0: PCI bridge to [bus 6d-6e]
[ 0.353337] pci 0000:6c:00.0: bridge window [mem 0xa9700000-0xa97fffff]
[ 0.353362] pci 0000:6b:00.0: PCI bridge to [bus 6c-6e]
[ 0.353372] pci 0000:6b:00.0: bridge window [mem 0xa9700000-0xa97fffff]
[ 0.353391] pci 0000:6b:01.0: PCI bridge to [bus 6f]
[ 0.353401] pci 0000:6b:01.0: bridge window [mem 0xa9600000-0xa96fffff]
[ 0.353409] pci 0000:6b:01.0: bridge window [mem 0xad000000-0xad0fffff 64bit pref]
[ 0.353422] pci 0000:6b:02.0: PCI bridge to [bus 70]
[ 0.353432] pci 0000:6b:02.0: bridge window [mem 0xa9500000-0xa95fffff]
[ 0.353451] pci 0000:6b:03.0: PCI bridge to [bus 71]
[ 0.353461] pci 0000:6b:03.0: bridge window [mem 0xa9400000-0xa94fffff]
[ 0.353480] pci 0000:73:00.0: PCI bridge to [bus 74]
[ 0.353494] pci 0000:73:00.0: bridge window [mem 0xa9300000-0xa93fffff]
[ 0.353521] pci 0000:75:00.0: BAR 6: assigned [mem 0xa9210000-0xa921ffff pref]
[ 0.353523] pci 0000:73:01.0: PCI bridge to [bus 75]
[ 0.353529] pci 0000:73:01.0: bridge window [io 0x4000-0x4fff]
[ 0.353543] pci 0000:73:01.0: bridge window [mem 0xa9200000-0xa92fffff]
[ 0.353569] pci 0000:72:00.0: PCI bridge to [bus 73-75]
[ 0.353575] pci 0000:72:00.0: bridge window [io 0x4000-0x4fff]
[ 0.353589] pci 0000:72:00.0: bridge window [mem 0xa9200000-0xa93fffff]
[ 0.353615] pci 0000:6b:04.0: PCI bridge to [bus 72-75]
[ 0.353619] pci 0000:6b:04.0: bridge window [io 0x4000-0x4fff]
[ 0.353630] pci 0000:6b:04.0: bridge window [mem 0xa9200000-0xa93fffff]
[ 0.353648] pci 0000:6b:05.0: PCI bridge to [bus 76]
[ 0.353659] pci 0000:6b:05.0: bridge window [mem 0xa9100000-0xa91fffff]
[ 0.353678] pci 0000:6a:00.0: PCI bridge to [bus 6b-76]
[ 0.353682] pci 0000:6a:00.0: bridge window [io 0x4000-0x4fff]
[ 0.353692] pci 0000:6a:00.0: bridge window [mem 0xa9100000-0xa97fffff]
[ 0.353700] pci 0000:6a:00.0: bridge window [mem 0xad000000-0xad0fffff 64bit pref]
[ 0.353713] pci 0000:06:05.0: PCI bridge to [bus 6a-9a]
[ 0.353716] pci 0000:06:05.0: bridge window [io 0x4000-0x4fff]
[ 0.353723] pci 0000:06:05.0: bridge window [mem 0xa9100000-0xa97fffff]
[ 0.353728] pci 0000:06:05.0: bridge window [mem 0xad000000-0xad0fffff 64bit pref]
[ 0.353736] pci 0000:06:06.0: PCI bridge to [bus 9b-cb]
[ 0.353743] pci 0000:06:06.0: bridge window [mem 0xa9800000-0xa98fffff]
[ 0.353754] pci 0000:05:00.0: PCI bridge to [bus 06-cb]
[ 0.353757] pci 0000:05:00.0: bridge window [io 0x4000-0x4fff]
[ 0.353764] pci 0000:05:00.0: bridge window [mem 0xa8a00000-0xa98fffff]
[ 0.353769] pci 0000:05:00.0: bridge window [mem 0xacf00000-0xad0fffff 64bit pref]
[ 0.353777] pci 0000:00:1c.4: PCI bridge to [bus 05-cb]
[ 0.353779] pci 0000:00:1c.4: bridge window [io 0x4000-0x5fff]
[ 0.353784] pci 0000:00:1c.4: bridge window [mem 0xa8a00000-0xad8fffff]
[ 0.353792] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.353794] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.353796] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.353797] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff window]
[ 0.353799] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff window]
[ 0.353801] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff window]
[ 0.353803] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff window]
[ 0.353805] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff window]
[ 0.353807] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff window]
[ 0.353809] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff window]
[ 0.353811] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff window]
[ 0.353813] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff window]
[ 0.353815] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff window]
[ 0.353817] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff window]
[ 0.353819] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff window]
[ 0.353821] pci_bus 0000:00: resource 19 [mem 0x000f0000-0x000fffff window]
[ 0.353823] pci_bus 0000:00: resource 20 [mem 0x8f900000-0xfeafffff window]
[ 0.353825] pci_bus 0000:00: resource 21 [mem 0xfed40000-0xfed44fff window]
[ 0.353827] pci_bus 0000:01: resource 0 [io 0x2000-0x2fff]
[ 0.353828] pci_bus 0000:01: resource 1 [mem 0xa8800000-0xa88fffff]
[ 0.353830] pci_bus 0000:01: resource 2 [mem 0x90000000-0x9fffffff 64bit pref]
[ 0.353833] pci_bus 0000:02: resource 1 [mem 0xa8700000-0xa87fffff]
[ 0.353834] pci_bus 0000:02: resource 2 [mem 0xa8400000-0xa84fffff 64bit pref]
[ 0.353837] pci_bus 0000:03: resource 1 [mem 0xa8600000-0xa86fffff]
[ 0.353838] pci_bus 0000:04: resource 1 [mem 0xa8500000-0xa85fffff]
[ 0.353840] pci_bus 0000:05: resource 0 [io 0x4000-0x5fff]
[ 0.353842] pci_bus 0000:05: resource 1 [mem 0xa8a00000-0xad8fffff]
[ 0.353844] pci_bus 0000:06: resource 0 [io 0x4000-0x4fff]
[ 0.353846] pci_bus 0000:06: resource 1 [mem 0xa8a00000-0xa98fffff]
[ 0.353848] pci_bus 0000:06: resource 2 [mem 0xacf00000-0xad0fffff 64bit pref]
[ 0.353850] pci_bus 0000:07: resource 1 [mem 0xa8a00000-0xa8afffff]
[ 0.353852] pci_bus 0000:08: resource 1 [mem 0xa8b00000-0xa8bfffff]
[ 0.353854] pci_bus 0000:39: resource 1 [mem 0xa8c00000-0xa90fffff]
[ 0.353855] pci_bus 0000:39: resource 2 [mem 0xacf00000-0xacffffff 64bit pref]
[ 0.353857] pci_bus 0000:3a: resource 1 [mem 0xa8c00000-0xa90fffff]
[ 0.353859] pci_bus 0000:3a: resource 2 [mem 0xacf00000-0xacffffff 64bit pref]
[ 0.353861] pci_bus 0000:3b: resource 1 [mem 0xa9000000-0xa90fffff]
[ 0.353863] pci_bus 0000:3c: resource 1 [mem 0xa9000000-0xa90fffff]
[ 0.353865] pci_bus 0000:3d: resource 1 [mem 0xa9000000-0xa90fffff]
[ 0.353867] pci_bus 0000:3e: resource 1 [mem 0xa8f00000-0xa8ffffff]
[ 0.353869] pci_bus 0000:3e: resource 2 [mem 0xacf00000-0xacffffff 64bit pref]
[ 0.353871] pci_bus 0000:3f: resource 1 [mem 0xa8e00000-0xa8efffff]
[ 0.353873] pci_bus 0000:40: resource 1 [mem 0xa8d00000-0xa8dfffff]
[ 0.353875] pci_bus 0000:41: resource 1 [mem 0xa8c00000-0xa8cfffff]
[ 0.353877] pci_bus 0000:6a: resource 0 [io 0x4000-0x4fff]
[ 0.353879] pci_bus 0000:6a: resource 1 [mem 0xa9100000-0xa97fffff]
[ 0.353880] pci_bus 0000:6a: resource 2 [mem 0xad000000-0xad0fffff 64bit pref]
[ 0.353883] pci_bus 0000:6b: resource 0 [io 0x4000-0x4fff]
[ 0.353884] pci_bus 0000:6b: resource 1 [mem 0xa9100000-0xa97fffff]
[ 0.353886] pci_bus 0000:6b: resource 2 [mem 0xad000000-0xad0fffff 64bit pref]
[ 0.353888] pci_bus 0000:6c: resource 1 [mem 0xa9700000-0xa97fffff]
[ 0.353890] pci_bus 0000:6d: resource 1 [mem 0xa9700000-0xa97fffff]
[ 0.353892] pci_bus 0000:6e: resource 1 [mem 0xa9700000-0xa97fffff]
[ 0.353894] pci_bus 0000:6f: resource 1 [mem 0xa9600000-0xa96fffff]
[ 0.353896] pci_bus 0000:6f: resource 2 [mem 0xad000000-0xad0fffff 64bit pref]
[ 0.353898] pci_bus 0000:70: resource 1 [mem 0xa9500000-0xa95fffff]
[ 0.353900] pci_bus 0000:71: resource 1 [mem 0xa9400000-0xa94fffff]
[ 0.353902] pci_bus 0000:72: resource 0 [io 0x4000-0x4fff]
[ 0.353903] pci_bus 0000:72: resource 1 [mem 0xa9200000-0xa93fffff]
[ 0.353905] pci_bus 0000:73: resource 0 [io 0x4000-0x4fff]
[ 0.353907] pci_bus 0000:73: resource 1 [mem 0xa9200000-0xa93fffff]
[ 0.353909] pci_bus 0000:74: resource 1 [mem 0xa9300000-0xa93fffff]
[ 0.353911] pci_bus 0000:75: resource 0 [io 0x4000-0x4fff]
[ 0.353912] pci_bus 0000:75: resource 1 [mem 0xa9200000-0xa92fffff]
[ 0.353914] pci_bus 0000:76: resource 1 [mem 0xa9100000-0xa91fffff]
[ 0.353916] pci_bus 0000:9b: resource 1 [mem 0xa9800000-0xa98fffff]
[ 0.353963] NET: Registered protocol family 2
[ 0.354046] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes)
[ 0.354066] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.354202] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[ 0.354308] TCP: Hash tables configured (established 131072 bind 65536)
[ 0.354331] UDP hash table entries: 8192 (order: 6, 262144 bytes)
[ 0.354363] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
[ 0.354414] NET: Registered protocol family 1
[ 0.354836] pci 0000:05:00.0: CLS mismatch (256 != 128), using 64 bytes
[ 0.355245] pci 0000:3d:00.2: EHCI: unrecognized capability 00
[ 0.355583] pci 0000:6e:00.2: EHCI: unrecognized capability 00
[ 0.355719] pci 0000:74:00.0: enabling device (0000 -> 0002)
[ 0.355837] Trying to unpack rootfs image as initramfs...
[ 0.484737] Freeing initrd memory: 10692K
[ 0.484746] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.484748] software IO TLB: mapped [mem 0x84e80000-0x88e80000] (64MB)
[ 0.485042] thunderbolt 0000:07:00.0: ICM not supported on this controller
[ 0.485051] thunderbolt 0000:07:00.0: NHI initialized, starting thunderbolt
[ 0.485055] thunderbolt 0000:07:00.0: allocating TX ring 0 of size 10
[ 0.485067] thunderbolt 0000:07:00.0: allocating RX ring 0 of size 10
[ 0.485076] thunderbolt 0000:07:00.0: control channel created
[ 0.485076] thunderbolt 0000:07:00.0: control channel starting...
[ 0.485077] thunderbolt 0000:07:00.0: starting TX ring 0
[ 0.485086] thunderbolt 0000:07:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[ 0.485086] thunderbolt 0000:07:00.0: starting RX ring 0
[ 0.485094] thunderbolt 0000:07:00.0: enabling interrupt at register 0x38204 bit 0 (0x0 -> 0x1)
[ 0.485252] thunderbolt 0000:07:00.0: current switch config:
[ 0.485255] thunderbolt 0000:07:00.0: Switch: 8086:1513 (Revision: 2, TB Version: 1)
[ 0.485257] thunderbolt 0000:07:00.0: Max Port Number: 13
[ 0.485258] thunderbolt 0000:07:00.0: Config:
[ 0.485261] thunderbolt 0000:07:00.0: Upstream Port Number: 6 Depth: 0 Route String: 0x0 Enabled: 1, PlugEventsDelay: 255ms
[ 0.485263] thunderbolt 0000:07:00.0: unknown1: 0x0 unknown4: 0x0
[ 0.486533] thunderbolt 0000:07:00.0: initializing Switch at 0x0 (depth: 0, up port: 6)
[ 0.488581] thunderbolt 0000:07:00.0: 0: uid: 0x1000a13f2da20
[ 0.488709] thunderbolt 0000:07:00.0: Port 0: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[ 0.488711] thunderbolt 0000:07:00.0: Max hop id (in/out): 7/7
[ 0.488712] thunderbolt 0000:07:00.0: Max counters: 8
[ 0.488714] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 0.489989] thunderbolt 0000:07:00.0: Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[ 0.489991] thunderbolt 0000:07:00.0: Max hop id (in/out): 63/63
[ 0.489992] thunderbolt 0000:07:00.0: Max counters: 32
[ 0.489994] thunderbolt 0000:07:00.0: NFC Credits: 0x3c00000
[ 0.491267] thunderbolt 0000:07:00.0: Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[ 0.491269] thunderbolt 0000:07:00.0: Max hop id (in/out): 63/63
[ 0.491270] thunderbolt 0000:07:00.0: Max counters: 32
[ 0.491272] thunderbolt 0000:07:00.0: NFC Credits: 0x3c00000
[ 0.492547] thunderbolt 0000:07:00.0: Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[ 0.492549] thunderbolt 0000:07:00.0: Max hop id (in/out): 63/63
[ 0.492551] thunderbolt 0000:07:00.0: Max counters: 32
[ 0.492552] thunderbolt 0000:07:00.0: NFC Credits: 0x3c00000
[ 0.493827] thunderbolt 0000:07:00.0: Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[ 0.493829] thunderbolt 0000:07:00.0: Max hop id (in/out): 63/63
[ 0.493830] thunderbolt 0000:07:00.0: Max counters: 32
[ 0.493832] thunderbolt 0000:07:00.0: NFC Credits: 0x3c00000
[ 0.493834] thunderbolt 0000:07:00.0: 0:5: disabled by eeprom
[ 0.494723] thunderbolt 0000:07:00.0: Port 6: 8086:1513 (Revision: 2, TB Version: 1, Type: NHI (0x2))
[ 0.494725] thunderbolt 0000:07:00.0: Max hop id (in/out): 31/31
[ 0.494726] thunderbolt 0000:07:00.0: Max counters: 32
[ 0.494728] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 0.495747] thunderbolt 0000:07:00.0: Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[ 0.495749] thunderbolt 0000:07:00.0: Max hop id (in/out): 8/8
[ 0.495750] thunderbolt 0000:07:00.0: Max counters: 1
[ 0.495752] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 0.496772] thunderbolt 0000:07:00.0: Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[ 0.496773] thunderbolt 0000:07:00.0: Max hop id (in/out): 8/8
[ 0.496775] thunderbolt 0000:07:00.0: Max counters: 1
[ 0.496776] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 0.497795] thunderbolt 0000:07:00.0: Port 9: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[ 0.497797] thunderbolt 0000:07:00.0: Max hop id (in/out): 8/8
[ 0.497798] thunderbolt 0000:07:00.0: Max counters: 1
[ 0.497800] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 0.498819] thunderbolt 0000:07:00.0: Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[ 0.498821] thunderbolt 0000:07:00.0: Max hop id (in/out): 8/8
[ 0.498822] thunderbolt 0000:07:00.0: Max counters: 1
[ 0.498824] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 0.499972] thunderbolt 0000:07:00.0: Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[ 0.499974] thunderbolt 0000:07:00.0: Max hop id (in/out): 9/9
[ 0.499975] thunderbolt 0000:07:00.0: Max counters: 2
[ 0.499977] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 0.500995] thunderbolt 0000:07:00.0: Port 12: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0101))
[ 0.500997] thunderbolt 0000:07:00.0: Max hop id (in/out): 9/9
[ 0.500998] thunderbolt 0000:07:00.0: Max counters: 2
[ 0.500999] thunderbolt 0000:07:00.0: NFC Credits: 0x700005
[ 0.501375] random: fast init done
[ 0.502019] thunderbolt 0000:07:00.0: Port 13: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0101))
[ 0.502021] thunderbolt 0000:07:00.0: Max hop id (in/out): 9/9
[ 0.502022] thunderbolt 0000:07:00.0: Max counters: 2
[ 0.502024] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 0.502148] thunderbolt 0000:07:00.0: 0:1: is connected, link is up (state: 2)
[ 0.502403] thunderbolt 0000:07:00.0: current switch config:
[ 0.502405] thunderbolt 0000:07:00.0: Switch: 8086:1513 (Revision: 2, TB Version: 1)
[ 0.502406] thunderbolt 0000:07:00.0: Max Port Number: 13
[ 0.502408] thunderbolt 0000:07:00.0: Config:
[ 0.502410] thunderbolt 0000:07:00.0: Upstream Port Number: 1 Depth: 1 Route String: 0x1 Enabled: 1, PlugEventsDelay: 255ms
[ 0.502412] thunderbolt 0000:07:00.0: unknown1: 0x0 unknown4: 0x0
[ 0.503685] thunderbolt 0000:07:00.0: initializing Switch at 0x1 (depth: 1, up port: 1)
[ 0.521091] thunderbolt 0000:07:00.0: 1: reading drom (length: 0x97)
[ 1.015674] thunderbolt 0000:07:00.0: 1: uid: 0x100010102a740
[ 1.015802] thunderbolt 0000:07:00.0: Port 0: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[ 1.015803] thunderbolt 0000:07:00.0: Max hop id (in/out): 7/7
[ 1.015805] thunderbolt 0000:07:00.0: Max counters: 8
[ 1.015806] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 1.017082] thunderbolt 0000:07:00.0: Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[ 1.017083] thunderbolt 0000:07:00.0: Max hop id (in/out): 63/63
[ 1.017085] thunderbolt 0000:07:00.0: Max counters: 32
[ 1.017086] thunderbolt 0000:07:00.0: NFC Credits: 0x3c00000
[ 1.018361] thunderbolt 0000:07:00.0: Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[ 1.018363] thunderbolt 0000:07:00.0: Max hop id (in/out): 63/63
[ 1.018365] thunderbolt 0000:07:00.0: Max counters: 32
[ 1.018366] thunderbolt 0000:07:00.0: NFC Credits: 0x3c0000e
[ 1.019641] thunderbolt 0000:07:00.0: Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[ 1.019643] thunderbolt 0000:07:00.0: Max hop id (in/out): 63/63
[ 1.019645] thunderbolt 0000:07:00.0: Max counters: 32
[ 1.019646] thunderbolt 0000:07:00.0: NFC Credits: 0x3c00000
[ 1.020921] thunderbolt 0000:07:00.0: Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[ 1.020923] thunderbolt 0000:07:00.0: Max hop id (in/out): 63/63
[ 1.020925] thunderbolt 0000:07:00.0: Max counters: 32
[ 1.020926] thunderbolt 0000:07:00.0: NFC Credits: 0x3c00000
[ 1.020928] thunderbolt 0000:07:00.0: 1:5: disabled by eeprom
[ 1.020929] thunderbolt 0000:07:00.0: 1:6: disabled by eeprom
[ 1.021945] thunderbolt 0000:07:00.0: Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[ 1.021947] thunderbolt 0000:07:00.0: Max hop id (in/out): 8/8
[ 1.021948] thunderbolt 0000:07:00.0: Max counters: 1
[ 1.021950] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 1.022969] thunderbolt 0000:07:00.0: Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[ 1.022971] thunderbolt 0000:07:00.0: Max hop id (in/out): 8/8
[ 1.022972] thunderbolt 0000:07:00.0: Max counters: 1
[ 1.022974] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 1.022975] thunderbolt 0000:07:00.0: 1:9: disabled by eeprom
[ 1.023994] thunderbolt 0000:07:00.0: Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[ 1.023995] thunderbolt 0000:07:00.0: Max hop id (in/out): 8/8
[ 1.023997] thunderbolt 0000:07:00.0: Max counters: 1
[ 1.023998] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 1.025145] thunderbolt 0000:07:00.0: Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[ 1.025147] thunderbolt 0000:07:00.0: Max hop id (in/out): 9/9
[ 1.025148] thunderbolt 0000:07:00.0: Max counters: 2
[ 1.025150] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 1.025151] thunderbolt 0000:07:00.0: 1:c: disabled by eeprom
[ 1.025153] thunderbolt 0000:07:00.0: 1:d: disabled by eeprom
[ 1.025171] thunderbolt 0-1: new device found, vendor=0x1 device=0x8002
[ 1.025177] thunderbolt 0-1: Apple, Inc. Thunderbolt Display
[ 1.025273] thunderbolt 0000:07:00.0: 1:3: is unplugged (state: 7)
[ 1.025657] thunderbolt 0000:07:00.0: 0:3: is connected, link is up (state: 2)
[ 1.025913] thunderbolt 0000:07:00.0: current switch config:
[ 1.025915] thunderbolt 0000:07:00.0: Switch: 8086:1513 (Revision: 2, TB Version: 1)
[ 1.025916] thunderbolt 0000:07:00.0: Max Port Number: 13
[ 1.025918] thunderbolt 0000:07:00.0: Config:
[ 1.025920] thunderbolt 0000:07:00.0: Upstream Port Number: 1 Depth: 1 Route String: 0x3 Enabled: 1, PlugEventsDelay: 255ms
[ 1.025921] thunderbolt 0000:07:00.0: unknown1: 0x0 unknown4: 0x0
[ 1.027194] thunderbolt 0000:07:00.0: initializing Switch at 0x3 (depth: 1, up port: 1)
[ 1.044601] thunderbolt 0000:07:00.0: 3: reading drom (length: 0x97)
[ 1.345144] random: crng init done
[ 1.539186] thunderbolt 0000:07:00.0: 3: uid: 0x1000100189170
[ 1.539313] thunderbolt 0000:07:00.0: Port 0: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[ 1.539315] thunderbolt 0000:07:00.0: Max hop id (in/out): 7/7
[ 1.539316] thunderbolt 0000:07:00.0: Max counters: 8
[ 1.539318] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 1.540593] thunderbolt 0000:07:00.0: Port 1: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[ 1.540595] thunderbolt 0000:07:00.0: Max hop id (in/out): 63/63
[ 1.540596] thunderbolt 0000:07:00.0: Max counters: 32
[ 1.540598] thunderbolt 0000:07:00.0: NFC Credits: 0x3c00000
[ 1.541873] thunderbolt 0000:07:00.0: Port 2: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[ 1.541875] thunderbolt 0000:07:00.0: Max hop id (in/out): 63/63
[ 1.541876] thunderbolt 0000:07:00.0: Max counters: 32
[ 1.541878] thunderbolt 0000:07:00.0: NFC Credits: 0x3c00000
[ 1.543153] thunderbolt 0000:07:00.0: Port 3: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[ 1.543154] thunderbolt 0000:07:00.0: Max hop id (in/out): 63/63
[ 1.543156] thunderbolt 0000:07:00.0: Max counters: 32
[ 1.543157] thunderbolt 0000:07:00.0: NFC Credits: 0x3c00000
[ 1.544433] thunderbolt 0000:07:00.0: Port 4: 8086:1513 (Revision: 2, TB Version: 1, Type: Port (0x1))
[ 1.544434] thunderbolt 0000:07:00.0: Max hop id (in/out): 63/63
[ 1.544436] thunderbolt 0000:07:00.0: Max counters: 32
[ 1.544437] thunderbolt 0000:07:00.0: NFC Credits: 0x3c00000
[ 1.544439] thunderbolt 0000:07:00.0: 3:5: disabled by eeprom
[ 1.544440] thunderbolt 0000:07:00.0: 3:6: disabled by eeprom
[ 1.545457] thunderbolt 0000:07:00.0: Port 7: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[ 1.545458] thunderbolt 0000:07:00.0: Max hop id (in/out): 8/8
[ 1.545460] thunderbolt 0000:07:00.0: Max counters: 1
[ 1.545461] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 1.546481] thunderbolt 0000:07:00.0: Port 8: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100101))
[ 1.546482] thunderbolt 0000:07:00.0: Max hop id (in/out): 8/8
[ 1.546484] thunderbolt 0000:07:00.0: Max counters: 1
[ 1.546485] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 1.546487] thunderbolt 0000:07:00.0: 3:9: disabled by eeprom
[ 1.547505] thunderbolt 0000:07:00.0: Port 10: 8086:1513 (Revision: 2, TB Version: 1, Type: PCIe (0x100102))
[ 1.547506] thunderbolt 0000:07:00.0: Max hop id (in/out): 8/8
[ 1.547508] thunderbolt 0000:07:00.0: Max counters: 1
[ 1.547509] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 1.548657] thunderbolt 0000:07:00.0: Port 11: 8086:1513 (Revision: 2, TB Version: 1, Type: DP/HDMI (0xe0102))
[ 1.548658] thunderbolt 0000:07:00.0: Max hop id (in/out): 9/9
[ 1.548660] thunderbolt 0000:07:00.0: Max counters: 2
[ 1.548661] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 1.548663] thunderbolt 0000:07:00.0: 3:c: disabled by eeprom
[ 1.548664] thunderbolt 0000:07:00.0: 3:d: disabled by eeprom
[ 1.548679] thunderbolt 0-3: new device found, vendor=0x1 device=0x8002
[ 1.548685] thunderbolt 0-3: Apple, Inc. Thunderbolt Display
[ 1.548784] thunderbolt 0000:07:00.0: 3:3: is connected, link is up (state: 2)
[ 1.549040] thunderbolt 0000:07:00.0: current switch config:
[ 1.549042] thunderbolt 0000:07:00.0: Switch: 8086:1549 (Revision: 0, TB Version: 1)
[ 1.549043] thunderbolt 0000:07:00.0: Max Port Number: 2
[ 1.549045] thunderbolt 0000:07:00.0: Config:
[ 1.549047] thunderbolt 0000:07:00.0: Upstream Port Number: 1 Depth: 2 Route String: 0x303 Enabled: 1, PlugEventsDelay: 255ms
[ 1.549049] thunderbolt 0000:07:00.0: unknown1: 0x0 unknown4: 0x0
[ 1.550578] thunderbolt 0000:07:00.0: initializing Switch at 0x303 (depth: 2, up port: 1)
[ 1.567984] thunderbolt 0000:07:00.0: 303: reading drom (length: 0x57)
[ 1.857004] thunderbolt 0000:07:00.0: 303: uid: 0xa704745a007000
[ 1.857131] thunderbolt 0000:07:00.0: Port 0: 8086:1549 (Revision: 0, TB Version: 1, Type: Port (0x1))
[ 1.857133] thunderbolt 0000:07:00.0: Max hop id (in/out): 7/7
[ 1.857134] thunderbolt 0000:07:00.0: Max counters: 8
[ 1.857136] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 1.857771] thunderbolt 0000:07:00.0: Port 1: 8086:1549 (Revision: 0, TB Version: 1, Type: Port (0x1))
[ 1.857772] thunderbolt 0000:07:00.0: Max hop id (in/out): 8/8
[ 1.857774] thunderbolt 0000:07:00.0: Max counters: 4
[ 1.857775] thunderbolt 0000:07:00.0: NFC Credits: 0x3c00000
[ 1.858155] thunderbolt 0000:07:00.0: Port 2: 8086:1549 (Revision: 0, TB Version: 1, Type: PCIe (0x100102))
[ 1.858157] thunderbolt 0000:07:00.0: Max hop id (in/out): 8/8
[ 1.858158] thunderbolt 0000:07:00.0: Max counters: 2
[ 1.858160] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 1.858175] thunderbolt 0-303: new device found, vendor=0xa7 device=0x4
[ 1.858179] thunderbolt 0-303: Kanex Thunderbolt to eSATA+USB3.0 Adapter
[ 1.858411] thunderbolt 0000:07:00.0: 3:b: DP adapter HPD set, queuing hotplug
[ 1.860075] thunderbolt 0000:07:00.0: 0:7 <-> 1:a (PCI): discovered
[ 1.861611] thunderbolt 0000:07:00.0: 0:8 <-> 3:a (PCI): discovered
[ 1.861866] thunderbolt 0000:07:00.0: 0:c: start DP discover
[ 1.862122] thunderbolt 0000:07:00.0: 0:c: data[0]=0xc008043e
[ 1.862124] thunderbolt 0000:07:00.0: 0:c: data[1]=0x00004009
[ 1.864692] ------------[ cut here ]------------
[ 1.864696] thunderbolt 0000:07:00.0: CFG_ERROR(1:b): Invalid config space or offset
[ 1.864713] WARNING: CPU: 4 PID: 1 at drivers/thunderbolt/ctl.c:271 tb_cfg_print_error.isra.1+0x15a/0x1b0
[ 1.864717] Modules linked in:
[ 1.864722] CPU: 4 PID: 1 Comm: swapper/0 Not tainted 5.2.9+ #7
[ 1.864725] Hardware name: Apple Inc. iMac12,2/Mac-942B59F58194171B, BIOS 87.0.0.0.0 06/14/2019
[ 1.864732] RIP: 0010:tb_cfg_print_error.isra.1+0x15a/0x1b0
[ 1.864737] Code: 00 48 85 db 74 4a 48 81 c7 b0 00 00 00 e8 fe d4 f8 ff 41 89 e8 4c 89 e1 48 89 da 48 89 c6 48 c7 c7 f0 65 b2 81 e8 b6 cf cf ff <0f> 0b 48 83 c4 08 5b 5d 41 5c c3 48 c7 c7 70 7f ad 81 48 89 34 24
[ 1.864744] RSP: 0000:ffffc90000033b98 EFLAGS: 00010282
[ 1.864747] RAX: 0000000000000000 RBX: ffff88845d156ba0 RCX: ffffffff81c2cd18
[ 1.864751] RDX: 0000000000000001 RSI: 0000000000000092 RDI: ffffffff81f4c6ac
[ 1.864755] RBP: 000000000000000b R08: 0000000000000000 R09: 000000000000046f
[ 1.864758] R10: ffffea001174d680 R11: 0720072007200720 R12: 0000000000000001
[ 1.864762] R13: 0000000000000000 R14: 0000000000000009 R15: ffff88845d31d528
[ 1.864766] FS: 0000000000000000(0000) GS:ffff88845f900000(0000) knlGS:0000000000000000
[ 1.864770] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1.864774] CR2: 0000000000000000 CR3: 0000000001c09001 CR4: 00000000000606a0
[ 1.864777] Call Trace:
[ 1.864785] tb_cfg_read+0xb9/0xd0
[ 1.864789] tb_path_discover+0x243/0x630
[ 1.864794] tb_tunnel_discover_dp+0x26c/0x600
[ 1.864806] ? tb_pci_port_is_enabled+0x7c/0x90
[ 1.864808] tb_discover_tunnels+0x17a/0x180
[ 1.864809] tb_start+0xb9/0x100
[ 1.864812] tb_domain_add+0xae/0x140
[ 1.864814] nhi_probe+0x1b7/0x3a0
[ 1.864816] pci_device_probe+0x99/0x120
[ 1.864820] really_probe+0x1c3/0x3e0
[ 1.864822] driver_probe_device+0x58/0x130
[ 1.864824] device_driver_attach+0x4a/0x50
[ 1.864826] __driver_attach+0xc5/0x140
[ 1.864829] ? device_driver_attach+0x50/0x50
[ 1.864831] bus_for_each_dev+0x5f/0xb0
[ 1.864833] bus_add_driver+0x108/0x210
[ 1.864835] ? set_debug_rodata+0xc/0xc
[ 1.864837] driver_register+0x56/0xe0
[ 1.864840] ? ras_debugfs_init+0x16/0x16
[ 1.864842] nhi_init+0x1f/0x32
[ 1.864845] do_one_initcall+0x46/0x1c0
[ 1.864847] ? set_debug_rodata+0xc/0xc
[ 1.864848] kernel_init_freeable+0x113/0x19b
[ 1.864851] ? rest_init+0xa0/0xa0
[ 1.864853] kernel_init+0x5/0xf0
[ 1.864855] ret_from_fork+0x1f/0x30
[ 1.864857] ---[ end trace e58fd8e1146c2094 ]---
[ 1.864860] thunderbolt 0000:07:00.0: 1:b: failed to read path at 9
[ 1.864862] thunderbolt 0000:07:00.0: 0:c <-> 1:b (DP): deactivating
[ 1.866030] thunderbolt 0000:07:00.0: deactivating Video path from 0:c to 1:b
[ 1.866798] thunderbolt 0000:07:00.0: 0:c: adding -5 NFC credits to 5
[ 1.866926] thunderbolt 0000:07:00.0: 1:2: adding -5 NFC credits to 14
[ 1.867054] thunderbolt 0000:07:00.0: deactivating AUX TX path from 0:c to 1:b
[ 1.867824] thunderbolt 0000:07:00.0: 0:d: start DP discover
[ 1.867950] thunderbolt 0000:07:00.0: 0:d: DP port not enabled
[ 1.869742] thunderbolt 0000:07:00.0: 3:7 <-> 303:2 (PCI): discovered
[ 1.869930] thunderbolt 0000:07:00.0: 3:b: trying to tunnel DP
[ 1.869996] thunderbolt 0000:07:00.0: 3:b: finding free DP IN port
[ 1.869998] thunderbolt 0000:07:00.0: 0: finding available DP IN
[ 1.870021] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer
[ 1.870024] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[ 1.870025] RAPL PMU: hw unit of domain package 2^-16 Joules
[ 1.870027] RAPL PMU: hw unit of domain pp1-gpu 2^-16 Joules
[ 1.870122] thunderbolt 0000:07:00.0: 0:c: found DP IN
[ 1.870125] thunderbolt 0000:07:00.0: 0:c <-> 3:b (DP): activating
[ 1.870127] thunderbolt 0000:07:00.0: activating Video path from 0:c to 3:b
[ 1.870128] thunderbolt 0000:07:00.0: 3:2: adding 5 NFC credits to 0
[ 1.870253] thunderbolt 0000:07:00.0: 0:c: adding 5 NFC credits to 0
[ 1.870401] Initialise system trusted keyrings
[ 1.870427] workingset: timestamp_bits=62 max_order=22 bucket_order=0
[ 1.870508] thunderbolt 0000:07:00.0: 3:2: Writing hop 1
[ 1.870510] thunderbolt 0000:07:00.0: 3:2: In HopID: 8 => Out port: 11 Out HopID: 9
[ 1.870512] thunderbolt 0000:07:00.0: 3:2: Weight: 1 Priority: 1 Credits: 0 Drop: 0
[ 1.870514] thunderbolt 0000:07:00.0: 3:2: Counter enabled: 0 Counter index: 2047
[ 1.870516] thunderbolt 0000:07:00.0: 3:2: Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[ 1.870517] thunderbolt 0000:07:00.0: 3:2: Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[ 1.870765] thunderbolt 0000:07:00.0: 0:c: Writing hop 0
[ 1.870767] thunderbolt 0000:07:00.0: 0:c: In HopID: 9 => Out port: 4 Out HopID: 8
[ 1.870769] thunderbolt 0000:07:00.0: 0:c: Weight: 1 Priority: 1 Credits: 0 Drop: 0
[ 1.870770] thunderbolt 0000:07:00.0: 0:c: Counter enabled: 0 Counter index: 2047
[ 1.870772] thunderbolt 0000:07:00.0: 0:c: Flow Control (In/Eg): 0/0 Shared Buffer (In/Eg): 0/0
[ 1.870774] thunderbolt 0000:07:00.0: 0:c: Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[ 1.870891] thunderbolt 0000:07:00.0: path activation complete
[ 1.870893] thunderbolt 0000:07:00.0: activating AUX TX path from 0:c to 3:b
[ 1.871020] thunderbolt 0000:07:00.0: 3:2: Writing hop 1
[ 1.871021] thunderbolt 0000:07:00.0: 3:2: In HopID: 9 => Out port: 11 Out HopID: 8
[ 1.871023] thunderbolt 0000:07:00.0: 3:2: Weight: 1 Priority: 2 Credits: 1 Drop: 0
[ 1.871025] thunderbolt 0000:07:00.0: 3:2: Counter enabled: 0 Counter index: 2047
[ 1.871026] thunderbolt 0000:07:00.0: 3:2: Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[ 1.871028] thunderbolt 0000:07:00.0: 3:2: Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[ 1.871277] thunderbolt 0000:07:00.0: 0:c: Writing hop 0
[ 1.871278] thunderbolt 0000:07:00.0: 0:c: In HopID: 8 => Out port: 4 Out HopID: 9
[ 1.871280] thunderbolt 0000:07:00.0: 0:c: Weight: 1 Priority: 2 Credits: 1 Drop: 0
[ 1.871281] thunderbolt 0000:07:00.0: 0:c: Counter enabled: 0 Counter index: 2047
[ 1.871283] thunderbolt 0000:07:00.0: 0:c: Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[ 1.871285] thunderbolt 0000:07:00.0: 0:c: Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[ 1.871378] Key type asymmetric registered
[ 1.871380] Asymmetric key parser 'x509' registered
[ 1.871387] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
[ 1.871406] thunderbolt 0000:07:00.0: path activation complete
[ 1.871408] thunderbolt 0000:07:00.0: activating AUX RX path from 3:b to 0:c
[ 1.871531] thunderbolt 0000:07:00.0: 0:4: Writing hop 1
[ 1.871533] thunderbolt 0000:07:00.0: 0:4: In HopID: 8 => Out port: 12 Out HopID: 8
[ 1.871535] thunderbolt 0000:07:00.0: 0:4: Weight: 1 Priority: 2 Credits: 1 Drop: 0
[ 1.871536] thunderbolt 0000:07:00.0: 0:4: Counter enabled: 0 Counter index: 2047
[ 1.871538] thunderbolt 0000:07:00.0: 0:4: Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[ 1.871539] thunderbolt 0000:07:00.0: 0:4: Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[ 1.871787] thunderbolt 0000:07:00.0: 3:b: Writing hop 0
[ 1.871788] thunderbolt 0000:07:00.0: 3:b: In HopID: 8 => Out port: 2 Out HopID: 8
[ 1.871790] thunderbolt 0000:07:00.0: 3:b: Weight: 1 Priority: 2 Credits: 1 Drop: 0
[ 1.871791] thunderbolt 0000:07:00.0: 3:b: Counter enabled: 0 Counter index: 2047
[ 1.871793] thunderbolt 0000:07:00.0: 3:b: Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[ 1.871795] thunderbolt 0000:07:00.0: 3:b: Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[ 1.871913] thunderbolt 0000:07:00.0: path activation complete
[ 1.872317] pcieport 0000:06:03.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ LLActRep+ (with Cmd Compl erratum)
[ 1.872508] pcieport 0000:06:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ LLActRep+ (with Cmd Compl erratum)
[ 1.872680] pcieport 0000:06:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ LLActRep+ (with Cmd Compl erratum)
[ 1.872873] pcieport 0000:06:06.0: pciehp: Slot #6 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ LLActRep+ (with Cmd Compl erratum)
[ 1.874051] pcieport 0000:3a:04.0: enabling device (0000 -> 0002)
[ 1.874149] pcieport 0000:3a:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ LLActRep+ (with Cmd Compl erratum)
[ 1.874358] pcieport 0000:3a:05.0: enabling device (0000 -> 0002)
[ 1.874450] pcieport 0000:3a:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ LLActRep+ (with Cmd Compl erratum)
[ 1.875856] pcieport 0000:6b:03.0: enabling device (0000 -> 0002)
[ 1.876190] pcieport 0000:6b:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ LLActRep+ (with Cmd Compl erratum)
[ 1.876388] pcieport 0000:6b:05.0: enabling device (0000 -> 0002)
[ 1.876479] pcieport 0000:6b:05.0: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ LLActRep+ (with Cmd Compl erratum)
[ 1.877869] efifb: probing for efifb
[ 1.877889] efifb: framebuffer at 0x90010000, using 14400k, total 14400k
[ 1.877892] efifb: mode is 2560x1440x32, linelength=10240, pages=1
[ 1.877893] efifb: scrolling: redraw
[ 1.877895] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 1.887415] Console: switching to colour frame buffer device 320x90
[ 1.896485] fb0: EFI VGA frame buffer device
[ 1.896511] intel_idle: MWAIT substates: 0x1120
[ 1.896512] intel_idle: v0.4.1 model 0x2A
[ 1.896716] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 1.906477] brd: module loaded
[ 1.906524] i8042: PNP: No PS/2 controller found.
[ 1.906579] mousedev: PS/2 mouse device common for all mice
[ 1.906613] intel_pstate: Intel P-state driver initializing
[ 1.906884] Key type dns_resolver registered
[ 1.906966] microcode: sig=0x206a7, pf=0x2, revision=0x2f
[ 1.907086] microcode: Microcode Update Driver: v2.2.
[ 1.907097] sched_clock: Marking stable (1906689942, 389369)->(1921965505, -14886194)
[ 1.907326] registered taskstats version 1
[ 1.907353] Loading compiled-in X.509 certificates
[ 1.908453] Freeing unused kernel image memory: 920K
[ 1.940004] Write protecting the kernel read-only data: 12288k
[ 1.940755] Freeing unused kernel image memory: 2020K
[ 1.941003] Freeing unused kernel image memory: 588K
[ 1.941033] Run /init as init process
[ 1.994623] udevd[1402]: starting version 3.2.2
[ 1.995598] udevd[1403]: starting eudev-3.2.2
[ 2.011370] tg3.c:v3.137 (May 11, 2014)
[ 2.012670] ACPI: bus type USB registered
[ 2.012721] usbcore: registered new interface driver usbfs
[ 2.012763] usbcore: registered new interface driver hub
[ 2.012814] usbcore: registered new device driver usb
[ 2.014256] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 2.014429] ehci-pci: EHCI PCI platform driver
[ 2.014563] ehci-pci 0000:00:1a.7: EHCI Host Controller
[ 2.014598] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 1
[ 2.014642] ehci-pci 0000:00:1a.7: debug port 2
[ 2.015691] ahci 0000:00:1f.2: version 3.0
[ 2.016023] uhci_hcd: USB Universal Host Controller Interface driver
[ 2.017714] cryptd: max_cpu_qlen set to 1000
[ 2.018564] ehci-pci 0000:00:1a.7: cache line size of 64 is not supported
[ 2.018626] ehci-pci 0000:00:1a.7: irq 23, io mem 0xa8906c00
[ 2.019655] AVX version of gcm_enc/dec engaged.
[ 2.019696] AES CTR mode by8 optimization enabled
[ 2.025812] radeon: unknown parameter 'pm' ignored
[ 2.025916] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x7 impl SATA mode
[ 2.025952] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst
[ 2.025954] [drm] radeon kernel modesetting enabled.
[ 2.026032] tg3 0000:02:00.0 eth0: Tigon3 [partno(BCM957765) rev 57785100] (PCI Express) MAC address 3c:07:54:14:b2:08
[ 2.026042] radeon 0000:01:00.0: remove_conflicting_pci_framebuffers: bar 0: 0x90000000 -> 0x9fffffff
[ 2.026077] tg3 0000:02:00.0 eth0: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[ 2.026127] radeon 0000:01:00.0: remove_conflicting_pci_framebuffers: bar 2: 0xa8800000 -> 0xa881ffff
[ 2.026165] tg3 0000:02:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[ 2.026217] checking generic (90010000 e10000) vs hw (90000000 10000000)
[ 2.026246] tg3 0000:02:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[ 2.026247] fb0: switching to radeondrmfb from EFI VGA
[ 2.026313] Console: switching to colour dummy device 80x25
[ 2.026402] radeon 0000:01:00.0: vgaarb: deactivate vga console
[ 2.026587] [drm] initializing kernel modesetting (BARTS 0x1002:0x6720 0x106B:0x0B00 0x00).
[ 2.029902] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[ 2.029995] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.02
[ 2.030001] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.030004] usb usb1: Product: EHCI Host Controller
[ 2.030008] usb usb1: Manufacturer: Linux 5.2.9+ ehci_hcd
[ 2.030011] usb usb1: SerialNumber: 0000:00:1a.7
[ 2.030102] hub 1-0:1.0: USB hub found
[ 2.030108] hub 1-0:1.0: 6 ports detected
[ 2.030434] xhci_hcd 0000:74:00.0: xHCI Host Controller
[ 2.030435] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[ 2.030442] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 2
[ 2.030446] xhci_hcd 0000:74:00.0: new USB bus registered, assigned bus number 3
[ 2.030489] uhci_hcd 0000:00:1a.0: detected 2 ports
[ 2.030647] uhci_hcd 0000:00:1a.0: irq 21, io base 0x00003140
[ 2.030802] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.02
[ 2.030806] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.030808] usb usb2: Product: UHCI Host Controller
[ 2.030809] usb usb2: Manufacturer: Linux 5.2.9+ uhci_hcd
[ 2.030811] usb usb2: SerialNumber: 0000:00:1a.0
[ 2.030871] hub 2-0:1.0: USB hub found
[ 2.030878] hub 2-0:1.0: 2 ports detected
[ 2.043634] scsi host0: ahci
[ 2.043749] scsi host1: ahci
[ 2.043941] scsi host2: ahci
[ 2.044107] scsi host3: ahci
[ 2.044275] scsi host4: ahci
[ 2.044430] scsi host5: ahci
[ 2.044585] ata1: SATA max UDMA/133 abar m2048@0xa8906000 port 0xa8906100 irq 62
[ 2.044619] ata2: SATA max UDMA/133 abar m2048@0xa8906000 port 0xa8906180 irq 62
[ 2.044659] ata3: SATA max UDMA/133 abar m2048@0xa8906000 port 0xa8906200 irq 62
[ 2.044684] ata4: DUMMY
[ 2.044685] ata5: DUMMY
[ 2.044687] ata6: DUMMY
[ 2.045557] ahci 0000:75:00.0: SSS flag set, parallel bus scan disabled
[ 2.046051] ahci 0000:75:00.0: AHCI 0001.0200 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
[ 2.046055] ahci 0000:75:00.0: flags: 64bit ncq sntf stag led clo pmp pio slum part ccc sxs
[ 2.046677] scsi host6: ahci
[ 2.046777] scsi host7: ahci
[ 2.046851] ata7: SATA max UDMA/133 abar m512@0xa9200000 port 0xa9200100 irq 63
[ 2.046871] ata8: SATA max UDMA/133 abar m512@0xa9200000 port 0xa9200180 irq 63
[ 2.092039] xhci_hcd 0000:74:00.0: hcc params 0x0200e081 hci version 0x100 quirks 0x0000000010000410
[ 2.093268] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.02
[ 2.093274] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.093278] usb usb3: Product: xHCI Host Controller
[ 2.093281] usb usb3: Manufacturer: Linux 5.2.9+ xhci-hcd
[ 2.093284] usb usb3: SerialNumber: 0000:74:00.0
[ 2.093374] hub 3-0:1.0: USB hub found
[ 2.093424] hub 3-0:1.0: 2 ports detected
[ 2.093614] tg3 0000:3e:00.0 eth1: Tigon3 [partno(BCM957761) rev 57785100] (PCI Express) MAC address 38:c9:86:48:0c:c8
[ 2.093618] tg3 0000:3e:00.0 eth1: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[ 2.093621] tg3 0000:3e:00.0 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[ 2.093623] tg3 0000:3e:00.0 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[ 2.093682] ehci-pci 0000:00:1d.7: EHCI Host Controller
[ 2.093691] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 4
[ 2.093899] xhci_hcd 0000:74:00.0: xHCI Host Controller
[ 2.093905] xhci_hcd 0000:74:00.0: new USB bus registered, assigned bus number 5
[ 2.093909] ehci-pci 0000:00:1d.7: debug port 2
[ 2.093911] xhci_hcd 0000:74:00.0: Host supports USB 3.0 SuperSpeed
[ 2.093993] usb usb5: We don't know the algorithms for LPM for this host, disabling LPM.
[ 2.094006] usb usb5: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.02
[ 2.094008] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.094010] usb usb5: Product: xHCI Host Controller
[ 2.094012] usb usb5: Manufacturer: Linux 5.2.9+ xhci-hcd
[ 2.094013] usb usb5: SerialNumber: 0000:74:00.0
[ 2.094071] hub 5-0:1.0: USB hub found
[ 2.094109] hub 5-0:1.0: 2 ports detected
[ 2.098016] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
[ 2.098030] ehci-pci 0000:00:1d.7: irq 22, io mem 0xa8906800
[ 2.109915] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[ 2.109950] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.02
[ 2.109956] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.109960] usb usb4: Product: EHCI Host Controller
[ 2.109963] usb usb4: Manufacturer: Linux 5.2.9+ ehci_hcd
[ 2.109967] usb usb4: SerialNumber: 0000:00:1d.7
[ 2.110293] hub 4-0:1.0: USB hub found
[ 2.110300] hub 4-0:1.0: 8 ports detected
[ 2.110720] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[ 2.110727] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
[ 2.110794] uhci_hcd 0000:00:1d.0: detected 2 ports
[ 2.110991] uhci_hcd 0000:00:1d.0: irq 19, io base 0x000030e0
[ 2.111164] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.02
[ 2.111167] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.111169] usb usb6: Product: UHCI Host Controller
[ 2.111171] usb usb6: Manufacturer: Linux 5.2.9+ uhci_hcd
[ 2.111173] usb usb6: SerialNumber: 0000:00:1d.0
[ 2.111657] hub 6-0:1.0: USB hub found
[ 2.111789] hub 6-0:1.0: 2 ports detected
[ 2.111993] ehci-pci 0000:3d:00.2: EHCI Host Controller
[ 2.111999] ehci-pci 0000:3d:00.2: new USB bus registered, assigned bus number 7
[ 2.112325] ehci-pci 0000:3d:00.2: irq 17, io mem 0xa9002000
[ 2.126594] ehci-pci 0000:3d:00.2: USB 2.0 started, EHCI 1.00
[ 2.126621] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.02
[ 2.126624] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.126626] usb usb7: Product: EHCI Host Controller
[ 2.126627] usb usb7: Manufacturer: Linux 5.2.9+ ehci_hcd
[ 2.126629] usb usb7: SerialNumber: 0000:3d:00.2
[ 2.126797] hub 7-0:1.0: USB hub found
[ 2.126804] hub 7-0:1.0: 4 ports detected
[ 2.127236] ehci-pci 0000:6e:00.2: EHCI Host Controller
[ 2.127240] ehci-pci 0000:6e:00.2: new USB bus registered, assigned bus number 8
[ 2.127587] ehci-pci 0000:6e:00.2: irq 18, io mem 0xa9702000
[ 2.139935] ehci-pci 0000:6e:00.2: USB 2.0 started, EHCI 1.00
[ 2.139962] usb usb8: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.02
[ 2.139965] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.139967] usb usb8: Product: EHCI Host Controller
[ 2.139968] usb usb8: Manufacturer: Linux 5.2.9+ ehci_hcd
[ 2.139970] usb usb8: SerialNumber: 0000:6e:00.2
[ 2.140184] hub 8-0:1.0: USB hub found
[ 2.140191] hub 8-0:1.0: 4 ports detected
[ 2.156589] tg3 0000:6f:00.0 eth2: Tigon3 [partno(BCM957761) rev 57785100] (PCI Express) MAC address c8:2a:14:4f:80:3e
[ 2.156593] tg3 0000:6f:00.0 eth2: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[ 2.156596] tg3 0000:6f:00.0 eth2: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[ 2.156598] tg3 0000:6f:00.0 eth2: dma_rwctrl[00000001] dma_mask[64-bit]
[ 2.356485] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 2.356696] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 2.357398] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 2.358153] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[ 2.358354] ata2.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[ 2.358361] ata1.00: supports DRM functions and may not be fully accessible
[ 2.358493] ata2.00: supports DRM functions and may not be fully accessible
[ 2.359252] ata1.00: disabling queued TRIM support
[ 2.359253] ata1.00: ATA-9: Samsung SSD 850 PRO 256GB, EXM03B6Q, max UDMA/133
[ 2.359256] ata1.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 32), AA
[ 2.359899] usb 1-1: new high-speed USB device number 2 using ehci-pci
[ 2.359972] ata7: SATA link down (SStatus 0 SControl 300)
[ 2.360167] ata3.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[ 2.360220] ata3.00: ATAPI: OPTIARC DVD RW AD-5690H, 4AH5, max UDMA/100
[ 2.360275] ata2.00: disabling queued TRIM support
[ 2.360277] ata2.00: ATA-9: Samsung SSD 850 EVO 500GB, EMT02B6Q, max UDMA/133
[ 2.360281] ata2.00: 976773168 sectors, multi 1: LBA48 NCQ (depth 32), AA
[ 2.361750] ATOM BIOS: Apple
[ 2.361851] firewire_ohci 0000:04:00.0: added OHCI v1.10 device as card 0, 8 IR + 8 IT contexts, quirks 0x0, physUB
[ 2.361863] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[ 2.361923] radeon 0000:01:00.0: VRAM: 1024M 0x0000000000000000 - 0x000000003FFFFFFF (1024M used)
[ 2.361925] ata1.00: supports DRM functions and may not be fully accessible
[ 2.361928] radeon 0000:01:00.0: GTT: 1024M 0x0000000040000000 - 0x000000007FFFFFFF
[ 2.361935] [drm] Detected VRAM RAM=1024M, BAR=256M
[ 2.361937] [drm] RAM width 256bits DDR
[ 2.361995] [TTM] Zone kernel: Available graphics memory: 8193212 KiB
[ 2.361997] [TTM] Zone dma32: Available graphics memory: 2097152 KiB
[ 2.361998] [TTM] Initializing pool allocator
[ 2.362013] [TTM] Initializing DMA pool allocator
[ 2.362027] [drm] radeon: 1024M of VRAM memory ready
[ 2.362028] [drm] radeon: 1024M of GTT memory ready.
[ 2.362036] [drm] Loading BARTS Microcode
[ 2.362082] [drm] External GPIO thermal controller with fan control
[ 2.362098] == power state 0 ==
[ 2.362099] ui class: none
[ 2.362100] internal class: boot
[ 2.362102] caps:
[ 2.362103] uvd vclk: 0 dclk: 0
[ 2.362105] power level 0 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 2.362106] power level 1 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 2.362108] power level 2 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 2.362109] status: c r b
[ 2.362111] == power state 1 ==
[ 2.362112] ui class: performance
[ 2.362114] internal class: none
[ 2.362116] caps:
[ 2.362119] uvd vclk: 0 dclk: 0
[ 2.362121] power level 0 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 2.362124] power level 1 sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[ 2.362127] power level 2 sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[ 2.362129] status:
[ 2.362131] == power state 2 ==
[ 2.362132] ui class: none
[ 2.362134] internal class: uvd
[ 2.362136] caps: video
[ 2.362138] uvd vclk: 54000 dclk: 40000
[ 2.362139] power level 0 sclk: 29800 mclk: 90000 vddc: 950 vddci: 1100
[ 2.362140] power level 1 sclk: 29800 mclk: 90000 vddc: 950 vddci: 1100
[ 2.362142] power level 2 sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[ 2.362143] status:
[ 2.362144] == power state 3 ==
[ 2.362145] ui class: none
[ 2.362146] internal class: uvd_mvc
[ 2.362147] caps: video
[ 2.362149] uvd vclk: 70000 dclk: 56000
[ 2.362150] power level 0 sclk: 50200 mclk: 90000 vddc: 1050 vddci: 1100
[ 2.362151] power level 1 sclk: 50200 mclk: 90000 vddc: 1050 vddci: 1100
[ 2.362153] power level 2 sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[ 2.362154] status:
[ 2.362155] == power state 4 ==
[ 2.362156] ui class: battery
[ 2.362157] internal class: none
[ 2.362158] caps:
[ 2.362159] uvd vclk: 0 dclk: 0
[ 2.362160] power level 0 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 2.362162] power level 1 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 2.362164] power level 2 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 2.362165] status:
[ 2.362190] ata2.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[ 2.362266] ata2.00: supports DRM functions and may not be fully accessible
[ 2.362472] ata3.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[ 2.362477] ata3.00: configured for UDMA/100
[ 2.362541] ata1.00: disabling queued TRIM support
[ 2.362878] ata2.00: disabling queued TRIM support
[ 2.364105] ata1.00: configured for UDMA/133
[ 2.364238] scsi 0:0:0:0: Direct-Access ATA Samsung SSD 850 3B6Q PQ: 0 ANSI: 5
[ 2.364391] ata2.00: configured for UDMA/133
[ 2.364586] scsi 1:0:0:0: Direct-Access ATA Samsung SSD 850 2B6Q PQ: 0 ANSI: 5
[ 2.365982] sd 1:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[ 2.366002] sd 1:0:0:0: [sdb] Write Protect is off
[ 2.366006] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 2.366011] sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[ 2.366028] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.366033] sd 0:0:0:0: [sda] Write Protect is off
[ 2.366037] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 2.366051] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.366072] scsi 2:0:0:0: CD-ROM OPTIARC DVD RW AD-5690H 4AH5 PQ: 0 ANSI: 5
[ 2.366977] sda: sda1 sda2 sda3 sda4 sda5 sda6
[ 2.366985] sd 1:0:0:0: [sdb] supports TCG Opal
[ 2.366988] sd 1:0:0:0: [sdb] Attached SCSI disk
[ 2.367066] [drm] radeon: dpm initialized
[ 2.367129] [drm] GART: num cpu pages 262144, num gpu pages 262144
[ 2.367544] [drm] enabling PCIE gen 2 link speeds, disable with radeon.pcie_gen2=0
[ 2.368048] sd 0:0:0:0: [sda] supports TCG Opal
[ 2.368051] sd 0:0:0:0: [sda] Attached SCSI disk
[ 2.372984] [drm] PCIE GART of 1024M enabled (table at 0x0000000000162000).
[ 2.373092] radeon 0000:01:00.0: WB enabled
[ 2.373096] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000040000c00 and cpu addr 0x0000000005d6c1d7
[ 2.373100] radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000040000c0c and cpu addr 0x00000000ff7746f5
[ 2.373850] radeon 0000:01:00.0: fence driver on ring 5 use gpu addr 0x0000000000072118 and cpu addr 0x000000002c8cb496
[ 2.373854] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 2.373856] [drm] Driver supports precise vblank timestamp query.
[ 2.373858] radeon 0000:01:00.0: radeon: MSI limited to 32-bit
[ 2.373892] radeon 0000:01:00.0: radeon: using MSI.
[ 2.373922] [drm] radeon: irq initialized.
[ 2.390319] [drm] ring test on 0 succeeded in 3 usecs
[ 2.390330] [drm] ring test on 3 succeeded in 7 usecs
[ 2.416758] firewire_ohci 0000:3f:00.0: added OHCI v1.10 device as card 1, 8 IR + 8 IT contexts, quirks 0x0, physUB
[ 2.439906] usb 4-1: new high-speed USB device number 2 using ehci-pci
[ 2.459906] usb 7-1: new high-speed USB device number 2 using ehci-pci
[ 2.473267] usb 8-1: new high-speed USB device number 2 using ehci-pci
[ 2.473362] firewire_ohci 0000:70:00.0: added OHCI v1.10 device as card 2, 8 IR + 8 IT contexts, quirks 0x0, physUB
[ 2.473964] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 2.473986] sd 1:0:0:0: Attached scsi generic sg1 type 0
[ 2.507234] usb 1-1: New USB device found, idVendor=0424, idProduct=2514, bcdDevice= 0.03
[ 2.507238] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 2.507487] hub 1-1:1.0: USB hub found
[ 2.507611] hub 1-1:1.0: 3 ports detected
[ 2.567434] [drm] ring test on 5 succeeded in 2 usecs
[ 2.567443] [drm] UVD initialized successfully.
[ 2.567560] [drm] ib test on ring 0 succeeded in 0 usecs
[ 2.567682] [drm] ib test on ring 3 succeeded in 0 usecs
[ 2.586963] usb 4-1: New USB device found, idVendor=0424, idProduct=2514, bcdDevice= 0.03
[ 2.586967] usb 4-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 2.587234] hub 4-1:1.0: USB hub found
[ 2.587361] hub 4-1:1.0: 4 ports detected
[ 2.607068] usb 7-1: New USB device found, idVendor=05ac, idProduct=9127, bcdDevice= 1.00
[ 2.607071] usb 7-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 2.607338] hub 7-1:1.0: USB hub found
[ 2.607566] hub 7-1:1.0: 7 ports detected
[ 2.620338] usb 8-1: New USB device found, idVendor=05ac, idProduct=9127, bcdDevice= 1.00
[ 2.620342] usb 8-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 2.620611] hub 8-1:1.0: USB hub found
[ 2.620847] hub 8-1:1.0: 7 ports detected
[ 2.633238] usb 1-2: new high-speed USB device number 3 using ehci-pci
[ 2.744347] scsi 2:0:0:0: Attached scsi generic sg2 type 5
[ 2.782067] sr 2:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda caddy
[ 2.782075] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 2.782445] sr 2:0:0:0: Attached scsi CD-ROM sr0
[ 2.798135] usb 1-2: New USB device found, idVendor=05ac, idProduct=850b, bcdDevice= 7.55
[ 2.798143] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 2.798148] usb 1-2: Product: FaceTime HD Camera (Built-in)
[ 2.798151] usb 1-2: Manufacturer: Apple Inc.
[ 2.798155] usb 1-2: SerialNumber: CCGB8K062WDDJRLX
[ 2.856594] usb 1-1.1: new full-speed USB device number 4 using ehci-pci
[ 2.866588] usb 4-1.1: new high-speed USB device number 3 using ehci-pci
[ 2.883278] tsc: Refined TSC clocksource calibration: 3400.023 MHz
[ 2.883292] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x31026473058, max_idle_ns: 440795314252 ns
[ 2.883445] clocksource: Switched to clocksource tsc
[ 2.883508] firewire_core 0000:04:00.0: created device fw0: GUID a4b197fffe3f2da2, S800
[ 2.883522] firewire_core 0000:04:00.0: phy config: new root=ffc0, gap_count=63
[ 2.886582] usb 7-1.4: new full-speed USB device number 3 using ehci-pci
[ 2.899934] usb 8-1.4: new full-speed USB device number 3 using ehci-pci
[ 2.936857] firewire_core 0000:3f:00.0: created device fw1: GUID 000a2702006cfdfb, S800
[ 2.936872] firewire_core 0000:3f:00.0: phy config: new root=ffc0, gap_count=63
[ 2.955377] usb 1-1.1: New USB device found, idVendor=0a5c, idProduct=4500, bcdDevice= 1.00
[ 2.955385] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.955390] usb 1-1.1: Product: BRCM2046 Hub
[ 2.955393] usb 1-1.1: Manufacturer: Apple Inc.
[ 2.955784] hub 1-1.1:1.0: USB hub found
[ 2.955981] hub 1-1.1:1.0: 3 ports detected
[ 2.968350] usb 4-1.1: New USB device found, idVendor=05ac, idProduct=8403, bcdDevice=98.33
[ 2.968358] usb 4-1.1: New USB device strings: Mfr=3, Product=4, SerialNumber=2
[ 2.968363] usb 4-1.1: Product: Card Reader
[ 2.968366] usb 4-1.1: Manufacturer: Apple
[ 2.968370] usb 4-1.1: SerialNumber: 000000009833
[ 2.970697] usb-storage 4-1.1:1.0: USB Mass Storage device detected
[ 2.971039] scsi host8: usb-storage 4-1.1:1.0
[ 2.971153] usbcore: registered new interface driver usb-storage
[ 2.993355] firewire_core 0000:70:00.0: created device fw2: GUID 000a27020040c4ba, S800
[ 2.993368] firewire_core 0000:70:00.0: phy config: new root=ffc0, gap_count=63
[ 2.996251] usb 7-1.4: New USB device found, idVendor=05ac, idProduct=1107, bcdDevice= 2.09
[ 2.996259] usb 7-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 2.996264] usb 7-1.4: Product: Display Audio
[ 2.996268] usb 7-1.4: Manufacturer: Apple Inc.
[ 2.996271] usb 7-1.4: SerialNumber: 1A0E0738
[ 2.998627] hidraw: raw HID events driver (C) Jiri Kosina
[ 3.005502] usb 8-1.4: New USB device found, idVendor=05ac, idProduct=1107, bcdDevice= 2.09
[ 3.005510] usb 8-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3.005515] usb 8-1.4: Product: Display Audio
[ 3.005518] usb 8-1.4: Manufacturer: Apple Inc.
[ 3.005522] usb 8-1.4: SerialNumber: 152303D9
[ 3.017657] usbcore: registered new interface driver usbhid
[ 3.017664] usbhid: USB HID core driver
[ 3.019473] input: Apple Inc. Display Audio as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:04.0/0000:39:00.0/0000:3a:00.0/0000:3b:00.0/0000:3c:03.0/0000:3d:00.2/usb7/7-1/7-1.4/7-1.4:1.3/0003:05AC:1107.0001/input/input0
[ 3.019539] hid-generic 0003:05AC:1107.0001: input,hidraw0: USB HID v1.11 Device [Apple Inc. Display Audio] on usb-0000:3d:00.2-1.4/input3
[ 3.019677] input: Apple Inc. Display Audio as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:05.0/0000:6a:00.0/0000:6b:00.0/0000:6c:00.0/0000:6d:03.0/0000:6e:00.2/usb8/8-1/8-1.4/8-1.4:1.3/0003:05AC:1107.0002/input/input1
[ 3.019720] hid-generic 0003:05AC:1107.0002: input,hidraw1: USB HID v1.11 Device [Apple Inc. Display Audio] on usb-0000:6e:00.2-1.4/input3
[ 3.033254] usb 1-1.3: new high-speed USB device number 5 using ehci-pci
[ 3.056409] ata8: SATA link down (SStatus 0 SControl 300)
[ 3.056591] usb 4-1.2: new low-speed USB device number 4 using ehci-pci
[ 3.073244] usb 7-1.5: new high-speed USB device number 4 using ehci-pci
[ 3.093254] usb 8-1.5: new high-speed USB device number 4 using ehci-pci
[ 3.139107] usb 1-1.3: New USB device found, idVendor=05ac, idProduct=1006, bcdDevice=96.15
[ 3.139115] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3.139120] usb 1-1.3: Product: Keyboard Hub
[ 3.139123] usb 1-1.3: Manufacturer: Apple, Inc.
[ 3.139127] usb 1-1.3: SerialNumber: 000000000000
[ 3.139532] hub 1-1.3:1.0: USB hub found
[ 3.139721] hub 1-1.3:1.0: 3 ports detected
[ 3.159223] usb 4-1.2: New USB device found, idVendor=05ac, idProduct=8242, bcdDevice= 0.16
[ 3.159232] usb 4-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 3.159236] usb 4-1.2: Product: IR Receiver
[ 3.159240] usb 4-1.2: Manufacturer: Apple Computer, Inc.
[ 3.164650] 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.194065] usb 7-1.5: New USB device found, idVendor=05ac, idProduct=1112, bcdDevice=71.60
[ 3.194074] usb 7-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3.194078] usb 7-1.5: Product: FaceTime HD Camera (Display)
[ 3.194082] usb 7-1.5: Manufacturer: Apple Inc.
[ 3.194086] usb 7-1.5: SerialNumber: CC2G3101FFDJ9FLP
[ 3.205306] usb 8-1.5: New USB device found, idVendor=05ac, idProduct=1112, bcdDevice=71.60
[ 3.205315] usb 8-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3.205319] usb 8-1.5: Product: FaceTime HD Camera (Display)
[ 3.205323] usb 8-1.5: Manufacturer: Apple Inc.
[ 3.205327] usb 8-1.5: SerialNumber: CCGB690CKUDJ9DFX
[ 3.220222] 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.229995] [drm] ib test on ring 5 succeeded
[ 3.239920] usb 1-1.1.1: new full-speed USB device number 6 using ehci-pci
[ 3.269918] usb 7-1.7: new full-speed USB device number 5 using ehci-pci
[ 3.286589] [drm] radeon atom DIG backlight initialized
[ 3.286597] [drm] Radeon Display Connectors
[ 3.286600] [drm] Connector 0:
[ 3.286603] [drm] eDP-1
[ 3.286605] [drm] HPD3
[ 3.286608] [drm] DDC: 0x6450 0x6450 0x6454 0x6454 0x6458 0x6458 0x645c 0x645c
[ 3.286612] [drm] Encoders:
[ 3.286614] [drm] LCD1: INTERNAL_UNIPHY2
[ 3.286617] [drm] Connector 1:
[ 3.286619] [drm] DP-1
[ 3.286621] [drm] HPD1
[ 3.286624] [drm] DDC: 0x6430 0x6430 0x6434 0x6434 0x6438 0x6438 0x643c 0x643c
[ 3.286628] [drm] Encoders:
[ 3.286630] [drm] DFP1: INTERNAL_UNIPHY1
[ 3.286632] [drm] Connector 2:
[ 3.286635] [drm] DP-2
[ 3.286637] [drm] HPD2
[ 3.286640] [drm] DDC: 0x6440 0x6440 0x6444 0x6444 0x6448 0x6448 0x644c 0x644c
[ 3.286643] [drm] Encoders:
[ 3.286645] [drm] DFP2: INTERNAL_UNIPHY1
[ 3.286648] [drm] Connector 3:
[ 3.286650] [drm] DP-3
[ 3.286652] [drm] HPD4
[ 3.286655] [drm] DDC: 0x6460 0x6460 0x6464 0x6464 0x6468 0x6468 0x646c 0x646c
[ 3.286658] [drm] Encoders:
[ 3.286660] [drm] DFP3: INTERNAL_UNIPHY2
[ 3.286663] [drm] Connector 4:
[ 3.286665] [drm] DP-4
[ 3.286667] [drm] HPD5
[ 3.286670] [drm] DDC: 0x6470 0x6470 0x6474 0x6474 0x6478 0x6478 0x647c 0x647c
[ 3.286673] [drm] Encoders:
[ 3.286676] [drm] DFP4: INTERNAL_UNIPHY
[ 3.286678] [drm] Connector 5:
[ 3.286680] [drm] VGA-1
[ 3.286683] [drm] DDC: 0x64d8 0x64d8 0x64dc 0x64dc 0x64e0 0x64e0 0x64e4 0x64e4
[ 3.286687] [drm] Encoders:
[ 3.286689] [drm] CRT1: INTERNAL_KLDSCP_DAC1
[ 3.296590] usb 8-1.7: new full-speed USB device number 5 using ehci-pci
[ 3.296972] switching from power state:
[ 3.296979] ui class: none
[ 3.296981] internal class: boot
[ 3.296985] caps:
[ 3.296988] uvd vclk: 0 dclk: 0
[ 3.296991] power level 0 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 3.296994] power level 1 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 3.296998] power level 2 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 3.297001] status: c b
[ 3.297004] switching to power state:
[ 3.297006] ui class: performance
[ 3.297008] internal class: none
[ 3.297011] caps:
[ 3.297014] uvd vclk: 0 dclk: 0
[ 3.297016] power level 0 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 3.297020] power level 1 sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[ 3.297023] power level 2 sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[ 3.297026] status: r
[ 3.341620] usb 1-1.1.1: New USB device found, idVendor=05ac, idProduct=8215, bcdDevice= 2.08
[ 3.341628] usb 1-1.1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3.341633] usb 1-1.1.1: Product: Bluetooth USB Host Controller
[ 3.341636] usb 1-1.1.1: Manufacturer: Apple Inc.
[ 3.341640] usb 1-1.1.1: SerialNumber: 3451C9ED7F9B
[ 3.368792] usb 7-1.7: New USB device found, idVendor=05ac, idProduct=9227, bcdDevice= 1.39
[ 3.368796] usb 7-1.7: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3.368798] usb 7-1.7: Product: Apple Thunderbolt Display
[ 3.368799] usb 7-1.7: Manufacturer: Apple Inc.
[ 3.368801] usb 7-1.7: SerialNumber: 1A0E0738
[ 3.370691] hid-generic 0003:05AC:9227.0004: hiddev97,hidraw3: USB HID v1.11 Device [Apple Inc. Apple Thunderbolt Display] on usb-0000:3d:00.2-1.7/input0
[ 3.395312] usb 8-1.7: New USB device found, idVendor=05ac, idProduct=9227, bcdDevice= 1.37
[ 3.395316] usb 8-1.7: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3.395318] usb 8-1.7: Product: Apple Thunderbolt Display
[ 3.395320] usb 8-1.7: Manufacturer: Apple Inc.
[ 3.395321] usb 8-1.7: SerialNumber: 152303D9
[ 3.397317] hid-generic 0003:05AC:9227.0005: hiddev98,hidraw4: USB HID v1.11 Device [Apple Inc. Apple Thunderbolt Display] on usb-0000:6e:00.2-1.7/input0
[ 3.416574] usb 1-1.1.2: new full-speed USB device number 7 using ehci-pci
[ 3.517117] usb 1-1.1.2: New USB device found, idVendor=05ac, idProduct=820a, bcdDevice= 1.00
[ 3.517121] usb 1-1.1.2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 3.518974] 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.0006/input/input3
[ 3.573361] hid-generic 0003:05AC:820A.0006: input,hidraw5: USB HID v1.11 Keyboard [HID 05ac:820a] on usb-0000:00:1a.7-1.1.2/input0
[ 3.586572] usb 1-1.3.2: new low-speed USB device number 8 using ehci-pci
[ 3.690098] usb 1-1.3.2: New USB device found, idVendor=05ac, idProduct=0220, bcdDevice= 0.71
[ 3.690101] usb 1-1.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 3.690103] usb 1-1.3.2: Product: Apple Keyboard
[ 3.690105] usb 1-1.3.2: Manufacturer: Apple, Inc
[ 3.696845] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.3/1-1.3.2/1-1.3.2:1.0/0003:05AC:0220.0007/input/input4
[ 3.753346] apple 0003:05AC:0220.0007: input,hidraw6: USB HID v1.11 Keyboard [Apple, Inc Apple Keyboard] on usb-0000:00:1a.7-1.3.2/input0
[ 3.753430] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.3/1-1.3.2/1-1.3.2:1.1/0003:05AC:0220.0008/input/input5
[ 3.756580] usb 1-1.1.3: new full-speed USB device number 9 using ehci-pci
[ 3.810029] apple 0003:05AC:0220.0008: input,hidraw7: USB HID v1.11 Device [Apple, Inc Apple Keyboard] on usb-0000:00:1a.7-1.3.2/input1
[ 3.856864] usb 1-1.1.3: New USB device found, idVendor=05ac, idProduct=820b, bcdDevice= 1.00
[ 3.856868] usb 1-1.1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 3.858588] 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.0009/input/input6
[ 3.858637] hid-generic 0003:05AC:820B.0009: input,hidraw8: USB HID v1.11 Mouse [HID 05ac:820b] on usb-0000:00:1a.7-1.1.3/input0
[ 3.926571] usb 1-1.3.3: new low-speed USB device number 10 using ehci-pci
[ 3.978232] scsi 8:0:0:0: Direct-Access APPLE SD Card Reader 1.00 PQ: 0 ANSI: 0
[ 3.978396] sd 8:0:0:0: Attached scsi generic sg3 type 0
[ 3.980319] sd 8:0:0:0: [sdc] Attached SCSI removable disk
[ 4.028970] usb 1-1.3.3: New USB device found, idVendor=047d, idProduct=1020, bcdDevice= 1.00
[ 4.028973] usb 1-1.3.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 4.028976] usb 1-1.3.3: Product: Kensington Expert Mouse
[ 4.028977] usb 1-1.3.3: Manufacturer: Kensington
[ 4.031581] input: Kensington Kensington Expert Mouse as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.3/1-1.3.3/1-1.3.3:1.0/0003:047D:1020.000A/input/input7
[ 4.031626] hid-generic 0003:047D:1020.000A: input,hidraw9: USB HID v1.10 Mouse [Kensington Kensington Expert Mouse] on usb-0000:00:1a.7-1.3.3/input0
[ 4.525623] [drm] fb mappable at 0x90363000
[ 4.525628] [drm] vram apper at 0x90000000
[ 4.525631] [drm] size 14745600
[ 4.525633] [drm] fb depth is 24
[ 4.525636] [drm] pitch is 10240
[ 4.525799] fbcon: radeondrmfb (fb0) is primary device
[ 5.380547] switching from power state:
[ 5.380548] ui class: performance
[ 5.380548] internal class: none
[ 5.380549] caps:
[ 5.380550] uvd vclk: 0 dclk: 0
[ 5.380551] power level 0 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 5.380552] power level 1 sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[ 5.380552] power level 2 sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[ 5.380553] status: c r
[ 5.380553] switching to power state:
[ 5.380554] ui class: performance
[ 5.380554] internal class: none
[ 5.380555] caps:
[ 5.380555] uvd vclk: 0 dclk: 0
[ 5.380556] power level 0 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 5.380557] power level 1 sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[ 5.380557] power level 2 sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[ 5.380557] status: c r
[ 6.493426] switching from power state:
[ 6.493428] ui class: performance
[ 6.493428] internal class: none
[ 6.493430] caps:
[ 6.493432] uvd vclk: 0 dclk: 0
[ 6.493433] power level 0 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 6.493434] power level 1 sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[ 6.493435] power level 2 sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[ 6.493436] status: c r
[ 6.493437] switching to power state:
[ 6.493437] ui class: performance
[ 6.493438] internal class: none
[ 6.493439] caps:
[ 6.493440] uvd vclk: 0 dclk: 0
[ 6.493441] power level 0 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 6.493442] power level 1 sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[ 6.493443] power level 2 sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[ 6.493443] status: c r
[ 6.538563] Console: switching to colour frame buffer device 320x90
[ 6.548276] radeon 0000:01:00.0: fb0: radeondrmfb frame buffer device
[ 6.563413] [drm] Initialized radeon 2.50.0 20080528 for 0000:01:00.0 on minor 0
[ 10.485681] tg3 0000:02:00.0 eth0: Link is up at 1000 Mbps, full duplex
[ 10.485725] tg3 0000:02:00.0 eth0: Flow control is off for TX and off for RX
[ 10.485766] tg3 0000:02:00.0 eth0: EEE is enabled
[ 13.832372] sdb: sdb1
[ 13.875721] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
[ 14.085294] udevd[1825]: starting version 3.2.2
[ 14.116081] udevd[1826]: starting eudev-3.2.2
[ 14.144751] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input8
[ 14.146369] ACPI: Power Button [PWRB]
[ 14.148926] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input9
[ 14.150917] ACPI: Sleep Button [SLPB]
[ 14.152651] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input10
[ 14.154336] ACPI: Power Button [PWRF]
[ 14.169014] snd_hda_intel 0000:00:1b.0: enabling device (0000 -> 0002)
[ 14.170930] snd_hda_intel 0000:01:00.1: enabling device (0000 -> 0002)
[ 14.176654] videodev: Linux video capture interface: v2.00
[ 14.184102] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input11
[ 14.185122] uvcvideo: Found UVC 1.00 device FaceTime HD Camera (Built-in) (05ac:850b)
[ 14.191052] snd_hda_codec_cirrus hdaudioC0D0: autoconfig for CS4206: line_outs=2 (0x9/0xb/0x0/0x0/0x0) type:speaker
[ 14.192567] snd_hda_codec_cirrus hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 14.194293] snd_hda_codec_cirrus hdaudioC0D0: hp_outs=1 (0xa/0x0/0x0/0x0/0x0)
[ 14.196079] snd_hda_codec_cirrus hdaudioC0D0: mono: mono_out=0x0
[ 14.197880] snd_hda_codec_cirrus hdaudioC0D0: dig-out=0x10/0x0
[ 14.199686] snd_hda_codec_cirrus hdaudioC0D0: inputs:
[ 14.199688] snd_hda_codec_cirrus hdaudioC0D0: Mic=0xd
[ 14.199690] snd_hda_codec_cirrus hdaudioC0D0: Line=0xc
[ 14.199691] snd_hda_codec_cirrus hdaudioC0D0: dig-in=0xf
[ 14.211709] input: FaceTime HD Camera (Built-in): as /devices/pci0000:00/0000:00:1a.7/usb1/1-2/1-2:1.0/input/input15
[ 14.214864] uvcvideo: Found UVC 1.00 device FaceTime HD Camera (Display) (05ac:1112)
[ 14.230410] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[ 14.232193] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
[ 14.233379] input: HDA Intel PCH SPDIF In as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
[ 14.239757] input: FaceTime HD Camera (Display): F as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:04.0/0000:39:00.0/0000:3a:00.0/0000:3b:00.0/0000:3c:03.0/0000:3d:00.2/usb7/7-1/7-1.5/7-1.5:1.0/input/input16
[ 14.241993] uvcvideo: Found UVC 1.00 device FaceTime HD Camera (Display) (05ac:1112)
[ 14.267065] input: FaceTime HD Camera (Display): F as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:05.0/0000:6a:00.0/0000:6b:00.0/0000:6c:00.0/0000:6d:03.0/0000:6e:00.2/usb8/8-1/8-1.5/8-1.5:1.0/input/input17
[ 14.268453] usbcore: registered new interface driver uvcvideo
[ 14.269751] USB Video Class driver (1.1.1)
[ 14.292615] Bluetooth: Core ver 2.22
[ 14.293968] NET: Registered protocol family 31
[ 14.295254] Bluetooth: HCI device and connection manager initialized
[ 14.296553] Bluetooth: HCI socket layer initialized
[ 14.297875] Bluetooth: L2CAP socket layer initialized
[ 14.299177] Bluetooth: SCO socket layer initialized
[ 14.302168] usbcore: registered new interface driver btusb
[ 14.309181] usb 1-1.1.2: USB disconnect, device number 7
[ 14.363381] usb 7-1.4: 1:1: cannot get freq at ep 0x4
[ 14.368372] usb 7-1.4: 1:2: cannot get freq at ep 0x4
[ 14.374373] usb 7-1.4: 2:1: cannot get freq at ep 0x84
[ 14.408374] usb 7-1.4: Warning! Unlikely big volume range (=16384), cval->res is probably wrong.
[ 14.409636] usb 7-1.4: [2] FU [PCM Playback Volume] ch = 2, val = -16384/0/1
[ 14.417915] Bluetooth: hci0: BCM: chip id 254 build 0518
[ 14.420910] Bluetooth: hci0: BCM: product 05ac:8215
[ 14.423912] Bluetooth: hci0: BCM: features 0x00
[ 14.441876] Bluetooth: hci0: Bluetooth USB Host Controller
[ 14.442350] usb 7-1.4: Warning! Unlikely big volume range (=15872), cval->res is probably wrong.
[ 14.445028] usb 7-1.4: [5] FU [Mic Capture Volume] ch = 1, val = -11264/4608/1
[ 14.505658] applesmc: key=332 fan=3 temp=50 index=49 acc=0 lux=2 kbd=0
[ 14.507038] applesmc applesmc.768: hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[ 14.622078] usb 8-1.4: 1:1: cannot get freq at ep 0x4
[ 14.628946] usb 8-1.4: 1:2: cannot get freq at ep 0x4
[ 14.635936] usb 8-1.4: 2:1: cannot get freq at ep 0x84
[ 14.670079] usb 8-1.4: Warning! Unlikely big volume range (=16384), cval->res is probably wrong.
[ 14.672881] usb 8-1.4: [2] FU [PCM Playback Volume] ch = 2, val = -16384/0/1
[ 14.693772] usb 1-1.1.3: USB disconnect, device number 9
[ 14.708953] usb 8-1.4: Warning! Unlikely big volume range (=15872), cval->res is probably wrong.
[ 14.711947] usb 8-1.4: [5] FU [Mic Capture Volume] ch = 1, val = -11264/4608/1
[ 14.715210] usbcore: registered new interface driver snd-usb-audio
[ 16.299929] Adding 16777212k swap on /dev/sda5. Priority:-2 extents:1 across:16777212k SS
[ 16.326510] EXT4-fs (sda6): re-mounted. Opts: errors=remount-ro
[ 16.476122] device-mapper: ioctl: 4.40.0-ioctl (2019-01-18) initialised: dm-devel@redhat.com
[ 16.639881] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: errors=remount-ro,commit=30
[ 16.814288] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[ 16.822364] br0: port 1(eth0) entered blocking state
[ 16.825479] br0: port 1(eth0) entered disabled state
[ 16.828112] device eth0 entered promiscuous mode
[ 17.142937] NET: Registered protocol family 17
[ 19.943430] tg3 0000:02:00.0 eth0: Link is up at 1000 Mbps, full duplex
[ 19.946424] tg3 0000:02:00.0 eth0: Flow control is off for TX and off for RX
[ 19.949413] tg3 0000:02:00.0 eth0: EEE is enabled
[ 19.952419] br0: port 1(eth0) entered blocking state
[ 19.955411] br0: port 1(eth0) entered forwarding state
[ 25.688968] RPC: Registered named UNIX socket transport module.
[ 25.692027] RPC: Registered udp transport module.
[ 25.695049] RPC: Registered tcp transport module.
[ 25.696461] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 25.700173] FS-Cache: Loaded
[ 25.705371] FS-Cache: Netfs 'nfs' registered for caching
[ 25.711882] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[ 25.731678] NFS: Registering the id_resolver key type
[ 25.733930] Key type id_resolver registered
[ 25.736079] Key type id_legacy registered
[ 26.645905] elogind[3570]: New seat seat0.
[ 26.648663] elogind[3570]: Watching system buttons on /dev/input/event10 (Power Button)
[ 26.650240] elogind[3570]: Watching system buttons on /dev/input/event8 (Power Button)
[ 26.651895] elogind[3570]: Watching system buttons on /dev/input/event9 (Sleep Button)
[ 26.653699] elogind[3570]: Watching system buttons on /dev/input/event4 (Apple, Inc Apple Keyboard)
[ 26.926615] radeon_dp_aux_transfer_native: 242 callbacks suppressed
[ 29.958822] elogind[3570]: New session c1 of user brad.
[ 49.755782] switching from power state:
[ 49.755785] ui class: performance
[ 49.755786] internal class: none
[ 49.755787] caps:
[ 49.755788] uvd vclk: 0 dclk: 0
[ 49.755789] power level 0 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 49.755790] power level 1 sclk: 39800 mclk: 90000 vddc: 1000 vddci: 1100
[ 49.755791] power level 2 sclk: 68000 mclk: 90000 vddc: 1100 vddci: 1100
[ 49.755791] status: c
[ 49.755792] switching to power state:
[ 49.755793] ui class: battery
[ 49.755793] internal class: none
[ 49.755794] caps:
[ 49.755795] uvd vclk: 0 dclk: 0
[ 49.755796] power level 0 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 49.755796] power level 1 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 49.755797] power level 2 sclk: 10000 mclk: 14900 vddc: 900 vddci: 950
[ 49.755798] status: r
\
 
 \ /
  Last update: 2019-09-03 13:12    [W:1.122 / U:0.628 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site