linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/2] pci: Add boot interrupt quirk mechanism for Xeon chipsets
@ 2020-02-20 19:29 Sean V Kelley
  2020-02-20 19:29 ` [PATCH v2 1/2] " Sean V Kelley
                   ` (3 more replies)
  0 siblings, 4 replies; 13+ messages in thread
From: Sean V Kelley @ 2020-02-20 19:29 UTC (permalink / raw)
  To: tglx, bhelgaas, corbet, mingo, bp
  Cc: x86, linux-pci, linux-kernel, linux-doc, kar.hin.ong, sassmann,
	Sean V Kelley

Changes since v1 [1]:

- Correct Documentation section title for 6300ESB chipset.
(Jonathan Derrick)

- Use consistent abbreviations in comments for IO-APIC and Core IO.
(Andy Shevchenko)

- Retained Reviewed-by tag due to no technical changes.

[1]: https://lore.kernel.org/lkml/20200214213313.66622-1-sean.v.kelley@linux.intel.com/

Bjorn, I'm open for it to go to stable as well.

--

When IRQ lines on secondary or higher IO-APICs are masked (e.g.,
Real-Time threaded interrupts), many chipsets redirect IRQs on
this line to the legacy PCH and in turn the base IO-APIC in the
system. The unhandled interrupts on the base IO-APIC will be
identified by the Linux kernel as Spurious Interrupts and can
lead to disabled IRQ lines.

Disabling this legacy PCI interrupt routing is chipset-specific and
varies in mechanism between chipset vendors and across generations.
In some cases the mechanism is exposed to BIOS but not all BIOS
vendors chose to pick it up. With the increasing usage of RT as it
marches towards mainline, additional issues have been raised with
more recent Xeon chipsets.

This patchset disables the boot interrupt on these Xeon chipsets where
this is possible with an additional mechanism. In addition, this
patchset includes documentation covering the background of this quirk.


Sean V Kelley (2):
  pci: Add boot interrupt quirk mechanism for Xeon chipsets
  Documentation:PCI: Add background on Boot Interrupts

 Documentation/PCI/boot-interrupts.rst | 153 ++++++++++++++++++++++++++
 Documentation/PCI/index.rst           |   1 +
 drivers/pci/quirks.c                  |  80 ++++++++++++--
 3 files changed, 227 insertions(+), 7 deletions(-)
 create mode 100644 Documentation/PCI/boot-interrupts.rst

--
2.25.1


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

* [PATCH v2 1/2] pci: Add boot interrupt quirk mechanism for Xeon chipsets
  2020-02-20 19:29 [PATCH v2 0/2] pci: Add boot interrupt quirk mechanism for Xeon chipsets Sean V Kelley
@ 2020-02-20 19:29 ` Sean V Kelley
  2020-02-20 19:29 ` [PATCH v2 2/2] Documentation:PCI: Add background on Boot Interrupts Sean V Kelley
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 13+ messages in thread
From: Sean V Kelley @ 2020-02-20 19:29 UTC (permalink / raw)
  To: tglx, bhelgaas, corbet, mingo, bp
  Cc: x86, linux-pci, linux-kernel, linux-doc, kar.hin.ong, sassmann,
	Sean V Kelley

The following was observed by Kar Hin Ong with RT patchset:
Backtrace:
irq 19: nobody cared (try booting with the "irqpoll" option)
CPU: 0 PID: 3329 Comm: irq/34-nipalk Tainted:4.14.87-rt49 #1
Hardware name: National Instruments NI PXIe-8880/NI PXIe-8880,
         BIOS 2.1.5f1 01/09/2020
Call Trace:
<IRQ>
  ? dump_stack+0x46/0x5e
  ? __report_bad_irq+0x2e/0xb0
  ? note_interrupt+0x242/0x290
  ? nNIKAL100_memoryRead16+0x8/0x10 [nikal]
  ? handle_irq_event_percpu+0x55/0x70
  ? handle_irq_event+0x4f/0x80
  ? handle_fasteoi_irq+0x81/0x180
  ? handle_irq+0x1c/0x30
  ? do_IRQ+0x41/0xd0
  ? common_interrupt+0x84/0x84
</IRQ>
...
handlers:
[<ffffffffb3297200>] irq_default_primary_handler threaded
[<ffffffffb3669180>] usb_hcd_irq
Disabling IRQ #19

The problem being that this device is triggering boot interrupts
due to threaded interrupt handling and masking of the IO-APIC. These
boot interrupts are then forwarded on to the legacy PCH's PIRQ lines
where there is no handler present for the device.

Whenever a PCI device is firing interrupt (INTx) to Pin 20 of IOAPIC 2
(GSI 44); the kernel will receives 2 interrupts:
   1. Interrupt from Pin 20 of IOAPIC 2  -> Expected
   2. Interrupt from Pin 19 of IOAPIC 1  -> UNEXPECTED

Quirks for disabling boot interrupts (preferred) or rerouting the handler
exist but do not address these Xeon chipsets' mechanism:
https://lore.kernel.org/lkml/12131949181903-git-send-email-sassmann@suse.de/

This patch adds a new mechanism via PCI CFG for those chipsets supporting
CIPINTRC register's dis_intx_rout2ich bit.

Reported-by: Kar Hin Ong <kar.hin.ong@ni.com>
Tested-by: Kar Hin Ong <kar.hin.ong@ni.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Sean V Kelley <sean.v.kelley@linux.intel.com>
---
 drivers/pci/quirks.c | 80 ++++++++++++++++++++++++++++++++++++++++----
 1 file changed, 73 insertions(+), 7 deletions(-)

diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c
index 29f473ebf20f..b7347bc6a24d 100644
--- a/drivers/pci/quirks.c
+++ b/drivers/pci/quirks.c
@@ -1970,26 +1970,92 @@ DECLARE_PCI_FIXUP_RESUME(PCI_VENDOR_ID_INTEL,	PCI_DEVICE_ID_INTEL_80332_1,	quirk
 /*
  * IO-APIC1 on 6300ESB generates boot interrupts, see Intel order no
  * 300641-004US, section 5.7.3.
+ *
+ * Core IO on Xeon E5 1600/2600/4600, see Intel order no 326509-003.
+ * Core IO on Xeon E5 v2, see Intel order no 329188-003.
+ * Core IO on Xeon E7 v2, see Intel order no 329595-002.
+ * Core IO on Xeon E5 v3, see Intel order no 330784-003.
+ * Core IO on Xeon E7 v3, see Intel order no 332315-001US.
+ * Core IO on Xeon E5 v4, see Intel order no 333810-002US.
+ * Core IO on Xeon E7 v4, see Intel order no 332315-001US.
+ * Core IO on Xeon D-1500, see Intel order no 332051-001.
+ * Core IO on Xeon Scalable, see Intel order no 610950.
  */
-#define INTEL_6300_IOAPIC_ABAR		0x40
+#define INTEL_6300_IOAPIC_ABAR		0x40	/* Bus 0, Dev 29, Func 5 */
 #define INTEL_6300_DISABLE_BOOT_IRQ	(1<<14)
 
+#define INTEL_CIPINTRC_CFG_OFFSET	0x14C	/* Bus 0, Dev 5, Func 0 */
+#define INTEL_CIPINTRC_DIS_INTX_ICH	(1<<25)
+
 static void quirk_disable_intel_boot_interrupt(struct pci_dev *dev)
 {
 	u16 pci_config_word;
+	u32 pci_config_dword;
 
 	if (noioapicquirk)
 		return;
 
-	pci_read_config_word(dev, INTEL_6300_IOAPIC_ABAR, &pci_config_word);
-	pci_config_word |= INTEL_6300_DISABLE_BOOT_IRQ;
-	pci_write_config_word(dev, INTEL_6300_IOAPIC_ABAR, pci_config_word);
-
+	switch (dev->device) {
+	case PCI_DEVICE_ID_INTEL_ESB_10:
+		pci_read_config_word(dev, INTEL_6300_IOAPIC_ABAR,
+				     &pci_config_word);
+		pci_config_word |= INTEL_6300_DISABLE_BOOT_IRQ;
+		pci_write_config_word(dev, INTEL_6300_IOAPIC_ABAR,
+				      pci_config_word);
+		break;
+	case 0x3c28:	/* Xeon E5 1600/2600/4600	*/
+	case 0x0e28:	/* Xeon E5/E7 V2		*/
+	case 0x2f28:	/* Xeon E5/E7 V3,V4		*/
+	case 0x6f28:	/* Xeon D-1500			*/
+	case 0x2034:	/* Xeon Scalable Family		*/
+		pci_read_config_dword(dev, INTEL_CIPINTRC_CFG_OFFSET,
+				      &pci_config_dword);
+		pci_config_dword |= INTEL_CIPINTRC_DIS_INTX_ICH;
+		pci_write_config_dword(dev, INTEL_CIPINTRC_CFG_OFFSET,
+				       pci_config_dword);
+		break;
+	default:
+		return;
+	}
 	pci_info(dev, "disabled boot interrupts on device [%04x:%04x]\n",
 		 dev->vendor, dev->device);
 }
-DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL,   PCI_DEVICE_ID_INTEL_ESB_10,	quirk_disable_intel_boot_interrupt);
-DECLARE_PCI_FIXUP_RESUME(PCI_VENDOR_ID_INTEL,   PCI_DEVICE_ID_INTEL_ESB_10,	quirk_disable_intel_boot_interrupt);
+/*
+ * Device 29 Func 5 Device IDs of IO-APIC
+ * containing ABAR—APIC1 Alternate Base Address Register
+ */
+DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL,	PCI_DEVICE_ID_INTEL_ESB_10,
+		quirk_disable_intel_boot_interrupt);
+DECLARE_PCI_FIXUP_RESUME(PCI_VENDOR_ID_INTEL,	PCI_DEVICE_ID_INTEL_ESB_10,
+		quirk_disable_intel_boot_interrupt);
+
+/*
+ * Device 5 Func 0 Device IDs of Core IO modules/hubs
+ * containing Coherent Interface Protocol Interrupt Control
+ *
+ * Device IDs obtained from volume 2 datasheets of commented
+ * families above.
+ */
+DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL,	0x3c28,
+		quirk_disable_intel_boot_interrupt);
+DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL,	0x0e28,
+		quirk_disable_intel_boot_interrupt);
+DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL,	0x2f28,
+		quirk_disable_intel_boot_interrupt);
+DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL,	0x6f28,
+		quirk_disable_intel_boot_interrupt);
+DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL,	0x2034,
+		quirk_disable_intel_boot_interrupt);
+DECLARE_PCI_FIXUP_RESUME(PCI_VENDOR_ID_INTEL,	0x3c28,
+		quirk_disable_intel_boot_interrupt);
+DECLARE_PCI_FIXUP_RESUME(PCI_VENDOR_ID_INTEL,	0x0e28,
+		quirk_disable_intel_boot_interrupt);
+DECLARE_PCI_FIXUP_RESUME(PCI_VENDOR_ID_INTEL,	0x2f28,
+		quirk_disable_intel_boot_interrupt);
+DECLARE_PCI_FIXUP_RESUME(PCI_VENDOR_ID_INTEL,	0x6f28,
+		quirk_disable_intel_boot_interrupt);
+DECLARE_PCI_FIXUP_RESUME(PCI_VENDOR_ID_INTEL,	0x2034,
+		quirk_disable_intel_boot_interrupt);
 
 /* Disable boot interrupts on HT-1000 */
 #define BC_HT1000_FEATURE_REG		0x64
-- 
2.25.1


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

* [PATCH v2 2/2] Documentation:PCI: Add background on Boot Interrupts
  2020-02-20 19:29 [PATCH v2 0/2] pci: Add boot interrupt quirk mechanism for Xeon chipsets Sean V Kelley
  2020-02-20 19:29 ` [PATCH v2 1/2] " Sean V Kelley
@ 2020-02-20 19:29 ` Sean V Kelley
  2020-02-27 22:49 ` [PATCH v2 0/2] pci: Add boot interrupt quirk mechanism for Xeon chipsets Bjorn Helgaas
  2020-09-16 10:12 ` boot interrupt quirk (also in 4.19.y) breaks serial ports (was: [PATCH v2 0/2] pci: Add boot interrupt quirk mechanism for Xeon chipsets) Stefan Bühler
  3 siblings, 0 replies; 13+ messages in thread
From: Sean V Kelley @ 2020-02-20 19:29 UTC (permalink / raw)
  To: tglx, bhelgaas, corbet, mingo, bp
  Cc: x86, linux-pci, linux-kernel, linux-doc, kar.hin.ong, sassmann,
	Sean V Kelley

Improve understanding of the PCI quirks for this legacy PCI interrupt
behavior to the benefit of developers and users alike.

Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Sean V Kelley <sean.v.kelley@linux.intel.com>
---
 Documentation/PCI/boot-interrupts.rst | 153 ++++++++++++++++++++++++++
 Documentation/PCI/index.rst           |   1 +
 2 files changed, 154 insertions(+)
 create mode 100644 Documentation/PCI/boot-interrupts.rst

diff --git a/Documentation/PCI/boot-interrupts.rst b/Documentation/PCI/boot-interrupts.rst
new file mode 100644
index 000000000000..b4d42481fd7f
--- /dev/null
+++ b/Documentation/PCI/boot-interrupts.rst
@@ -0,0 +1,153 @@
+.. SPDX-License-Identifier: GPL-2.0
+
+===============
+Boot Interrupts
+===============
+
+:Author: - Sean V Kelley <sean.v.kelley@linux.intel.com>
+
+Overview
+========
+
+On PCI Express, interrupts are represented with either MSI or inbound interrupt
+messages (Assert_INTx/Deassert_INTx). The integrated IO-APIC in a given Core
+IO converts the legacy interrupt messages from PCI Express to MSI interrupts.
+If the IO-APIC is disabled (via the mask bits in the IO-APIC table entries),
+the messages are routed to the legacy PCH. This in-band interrupt mechanism was
+traditionally necessary for systems that did not support the IO-APIC and for
+boot. Intel in the past has used the term "boot interrupts" to describe this
+mechanism. Further, the PCI Express protocol describes this in-band legacy
+wire-interrupt INTx mechanism for I/O devices to signal PCI-style level
+interrupts. The subsequent paragraphs describe problems with the Core IO
+handling of INTx message routing to the PCH and mitigation within BIOS and
+the OS.
+
+
+Problem
+=======
+
+When in-band legacy INTx messages are forwarded to the PCH, they in turn
+trigger a new interrupt for which the OS likely lacks a handler. When an
+interrupt goes unhandled over time, they are tracked by the Linux kernel
+as Spurious Interrupts. The IRQ will be disabled by the Linux kernel after
+it reaches a specific count with the error "nobody cared". This disabled
+IRQ now prevents valid usage by an existing interrupt which may happen to
+share the IRQ line.
+
+irq 19: nobody cared (try booting with the "irqpoll" option)
+CPU: 0 PID: 2988 Comm: irq/34-nipalk Tainted: 4.14.87-rt49-02410-g4a640ec-dirty #1
+Hardware name: National Instruments NI PXIe-8880/NI PXIe-8880, BIOS 2.1.5f1 01/09/2020
+Call Trace:
+<IRQ>
+ ? dump_stack+0x46/0x5e
+ ? __report_bad_irq+0x2e/0xb0
+ ? note_interrupt+0x242/0x290
+ ? nNIKAL100_memoryRead16+0x8/0x10 [nikal]
+ ? handle_irq_event_percpu+0x55/0x70
+ ? handle_irq_event+0x4f/0x80
+ ? handle_fasteoi_irq+0x81/0x180
+ ? handle_irq+0x1c/0x30
+ ? do_IRQ+0x41/0xd0
+ ? common_interrupt+0x84/0x84
+</IRQ>
+
+handlers:
+irq_default_primary_handler threaded usb_hcd_irq
+Disabling IRQ #19
+
+
+Conditions
+==========
+
+The use of threaded interrupts is the most likely condition to trigger this
+problem today. Threaded interrupts may not be reenabled after the IRQ handler
+wakes. These "one shot" conditions mean that the threaded interrupt needs to
+keep the interrupt line masked until the threaded handler has run. Especially
+when dealing with high data rate interrupts, the thread needs to run to completion
+otherwise some handlers will end up in stack overflows since the interrupt
+of the issuing device is still active.
+
+Affected Chipsets
+=================
+
+The legacy interrupt forwarding mechansim exists today in a number of devices
+including but not limited to chipsets from AMD/ATI, Broadcom, and Intel. Changes
+made through the mitigations below have been applied to drivers/pci/quirks.c
+
+Starting with ICX there are no longer any IO-APICs in the Core IO's devices.
+IO-APIC is only in the PCH.  Devices connected to the Core IO's PCIE Root Ports
+will use native MSI/MSI-X mechanisms.
+
+Mitigations
+===========
+
+The mitigations take the form of PCI quirks. The preference has been to first
+identify and make use of a means to disable the routing to the PCH. In such a
+case a quirk to disable boot interrupt generation can be added.[1]
+
+Intel® 6300ESB I/O Controller Hub
+Alternate Base Address Register:
+ BIE: Boot Interrupt Enable
+	0 = Boot interrupt is enabled.
+	1 = Boot interrupt is disabled.
+
+Intel® Sandy Bridge through Sky Lake based Xeon servers:
+Coherent Interface Protocol Interrupt Control
+ dis_intx_route2pch/dis_intx_route2ich/dis_intx_route2dmi2:
+	When this bit is set. Local INTx messages received from the
+	Intel® Quick Data DMA/PCI Express ports are not routed to legacy
+	PCH - they are either converted into MSI via the integrated IO-APIC
+	(if the IO-APIC mask bit is clear in the appropriate entries)
+	or cause no further action (when mask bit is set)
+
+In the absence of a way to directly disable the routing, another approach
+has been to make use of PCI Interrupt pin to INTx routing tables for purposes
+of redirecting the interrupt handler to the rerouted interrupt line by default.
+Therefore, on chipsets where this INTx routing cannot be disabled, the
+Linux kernel will reroute the valid interrupt to its legacy interrupt. This
+redirection of the handler will prevent the occurrence of the spurious
+interrupt detection which would ordinarily disable the IRQ line due to
+excessive unhandled counts.[2]
+
+The config option X86_REROUTE_FOR_BROKEN_BOOT_IRQS exists to enable
+(or disable) the redirection of the interrupt handler to the PCH interrupt
+line. The option can be overridden by either pci=ioapicreroute or
+pci=noioapicreroute.[3]
+
+
+More Documentation
+==================
+
+There is an overview of the legacy interrupt handling mentioned in several
+datasheets (6300ESB and 6700PXH below). While largely the same, it provides
+insight into the evolution of its handling with chipsets.
+
+Example of disabling of the boot interrupt
+------------------------------------------
+
+Intel® 6300ESB I/O Controller Hub (Document # 300641-004US)
+	5.7.3 Boot Interrupt
+	https://www.intel.com/content/dam/doc/datasheet/6300esb-io-controller-hub-datasheet.pdf
+
+Intel® Xeon® Processor E5-1600/2400/2600/4600 v3 Product Families
+Datasheet - Volume 2: Registers (Dcument # 330784-003)
+	6.6.41 cipintrc Coherent Interface Protocol Interrupt Control
+	https://www.intel.com/content/dam/www/public/us/en/documents/datasheets/xeon-e5-v3-datasheet-vol-2.pdf
+
+Example of handler rerouting
+----------------------------
+
+Intel® 6700PXH 64-bit PCI Hub (Document # 302628)
+	2.15.2 PCI Express Legacy INTx Support and Boot Interrupt
+	https://www.intel.com/content/dam/doc/datasheet/6700pxh-64-bit-pci-hub-datasheet.pdf
+
+
+If you have any legacy PCI interrupt questions that aren't answered, email me.
+
+Cheers,
+    Sean V Kelley
+    sean.v.kelley@linux.intel.com
+
+[1] https://lore.kernel.org/lkml/12131949181903-git-send-email-sassmann@suse.de/
+[2] https://lore.kernel.org/lkml/12131949182094-git-send-email-sassmann@suse.de/
+[3] https://lore.kernel.org/lkml/487C8EA7.6020205@suse.de/
diff --git a/Documentation/PCI/index.rst b/Documentation/PCI/index.rst
index 6768305e4c26..8f66feaafd4f 100644
--- a/Documentation/PCI/index.rst
+++ b/Documentation/PCI/index.rst
@@ -16,3 +16,4 @@ Linux PCI Bus Subsystem
    pci-error-recovery
    pcieaer-howto
    endpoint/index
+   boot-interrupts
-- 
2.25.1


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

* Re: [PATCH v2 0/2] pci: Add boot interrupt quirk mechanism for Xeon chipsets
  2020-02-20 19:29 [PATCH v2 0/2] pci: Add boot interrupt quirk mechanism for Xeon chipsets Sean V Kelley
  2020-02-20 19:29 ` [PATCH v2 1/2] " Sean V Kelley
  2020-02-20 19:29 ` [PATCH v2 2/2] Documentation:PCI: Add background on Boot Interrupts Sean V Kelley
@ 2020-02-27 22:49 ` Bjorn Helgaas
  2020-09-16 10:12 ` boot interrupt quirk (also in 4.19.y) breaks serial ports (was: [PATCH v2 0/2] pci: Add boot interrupt quirk mechanism for Xeon chipsets) Stefan Bühler
  3 siblings, 0 replies; 13+ messages in thread
From: Bjorn Helgaas @ 2020-02-27 22:49 UTC (permalink / raw)
  To: Sean V Kelley
  Cc: tglx, corbet, mingo, bp, x86, linux-pci, linux-kernel, linux-doc,
	kar.hin.ong, sassmann

On Thu, Feb 20, 2020 at 11:29:28AM -0800, Sean V Kelley wrote:
> Changes since v1 [1]:
> 
> - Correct Documentation section title for 6300ESB chipset.
> (Jonathan Derrick)
> 
> - Use consistent abbreviations in comments for IO-APIC and Core IO.
> (Andy Shevchenko)
> 
> - Retained Reviewed-by tag due to no technical changes.
> 
> [1]: https://lore.kernel.org/lkml/20200214213313.66622-1-sean.v.kelley@linux.intel.com/
> 
> Bjorn, I'm open for it to go to stable as well.
> 
> --
> 
> When IRQ lines on secondary or higher IO-APICs are masked (e.g.,
> Real-Time threaded interrupts), many chipsets redirect IRQs on
> this line to the legacy PCH and in turn the base IO-APIC in the
> system. The unhandled interrupts on the base IO-APIC will be
> identified by the Linux kernel as Spurious Interrupts and can
> lead to disabled IRQ lines.
> 
> Disabling this legacy PCI interrupt routing is chipset-specific and
> varies in mechanism between chipset vendors and across generations.
> In some cases the mechanism is exposed to BIOS but not all BIOS
> vendors chose to pick it up. With the increasing usage of RT as it
> marches towards mainline, additional issues have been raised with
> more recent Xeon chipsets.
> 
> This patchset disables the boot interrupt on these Xeon chipsets where
> this is possible with an additional mechanism. In addition, this
> patchset includes documentation covering the background of this quirk.
> 
> 
> Sean V Kelley (2):
>   pci: Add boot interrupt quirk mechanism for Xeon chipsets
>   Documentation:PCI: Add background on Boot Interrupts
> 
>  Documentation/PCI/boot-interrupts.rst | 153 ++++++++++++++++++++++++++
>  Documentation/PCI/index.rst           |   1 +
>  drivers/pci/quirks.c                  |  80 ++++++++++++--
>  3 files changed, 227 insertions(+), 7 deletions(-)
>  create mode 100644 Documentation/PCI/boot-interrupts.rst

Applied to pci/interrupts for v5.7.  I added a stable tag.

Thanks a lot; this is really a nice piece of work!

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

* boot interrupt quirk (also in 4.19.y) breaks serial ports (was: [PATCH v2 0/2] pci: Add boot interrupt quirk mechanism for Xeon chipsets)
  2020-02-20 19:29 [PATCH v2 0/2] pci: Add boot interrupt quirk mechanism for Xeon chipsets Sean V Kelley
                   ` (2 preceding siblings ...)
  2020-02-27 22:49 ` [PATCH v2 0/2] pci: Add boot interrupt quirk mechanism for Xeon chipsets Bjorn Helgaas
@ 2020-09-16 10:12 ` Stefan Bühler
  2020-11-25 11:54   ` Thomas Gleixner
  2022-09-23 19:20   ` Grzegorz Halat
  3 siblings, 2 replies; 13+ messages in thread
From: Stefan Bühler @ 2020-09-16 10:12 UTC (permalink / raw)
  To: sean.v.kelley
  Cc: bhelgaas, bp, corbet, kar.hin.ong, linux-doc, linux-kernel,
	linux-pci, mingo, sassmann, tglx, x86, Greg Kroah-Hartman

[-- Attachment #1: Type: text/plain, Size: 1833 bytes --]

Hi,

this quirk breaks our serial ports PCIe card (i.e. we don't see any 
output from the connected devices; no idea whether anything we send 
reaches them):

05:00.0 PCI bridge: PLX Technology, Inc. PEX8112 x1 Lane PCI Express-to-PCI Bridge (rev aa)
06:00.0 Serial controller: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART) function 0 (Uart)
06:00.1 Bridge: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART) function 0 (Disabled)
06:01.0 Serial controller: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART) function 0 (Uart)
06:01.1 Bridge: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART) function 0 (Disabled)

The hardware is "MP8-PCIe-RS232-R2" (we also have the 16-port variant) 
from https://rs-232.de/sercom_e.htm#MP8PCIERS232

The CPU is an "Intel(R) Xeon(R) CPU D-1518 @ 2.20GHz".

Disabling the quirk for 0x6f28 (Xeon D-1500) on 4.19.145 gets the serial 
ports working again (patch attached for reference).

The box is running debian stable; we build ixgbe 5.6.1 through dkms 
(local package) due to issues with the SFP+ ports (usually our 
uplink...).

Known broken versions: 4.19.115-00065, 4.19.118, 4.19.145, 5.8.9
Known good versions: 4.19.115-00064

Basically if we see "kernel: pci 0000:00:05.0: disabled boot interrupts 
on device [8086:6f28]" in the kernel log it's broken.

Attached lspci, lscpu, lsmod and kernel log outputs while running 5.8.9.

Can we disable the quirk somehow via the kernel commandline?

Anything else I can do to help getting this fixed properly?

(We have the same card in other boxes with CPUs not affected by this 
quirk; they are working just fine.)

cheers,
Stefan

-- 
Stefan Bühler    Mail/xmpp: stefan.buehler@tik.uni-stuttgart.de
Netze und Kommunikationssysteme der Universität Stuttgart (NKS)
https://www.tik.uni-stuttgart.de/    Telefon: +49 711 685 60854

[-- Attachment #2: lspci.txt --]
[-- Type: text/plain, Size: 9810 bytes --]

00:00.0 Host bridge: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DMI2 (rev 03)
00:01.0 PCI bridge: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 1 (rev 03)
00:01.1 PCI bridge: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 1 (rev 03)
00:02.0 PCI bridge: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 2 (rev 03)
00:02.2 PCI bridge: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 2 (rev 03)
00:03.0 PCI bridge: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 3 (rev 03)
00:03.2 PCI bridge: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 3 (rev 03)
00:05.0 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Map/VTd_Misc/System Management (rev 03)
00:05.1 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Hot Plug (rev 03)
00:05.2 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO RAS/Control Status/Global Errors (rev 03)
00:14.0 USB controller: Intel Corporation 8 Series/C220 Series Chipset Family USB xHCI (rev 05)
00:16.0 Communication controller: Intel Corporation 8 Series/C220 Series Chipset Family MEI Controller #1 (rev 04)
00:16.1 Communication controller: Intel Corporation 8 Series/C220 Series Chipset Family MEI Controller #2 (rev 04)
00:1a.0 USB controller: Intel Corporation 8 Series/C220 Series Chipset Family USB EHCI #2 (rev 05)
00:1c.0 PCI bridge: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #1 (rev d5)
00:1c.1 PCI bridge: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #2 (rev d5)
00:1c.3 PCI bridge: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #4 (rev d5)
00:1c.4 PCI bridge: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #5 (rev d5)
00:1d.0 USB controller: Intel Corporation 8 Series/C220 Series Chipset Family USB EHCI #1 (rev 05)
00:1f.0 ISA bridge: Intel Corporation C224 Series Chipset Family Server Standard SKU LPC Controller (rev 05)
00:1f.3 SMBus: Intel Corporation 8 Series/C220 Series Chipset Family SMBus Controller (rev 05)
00:1f.6 Signal processing controller: Intel Corporation 8 Series Chipset Family Thermal Management Controller (rev 05)
01:00.0 Non-Volatile memory controller: Intel Corporation SSD 600P Series (rev 03)
03:00.0 System peripheral: Intel Corporation Xeon Processor D Family QuickData Technology Register DMA Channel 0
03:00.1 System peripheral: Intel Corporation Xeon Processor D Family QuickData Technology Register DMA Channel 1
03:00.2 System peripheral: Intel Corporation Xeon Processor D Family QuickData Technology Register DMA Channel 2
03:00.3 System peripheral: Intel Corporation Xeon Processor D Family QuickData Technology Register DMA Channel 3
04:00.0 Ethernet controller: Intel Corporation Ethernet Connection X552 10 GbE SFP+
04:00.1 Ethernet controller: Intel Corporation Ethernet Connection X552 10 GbE SFP+
05:00.0 PCI bridge: PLX Technology, Inc. PEX8112 x1 Lane PCI Express-to-PCI Bridge (rev aa)
06:00.0 Serial controller: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART) function 0 (Uart)
06:00.1 Bridge: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART) function 0 (Disabled)
06:01.0 Serial controller: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART) function 0 (Uart)
06:01.1 Bridge: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART) function 0 (Disabled)
08:00.0 Ethernet controller: Intel Corporation I210 Gigabit Network Connection (rev 03)
09:00.0 Ethernet controller: Intel Corporation I210 Gigabit Network Connection (rev 03)
0a:00.0 PCI bridge: ASPEED Technology, Inc. AST1150 PCI-to-PCI Bridge (rev 03)
0b:00.0 VGA compatible controller: ASPEED Technology, Inc. ASPEED Graphics Family (rev 30)
0c:00.0 Ethernet controller: Intel Corporation I350 Gigabit Network Connection (rev 01)
0c:00.1 Ethernet controller: Intel Corporation I350 Gigabit Network Connection (rev 01)
0c:00.2 Ethernet controller: Intel Corporation I350 Gigabit Network Connection (rev 01)
0c:00.3 Ethernet controller: Intel Corporation I350 Gigabit Network Connection (rev 01)
ff:0b.0 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link 0/1 (rev 03)
ff:0b.1 Performance counters: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link 0/1 (rev 03)
ff:0b.2 Performance counters: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link 0/1 (rev 03)
ff:0b.3 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link Debug (rev 03)
ff:0c.0 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent (rev 03)
ff:0c.1 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent (rev 03)
ff:0c.2 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent (rev 03)
ff:0c.3 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent (rev 03)
ff:0f.0 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent (rev 03)
ff:0f.4 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent (rev 03)
ff:0f.5 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent (rev 03)
ff:0f.6 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent (rev 03)
ff:10.0 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R2PCIe Agent (rev 03)
ff:10.1 Performance counters: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R2PCIe Agent (rev 03)
ff:10.5 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Ubox (rev 03)
ff:10.6 Performance counters: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Ubox (rev 03)
ff:10.7 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Ubox (rev 03)
ff:12.0 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Home Agent 0 (rev 03)
ff:12.1 Performance counters: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Home Agent 0 (rev 03)
ff:13.0 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Target Address/Thermal/RAS (rev 03)
ff:13.1 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Target Address/Thermal/RAS (rev 03)
ff:13.2 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel Target Address Decoder (rev 03)
ff:13.3 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel Target Address Decoder (rev 03)
ff:13.4 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel Target Address Decoder (rev 03)
ff:13.5 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel Target Address Decoder (rev 03)
ff:13.6 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 0/1 Broadcast (rev 03)
ff:13.7 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Global Broadcast (rev 03)
ff:14.0 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 0 Thermal Control (rev 03)
ff:14.1 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 1 Thermal Control (rev 03)
ff:14.2 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 0 Error (rev 03)
ff:14.3 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 1 Error (rev 03)
ff:14.4 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 0/1 Interface (rev 03)
ff:14.5 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 0/1 Interface (rev 03)
ff:14.6 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 0/1 Interface (rev 03)
ff:14.7 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 0/1 Interface (rev 03)
ff:15.0 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 2 Thermal Control (rev 03)
ff:15.1 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 3 Thermal Control (rev 03)
ff:15.2 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 2 Error (rev 03)
ff:15.3 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 3 Error (rev 03)
ff:1e.0 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit (rev 03)
ff:1e.1 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit (rev 03)
ff:1e.2 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit (rev 03)
ff:1e.3 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit (rev 03)
ff:1e.4 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit (rev 03)
ff:1f.0 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit (rev 03)
ff:1f.2 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit (rev 03)

[-- Attachment #3: lscpu.txt --]
[-- Type: text/plain, Size: 1505 bytes --]

Architecture:        x86_64
CPU op-mode(s):      32-bit, 64-bit
Byte Order:          Little Endian
Address sizes:       46 bits physical, 48 bits virtual
CPU(s):              8
On-line CPU(s) list: 0-7
Thread(s) per core:  2
Core(s) per socket:  4
Socket(s):           1
NUMA node(s):        1
Vendor ID:           GenuineIntel
CPU family:          6
Model:               86
Model name:          Intel(R) Xeon(R) CPU D-1518 @ 2.20GHz
Stepping:            3
CPU MHz:             2149.398
CPU max MHz:         2200.0000
CPU min MHz:         800.0000
BogoMIPS:            4399.78
Virtualization:      VT-x
L1d cache:           32K
L1i cache:           32K
L2 cache:            256K
L3 cache:            6144K
NUMA node0 CPU(s):   0-7
Flags:               fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm rdt_a rdseed adx smap intel_pt xsaveopt cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm arat pln pts md_clear flush_l1d

[-- Attachment #4: lsmod.txt --]
[-- Type: text/plain, Size: 4351 bytes --]

Module                  Size  Used by
bridge                208896  0
8021q                  32768  0
garp                   16384  1 8021q
stp                    16384  2 bridge,garp
mrp                    20480  1 8021q
llc                    16384  3 bridge,stp,garp
nf_log_ipv6            16384  3
ip6t_REJECT            16384  1
nf_reject_ipv6         20480  1 ip6t_REJECT
xt_limit               16384  1
ip6t_rt                20480  3
ip6t_ipv6header        16384  10
ip6table_filter        16384  1
ip6_tables             32768  18 ip6table_filter
nf_log_ipv4            16384  3
nf_log_common          16384  2 nf_log_ipv4,nf_log_ipv6
ipt_REJECT             16384  1
nf_reject_ipv4         16384  1 ipt_REJECT
xt_LOG                 20480  6
xt_tcpudp              20480  18
xt_state               16384  0
xt_conntrack           16384  2
nf_conntrack          159744  2 xt_conntrack,xt_state
nf_defrag_ipv6         24576  1 nf_conntrack
libcrc32c              16384  1 nf_conntrack
nf_defrag_ipv4         16384  1 nf_conntrack
iptable_filter         16384  1
cpufreq_powersave      20480  0
cpufreq_userspace      20480  0
cpufreq_conservative    16384  0
ipmi_ssif              40960  0
nls_ascii              16384  1
nls_cp437              20480  1
vfat                   20480  1
fat                    86016  1 vfat
intel_rapl_msr         20480  0
intel_rapl_common      32768  1 intel_rapl_msr
sb_edac                24576  0
x86_pkg_temp_thermal    20480  0
intel_powerclamp       20480  0
coretemp               20480  0
kvm_intel             253952  0
kvm                   819200  1 kvm_intel
irqbypass              16384  1 kvm
crct10dif_pclmul       16384  1
crc32_pclmul           16384  0
ghash_clmulni_intel    16384  0
mxm_wmi                16384  0
aesni_intel           372736  0
glue_helper            16384  1 aesni_intel
crypto_simd            16384  1 aesni_intel
efi_pstore             16384  0
cryptd                 24576  2 crypto_simd,ghash_clmulni_intel
rapl                   16384  0
intel_cstate           20480  0
ast                    57344  0
drm_vram_helper        28672  1 ast
intel_uncore          163840  0
efivars                20480  1 efi_pstore
drm_kms_helper        258048  4 drm_vram_helper,ast
cec                    49152  1 drm_kms_helper
drm_ttm_helper         16384  1 drm_vram_helper
iTCO_wdt               16384  0
ttm                   122880  2 drm_vram_helper,drm_ttm_helper
iTCO_vendor_support    16384  1 iTCO_wdt
intel_pch_thermal      16384  0
drm                   598016  6 drm_kms_helper,drm_vram_helper,ast,drm_ttm_helper,ttm
mei_me                 45056  0
evdev                  24576  3
joydev                 28672  0
mei                   122880  1 mei_me
ioatdma                61440  0
ipmi_si                69632  0
ipmi_devintf           20480  0
ipmi_msghandler        73728  3 ipmi_devintf,ipmi_si,ipmi_ssif
wmi                    36864  1 mxm_wmi
acpi_pad               28672  0
button                 24576  0
efivarfs               16384  1
ip_tables              32768  1 iptable_filter
x_tables               53248  13 ip6table_filter,xt_conntrack,iptable_filter,xt_LOG,xt_state,xt_tcpudp,ip6t_ipv6header,ip6t_rt,ip6_tables,ipt_REJECT,ip_tables,xt_limit,ip6t_REJECT
autofs4                53248  0
ext4                  770048  1
crc32c_generic         16384  0
crc16                  16384  1 ext4
mbcache                16384  1 ext4
jbd2                  139264  1 ext4
dm_mod                151552  8
hid_generic            16384  0
usbhid                 65536  0
hid                   139264  2 usbhid,hid_generic
ehci_pci               20480  0
xhci_pci               20480  0
xhci_hcd              290816  1 xhci_pci
ehci_hcd               98304  1 ehci_pci
nvme                   49152  2
ixgbe                 368640  0
crc32c_intel           24576  3
mdio                   16384  1 ixgbe
i2c_i801               32768  0
lpc_ich                28672  0
nvme_core             110592  4 nvme
i2c_smbus              20480  1 i2c_i801
mfd_core               20480  1 lpc_ich
igb                   249856  0
libphy                147456  1 ixgbe
i2c_algo_bit           16384  2 igb,ast
usbcore               315392  5 xhci_hcd,ehci_pci,usbhid,ehci_hcd,xhci_pci
dca                    16384  3 igb,ioatdma,ixgbe
t10_pi                 16384  1 nvme_core

[-- Attachment #5: 0001-disable-quirk-for-Xeon-D-1500-d2345d1231d80ecbea5fb7.patch --]
[-- Type: text/x-patch, Size: 1655 bytes --]

From: Stefan Buehler <stefan.buehler@tik.uni-stuttgart.de>
Date: Wed, 16 Sep 2020 11:37:18 +0200
Subject: [PATCH 1/1] disable quirk for Xeon D-1500
 (d2345d1231d80ecbea5fb764eb43123440861462)

---
 drivers/pci/quirks.c | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c
index af2149632102..aefc272ae0d9 100644
--- a/drivers/pci/quirks.c
+++ b/drivers/pci/quirks.c
@@ -1983,7 +1983,6 @@ static void quirk_disable_intel_boot_interrupt(struct pci_dev *dev)
 	case 0x3c28:	/* Xeon E5 1600/2600/4600	*/
 	case 0x0e28:	/* Xeon E5/E7 V2		*/
 	case 0x2f28:	/* Xeon E5/E7 V3,V4		*/
-	case 0x6f28:	/* Xeon D-1500			*/
 	case 0x2034:	/* Xeon Scalable Family		*/
 		pci_read_config_dword(dev, INTEL_CIPINTRC_CFG_OFFSET,
 				      &pci_config_dword);
@@ -2019,8 +2018,6 @@ DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL,	0x0e28,
 		quirk_disable_intel_boot_interrupt);
 DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL,	0x2f28,
 		quirk_disable_intel_boot_interrupt);
-DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL,	0x6f28,
-		quirk_disable_intel_boot_interrupt);
 DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL,	0x2034,
 		quirk_disable_intel_boot_interrupt);
 DECLARE_PCI_FIXUP_RESUME(PCI_VENDOR_ID_INTEL,	0x3c28,
@@ -2029,8 +2026,6 @@ DECLARE_PCI_FIXUP_RESUME(PCI_VENDOR_ID_INTEL,	0x0e28,
 		quirk_disable_intel_boot_interrupt);
 DECLARE_PCI_FIXUP_RESUME(PCI_VENDOR_ID_INTEL,	0x2f28,
 		quirk_disable_intel_boot_interrupt);
-DECLARE_PCI_FIXUP_RESUME(PCI_VENDOR_ID_INTEL,	0x6f28,
-		quirk_disable_intel_boot_interrupt);
 DECLARE_PCI_FIXUP_RESUME(PCI_VENDOR_ID_INTEL,	0x2034,
 		quirk_disable_intel_boot_interrupt);
 
-- 
2.20.1


[-- Attachment #6: kern.log --]
[-- Type: text/x-log, Size: 98410 bytes --]

-- Logs begin at Wed 2020-09-16 11:55:06 CEST, end at Wed 2020-09-16 12:07:20 CEST. --
Sep 16 11:55:06 oob-pr10-y1 kernel: microcode: microcode updated early to revision 0x7000019, date = 2019-06-17
Sep 16 11:55:06 oob-pr10-y1 kernel: Linux version 5.8.9 (russbueh@oob-pr10-y1) (gcc (Debian 8.3.0-6) 8.3.0, GNU ld (GNU Binutils for Debian) 2.31.1) #15 SMP Wed Sep 16 11:44:56 CEST 2020
Sep 16 11:55:06 oob-pr10-y1 kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-5.8.9 root=/dev/mapper/vg00-root ro biosdevname=0 noplymouth console=tty0 console=ttyS1,115200n8 8250.nr_uarts=68
Sep 16 11:55:06 oob-pr10-y1 kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Sep 16 11:55:06 oob-pr10-y1 kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Sep 16 11:55:06 oob-pr10-y1 kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Sep 16 11:55:06 oob-pr10-y1 kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Sep 16 11:55:06 oob-pr10-y1 kernel: x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
Sep 16 11:55:06 oob-pr10-y1 kernel: BIOS-provided physical RAM map:
Sep 16 11:55:06 oob-pr10-y1 kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
Sep 16 11:55:06 oob-pr10-y1 kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000795d4fff] usable
Sep 16 11:55:06 oob-pr10-y1 kernel: BIOS-e820: [mem 0x00000000795d5000-0x00000000797a5fff] reserved
Sep 16 11:55:06 oob-pr10-y1 kernel: BIOS-e820: [mem 0x00000000797a6000-0x000000007989efff] usable
Sep 16 11:55:06 oob-pr10-y1 kernel: BIOS-e820: [mem 0x000000007989f000-0x0000000079d42fff] ACPI NVS
Sep 16 11:55:06 oob-pr10-y1 kernel: BIOS-e820: [mem 0x0000000079d43000-0x000000007bd4cfff] reserved
Sep 16 11:55:06 oob-pr10-y1 kernel: BIOS-e820: [mem 0x000000007bd4d000-0x000000007bdb0fff] type 20
Sep 16 11:55:06 oob-pr10-y1 kernel: BIOS-e820: [mem 0x000000007bdb1000-0x000000007bdb1fff] usable
Sep 16 11:55:06 oob-pr10-y1 kernel: BIOS-e820: [mem 0x000000007bdb2000-0x000000007be37fff] reserved
Sep 16 11:55:06 oob-pr10-y1 kernel: BIOS-e820: [mem 0x000000007be38000-0x000000007bffffff] usable
Sep 16 11:55:06 oob-pr10-y1 kernel: BIOS-e820: [mem 0x0000000080000000-0x000000008fffffff] reserved
Sep 16 11:55:06 oob-pr10-y1 kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
Sep 16 11:55:06 oob-pr10-y1 kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Sep 16 11:55:06 oob-pr10-y1 kernel: BIOS-e820: [mem 0x0000000100000000-0x000000027fffffff] usable
Sep 16 11:55:06 oob-pr10-y1 kernel: NX (Execute Disable) protection: active
Sep 16 11:55:06 oob-pr10-y1 kernel: efi: EFI v2.40 by American Megatrends
Sep 16 11:55:06 oob-pr10-y1 kernel: efi: ACPI=0x798e7000 ACPI 2.0=0x798e7000 ESRT=0x7bb14e18 SMBIOS=0xf05b0 
Sep 16 11:55:06 oob-pr10-y1 kernel: SMBIOS 2.8 present.
Sep 16 11:55:06 oob-pr10-y1 kernel: DMI: Supermicro Super Server/X10SDV-TP8F, BIOS 1.0c 10/31/2017
Sep 16 11:55:06 oob-pr10-y1 kernel: tsc: Fast TSC calibration using PIT
Sep 16 11:55:06 oob-pr10-y1 kernel: tsc: Detected 2199.892 MHz processor
Sep 16 11:55:06 oob-pr10-y1 kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Sep 16 11:55:06 oob-pr10-y1 kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Sep 16 11:55:06 oob-pr10-y1 kernel: last_pfn = 0x280000 max_arch_pfn = 0x400000000
Sep 16 11:55:06 oob-pr10-y1 kernel: MTRR default type: write-back
Sep 16 11:55:06 oob-pr10-y1 kernel: MTRR fixed ranges enabled:
Sep 16 11:55:06 oob-pr10-y1 kernel:   00000-9FFFF write-back
Sep 16 11:55:06 oob-pr10-y1 kernel:   A0000-BFFFF uncachable
Sep 16 11:55:06 oob-pr10-y1 kernel:   C0000-FFFFF write-protect
Sep 16 11:55:06 oob-pr10-y1 kernel: MTRR variable ranges enabled:
Sep 16 11:55:06 oob-pr10-y1 kernel:   0 base 000080000000 mask 3FFF80000000 uncachable
Sep 16 11:55:06 oob-pr10-y1 kernel:   1 base 380000000000 mask 3FC000000000 uncachable
Sep 16 11:55:06 oob-pr10-y1 kernel:   2 base 0000FBA00000 mask 3FFFFFE00000 write-through
Sep 16 11:55:06 oob-pr10-y1 kernel:   3 base 0000FBC00000 mask 3FFFFFE00000 write-through
Sep 16 11:55:06 oob-pr10-y1 kernel:   4 base 0000FBE00000 mask 3FFFFFF00000 write-through
Sep 16 11:55:06 oob-pr10-y1 kernel:   5 disabled
Sep 16 11:55:06 oob-pr10-y1 kernel:   6 disabled
Sep 16 11:55:06 oob-pr10-y1 kernel:   7 disabled
Sep 16 11:55:06 oob-pr10-y1 kernel:   8 disabled
Sep 16 11:55:06 oob-pr10-y1 kernel:   9 disabled
Sep 16 11:55:06 oob-pr10-y1 kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Sep 16 11:55:06 oob-pr10-y1 kernel: last_pfn = 0x7c000 max_arch_pfn = 0x400000000
Sep 16 11:55:06 oob-pr10-y1 kernel: found SMP MP-table at [mem 0x000fda10-0x000fda1f]
Sep 16 11:55:06 oob-pr10-y1 kernel: esrt: Reserving ESRT space from 0x000000007bb14e18 to 0x000000007bb14e50.
Sep 16 11:55:06 oob-pr10-y1 kernel: Using GB pages for direct mapping
Sep 16 11:55:06 oob-pr10-y1 kernel: Secure boot could not be determined
Sep 16 11:55:06 oob-pr10-y1 kernel: RAMDISK: [mem 0x3688f000-0x3743efff]
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: Early table checksum verification disabled
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: RSDP 0x00000000798E7000 000024 (v02 SUPERM)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: XSDT 0x00000000798E70A0 0000BC (v01 SUPERM SMCI--MB 01072009 AMI  00010013)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: FACP 0x00000000798FFAD0 00010C (v05 SUPERM SMCI--MB 01072009 AMI  00010013)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: DSDT 0x00000000798E71F0 0188E0 (v02 SUPERM SMCI--MB 01072009 INTL 20091013)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: FACS 0x0000000079D41F80 000040
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: APIC 0x00000000798FFBE0 0000BC (v03 SUPERM SMCI--MB 01072009 AMI  00010013)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: FPDT 0x00000000798FFCA0 000044 (v01 SUPERM SMCI--MB 01072009 AMI  00010013)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: FIDT 0x00000000798FFCE8 00009C (v01 SUPERM SMCI--MB 01072009 AMI  00010013)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: SPMI 0x00000000798FFD88 000041 (v05 SUPERM SMCI--MB 00000000 AMI. 00000000)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: MCFG 0x00000000798FFDD0 00003C (v01 SUPERM SMCI--MB 01072009 MSFT 00000097)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: UEFI 0x00000000798FFE10 000042 (v01                 00000000      00000000)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: DBG2 0x00000000798FFE58 000072 (v00 SUPERM SMCI--MB 00000000 INTL 20091013)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: HPET 0x00000000798FFED0 000038 (v01 SUPERM SMCI--MB 00000001 INTL 20091013)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: WDDT 0x00000000798FFF08 000040 (v01 SUPERM SMCI--MB 00000000 INTL 20091013)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: SSDT 0x00000000798FFF48 00EDCB (v01 AMI    PmMgt    00000001 INTL 20120913)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: SSDT 0x000000007990ED18 0020C5 (v02 SUPERM SpsNm    00000002 INTL 20120913)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: SSDT 0x0000000079910DE0 000064 (v02 SUPERM SpsNvs   00000002 INTL 20120913)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: PRAD 0x0000000079910E48 000102 (v02 SUPERM SMCI--MB 00000002 INTL 20120913)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: DMAR 0x0000000079910F50 0000CC (v01 SUPERM SMCI--MB 00000001 INTL 20091013)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: HEST 0x0000000079911020 0000A8 (v01 SUPERM SMCI--MB 00000001 INTL 00000001)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: BERT 0x00000000799110C8 000030 (v01 SUPERM SMCI--MB 00000001 INTL 00000001)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: ERST 0x00000000799110F8 000230 (v01 SUPERM SMCI--MB 00000001 INTL 00000001)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: EINJ 0x0000000079911328 000130 (v01 SUPERM SMCI--MB 00000001 INTL 00000001)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: Local APIC address 0xfee00000
Sep 16 11:55:06 oob-pr10-y1 kernel: No NUMA configuration found
Sep 16 11:55:06 oob-pr10-y1 kernel: Faking a node at [mem 0x0000000000000000-0x000000027fffffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: NODE_DATA(0) allocated [mem 0x27fffb000-0x27fffffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: Zone ranges:
Sep 16 11:55:06 oob-pr10-y1 kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Sep 16 11:55:06 oob-pr10-y1 kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Sep 16 11:55:06 oob-pr10-y1 kernel:   Normal   [mem 0x0000000100000000-0x000000027fffffff]
Sep 16 11:55:06 oob-pr10-y1 kernel:   Device   empty
Sep 16 11:55:06 oob-pr10-y1 kernel: Movable zone start for each node
Sep 16 11:55:06 oob-pr10-y1 kernel: Early memory node ranges
Sep 16 11:55:06 oob-pr10-y1 kernel:   node   0: [mem 0x0000000000001000-0x000000000009ffff]
Sep 16 11:55:06 oob-pr10-y1 kernel:   node   0: [mem 0x0000000000100000-0x00000000795d4fff]
Sep 16 11:55:06 oob-pr10-y1 kernel:   node   0: [mem 0x00000000797a6000-0x000000007989efff]
Sep 16 11:55:06 oob-pr10-y1 kernel:   node   0: [mem 0x000000007bdb1000-0x000000007bdb1fff]
Sep 16 11:55:06 oob-pr10-y1 kernel:   node   0: [mem 0x000000007be38000-0x000000007bffffff]
Sep 16 11:55:06 oob-pr10-y1 kernel:   node   0: [mem 0x0000000100000000-0x000000027fffffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: Zeroed struct page in unavailable ranges: 26570 pages
Sep 16 11:55:06 oob-pr10-y1 kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000027fffffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: On node 0 totalpages: 2070582
Sep 16 11:55:06 oob-pr10-y1 kernel:   DMA zone: 64 pages used for memmap
Sep 16 11:55:06 oob-pr10-y1 kernel:   DMA zone: 27 pages reserved
Sep 16 11:55:06 oob-pr10-y1 kernel:   DMA zone: 3999 pages, LIFO batch:0
Sep 16 11:55:06 oob-pr10-y1 kernel:   DMA32 zone: 7715 pages used for memmap
Sep 16 11:55:06 oob-pr10-y1 kernel:   DMA32 zone: 493719 pages, LIFO batch:63
Sep 16 11:55:06 oob-pr10-y1 kernel:   Normal zone: 24576 pages used for memmap
Sep 16 11:55:06 oob-pr10-y1 kernel:   Normal zone: 1572864 pages, LIFO batch:63
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: PM-Timer IO Port: 0x408
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: Local APIC address 0xfee00000
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high level lint[0x1])
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high level lint[0x1])
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high level lint[0x1])
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high level lint[0x1])
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high level lint[0x1])
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high level lint[0x1])
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high level lint[0x1])
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high level lint[0x1])
Sep 16 11:55:06 oob-pr10-y1 kernel: IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: IRQ0 used by override.
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: IRQ9 used by override.
Sep 16 11:55:06 oob-pr10-y1 kernel: Using ACPI (MADT) for SMP configuration information
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: HPET id: 0x8086a701 base: 0xfed00000
Sep 16 11:55:06 oob-pr10-y1 kernel: TSC deadline timer available
Sep 16 11:55:06 oob-pr10-y1 kernel: smpboot: Allowing 8 CPUs, 0 hotplug CPUs
Sep 16 11:55:06 oob-pr10-y1 kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Sep 16 11:55:06 oob-pr10-y1 kernel: PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: PM: hibernation: Registered nosave memory: [mem 0x795d5000-0x797a5fff]
Sep 16 11:55:06 oob-pr10-y1 kernel: PM: hibernation: Registered nosave memory: [mem 0x7989f000-0x79d42fff]
Sep 16 11:55:06 oob-pr10-y1 kernel: PM: hibernation: Registered nosave memory: [mem 0x79d43000-0x7bd4cfff]
Sep 16 11:55:06 oob-pr10-y1 kernel: PM: hibernation: Registered nosave memory: [mem 0x7bd4d000-0x7bdb0fff]
Sep 16 11:55:06 oob-pr10-y1 kernel: PM: hibernation: Registered nosave memory: [mem 0x7bdb2000-0x7be37fff]
Sep 16 11:55:06 oob-pr10-y1 kernel: PM: hibernation: Registered nosave memory: [mem 0x7c000000-0x7fffffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: PM: hibernation: Registered nosave memory: [mem 0x80000000-0x8fffffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: PM: hibernation: Registered nosave memory: [mem 0x90000000-0xfed1bfff]
Sep 16 11:55:06 oob-pr10-y1 kernel: PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfeffffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: [mem 0x90000000-0xfed1bfff] available for PCI devices
Sep 16 11:55:06 oob-pr10-y1 kernel: Booting paravirtualized kernel on bare hardware
Sep 16 11:55:06 oob-pr10-y1 kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
Sep 16 11:55:06 oob-pr10-y1 kernel: setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:8 nr_node_ids:1
Sep 16 11:55:06 oob-pr10-y1 kernel: percpu: Embedded 54 pages/cpu s184280 r8192 d28712 u262144
Sep 16 11:55:06 oob-pr10-y1 kernel: pcpu-alloc: s184280 r8192 d28712 u262144 alloc=1*2097152
Sep 16 11:55:06 oob-pr10-y1 kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
Sep 16 11:55:06 oob-pr10-y1 kernel: Built 1 zonelists, mobility grouping on.  Total pages: 2038200
Sep 16 11:55:06 oob-pr10-y1 kernel: Policy zone: Normal
Sep 16 11:55:06 oob-pr10-y1 kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.8.9 root=/dev/mapper/vg00-root ro biosdevname=0 noplymouth console=tty0 console=ttyS1,115200n8 8250.nr_uarts=68
Sep 16 11:55:06 oob-pr10-y1 kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
Sep 16 11:55:06 oob-pr10-y1 kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
Sep 16 11:55:06 oob-pr10-y1 kernel: mem auto-init: stack:off, heap alloc:off, heap free:off
Sep 16 11:55:06 oob-pr10-y1 kernel: Memory: 7957636K/8282328K available (10243K kernel code, 1257K rwdata, 3644K rodata, 1604K init, 2096K bss, 324692K reserved, 0K cma-reserved)
Sep 16 11:55:06 oob-pr10-y1 kernel: random: get_random_u64 called from __kmem_cache_create+0x3e/0x520 with crng_init=0
Sep 16 11:55:06 oob-pr10-y1 kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
Sep 16 11:55:06 oob-pr10-y1 kernel: Kernel/User page tables isolation: enabled
Sep 16 11:55:06 oob-pr10-y1 kernel: ftrace: allocating 33926 entries in 133 pages
Sep 16 11:55:06 oob-pr10-y1 kernel: ftrace: allocated 133 pages with 3 groups
Sep 16 11:55:06 oob-pr10-y1 kernel: rcu: Hierarchical RCU implementation.
Sep 16 11:55:06 oob-pr10-y1 kernel: rcu:         RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=8.
Sep 16 11:55:06 oob-pr10-y1 kernel:         Rude variant of Tasks RCU enabled.
Sep 16 11:55:06 oob-pr10-y1 kernel: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
Sep 16 11:55:06 oob-pr10-y1 kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
Sep 16 11:55:06 oob-pr10-y1 kernel: NR_IRQS: 33024, nr_irqs: 488, preallocated irqs: 16
Sep 16 11:55:06 oob-pr10-y1 kernel: random: crng done (trusting CPU's manufacturer)
Sep 16 11:55:06 oob-pr10-y1 kernel: Console: colour dummy device 80x25
Sep 16 11:55:06 oob-pr10-y1 kernel: printk: console [tty0] enabled
Sep 16 11:55:06 oob-pr10-y1 kernel: printk: console [ttyS1] enabled
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: Core revision 20200528
Sep 16 11:55:06 oob-pr10-y1 kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
Sep 16 11:55:06 oob-pr10-y1 kernel: APIC: Switch to symmetric I/O mode setup
Sep 16 11:55:06 oob-pr10-y1 kernel: DMAR: Host address width 46
Sep 16 11:55:06 oob-pr10-y1 kernel: DMAR: DRHD base: 0x000000fbffc000 flags: 0x1
Sep 16 11:55:06 oob-pr10-y1 kernel: DMAR: dmar0: reg_base_addr fbffc000 ver 1:0 cap 8d2078c106f0466 ecap f020de
Sep 16 11:55:06 oob-pr10-y1 kernel: DMAR: RMRR base: 0x0000007bb24000 end: 0x0000007bb32fff
Sep 16 11:55:06 oob-pr10-y1 kernel: DMAR: ATSR flags: 0x0
Sep 16 11:55:06 oob-pr10-y1 kernel: DMAR: RHSA base: 0x000000fbffc000 proximity domain: 0x0
Sep 16 11:55:06 oob-pr10-y1 kernel: DMAR-IR: IOAPIC id 8 under DRHD base  0xfbffc000 IOMMU 0
Sep 16 11:55:06 oob-pr10-y1 kernel: DMAR-IR: HPET id 0 under DRHD base 0xfbffc000
Sep 16 11:55:06 oob-pr10-y1 kernel: DMAR-IR: x2apic is disabled because BIOS sets x2apic opt out bit.
Sep 16 11:55:06 oob-pr10-y1 kernel: DMAR-IR: Use 'intremap=no_x2apic_optout' to override the BIOS setting.
Sep 16 11:55:06 oob-pr10-y1 kernel: DMAR-IR: Enabled IRQ remapping in xapic mode
Sep 16 11:55:06 oob-pr10-y1 kernel: x2apic: IRQ remapping doesn't support X2APIC mode
Sep 16 11:55:06 oob-pr10-y1 kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Sep 16 11:55:06 oob-pr10-y1 kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1fb5cca0860, max_idle_ns: 440795204466 ns
Sep 16 11:55:06 oob-pr10-y1 kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4399.78 BogoMIPS (lpj=8799568)
Sep 16 11:55:06 oob-pr10-y1 kernel: pid_max: default: 32768 minimum: 301
Sep 16 11:55:06 oob-pr10-y1 kernel: LSM: Security Framework initializing
Sep 16 11:55:06 oob-pr10-y1 kernel: Yama: becoming mindful.
Sep 16 11:55:06 oob-pr10-y1 kernel: AppArmor: AppArmor initialized
Sep 16 11:55:06 oob-pr10-y1 kernel: TOMOYO Linux initialized
Sep 16 11:55:06 oob-pr10-y1 kernel: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
Sep 16 11:55:06 oob-pr10-y1 kernel: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
Sep 16 11:55:06 oob-pr10-y1 kernel: mce: CPU0: Thermal monitoring enabled (TM1)
Sep 16 11:55:06 oob-pr10-y1 kernel: process: using mwait in idle threads
Sep 16 11:55:06 oob-pr10-y1 kernel: Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
Sep 16 11:55:06 oob-pr10-y1 kernel: Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
Sep 16 11:55:06 oob-pr10-y1 kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Sep 16 11:55:06 oob-pr10-y1 kernel: Spectre V2 : Mitigation: Full generic retpoline
Sep 16 11:55:06 oob-pr10-y1 kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Sep 16 11:55:06 oob-pr10-y1 kernel: Spectre V2 : Enabling Restricted Speculation for firmware calls
Sep 16 11:55:06 oob-pr10-y1 kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Sep 16 11:55:06 oob-pr10-y1 kernel: Spectre V2 : User space: Mitigation: STIBP via seccomp and prctl
Sep 16 11:55:06 oob-pr10-y1 kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
Sep 16 11:55:06 oob-pr10-y1 kernel: TAA: Mitigation: Clear CPU buffers
Sep 16 11:55:06 oob-pr10-y1 kernel: MDS: Mitigation: Clear CPU buffers
Sep 16 11:55:06 oob-pr10-y1 kernel: Freeing SMP alternatives memory: 32K
Sep 16 11:55:06 oob-pr10-y1 kernel: smpboot: CPU0: Intel(R) Xeon(R) CPU D-1518 @ 2.20GHz (family: 0x6, model: 0x56, stepping: 0x3)
Sep 16 11:55:06 oob-pr10-y1 kernel: Performance Events: PEBS fmt2+, Broadwell events, 16-deep LBR, full-width counters, Intel PMU driver.
Sep 16 11:55:06 oob-pr10-y1 kernel: ... version:                3
Sep 16 11:55:06 oob-pr10-y1 kernel: ... bit width:              48
Sep 16 11:55:06 oob-pr10-y1 kernel: ... generic registers:      4
Sep 16 11:55:06 oob-pr10-y1 kernel: ... value mask:             0000ffffffffffff
Sep 16 11:55:06 oob-pr10-y1 kernel: ... max period:             00007fffffffffff
Sep 16 11:55:06 oob-pr10-y1 kernel: ... fixed-purpose events:   3
Sep 16 11:55:06 oob-pr10-y1 kernel: ... event mask:             000000070000000f
Sep 16 11:55:06 oob-pr10-y1 kernel: rcu: Hierarchical SRCU implementation.
Sep 16 11:55:06 oob-pr10-y1 kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Sep 16 11:55:06 oob-pr10-y1 kernel: smp: Bringing up secondary CPUs ...
Sep 16 11:55:06 oob-pr10-y1 kernel: x86: Booting SMP configuration:
Sep 16 11:55:06 oob-pr10-y1 kernel: .... node  #0, CPUs:      #1 #2 #3 #4
Sep 16 11:55:06 oob-pr10-y1 kernel: 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.
Sep 16 11:55:06 oob-pr10-y1 kernel: TAA CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/tsx_async_abort.html for more details.
Sep 16 11:55:06 oob-pr10-y1 kernel:  #5 #6 #7
Sep 16 11:55:06 oob-pr10-y1 kernel: smp: Brought up 1 node, 8 CPUs
Sep 16 11:55:06 oob-pr10-y1 kernel: smpboot: Max logical packages: 1
Sep 16 11:55:06 oob-pr10-y1 kernel: smpboot: Total of 8 processors activated (35198.27 BogoMIPS)
Sep 16 11:55:06 oob-pr10-y1 kernel: devtmpfs: initialized
Sep 16 11:55:06 oob-pr10-y1 kernel: x86/mm: Memory block size: 128MB
Sep 16 11:55:06 oob-pr10-y1 kernel: PM: Registering ACPI NVS region [mem 0x7989f000-0x79d42fff] (4866048 bytes)
Sep 16 11:55:06 oob-pr10-y1 kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Sep 16 11:55:06 oob-pr10-y1 kernel: futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
Sep 16 11:55:06 oob-pr10-y1 kernel: pinctrl core: initialized pinctrl subsystem
Sep 16 11:55:06 oob-pr10-y1 kernel: thermal_sys: Registered thermal governor 'fair_share'
Sep 16 11:55:06 oob-pr10-y1 kernel: thermal_sys: Registered thermal governor 'bang_bang'
Sep 16 11:55:06 oob-pr10-y1 kernel: thermal_sys: Registered thermal governor 'step_wise'
Sep 16 11:55:06 oob-pr10-y1 kernel: thermal_sys: Registered thermal governor 'user_space'
Sep 16 11:55:06 oob-pr10-y1 kernel: NET: Registered protocol family 16
Sep 16 11:55:06 oob-pr10-y1 kernel: audit: initializing netlink subsys (disabled)
Sep 16 11:55:06 oob-pr10-y1 kernel: audit: type=2000 audit(1600250095.300:1): state=initialized audit_enabled=0 res=1
Sep 16 11:55:06 oob-pr10-y1 kernel: cpuidle: using governor ladder
Sep 16 11:55:06 oob-pr10-y1 kernel: cpuidle: using governor menu
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: bus type PCI registered
Sep 16 11:55:06 oob-pr10-y1 kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Sep 16 11:55:06 oob-pr10-y1 kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0x80000000-0x8fffffff] (base 0x80000000)
Sep 16 11:55:06 oob-pr10-y1 kernel: PCI: MMCONFIG at [mem 0x80000000-0x8fffffff] reserved in E820
Sep 16 11:55:06 oob-pr10-y1 kernel: PCI: Using configuration type 1 for base access
Sep 16 11:55:06 oob-pr10-y1 kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
Sep 16 11:55:06 oob-pr10-y1 kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
Sep 16 11:55:06 oob-pr10-y1 kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: Added _OSI(Module Device)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: Added _OSI(Processor Device)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: Added _OSI(Processor Aggregator Device)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: Added _OSI(Linux-Dell-Video)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: 4 ACPI AML tables successfully acquired and loaded
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: Dynamic OEM Table Load:
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: Interpreter enabled
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: (supports S0 S4 S5)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: Using IOAPIC for interrupt routing
Sep 16 11:55:06 oob-pr10-y1 kernel: HEST: Table parsing has been initialized.
Sep 16 11:55:06 oob-pr10-y1 kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: Enabled 6 GPEs in block 00 to 3F
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: PCI Root Bridge [UNC0] (domain 0000 [bus ff])
Sep 16 11:55:06 oob-pr10-y1 kernel: acpi PNP0A03:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
Sep 16 11:55:06 oob-pr10-y1 kernel: acpi PNP0A03:03: _OSC: platform does not support [SHPCHotplug LTR]
Sep 16 11:55:06 oob-pr10-y1 kernel: acpi PNP0A03:03: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
Sep 16 11:55:06 oob-pr10-y1 kernel: acpi PNP0A03:03: FADT indicates ASPM is unsupported, using BIOS configuration
Sep 16 11:55:06 oob-pr10-y1 kernel: PCI host bridge to bus 0000:ff
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:ff: root bus resource [bus ff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:0b.0: [8086:6f81] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:0b.1: [8086:6f36] type 00 class 0x110100
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:0b.2: [8086:6f37] type 00 class 0x110100
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:0b.3: [8086:6f76] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:0c.0: [8086:6fe0] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:0c.1: [8086:6fe1] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:0c.2: [8086:6fe2] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:0c.3: [8086:6fe3] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:0f.0: [8086:6ff8] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:0f.4: [8086:6ffc] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:0f.5: [8086:6ffd] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:0f.6: [8086:6ffe] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:10.0: [8086:6f1d] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:10.1: [8086:6f34] type 00 class 0x110100
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:10.5: [8086:6f1e] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:10.6: [8086:6f7d] type 00 class 0x110100
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:10.7: [8086:6f1f] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:12.0: [8086:6fa0] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:12.1: [8086:6f30] type 00 class 0x110100
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:13.0: [8086:6fa8] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:13.1: [8086:6f71] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:13.2: [8086:6faa] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:13.3: [8086:6fab] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:13.4: [8086:6fac] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:13.5: [8086:6fad] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:13.6: [8086:6fae] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:13.7: [8086:6faf] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:14.0: [8086:6fb0] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:14.1: [8086:6fb1] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:14.2: [8086:6fb2] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:14.3: [8086:6fb3] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:14.4: [8086:6fbc] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:14.5: [8086:6fbd] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:14.6: [8086:6fbe] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:14.7: [8086:6fbf] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:15.0: [8086:6fb4] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:15.1: [8086:6fb5] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:15.2: [8086:6fb6] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:15.3: [8086:6fb7] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:1e.0: [8086:6f98] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:1e.1: [8086:6f99] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:1e.2: [8086:6f9a] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:1e.3: [8086:6fc0] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:1e.4: [8086:6f9c] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:1f.0: [8086:6f88] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:ff:1f.2: [8086:6f8a] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
Sep 16 11:55:06 oob-pr10-y1 kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
Sep 16 11:55:06 oob-pr10-y1 kernel: acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug PME AER LTR]
Sep 16 11:55:06 oob-pr10-y1 kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PCIeCapability]
Sep 16 11:55:06 oob-pr10-y1 kernel: acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
Sep 16 11:55:06 oob-pr10-y1 kernel: PCI host bridge to bus 0000:00
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:00: root bus resource [io  0x1000-0xffff window]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:00: root bus resource [mem 0x90000000-0xfbffbfff window]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:00: root bus resource [bus 00-fe]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:00.0: [8086:6f00] type 00 class 0x060000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:01.0: [8086:6f02] type 01 class 0x060400
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:01.1: [8086:6f03] type 01 class 0x060400
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:02.0: [8086:6f04] type 01 class 0x060400
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:02.2: [8086:6f06] type 01 class 0x060400
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:03.0: [8086:6f08] type 01 class 0x060400
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:03.2: [8086:6f0a] type 01 class 0x060400
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:05.0: [8086:6f28] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:05.1: [8086:6f29] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:05.2: [8086:6f2a] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:14.0: [8086:8c31] type 00 class 0x0c0330
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:14.0: reg 0x10: [mem 0xfb800000-0xfb80ffff 64bit]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:16.0: [8086:8c3a] type 00 class 0x078000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:16.0: reg 0x10: [mem 0xfb816000-0xfb81600f 64bit]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:16.1: [8086:8c3b] type 00 class 0x078000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:16.1: reg 0x10: [mem 0xfb815000-0xfb81500f 64bit]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1a.0: [8086:8c2d] type 00 class 0x0c0320
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1a.0: reg 0x10: [mem 0xfb813000-0xfb8133ff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.0: [8086:8c10] type 01 class 0x060400
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.1: [8086:8c12] type 01 class 0x060400
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.3: [8086:8c16] type 01 class 0x060400
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.4: [8086:8c18] type 01 class 0x060400
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1d.0: [8086:8c26] type 00 class 0x0c0320
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1d.0: reg 0x10: [mem 0xfb812000-0xfb8123ff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1f.0: [8086:8c54] type 00 class 0x060100
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1f.3: [8086:8c22] type 00 class 0x0c0500
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xfb811000-0xfb8110ff 64bit]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1f.3: reg 0x20: [io  0xf000-0xf01f]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1f.6: [8086:8c24] type 00 class 0x118000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1f.6: reg 0x10: [mem 0xfb810000-0xfb810fff 64bit]
Sep 16 11:55:06 oob-pr10-y1 kernel: acpiphp: Slot [0] registered
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:01:00.0: [8086:f1a5] type 00 class 0x010802
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:01:00.0: reg 0x10: [mem 0xfb700000-0xfb703fff 64bit]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:01.0:   bridge window [mem 0xfb700000-0xfb7fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:01.1: PCI bridge to [bus 02]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:03:00.0: [8086:6f50] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:03:00.0: reg 0x10: [mem 0xfb606000-0xfb607fff 64bit]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:03:00.1: [8086:6f51] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:03:00.1: reg 0x10: [mem 0xfb604000-0xfb605fff 64bit]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:03:00.2: [8086:6f52] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:03:00.2: reg 0x10: [mem 0xfb602000-0xfb603fff 64bit]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:03:00.3: [8086:6f53] type 00 class 0x088000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:03:00.3: reg 0x10: [mem 0xfb600000-0xfb601fff 64bit]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:02.0: PCI bridge to [bus 03]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:02.0:   bridge window [mem 0xfb600000-0xfb6fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:04:00.0: [8086:15ac] type 00 class 0x020000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:04:00.0: reg 0x10: [mem 0xfbc00000-0xfbdfffff 64bit pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:04:00.0: reg 0x20: [mem 0xfbe04000-0xfbe07fff 64bit pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:04:00.0: reg 0x30: [mem 0xfb580000-0xfb5fffff pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:04:00.0: reg 0x184: [mem 0x00000000-0x00003fff 64bit]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:04:00.0: VF(n) BAR0 space: [mem 0x00000000-0x000fffff 64bit] (contains BAR0 for 64 VFs)
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:04:00.0: reg 0x190: [mem 0x00000000-0x00003fff 64bit]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:04:00.0: VF(n) BAR3 space: [mem 0x00000000-0x000fffff 64bit] (contains BAR3 for 64 VFs)
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:04:00.1: [8086:15ac] type 00 class 0x020000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:04:00.1: reg 0x10: [mem 0xfba00000-0xfbbfffff 64bit pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:04:00.1: reg 0x20: [mem 0xfbe00000-0xfbe03fff 64bit pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:04:00.1: reg 0x30: [mem 0xfb500000-0xfb57ffff pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:04:00.1: PME# supported from D0 D3hot D3cold
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:04:00.1: reg 0x184: [mem 0x00000000-0x00003fff 64bit]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:04:00.1: VF(n) BAR0 space: [mem 0x00000000-0x000fffff 64bit] (contains BAR0 for 64 VFs)
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:04:00.1: reg 0x190: [mem 0x00000000-0x00003fff 64bit]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:04:00.1: VF(n) BAR3 space: [mem 0x00000000-0x000fffff 64bit] (contains BAR3 for 64 VFs)
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:02.2: PCI bridge to [bus 04]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:02.2:   bridge window [mem 0xfb500000-0xfb5fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:02.2:   bridge window [mem 0xfba00000-0xfbefffff 64bit pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:05:00.0: [10b5:8112] type 01 class 0x060400
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:05:00.0: enabling Extended Tags
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:03.0: PCI bridge to [bus 05-06]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:03.0:   bridge window [io  0xe000-0xefff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:03.0:   bridge window [mem 0xfb400000-0xfb4fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:06: extended config space not accessible
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:06:00.0: [1415:9501] type 00 class 0x070006
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:06:00.0: reg 0x10: [io  0xe0e0-0xe0ff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:06:00.0: reg 0x14: [mem 0xfb407000-0xfb407fff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:06:00.0: reg 0x18: [io  0xe0c0-0xe0df]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:06:00.0: reg 0x1c: [mem 0xfb406000-0xfb406fff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:06:00.0: supports D2
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:06:00.0: PME# supported from D0 D2 D3hot
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:06:00.1: [1415:9500] type 00 class 0x068000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:06:00.1: reg 0x10: [io  0xe0a0-0xe0bf]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:06:00.1: reg 0x14: [mem 0xfb405000-0xfb405fff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:06:00.1: reg 0x18: [io  0xe080-0xe09f]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:06:00.1: reg 0x1c: [mem 0xfb404000-0xfb404fff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:06:00.1: supports D2
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:06:00.1: PME# supported from D0 D2 D3hot
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:06:01.0: [1415:9501] type 00 class 0x070006
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:06:01.0: reg 0x10: [io  0xe060-0xe07f]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:06:01.0: reg 0x14: [mem 0xfb403000-0xfb403fff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:06:01.0: reg 0x18: [io  0xe040-0xe05f]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:06:01.0: reg 0x1c: [mem 0xfb402000-0xfb402fff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:06:01.0: supports D2
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:06:01.0: PME# supported from D0 D2 D3hot
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:06:01.1: [1415:9500] type 00 class 0x068000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:06:01.1: reg 0x10: [io  0xe020-0xe03f]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:06:01.1: reg 0x14: [mem 0xfb401000-0xfb401fff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:06:01.1: reg 0x18: [io  0xe000-0xe01f]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:06:01.1: reg 0x1c: [mem 0xfb400000-0xfb400fff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:06:01.1: supports D2
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:06:01.1: PME# supported from D0 D2 D3hot
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:05:00.0: PCI bridge to [bus 06]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:05:00.0:   bridge window [io  0xe000-0xefff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:05:00.0:   bridge window [mem 0xfb400000-0xfb4fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:03.2: PCI bridge to [bus 07]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:08:00.0: [8086:1533] type 00 class 0x020000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:08:00.0: reg 0x10: [mem 0xfb300000-0xfb37ffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:08:00.0: reg 0x18: [io  0xd000-0xd01f]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:08:00.0: reg 0x1c: [mem 0xfb380000-0xfb383fff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:08:00.0: PME# supported from D0 D3hot D3cold
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.0: PCI bridge to [bus 08]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.0:   bridge window [io  0xd000-0xdfff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.0:   bridge window [mem 0xfb300000-0xfb3fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:09:00.0: [8086:1533] type 00 class 0x020000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:09:00.0: reg 0x10: [mem 0xfb200000-0xfb27ffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:09:00.0: reg 0x18: [io  0xc000-0xc01f]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:09:00.0: reg 0x1c: [mem 0xfb280000-0xfb283fff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:09:00.0: PME# supported from D0 D3hot D3cold
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.1: PCI bridge to [bus 09]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.1:   bridge window [io  0xc000-0xcfff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.1:   bridge window [mem 0xfb200000-0xfb2fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0a:00.0: [1a03:1150] type 01 class 0x060400
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0a:00.0: enabling Extended Tags
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0a:00.0: supports D1 D2
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.3: PCI bridge to [bus 0a-0b]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.3:   bridge window [io  0xb000-0xbfff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.3:   bridge window [mem 0xfa000000-0xfb0fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:0b: extended config space not accessible
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0b:00.0: [1a03:2000] type 00 class 0x030000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0b:00.0: reg 0x10: [mem 0xfa000000-0xfaffffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0b:00.0: reg 0x14: [mem 0xfb000000-0xfb01ffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0b:00.0: reg 0x18: [io  0xb000-0xb07f]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0b:00.0: BAR 0: assigned to efifb
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0b:00.0: supports D1 D2
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0b:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0a:00.0: PCI bridge to [bus 0b]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0a:00.0:   bridge window [io  0xb000-0xbfff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0a:00.0:   bridge window [mem 0xfa000000-0xfb0fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.0: [8086:1521] type 00 class 0x020000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.0: reg 0x10: [mem 0xfb160000-0xfb17ffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.0: reg 0x18: [io  0xa060-0xa07f]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.0: reg 0x1c: [mem 0xfb18c000-0xfb18ffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.0: PME# supported from D0 D3hot D3cold
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.0: reg 0x184: [mem 0x00000000-0x00003fff 64bit pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.0: VF(n) BAR0 space: [mem 0x00000000-0x0001ffff 64bit pref] (contains BAR0 for 8 VFs)
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.0: reg 0x190: [mem 0x00000000-0x00003fff 64bit pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.0: VF(n) BAR3 space: [mem 0x00000000-0x0001ffff 64bit pref] (contains BAR3 for 8 VFs)
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.1: [8086:1521] type 00 class 0x020000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.1: reg 0x10: [mem 0xfb140000-0xfb15ffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.1: reg 0x18: [io  0xa040-0xa05f]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.1: reg 0x1c: [mem 0xfb188000-0xfb18bfff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.1: PME# supported from D0 D3hot D3cold
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.1: reg 0x184: [mem 0x00000000-0x00003fff 64bit pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.1: VF(n) BAR0 space: [mem 0x00000000-0x0001ffff 64bit pref] (contains BAR0 for 8 VFs)
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.1: reg 0x190: [mem 0x00000000-0x00003fff 64bit pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.1: VF(n) BAR3 space: [mem 0x00000000-0x0001ffff 64bit pref] (contains BAR3 for 8 VFs)
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.2: [8086:1521] type 00 class 0x020000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.2: reg 0x10: [mem 0xfb120000-0xfb13ffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.2: reg 0x18: [io  0xa020-0xa03f]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.2: reg 0x1c: [mem 0xfb184000-0xfb187fff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.2: PME# supported from D0 D3hot D3cold
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.2: reg 0x184: [mem 0x00000000-0x00003fff 64bit pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.2: VF(n) BAR0 space: [mem 0x00000000-0x0001ffff 64bit pref] (contains BAR0 for 8 VFs)
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.2: reg 0x190: [mem 0x00000000-0x00003fff 64bit pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.2: VF(n) BAR3 space: [mem 0x00000000-0x0001ffff 64bit pref] (contains BAR3 for 8 VFs)
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.3: [8086:1521] type 00 class 0x020000
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.3: reg 0x10: [mem 0xfb100000-0xfb11ffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.3: reg 0x18: [io  0xa000-0xa01f]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.3: reg 0x1c: [mem 0xfb180000-0xfb183fff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.3: PME# supported from D0 D3hot D3cold
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.3: reg 0x184: [mem 0x00000000-0x00003fff 64bit pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.3: VF(n) BAR0 space: [mem 0x00000000-0x0001ffff 64bit pref] (contains BAR0 for 8 VFs)
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.3: reg 0x190: [mem 0x00000000-0x00003fff 64bit pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.3: VF(n) BAR3 space: [mem 0x00000000-0x0001ffff 64bit pref] (contains BAR3 for 8 VFs)
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.4: PCI bridge to [bus 0c]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.4:   bridge window [io  0xa000-0xafff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.4:   bridge window [mem 0xfb100000-0xfb1fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.4: bridge has subordinate 0c but max busn 0d
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:00: on NUMA node 0
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 10 11 12)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 *11 12)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12) *0, disabled.
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12) *0, disabled.
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12) *0, disabled.
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 11 12) *0, disabled.
Sep 16 11:55:06 oob-pr10-y1 kernel: iommu: Default domain type: Translated 
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0b:00.0: vgaarb: setting as boot VGA device
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0b:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0b:00.0: vgaarb: bridge control possible
Sep 16 11:55:06 oob-pr10-y1 kernel: vgaarb: loaded
Sep 16 11:55:06 oob-pr10-y1 kernel: pps_core: LinuxPPS API ver. 1 registered
Sep 16 11:55:06 oob-pr10-y1 kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Sep 16 11:55:06 oob-pr10-y1 kernel: PTP clock support registered
Sep 16 11:55:06 oob-pr10-y1 kernel: EDAC MC: Ver: 3.0.0
Sep 16 11:55:06 oob-pr10-y1 kernel: Registered efivars operations
Sep 16 11:55:06 oob-pr10-y1 kernel: PCI: Using ACPI for IRQ routing
Sep 16 11:55:06 oob-pr10-y1 kernel: PCI: pci_cache_line_size set to 64 bytes
Sep 16 11:55:06 oob-pr10-y1 kernel: e820: reserve RAM buffer [mem 0x795d5000-0x7bffffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: e820: reserve RAM buffer [mem 0x7989f000-0x7bffffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: e820: reserve RAM buffer [mem 0x7bdb2000-0x7bffffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
Sep 16 11:55:06 oob-pr10-y1 kernel: hpet0: 8 comparators, 64-bit 14.318180 MHz counter
Sep 16 11:55:06 oob-pr10-y1 kernel: clocksource: Switched to clocksource tsc-early
Sep 16 11:55:06 oob-pr10-y1 kernel: VFS: Disk quotas dquot_6.6.0
Sep 16 11:55:06 oob-pr10-y1 kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Sep 16 11:55:06 oob-pr10-y1 kernel: AppArmor: AppArmor Filesystem Enabled
Sep 16 11:55:06 oob-pr10-y1 kernel: pnp: PnP ACPI init
Sep 16 11:55:06 oob-pr10-y1 kernel: pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
Sep 16 11:55:06 oob-pr10-y1 kernel: system 00:01: [io  0x0500-0x057f] has been reserved
Sep 16 11:55:06 oob-pr10-y1 kernel: system 00:01: [io  0x0400-0x047f] has been reserved
Sep 16 11:55:06 oob-pr10-y1 kernel: system 00:01: [io  0x0580-0x059f] has been reserved
Sep 16 11:55:06 oob-pr10-y1 kernel: system 00:01: [io  0x0600-0x061f] has been reserved
Sep 16 11:55:06 oob-pr10-y1 kernel: system 00:01: [io  0x0880-0x0883] has been reserved
Sep 16 11:55:06 oob-pr10-y1 kernel: system 00:01: [io  0x0800-0x081f] has been reserved
Sep 16 11:55:06 oob-pr10-y1 kernel: system 00:01: [mem 0xfed1c000-0xfed3ffff] could not be reserved
Sep 16 11:55:06 oob-pr10-y1 kernel: system 00:01: [mem 0xfed45000-0xfed8bfff] has been reserved
Sep 16 11:55:06 oob-pr10-y1 kernel: system 00:01: [mem 0xff000000-0xffffffff] has been reserved
Sep 16 11:55:06 oob-pr10-y1 kernel: system 00:01: [mem 0xfee00000-0xfeefffff] has been reserved
Sep 16 11:55:06 oob-pr10-y1 kernel: system 00:01: [mem 0xfed12000-0xfed1200f] has been reserved
Sep 16 11:55:06 oob-pr10-y1 kernel: system 00:01: [mem 0xfed12010-0xfed1201f] has been reserved
Sep 16 11:55:06 oob-pr10-y1 kernel: system 00:01: [mem 0xfed1b000-0xfed1bfff] has been reserved
Sep 16 11:55:06 oob-pr10-y1 kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Sep 16 11:55:06 oob-pr10-y1 kernel: system 00:02: [io  0x0a00-0x0a0f] has been reserved
Sep 16 11:55:06 oob-pr10-y1 kernel: system 00:02: [io  0x0a10-0x0a1f] has been reserved
Sep 16 11:55:06 oob-pr10-y1 kernel: system 00:02: [io  0x0a20-0x0a2f] has been reserved
Sep 16 11:55:06 oob-pr10-y1 kernel: system 00:02: [io  0x0a30-0x0a3f] has been reserved
Sep 16 11:55:06 oob-pr10-y1 kernel: system 00:02: [io  0x0a40-0x0a4f] has been reserved
Sep 16 11:55:06 oob-pr10-y1 kernel: system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
Sep 16 11:55:06 oob-pr10-y1 kernel: pnp 00:03: [dma 0 disabled]
Sep 16 11:55:06 oob-pr10-y1 kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0501 (active)
Sep 16 11:55:06 oob-pr10-y1 kernel: pnp 00:04: [dma 0 disabled]
Sep 16 11:55:06 oob-pr10-y1 kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active)
Sep 16 11:55:06 oob-pr10-y1 kernel: pnp: PnP ACPI: found 5 devices
Sep 16 11:55:06 oob-pr10-y1 kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Sep 16 11:55:06 oob-pr10-y1 kernel: NET: Registered protocol family 2
Sep 16 11:55:06 oob-pr10-y1 kernel: tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
Sep 16 11:55:06 oob-pr10-y1 kernel: TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
Sep 16 11:55:06 oob-pr10-y1 kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
Sep 16 11:55:06 oob-pr10-y1 kernel: TCP: Hash tables configured (established 65536 bind 65536)
Sep 16 11:55:06 oob-pr10-y1 kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
Sep 16 11:55:06 oob-pr10-y1 kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
Sep 16 11:55:06 oob-pr10-y1 kernel: NET: Registered protocol family 1
Sep 16 11:55:06 oob-pr10-y1 kernel: NET: Registered protocol family 44
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:00: max bus depth: 2 pci_try_num: 3
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.4: BAR 15: assigned [mem 0x90000000-0x900fffff 64bit pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:01.0:   bridge window [mem 0xfb700000-0xfb7fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:01.1: PCI bridge to [bus 02]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:02.0: PCI bridge to [bus 03]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:02.0:   bridge window [mem 0xfb600000-0xfb6fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:04:00.0: BAR 7: no space for [mem size 0x00100000 64bit]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:04:00.0: BAR 7: failed to assign [mem size 0x00100000 64bit]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:04:00.0: BAR 10: no space for [mem size 0x00100000 64bit]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:04:00.0: BAR 10: failed to assign [mem size 0x00100000 64bit]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:04:00.1: BAR 7: no space for [mem size 0x00100000 64bit]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:04:00.1: BAR 7: failed to assign [mem size 0x00100000 64bit]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:04:00.1: BAR 10: no space for [mem size 0x00100000 64bit]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:04:00.1: BAR 10: failed to assign [mem size 0x00100000 64bit]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:02.2: PCI bridge to [bus 04]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:02.2:   bridge window [mem 0xfb500000-0xfb5fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:02.2:   bridge window [mem 0xfba00000-0xfbefffff 64bit pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:05:00.0: PCI bridge to [bus 06]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:05:00.0:   bridge window [io  0xe000-0xefff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:05:00.0:   bridge window [mem 0xfb400000-0xfb4fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:03.0: PCI bridge to [bus 05-06]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:03.0:   bridge window [io  0xe000-0xefff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:03.0:   bridge window [mem 0xfb400000-0xfb4fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:03.2: PCI bridge to [bus 07]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.0: PCI bridge to [bus 08]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.0:   bridge window [io  0xd000-0xdfff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.0:   bridge window [mem 0xfb300000-0xfb3fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.1: PCI bridge to [bus 09]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.1:   bridge window [io  0xc000-0xcfff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.1:   bridge window [mem 0xfb200000-0xfb2fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0a:00.0: PCI bridge to [bus 0b]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0a:00.0:   bridge window [io  0xb000-0xbfff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0a:00.0:   bridge window [mem 0xfa000000-0xfb0fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.3: PCI bridge to [bus 0a-0b]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.3:   bridge window [io  0xb000-0xbfff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.3:   bridge window [mem 0xfa000000-0xfb0fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.0: BAR 7: assigned [mem 0x90000000-0x9001ffff 64bit pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.0: BAR 10: assigned [mem 0x90020000-0x9003ffff 64bit pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.1: BAR 7: assigned [mem 0x90040000-0x9005ffff 64bit pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.1: BAR 10: assigned [mem 0x90060000-0x9007ffff 64bit pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.2: BAR 7: assigned [mem 0x90080000-0x9009ffff 64bit pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.2: BAR 10: assigned [mem 0x900a0000-0x900bffff 64bit pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.3: BAR 7: assigned [mem 0x900c0000-0x900dffff 64bit pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0c:00.3: BAR 10: assigned [mem 0x900e0000-0x900fffff 64bit pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.4: PCI bridge to [bus 0c]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.4:   bridge window [io  0xa000-0xafff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.4:   bridge window [mem 0xfb100000-0xfb1fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.4:   bridge window [mem 0x90000000-0x900fffff 64bit pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:00: No. 2 try to assign unassigned res
Sep 16 11:55:06 oob-pr10-y1 kernel: release child resource [mem 0xfb500000-0xfb57ffff pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: release child resource [mem 0xfb580000-0xfb5fffff pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:02.2: resource 14 [mem 0xfb500000-0xfb5fffff] released
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:02.2: PCI bridge to [bus 04]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:02.2: BAR 14: assigned [mem 0x90100000-0x905fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:01.0:   bridge window [mem 0xfb700000-0xfb7fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:01.1: PCI bridge to [bus 02]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:02.0: PCI bridge to [bus 03]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:02.0:   bridge window [mem 0xfb600000-0xfb6fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:04:00.0: BAR 6: assigned [mem 0x90100000-0x9017ffff pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:04:00.1: BAR 6: assigned [mem 0x90180000-0x901fffff pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:04:00.0: BAR 7: assigned [mem 0x90200000-0x902fffff 64bit]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:04:00.0: BAR 10: assigned [mem 0x90300000-0x903fffff 64bit]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:04:00.1: BAR 7: assigned [mem 0x90400000-0x904fffff 64bit]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:04:00.1: BAR 10: assigned [mem 0x90500000-0x905fffff 64bit]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:02.2: PCI bridge to [bus 04]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:02.2:   bridge window [mem 0x90100000-0x905fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:02.2:   bridge window [mem 0xfba00000-0xfbefffff 64bit pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:05:00.0: PCI bridge to [bus 06]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:05:00.0:   bridge window [io  0xe000-0xefff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:05:00.0:   bridge window [mem 0xfb400000-0xfb4fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:03.0: PCI bridge to [bus 05-06]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:03.0:   bridge window [io  0xe000-0xefff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:03.0:   bridge window [mem 0xfb400000-0xfb4fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:03.2: PCI bridge to [bus 07]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.0: PCI bridge to [bus 08]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.0:   bridge window [io  0xd000-0xdfff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.0:   bridge window [mem 0xfb300000-0xfb3fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.1: PCI bridge to [bus 09]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.1:   bridge window [io  0xc000-0xcfff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.1:   bridge window [mem 0xfb200000-0xfb2fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0a:00.0: PCI bridge to [bus 0b]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0a:00.0:   bridge window [io  0xb000-0xbfff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0a:00.0:   bridge window [mem 0xfa000000-0xfb0fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.3: PCI bridge to [bus 0a-0b]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.3:   bridge window [io  0xb000-0xbfff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.3:   bridge window [mem 0xfa000000-0xfb0fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.4: PCI bridge to [bus 0c]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.4:   bridge window [io  0xa000-0xafff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.4:   bridge window [mem 0xfb100000-0xfb1fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1c.4:   bridge window [mem 0x90000000-0x900fffff 64bit pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:00: resource 5 [io  0x1000-0xffff window]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:00: resource 7 [mem 0x90000000-0xfbffbfff window]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:01: resource 1 [mem 0xfb700000-0xfb7fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:03: resource 1 [mem 0xfb600000-0xfb6fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:04: resource 1 [mem 0x90100000-0x905fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:04: resource 2 [mem 0xfba00000-0xfbefffff 64bit pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:05: resource 0 [io  0xe000-0xefff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:05: resource 1 [mem 0xfb400000-0xfb4fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:06: resource 0 [io  0xe000-0xefff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:06: resource 1 [mem 0xfb400000-0xfb4fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:08: resource 0 [io  0xd000-0xdfff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:08: resource 1 [mem 0xfb300000-0xfb3fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:09: resource 0 [io  0xc000-0xcfff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:09: resource 1 [mem 0xfb200000-0xfb2fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:0a: resource 0 [io  0xb000-0xbfff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:0a: resource 1 [mem 0xfa000000-0xfb0fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:0b: resource 0 [io  0xb000-0xbfff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:0b: resource 1 [mem 0xfa000000-0xfb0fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:0c: resource 0 [io  0xa000-0xafff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:0c: resource 1 [mem 0xfb100000-0xfb1fffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci_bus 0000:0c: resource 2 [mem 0x90000000-0x900fffff 64bit pref]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:05.0: disabled boot interrupts on device [8086:6f28]
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1a.0: quirk_usb_early_handoff+0x0/0x643 took 22031 usecs
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:00:1d.0: quirk_usb_early_handoff+0x0/0x643 took 16170 usecs
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:01:00.0: CLS mismatch (64 != 32), using 64 bytes
Sep 16 11:55:06 oob-pr10-y1 kernel: pci 0000:0b:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Sep 16 11:55:06 oob-pr10-y1 kernel: Unpacking initramfs...
Sep 16 11:55:06 oob-pr10-y1 kernel: Freeing initrd memory: 11968K
Sep 16 11:55:06 oob-pr10-y1 kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Sep 16 11:55:06 oob-pr10-y1 kernel: software IO TLB: mapped [mem 0x70947000-0x74947000] (64MB)
Sep 16 11:55:06 oob-pr10-y1 kernel: Initialise system trusted keyrings
Sep 16 11:55:06 oob-pr10-y1 kernel: Key type blacklist registered
Sep 16 11:55:06 oob-pr10-y1 kernel: workingset: timestamp_bits=40 max_order=21 bucket_order=0
Sep 16 11:55:06 oob-pr10-y1 kernel: zbud: loaded
Sep 16 11:55:06 oob-pr10-y1 kernel: Key type asymmetric registered
Sep 16 11:55:06 oob-pr10-y1 kernel: Asymmetric key parser 'x509' registered
Sep 16 11:55:06 oob-pr10-y1 kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
Sep 16 11:55:06 oob-pr10-y1 kernel: io scheduler mq-deadline registered
Sep 16 11:55:06 oob-pr10-y1 kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Sep 16 11:55:06 oob-pr10-y1 kernel: efifb: probing for efifb
Sep 16 11:55:06 oob-pr10-y1 kernel: efifb: framebuffer at 0xfa000000, using 1920k, total 1920k
Sep 16 11:55:06 oob-pr10-y1 kernel: efifb: mode is 800x600x32, linelength=3200, pages=1
Sep 16 11:55:06 oob-pr10-y1 kernel: efifb: scrolling: redraw
Sep 16 11:55:06 oob-pr10-y1 kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Sep 16 11:55:06 oob-pr10-y1 kernel: Console: switching to colour frame buffer device 100x37
Sep 16 11:55:06 oob-pr10-y1 kernel: fb0: EFI VGA frame buffer device
Sep 16 11:55:06 oob-pr10-y1 kernel: intel_idle: MWAIT substates: 0x2120
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: \_SB_.SCK0.CP00: Found 1 idle states
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: \_SB_.SCK0.CP01: Found 1 idle states
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: \_SB_.SCK0.CP02: Found 1 idle states
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: \_SB_.SCK0.CP03: Found 1 idle states
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: \_SB_.SCK0.CP04: Found 1 idle states
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: \_SB_.SCK0.CP05: Found 1 idle states
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: \_SB_.SCK0.CP06: Found 1 idle states
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: \_SB_.SCK0.CP07: Found 1 idle states
Sep 16 11:55:06 oob-pr10-y1 kernel: intel_idle: ACPI _CST not found or not usable
Sep 16 11:55:06 oob-pr10-y1 kernel: intel_idle: v0.5.1 model 0x56
Sep 16 11:55:06 oob-pr10-y1 kernel: intel_idle: Local APIC timer is reliable in all C-states
Sep 16 11:55:06 oob-pr10-y1 kernel: ERST: Error Record Serialization Table (ERST) support is initialized.
Sep 16 11:55:06 oob-pr10-y1 kernel: pstore: Registered erst as persistent store backend
Sep 16 11:55:06 oob-pr10-y1 kernel: GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
Sep 16 11:55:06 oob-pr10-y1 kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Sep 16 11:55:06 oob-pr10-y1 kernel: 00:03: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
Sep 16 11:55:06 oob-pr10-y1 kernel: 00:04: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
Sep 16 11:55:06 oob-pr10-y1 kernel: serial 0000:06:00.0: enabling device (0100 -> 0103)
Sep 16 11:55:06 oob-pr10-y1 kernel: 0000:06:00.0: ttyS4 at I/O 0xe0e0 (irq = 16, base_baud = 115200) is a 16550A
Sep 16 11:55:06 oob-pr10-y1 kernel: 0000:06:00.0: ttyS5 at I/O 0xe0e8 (irq = 16, base_baud = 115200) is a 16550A
Sep 16 11:55:06 oob-pr10-y1 kernel: 0000:06:00.0: ttyS6 at I/O 0xe0f0 (irq = 16, base_baud = 115200) is a 16550A
Sep 16 11:55:06 oob-pr10-y1 kernel: 0000:06:00.0: ttyS7 at I/O 0xe0f8 (irq = 16, base_baud = 115200) is a 16550A
Sep 16 11:55:06 oob-pr10-y1 kernel: serial 0000:06:01.0: enabling device (0100 -> 0103)
Sep 16 11:55:06 oob-pr10-y1 kernel: 0000:06:01.0: ttyS8 at I/O 0xe060 (irq = 17, base_baud = 115200) is a 16550A
Sep 16 11:55:06 oob-pr10-y1 kernel: 0000:06:01.0: ttyS9 at I/O 0xe068 (irq = 17, base_baud = 115200) is a 16550A
Sep 16 11:55:06 oob-pr10-y1 kernel: 0000:06:01.0: ttyS10 at I/O 0xe070 (irq = 17, base_baud = 115200) is a 16550A
Sep 16 11:55:06 oob-pr10-y1 kernel: 0000:06:01.0: ttyS11 at I/O 0xe078 (irq = 17, base_baud = 115200) is a 16550A
Sep 16 11:55:06 oob-pr10-y1 kernel: Linux agpgart interface v0.103
Sep 16 11:55:06 oob-pr10-y1 kernel: AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
Sep 16 11:55:06 oob-pr10-y1 kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system
Sep 16 11:55:06 oob-pr10-y1 kernel: i8042: PNP: No PS/2 controller found.
Sep 16 11:55:06 oob-pr10-y1 kernel: mousedev: PS/2 mouse device common for all mice
Sep 16 11:55:06 oob-pr10-y1 kernel: rtc_cmos 00:00: RTC can wake from S4
Sep 16 11:55:06 oob-pr10-y1 kernel: rtc_cmos 00:00: registered as rtc0
Sep 16 11:55:06 oob-pr10-y1 kernel: rtc_cmos 00:00: setting system clock to 2020-09-16T09:55:01 UTC (1600250101)
Sep 16 11:55:06 oob-pr10-y1 kernel: rtc_cmos 00:00: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
Sep 16 11:55:06 oob-pr10-y1 kernel: intel_pstate: Intel P-state driver initializing
Sep 16 11:55:06 oob-pr10-y1 kernel: ledtrig-cpu: registered to indicate activity on CPUs
Sep 16 11:55:06 oob-pr10-y1 kernel: NET: Registered protocol family 10
Sep 16 11:55:06 oob-pr10-y1 kernel: Segment Routing with IPv6
Sep 16 11:55:06 oob-pr10-y1 kernel: mip6: Mobile IPv6
Sep 16 11:55:06 oob-pr10-y1 kernel: NET: Registered protocol family 17
Sep 16 11:55:06 oob-pr10-y1 kernel: mpls_gso: MPLS GSO support
Sep 16 11:55:06 oob-pr10-y1 kernel: microcode: sig=0x50663, pf=0x10, revision=0x7000019
Sep 16 11:55:06 oob-pr10-y1 kernel: microcode: Microcode Update Driver: v2.2.
Sep 16 11:55:06 oob-pr10-y1 kernel: IPI shorthand broadcast: enabled
Sep 16 11:55:06 oob-pr10-y1 kernel: sched_clock: Marking stable (3842615950, 976582690)->(6535220410, -1716021770)
Sep 16 11:55:06 oob-pr10-y1 kernel: registered taskstats version 1
Sep 16 11:55:06 oob-pr10-y1 kernel: Loading compiled-in X.509 certificates
Sep 16 11:55:06 oob-pr10-y1 kernel: zswap: loaded using pool lzo/zbud
Sep 16 11:55:06 oob-pr10-y1 kernel: pstore: Using crash dump compression: deflate
Sep 16 11:55:06 oob-pr10-y1 kernel: AppArmor: AppArmor sha1 policy hashing enabled
Sep 16 11:55:06 oob-pr10-y1 kernel: Freeing unused kernel image (initmem) memory: 1604K
Sep 16 11:55:06 oob-pr10-y1 kernel: Write protecting the kernel read-only data: 16384k
Sep 16 11:55:06 oob-pr10-y1 kernel: Freeing unused kernel image (text/rodata gap) memory: 2044K
Sep 16 11:55:06 oob-pr10-y1 kernel: Freeing unused kernel image (rodata/data gap) memory: 452K
Sep 16 11:55:06 oob-pr10-y1 kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Sep 16 11:55:06 oob-pr10-y1 kernel: x86/mm: Checking user space page tables
Sep 16 11:55:06 oob-pr10-y1 kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Sep 16 11:55:06 oob-pr10-y1 kernel: Run /init as init process
Sep 16 11:55:06 oob-pr10-y1 kernel:   with arguments:
Sep 16 11:55:06 oob-pr10-y1 kernel:     /init
Sep 16 11:55:06 oob-pr10-y1 kernel:     noplymouth
Sep 16 11:55:06 oob-pr10-y1 kernel:   with environment:
Sep 16 11:55:06 oob-pr10-y1 kernel:     HOME=/
Sep 16 11:55:06 oob-pr10-y1 kernel:     TERM=linux
Sep 16 11:55:06 oob-pr10-y1 kernel:     BOOT_IMAGE=/boot/vmlinuz-5.8.9
Sep 16 11:55:06 oob-pr10-y1 kernel:     biosdevname=0
Sep 16 11:55:06 oob-pr10-y1 kernel: process '/usr/bin/sh' started with executable stack
Sep 16 11:55:06 oob-pr10-y1 kernel: t10_pi: module verification failed: signature and/or required key missing - tainting kernel
Sep 16 11:55:06 oob-pr10-y1 kernel: dca service started, version 1.12.1
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042F conflicts with OpRegion 0x0000000000000428-0x000000000000042F (\GPE0) (20200528/utaddress-213)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x000000000000052C-0x000000000000052D (\GPIV) (20200528/utaddress-213)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Sep 16 11:55:06 oob-pr10-y1 kernel: lpc_ich: Resource conflict(s) found affecting gpio_ich
Sep 16 11:55:06 oob-pr10-y1 kernel: tsc: Refined TSC clocksource calibration: 2199.998 MHz
Sep 16 11:55:06 oob-pr10-y1 kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1fb63109b96, max_idle_ns: 440795265316 ns
Sep 16 11:55:06 oob-pr10-y1 kernel: clocksource: Switched to clocksource tsc
Sep 16 11:55:06 oob-pr10-y1 kernel: igb: Intel(R) Gigabit Ethernet Network Driver - version 5.6.0-k
Sep 16 11:55:06 oob-pr10-y1 kernel: igb: Copyright (c) 2007-2014 Intel Corporation.
Sep 16 11:55:06 oob-pr10-y1 kernel: i801_smbus 0000:00:1f.3: enabling device (0000 -> 0003)
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI: bus type USB registered
Sep 16 11:55:06 oob-pr10-y1 kernel: i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
Sep 16 11:55:06 oob-pr10-y1 kernel: usbcore: registered new interface driver usbfs
Sep 16 11:55:06 oob-pr10-y1 kernel: i2c i2c-0: 1/4 memory slots populated (from DMI)
Sep 16 11:55:06 oob-pr10-y1 kernel: usbcore: registered new interface driver hub
Sep 16 11:55:06 oob-pr10-y1 kernel: usbcore: registered new device driver usb
Sep 16 11:55:06 oob-pr10-y1 kernel: pps pps0: new PPS source ptp0
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:08:00.0: added PHC on eth0
Sep 16 11:55:06 oob-pr10-y1 kernel: ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 5.1.0-k
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:08:00.0: Intel(R) Gigabit Ethernet Network Connection
Sep 16 11:55:06 oob-pr10-y1 kernel: ixgbe: Copyright (c) 1999-2016 Intel Corporation.
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:08:00.0: eth0: (PCIe:2.5Gb/s:Width x1) ac:1f:6b:1e:53:d6
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:08:00.0: eth0: PBA No: 010C00-000
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:08:00.0: Using MSI-X interrupts. 4 rx queue(s), 4 tx queue(s)
Sep 16 11:55:06 oob-pr10-y1 kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI Warning: \_SB.PCI0.BR2C._PRT: Return Package has no elements (empty) (20200528/nsprepkg-96)
Sep 16 11:55:06 oob-pr10-y1 kernel: nvme nvme0: pci function 0000:01:00.0
Sep 16 11:55:06 oob-pr10-y1 kernel: ehci-pci: EHCI PCI platform driver
Sep 16 11:55:06 oob-pr10-y1 kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Sep 16 11:55:06 oob-pr10-y1 kernel: nvme nvme0: 8/0/0 default/read/poll queues
Sep 16 11:55:06 oob-pr10-y1 kernel:  nvme0n1: p1 p2 p3
Sep 16 11:55:06 oob-pr10-y1 kernel: pmd_set_huge: Cannot satisfy [mem 0xfbc00000-0xfbe00000] with a huge-page mapping due to MTRR override.
Sep 16 11:55:06 oob-pr10-y1 kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
Sep 16 11:55:06 oob-pr10-y1 kernel: pps pps1: new PPS source ptp1
Sep 16 11:55:06 oob-pr10-y1 kernel: xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000000009810
Sep 16 11:55:06 oob-pr10-y1 kernel: xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:09:00.0: added PHC on eth1
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:09:00.0: Intel(R) Gigabit Ethernet Network Connection
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:09:00.0: eth1: (PCIe:2.5Gb/s:Width x1) ac:1f:6b:1e:53:d7
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:09:00.0: eth1: PBA No: 010000-000
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:09:00.0: Using MSI-X interrupts. 4 rx queue(s), 4 tx queue(s)
Sep 16 11:55:06 oob-pr10-y1 kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.08
Sep 16 11:55:06 oob-pr10-y1 kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 16 11:55:06 oob-pr10-y1 kernel: usb usb1: Product: xHCI Host Controller
Sep 16 11:55:06 oob-pr10-y1 kernel: usb usb1: Manufacturer: Linux 5.8.9 xhci-hcd
Sep 16 11:55:06 oob-pr10-y1 kernel: usb usb1: SerialNumber: 0000:00:14.0
Sep 16 11:55:06 oob-pr10-y1 kernel: hub 1-0:1.0: USB hub found
Sep 16 11:55:06 oob-pr10-y1 kernel: hub 1-0:1.0: 8 ports detected
Sep 16 11:55:06 oob-pr10-y1 kernel: ehci-pci 0000:00:1a.0: EHCI Host Controller
Sep 16 11:55:06 oob-pr10-y1 kernel: ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 2
Sep 16 11:55:06 oob-pr10-y1 kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Sep 16 11:55:06 oob-pr10-y1 kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
Sep 16 11:55:06 oob-pr10-y1 kernel: ehci-pci 0000:00:1a.0: debug port 2
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:0c:00.0: added PHC on eth2
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:0c:00.0: Intel(R) Gigabit Ethernet Network Connection
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:0c:00.0: eth2: (PCIe:5.0Gb/s:Width x4) ac:1f:6b:1e:53:d8
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:0c:00.0: eth2: PBA No: 010000-000
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:0c:00.0: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s)
Sep 16 11:55:06 oob-pr10-y1 kernel: ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
Sep 16 11:55:06 oob-pr10-y1 kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
Sep 16 11:55:06 oob-pr10-y1 kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.08
Sep 16 11:55:06 oob-pr10-y1 kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 16 11:55:06 oob-pr10-y1 kernel: usb usb3: Product: xHCI Host Controller
Sep 16 11:55:06 oob-pr10-y1 kernel: usb usb3: Manufacturer: Linux 5.8.9 xhci-hcd
Sep 16 11:55:06 oob-pr10-y1 kernel: usb usb3: SerialNumber: 0000:00:14.0
Sep 16 11:55:06 oob-pr10-y1 kernel: ehci-pci 0000:00:1a.0: irq 18, io mem 0xfb813000
Sep 16 11:55:06 oob-pr10-y1 kernel: hub 3-0:1.0: USB hub found
Sep 16 11:55:06 oob-pr10-y1 kernel: hub 3-0:1.0: 6 ports detected
Sep 16 11:55:06 oob-pr10-y1 kernel: ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
Sep 16 11:55:06 oob-pr10-y1 kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.08
Sep 16 11:55:06 oob-pr10-y1 kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 16 11:55:06 oob-pr10-y1 kernel: usb usb2: Product: EHCI Host Controller
Sep 16 11:55:06 oob-pr10-y1 kernel: usb usb2: Manufacturer: Linux 5.8.9 ehci_hcd
Sep 16 11:55:06 oob-pr10-y1 kernel: usb usb2: SerialNumber: 0000:00:1a.0
Sep 16 11:55:06 oob-pr10-y1 kernel: hub 2-0:1.0: USB hub found
Sep 16 11:55:06 oob-pr10-y1 kernel: hub 2-0:1.0: 2 ports detected
Sep 16 11:55:06 oob-pr10-y1 kernel: ehci-pci 0000:00:1d.0: EHCI Host Controller
Sep 16 11:55:06 oob-pr10-y1 kernel: ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 4
Sep 16 11:55:06 oob-pr10-y1 kernel: ehci-pci 0000:00:1d.0: debug port 2
Sep 16 11:55:06 oob-pr10-y1 kernel: ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
Sep 16 11:55:06 oob-pr10-y1 kernel: ehci-pci 0000:00:1d.0: irq 18, io mem 0xfb812000
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:0c:00.1: added PHC on eth3
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:0c:00.1: Intel(R) Gigabit Ethernet Network Connection
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:0c:00.1: eth3: (PCIe:5.0Gb/s:Width x4) ac:1f:6b:1e:53:d9
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:0c:00.1: eth3: PBA No: 010000-000
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:0c:00.1: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s)
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:0c:00.2: added PHC on eth4
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:0c:00.2: Intel(R) Gigabit Ethernet Network Connection
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:0c:00.2: eth4: (PCIe:5.0Gb/s:Width x4) ac:1f:6b:1e:53:da
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:0c:00.2: eth4: PBA No: 010000-000
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:0c:00.2: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s)
Sep 16 11:55:06 oob-pr10-y1 kernel: usb 1-3: new high-speed USB device number 2 using xhci_hcd
Sep 16 11:55:06 oob-pr10-y1 kernel: ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
Sep 16 11:55:06 oob-pr10-y1 kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.08
Sep 16 11:55:06 oob-pr10-y1 kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 16 11:55:06 oob-pr10-y1 kernel: usb usb4: Product: EHCI Host Controller
Sep 16 11:55:06 oob-pr10-y1 kernel: usb usb4: Manufacturer: Linux 5.8.9 ehci_hcd
Sep 16 11:55:06 oob-pr10-y1 kernel: usb usb4: SerialNumber: 0000:00:1d.0
Sep 16 11:55:06 oob-pr10-y1 kernel: hub 4-0:1.0: USB hub found
Sep 16 11:55:06 oob-pr10-y1 kernel: hub 4-0:1.0: 2 ports detected
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:0c:00.3: added PHC on eth5
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:0c:00.3: Intel(R) Gigabit Ethernet Network Connection
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:0c:00.3: eth5: (PCIe:5.0Gb/s:Width x4) ac:1f:6b:1e:53:db
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:0c:00.3: eth5: PBA No: 010000-000
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:0c:00.3: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s)
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:09:00.0 eno2: renamed from eth1
Sep 16 11:55:06 oob-pr10-y1 kernel: usb 1-3: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=32.98
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:08:00.0 eno1: renamed from eth0
Sep 16 11:55:06 oob-pr10-y1 kernel: usb 1-3: New USB device strings: Mfr=0, Product=1, SerialNumber=0
Sep 16 11:55:06 oob-pr10-y1 kernel: usb 1-3: Product: USB2.0 Hub
Sep 16 11:55:06 oob-pr10-y1 kernel: usb 2-1: new high-speed USB device number 2 using ehci-pci
Sep 16 11:55:06 oob-pr10-y1 kernel: hub 1-3:1.0: USB hub found
Sep 16 11:55:06 oob-pr10-y1 kernel: hub 1-3:1.0: 4 ports detected
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:0c:00.0 eno3: renamed from eth2
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:0c:00.1 eno4: renamed from eth3
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:0c:00.2 eno5: renamed from eth4
Sep 16 11:55:06 oob-pr10-y1 kernel: igb 0000:0c:00.3 eno6: renamed from eth5
Sep 16 11:55:06 oob-pr10-y1 kernel: usb 1-4: new high-speed USB device number 3 using xhci_hcd
Sep 16 11:55:06 oob-pr10-y1 kernel: usb 2-1: New USB device found, idVendor=8087, idProduct=8008, bcdDevice= 0.05
Sep 16 11:55:06 oob-pr10-y1 kernel: usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Sep 16 11:55:06 oob-pr10-y1 kernel: hub 2-1:1.0: USB hub found
Sep 16 11:55:06 oob-pr10-y1 kernel: hub 2-1:1.0: 4 ports detected
Sep 16 11:55:06 oob-pr10-y1 kernel: ixgbe 0000:04:00.0: Multiqueue Enabled: Rx Queue count = 8, Tx Queue count = 8 XDP Queue count = 0
Sep 16 11:55:06 oob-pr10-y1 kernel: usb 4-1: new high-speed USB device number 2 using ehci-pci
Sep 16 11:55:06 oob-pr10-y1 kernel: usb 1-4: New USB device found, idVendor=0557, idProduct=7000, bcdDevice= 0.00
Sep 16 11:55:06 oob-pr10-y1 kernel: usb 1-4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Sep 16 11:55:06 oob-pr10-y1 kernel: hub 1-4:1.0: USB hub found
Sep 16 11:55:06 oob-pr10-y1 kernel: hub 1-4:1.0: 4 ports detected
Sep 16 11:55:06 oob-pr10-y1 kernel: ixgbe 0000:04:00.0: MAC: 5, PHY: 0, PBA No: 020B00-000
Sep 16 11:55:06 oob-pr10-y1 kernel: ixgbe 0000:04:00.0: ac:1f:6b:1e:56:2a
Sep 16 11:55:06 oob-pr10-y1 kernel: usb 4-1: New USB device found, idVendor=8087, idProduct=8000, bcdDevice= 0.05
Sep 16 11:55:06 oob-pr10-y1 kernel: usb 4-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Sep 16 11:55:06 oob-pr10-y1 kernel: usb 1-3.2: new high-speed USB device number 4 using xhci_hcd
Sep 16 11:55:06 oob-pr10-y1 kernel: hub 4-1:1.0: USB hub found
Sep 16 11:55:06 oob-pr10-y1 kernel: hub 4-1:1.0: 4 ports detected
Sep 16 11:55:06 oob-pr10-y1 kernel: usb 1-3.2: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=32.98
Sep 16 11:55:06 oob-pr10-y1 kernel: usb 1-3.2: New USB device strings: Mfr=0, Product=1, SerialNumber=0
Sep 16 11:55:06 oob-pr10-y1 kernel: usb 1-3.2: Product: USB2.0 Hub
Sep 16 11:55:06 oob-pr10-y1 kernel: hub 1-3.2:1.0: USB hub found
Sep 16 11:55:06 oob-pr10-y1 kernel: hub 1-3.2:1.0: 4 ports detected
Sep 16 11:55:06 oob-pr10-y1 kernel: usb 1-4.1: new low-speed USB device number 5 using xhci_hcd
Sep 16 11:55:06 oob-pr10-y1 kernel: ixgbe 0000:04:00.0: Intel(R) 10 Gigabit Network Connection
Sep 16 11:55:06 oob-pr10-y1 kernel: libphy: ixgbe-mdio: probed
Sep 16 11:55:06 oob-pr10-y1 kernel: ACPI Warning: \_SB.PCI0.BR2C._PRT: Return Package has no elements (empty) (20200528/nsprepkg-96)
Sep 16 11:55:06 oob-pr10-y1 kernel: usb 1-4.1: New USB device found, idVendor=0557, idProduct=2419, bcdDevice= 1.00
Sep 16 11:55:06 oob-pr10-y1 kernel: usb 1-4.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Sep 16 11:55:06 oob-pr10-y1 kernel: hid: raw HID events driver (C) Jiri Kosina
Sep 16 11:55:06 oob-pr10-y1 kernel: usbcore: registered new interface driver usbhid
Sep 16 11:55:06 oob-pr10-y1 kernel: usbhid: USB HID core driver
Sep 16 11:55:06 oob-pr10-y1 kernel: input: HID 0557:2419 as /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4.1/1-4.1:1.0/0003:0557:2419.0001/input/input0
Sep 16 11:55:06 oob-pr10-y1 kernel: hid-generic 0003:0557:2419.0001: input,hidraw0: USB HID v1.00 Keyboard [HID 0557:2419] on usb-0000:00:14.0-4.1/input0
Sep 16 11:55:06 oob-pr10-y1 kernel: input: HID 0557:2419 as /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4.1/1-4.1:1.1/0003:0557:2419.0002/input/input1
Sep 16 11:55:06 oob-pr10-y1 kernel: hid-generic 0003:0557:2419.0002: input,hidraw1: USB HID v1.00 Mouse [HID 0557:2419] on usb-0000:00:14.0-4.1/input1
Sep 16 11:55:06 oob-pr10-y1 kernel: ixgbe 0000:04:00.1: Multiqueue Enabled: Rx Queue count = 8, Tx Queue count = 8 XDP Queue count = 0
Sep 16 11:55:06 oob-pr10-y1 kernel: ixgbe 0000:04:00.1: MAC: 5, PHY: 19, SFP+: 12, PBA No: 020B00-000
Sep 16 11:55:06 oob-pr10-y1 kernel: ixgbe 0000:04:00.1: ac:1f:6b:1e:56:2b
Sep 16 11:55:06 oob-pr10-y1 kernel: ixgbe 0000:04:00.1: Intel(R) 10 Gigabit Network Connection
Sep 16 11:55:06 oob-pr10-y1 kernel: libphy: ixgbe-mdio: probed
Sep 16 11:55:06 oob-pr10-y1 kernel: ixgbe 0000:04:00.1 eno8: renamed from eth1
Sep 16 11:55:06 oob-pr10-y1 kernel: ixgbe 0000:04:00.0 eno7: renamed from eth0
Sep 16 11:55:06 oob-pr10-y1 kernel: device-mapper: uevent: version 1.0.3
Sep 16 11:55:06 oob-pr10-y1 kernel: device-mapper: ioctl: 4.42.0-ioctl (2020-02-27) initialised: dm-devel@redhat.com
Sep 16 11:55:06 oob-pr10-y1 kernel: PM: Image not found (code -22)
Sep 16 11:55:06 oob-pr10-y1 kernel: EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null)
Sep 16 11:55:06 oob-pr10-y1 kernel: Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
Sep 16 11:55:06 oob-pr10-y1 systemd[1]: Inserted module 'autofs4'
Sep 16 11:55:06 oob-pr10-y1 systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid)
Sep 16 11:55:06 oob-pr10-y1 systemd[1]: Detected architecture x86-64.
Sep 16 11:55:06 oob-pr10-y1 systemd[1]: Set hostname to <oob-pr10-y1>.
Sep 16 11:55:06 oob-pr10-y1 systemd[1]: Listening on initctl Compatibility Named Pipe.
Sep 16 11:55:06 oob-pr10-y1 systemd[1]: Listening on fsck to fsckd communication Socket.
Sep 16 11:55:06 oob-pr10-y1 systemd[1]: Condition check resulted in Arbitrary Executable File Formats File System Automount Point being skipped.
Sep 16 11:55:06 oob-pr10-y1 systemd[1]: Created slice system-postfix.slice.
Sep 16 11:55:06 oob-pr10-y1 systemd[1]: Listening on Journal Socket (/dev/log).
Sep 16 11:55:06 oob-pr10-y1 systemd[1]: Listening on udev Control Socket.
Sep 16 11:55:06 oob-pr10-y1 systemd[1]: Created slice system-serial\x2dmonitor.slice.
Sep 16 11:55:06 oob-pr10-y1 kernel: EXT4-fs (dm-0): re-mounted. Opts: discard,errors=remount-ro
Sep 16 11:55:07 oob-pr10-y1 kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
Sep 16 11:55:07 oob-pr10-y1 kernel: ACPI: Power Button [PWRB]
Sep 16 11:55:07 oob-pr10-y1 kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
Sep 16 11:55:07 oob-pr10-y1 kernel: ACPI: Power Button [PWRF]
Sep 16 11:55:07 oob-pr10-y1 kernel: IPMI message handler: version 39.2
Sep 16 11:55:07 oob-pr10-y1 kernel: ipmi device interface
Sep 16 11:55:07 oob-pr10-y1 kernel: ipmi_si: IPMI System Interface driver
Sep 16 11:55:07 oob-pr10-y1 kernel: ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
Sep 16 11:55:07 oob-pr10-y1 kernel: ipmi_platform: ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0
Sep 16 11:55:07 oob-pr10-y1 kernel: ipmi_si: Adding SMBIOS-specified kcs state machine
Sep 16 11:55:07 oob-pr10-y1 kernel: ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
Sep 16 11:55:07 oob-pr10-y1 kernel: ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca2] regsize 1 spacing 1 irq 0
Sep 16 11:55:07 oob-pr10-y1 kernel: ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
Sep 16 11:55:07 oob-pr10-y1 kernel: ipmi_si: Adding ACPI-specified kcs state machine
Sep 16 11:55:07 oob-pr10-y1 kernel: ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca2, slave address 0x20, irq 0
Sep 16 11:55:07 oob-pr10-y1 kernel: ioatdma: Intel(R) QuickData Technology Driver 5.00
Sep 16 11:55:07 oob-pr10-y1 kernel: ioatdma 0000:03:00.0: enabling device (0104 -> 0106)
Sep 16 11:55:07 oob-pr10-y1 kernel: iTCO_vendor_support: vendor-support=0
Sep 16 11:55:07 oob-pr10-y1 kernel: mei_me 0000:00:16.0: Device doesn't have valid ME Interface
Sep 16 11:55:07 oob-pr10-y1 kernel: ioatdma 0000:03:00.1: enabling device (0104 -> 0106)
Sep 16 11:55:07 oob-pr10-y1 kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
Sep 16 11:55:07 oob-pr10-y1 kernel: iTCO_wdt: Found a Lynx Point TCO device (Version=2, TCOBASE=0x0460)
Sep 16 11:55:07 oob-pr10-y1 kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
Sep 16 11:55:07 oob-pr10-y1 kernel: ioatdma 0000:03:00.2: enabling device (0104 -> 0106)
Sep 16 11:55:07 oob-pr10-y1 kernel: ioatdma 0000:03:00.3: enabling device (0104 -> 0106)
Sep 16 11:55:07 oob-pr10-y1 kernel: EFI Variables Facility v0.08 2004-May-17
Sep 16 11:55:07 oob-pr10-y1 kernel: checking generic (fa000000 1e0000) vs hw (fa000000 1000000)
Sep 16 11:55:07 oob-pr10-y1 kernel: fb0: switching to astdrmfb from EFI VGA
Sep 16 11:55:07 oob-pr10-y1 kernel: Console: switching to colour dummy device 80x25
Sep 16 11:55:07 oob-pr10-y1 kernel: [drm] Using P2A bridge for configuration
Sep 16 11:55:07 oob-pr10-y1 kernel: [drm] AST 2400 detected
Sep 16 11:55:07 oob-pr10-y1 kernel: [drm] Analog VGA only
Sep 16 11:55:07 oob-pr10-y1 kernel: [drm] dram MCLK=408 Mhz type=1 bus_width=16 size=01000000
Sep 16 11:55:07 oob-pr10-y1 kernel: [TTM] Zone  kernel: Available graphics memory: 4025316 KiB
Sep 16 11:55:07 oob-pr10-y1 kernel: [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
Sep 16 11:55:07 oob-pr10-y1 kernel: [TTM] Initializing pool allocator
Sep 16 11:55:07 oob-pr10-y1 kernel: [TTM] Initializing DMA pool allocator
Sep 16 11:55:07 oob-pr10-y1 kernel: [drm] Initialized ast 0.1.0 20120228 for 0000:0b:00.0 on minor 0
Sep 16 11:55:07 oob-pr10-y1 kernel: RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 655360 ms ovfl timer
Sep 16 11:55:07 oob-pr10-y1 kernel: RAPL PMU: hw unit of domain package 2^-14 Joules
Sep 16 11:55:07 oob-pr10-y1 kernel: RAPL PMU: hw unit of domain dram 2^-16 Joules
Sep 16 11:55:07 oob-pr10-y1 kernel: pstore: ignoring unexpected backend 'efi'
Sep 16 11:55:07 oob-pr10-y1 kernel: cryptd: max_cpu_qlen set to 1000
Sep 16 11:55:07 oob-pr10-y1 kernel: fbcon: astdrmfb (fb0) is primary device
Sep 16 11:55:07 oob-pr10-y1 kernel: AVX2 version of gcm_enc/dec engaged.
Sep 16 11:55:07 oob-pr10-y1 kernel: AES CTR mode by8 optimization enabled
Sep 16 11:55:07 oob-pr10-y1 kernel: Console: switching to colour frame buffer device 128x48
Sep 16 11:55:07 oob-pr10-y1 kernel: ast 0000:0b:00.0: fb0: astdrmfb frame buffer device
Sep 16 11:55:07 oob-pr10-y1 kernel: EDAC sbridge: Seeking for: PCI ID 8086:6fa0
Sep 16 11:55:07 oob-pr10-y1 kernel: EDAC sbridge: Seeking for: PCI ID 8086:6fa0
Sep 16 11:55:07 oob-pr10-y1 kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f60
Sep 16 11:55:07 oob-pr10-y1 kernel: EDAC sbridge: Seeking for: PCI ID 8086:6fa8
Sep 16 11:55:07 oob-pr10-y1 kernel: EDAC sbridge: Seeking for: PCI ID 8086:6fa8
Sep 16 11:55:07 oob-pr10-y1 kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f71
Sep 16 11:55:07 oob-pr10-y1 kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f71
Sep 16 11:55:07 oob-pr10-y1 kernel: EDAC sbridge: Seeking for: PCI ID 8086:6faa
Sep 16 11:55:07 oob-pr10-y1 kernel: EDAC sbridge: Seeking for: PCI ID 8086:6faa
Sep 16 11:55:07 oob-pr10-y1 kernel: EDAC sbridge: Seeking for: PCI ID 8086:6fab
Sep 16 11:55:07 oob-pr10-y1 kernel: EDAC sbridge: Seeking for: PCI ID 8086:6fab
Sep 16 11:55:07 oob-pr10-y1 kernel: EDAC sbridge: Seeking for: PCI ID 8086:6fac
Sep 16 11:55:07 oob-pr10-y1 kernel: EDAC sbridge: Seeking for: PCI ID 8086:6fac
Sep 16 11:55:07 oob-pr10-y1 kernel: EDAC sbridge: Seeking for: PCI ID 8086:6fad
Sep 16 11:55:07 oob-pr10-y1 kernel: EDAC sbridge: Seeking for: PCI ID 8086:6fad
Sep 16 11:55:07 oob-pr10-y1 kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f68
Sep 16 11:55:07 oob-pr10-y1 kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f79
Sep 16 11:55:07 oob-pr10-y1 kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f6a
Sep 16 11:55:07 oob-pr10-y1 kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f6b
Sep 16 11:55:07 oob-pr10-y1 kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f6c
Sep 16 11:55:07 oob-pr10-y1 kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f6d
Sep 16 11:55:07 oob-pr10-y1 kernel: EDAC sbridge: Seeking for: PCI ID 8086:6ffc
Sep 16 11:55:07 oob-pr10-y1 kernel: EDAC sbridge: Seeking for: PCI ID 8086:6ffc
Sep 16 11:55:07 oob-pr10-y1 kernel: EDAC sbridge: Seeking for: PCI ID 8086:6ffd
Sep 16 11:55:07 oob-pr10-y1 kernel: EDAC sbridge: Seeking for: PCI ID 8086:6ffd
Sep 16 11:55:07 oob-pr10-y1 kernel: EDAC sbridge: Seeking for: PCI ID 8086:6faf
Sep 16 11:55:07 oob-pr10-y1 kernel: EDAC sbridge: Seeking for: PCI ID 8086:6faf
Sep 16 11:55:07 oob-pr10-y1 kernel: EDAC MC0: Giving out device to module sb_edac controller Broadwell SrcID#0_Ha#0: DEV 0000:ff:12.0 (INTERRUPT)
Sep 16 11:55:07 oob-pr10-y1 kernel: EDAC sbridge:  Ver: 1.1.2 
Sep 16 11:55:07 oob-pr10-y1 kernel: intel_rapl_common: Found RAPL domain package
Sep 16 11:55:07 oob-pr10-y1 kernel: intel_rapl_common: Found RAPL domain dram
Sep 16 11:55:07 oob-pr10-y1 kernel: ipmi_si IPI0001:00: The BMC does not support clearing the recv irq bit, compensating, but the BMC needs to be fixed.
Sep 16 11:55:07 oob-pr10-y1 kernel: Adding 3997692k swap on /dev/mapper/vg00-swap_1.  Priority:-2 extents:1 across:3997692k SSFS
Sep 16 11:55:07 oob-pr10-y1 kernel: ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x002a7c, prod_id: 0x0921, dev_id: 0x20)
Sep 16 11:55:07 oob-pr10-y1 kernel: ipmi_si IPI0001:00: IPMI kcs interface initialized
Sep 16 11:55:07 oob-pr10-y1 kernel: ipmi_ssif: IPMI SSIF Interface driver
Sep 16 11:55:09 oob-pr10-y1 kernel: pps pps2: new PPS source ptp6
Sep 16 11:55:09 oob-pr10-y1 kernel: ixgbe 0000:04:00.1: registered PHC device on eno8
Sep 16 11:55:09 oob-pr10-y1 kernel: ixgbe 0000:04:00.1 eno8: detected SFP+: 12
Sep 16 11:55:09 oob-pr10-y1 kernel: ixgbe 0000:04:00.1 eno8: NIC Link is Up 1 Gbps, Flow Control: RX/TX
Sep 16 11:55:09 oob-pr10-y1 kernel: IPv6: ADDRCONF(NETDEV_CHANGE): eno8: link becomes ready
Sep 16 11:55:16 oob-pr10-y1 kernel: 8021q: 802.1Q VLAN Support v1.8
Sep 16 11:55:16 oob-pr10-y1 kernel: 8021q: adding VLAN 0 to HW filter on device eno1
Sep 16 11:55:16 oob-pr10-y1 kernel: 8021q: adding VLAN 0 to HW filter on device eno2
Sep 16 11:55:16 oob-pr10-y1 kernel: 8021q: adding VLAN 0 to HW filter on device eno8
Sep 16 11:55:16 oob-pr10-y1 kernel: br_vlan460: port 1(eno1) entered blocking state
Sep 16 11:55:16 oob-pr10-y1 kernel: br_vlan460: port 1(eno1) entered disabled state
Sep 16 11:55:16 oob-pr10-y1 kernel: device eno1 entered promiscuous mode
Sep 16 11:55:16 oob-pr10-y1 kernel: br_vlan460: port 2(eno2) entered blocking state
Sep 16 11:55:16 oob-pr10-y1 kernel: br_vlan460: port 2(eno2) entered disabled state
Sep 16 11:55:16 oob-pr10-y1 kernel: device eno2 entered promiscuous mode
Sep 16 11:55:16 oob-pr10-y1 kernel: br_vlan460: port 3(vlan460) entered blocking state
Sep 16 11:55:16 oob-pr10-y1 kernel: br_vlan460: port 3(vlan460) entered disabled state
Sep 16 11:55:16 oob-pr10-y1 kernel: device vlan460 entered promiscuous mode
Sep 16 11:55:16 oob-pr10-y1 kernel: device eno8 entered promiscuous mode
Sep 16 11:55:16 oob-pr10-y1 kernel: br_vlan460: port 3(vlan460) entered blocking state
Sep 16 11:55:16 oob-pr10-y1 kernel: br_vlan460: port 3(vlan460) entered forwarding state

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

* Re: boot interrupt quirk (also in 4.19.y) breaks serial ports (was: [PATCH v2 0/2] pci: Add boot interrupt quirk mechanism for Xeon chipsets)
  2020-09-16 10:12 ` boot interrupt quirk (also in 4.19.y) breaks serial ports (was: [PATCH v2 0/2] pci: Add boot interrupt quirk mechanism for Xeon chipsets) Stefan Bühler
@ 2020-11-25 11:54   ` Thomas Gleixner
  2020-11-25 13:41     ` Stefan Bühler
  2022-09-23 19:20   ` Grzegorz Halat
  1 sibling, 1 reply; 13+ messages in thread
From: Thomas Gleixner @ 2020-11-25 11:54 UTC (permalink / raw)
  To: Stefan Bühler, sean.v.kelley
  Cc: bhelgaas, bp, corbet, kar.hin.ong, linux-doc, linux-kernel,
	linux-pci, mingo, sassmann, x86, Greg Kroah-Hartman

Stefan,

On Wed, Sep 16 2020 at 12:12, Stefan Bühler wrote:

sorry for the delay. This fell through the cracks.

> this quirk breaks our serial ports PCIe card (i.e. we don't see any 
> output from the connected devices; no idea whether anything we send 
> reaches them):
>
> 05:00.0 PCI bridge: PLX Technology, Inc. PEX8112 x1 Lane PCI Express-to-PCI Bridge (rev aa)
> 06:00.0 Serial controller: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART) function 0 (Uart)
> 06:00.1 Bridge: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART) function 0 (Disabled)
> 06:01.0 Serial controller: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART) function 0 (Uart)
> 06:01.1 Bridge: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART)
> function 0 (Disabled)

Can you please provide the output of:

 for ID in 05:00.0 06:00.0 06:00.1 06:01.0 06:01.1; do lspci -s $ID -vvv; done

Thanks,

        tglx

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

* Re: boot interrupt quirk (also in 4.19.y) breaks serial ports (was: [PATCH v2 0/2] pci: Add boot interrupt quirk mechanism for Xeon chipsets)
  2020-11-25 11:54   ` Thomas Gleixner
@ 2020-11-25 13:41     ` Stefan Bühler
  2020-11-26 23:45       ` Thomas Gleixner
  0 siblings, 1 reply; 13+ messages in thread
From: Stefan Bühler @ 2020-11-25 13:41 UTC (permalink / raw)
  To: Thomas Gleixner, sean.v.kelley
  Cc: bhelgaas, bp, corbet, kar.hin.ong, linux-doc, linux-kernel,
	linux-pci, mingo, sassmann, x86, Greg Kroah-Hartman

[-- Attachment #1: Type: text/plain, Size: 1128 bytes --]

Hi tglx,

On 11/25/20 12:54 PM, Thomas Gleixner wrote:
> Stefan,
> 
> On Wed, Sep 16 2020 at 12:12, Stefan Bühler wrote:
> 
> sorry for the delay. This fell through the cracks.
> 
>> this quirk breaks our serial ports PCIe card (i.e. we don't see any 
>> output from the connected devices; no idea whether anything we send 
>> reaches them):
>>
>> 05:00.0 PCI bridge: PLX Technology, Inc. PEX8112 x1 Lane PCI Express-to-PCI Bridge (rev aa)
>> 06:00.0 Serial controller: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART) function 0 (Uart)
>> 06:00.1 Bridge: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART) function 0 (Disabled)
>> 06:01.0 Serial controller: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART) function 0 (Uart)
>> 06:01.1 Bridge: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART)
>> function 0 (Disabled)
> 
> Can you please provide the output of:
> 
>  for ID in 05:00.0 06:00.0 06:00.1 06:01.0 06:01.1; do lspci -s $ID -vvv; done
> 

See attachment.

Also I boot the affected systems now with "pci=noioapicquirk", which
"solves" the issue too (instead of patching the kernel).

cheers,
Stefan

[-- Attachment #2: oxford-serial-lspci.txt --]
[-- Type: text/plain, Size: 3721 bytes --]

05:00.0 PCI bridge: PLX Technology, Inc. PEX8112 x1 Lane PCI Express-to-PCI Bridge (rev aa) (prog-if 00 [Normal decode])
	Physical Slot: 1
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 32 bytes
	Interrupt: pin A routed to IRQ 16
	NUMA node: 0
	Bus: primary=05, secondary=06, subordinate=06, sec-latency=64
	I/O behind bridge: 0000e000-0000efff
	Memory behind bridge: fb400000-fb4fffff
	Prefetchable memory behind bridge: fff00000-000fffff
	Secondary status: 66MHz+ FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>

06:00.0 Serial controller: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART) function 0 (Uart) (prog-if 06 [16950])
	Subsystem: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART) function 0 (Uart)
	Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin A routed to IRQ 16
	NUMA node: 0
	Region 0: I/O ports at e0e0 [size=32]
	Region 1: Memory at fb407000 (32-bit, non-prefetchable) [size=4K]
	Region 2: I/O ports at e0c0 [size=32]
	Region 3: Memory at fb406000 (32-bit, non-prefetchable) [size=4K]
	Capabilities: <access denied>
	Kernel driver in use: serial

06:00.1 Bridge: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART) function 0 (Disabled)
	Subsystem: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART) function 0 (Disabled)
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	NUMA node: 0
	Region 0: I/O ports at e0a0 [disabled] [size=32]
	Region 1: Memory at fb405000 (32-bit, non-prefetchable) [disabled] [size=4K]
	Region 2: I/O ports at e080 [disabled] [size=32]
	Region 3: Memory at fb404000 (32-bit, non-prefetchable) [disabled] [size=4K]
	Capabilities: <access denied>

06:01.0 Serial controller: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART) function 0 (Uart) (prog-if 06 [16950])
	Subsystem: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART) function 0 (Uart)
	Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin A routed to IRQ 17
	NUMA node: 0
	Region 0: I/O ports at e060 [size=32]
	Region 1: Memory at fb403000 (32-bit, non-prefetchable) [size=4K]
	Region 2: I/O ports at e040 [size=32]
	Region 3: Memory at fb402000 (32-bit, non-prefetchable) [size=4K]
	Capabilities: <access denied>
	Kernel driver in use: serial

06:01.1 Bridge: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART) function 0 (Disabled)
	Subsystem: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART) function 0 (Disabled)
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	NUMA node: 0
	Region 0: I/O ports at e020 [disabled] [size=32]
	Region 1: Memory at fb401000 (32-bit, non-prefetchable) [disabled] [size=4K]
	Region 2: I/O ports at e000 [disabled] [size=32]
	Region 3: Memory at fb400000 (32-bit, non-prefetchable) [disabled] [size=4K]
	Capabilities: <access denied>


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

* Re: boot interrupt quirk (also in 4.19.y) breaks serial ports (was: [PATCH v2 0/2] pci: Add boot interrupt quirk mechanism for Xeon chipsets)
  2020-11-25 13:41     ` Stefan Bühler
@ 2020-11-26 23:45       ` Thomas Gleixner
  2020-11-27  9:17         ` Stefan Bühler
  0 siblings, 1 reply; 13+ messages in thread
From: Thomas Gleixner @ 2020-11-26 23:45 UTC (permalink / raw)
  To: Stefan Bühler, sean.v.kelley
  Cc: bhelgaas, bp, corbet, kar.hin.ong, linux-doc, linux-kernel,
	linux-pci, mingo, sassmann, x86, Greg Kroah-Hartman

Stefan,

On Wed, Nov 25 2020 at 14:41, Stefan Bühler wrote:
> On 11/25/20 12:54 PM, Thomas Gleixner wrote:
>> On Wed, Sep 16 2020 at 12:12, Stefan Bühler wrote:
>> Can you please provide the output of:
>> 
>>  for ID in 05:00.0 06:00.0 06:00.1 06:01.0 06:01.1; do lspci -s $ID -vvv; done
>
> See attachment.
>
> Also I boot the affected systems now with "pci=noioapicquirk", which
> "solves" the issue too (instead of patching the kernel).

Yes, it skips the quirks.

> 05:00.0 PCI bridge: PLX Technology, Inc. PEX8112 x1 Lane PCI Express-to-PCI Bridge (rev aa) (prog-if 00 [Normal decode])
> 	Physical Slot: 1
> 	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
> 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
> 	Latency: 0, Cache Line Size: 32 bytes
> 	Interrupt: pin A routed to IRQ 16
> 	NUMA node: 0
> 	Bus: primary=05, secondary=06, subordinate=06, sec-latency=64
> 	I/O behind bridge: 0000e000-0000efff
> 	Memory behind bridge: fb400000-fb4fffff
> 	Prefetchable memory behind bridge: fff00000-000fffff
> 	Secondary status: 66MHz+ FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
> 	BridgeCtl: Parity- SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
> 		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
> 	Capabilities: <access denied>

Can you please run this as root so the Capabilities are accessible?

Thanks,

        tglx

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

* Re: boot interrupt quirk (also in 4.19.y) breaks serial ports (was: [PATCH v2 0/2] pci: Add boot interrupt quirk mechanism for Xeon chipsets)
  2020-11-26 23:45       ` Thomas Gleixner
@ 2020-11-27  9:17         ` Stefan Bühler
  2020-11-30 10:48           ` Thomas Gleixner
  0 siblings, 1 reply; 13+ messages in thread
From: Stefan Bühler @ 2020-11-27  9:17 UTC (permalink / raw)
  To: Thomas Gleixner, sean.v.kelley
  Cc: bhelgaas, bp, corbet, kar.hin.ong, linux-doc, linux-kernel,
	linux-pci, mingo, sassmann, x86, Greg Kroah-Hartman

[-- Attachment #1: Type: text/plain, Size: 3146 bytes --]

Hi tglx,

On 11/27/20 12:45 AM, Thomas Gleixner wrote:
> Stefan,
> 
> On Wed, Nov 25 2020 at 14:41, Stefan Bühler wrote:
>> On 11/25/20 12:54 PM, Thomas Gleixner wrote:
>>> On Wed, Sep 16 2020 at 12:12, Stefan Bühler wrote:
>>> Can you please provide the output of:
>>>
>>>  for ID in 05:00.0 06:00.0 06:00.1 06:01.0 06:01.1; do lspci -s $ID -vvv; done
>>
>> 05:00.0 PCI bridge: PLX Technology, Inc. PEX8112 x1 Lane PCI Express-to-PCI Bridge (rev aa) (prog-if 00 [Normal decode])
>>      ...
>> 	Capabilities: <access denied>
> 
> Can you please run this as root so the Capabilities are accessible?

My bad, sorry. I did intend to run it as root, but should have checked
the output.  Again see attached file.


While we're at it: the EEPROM for the PEX8112 is:

00000000  5a 03 3c 00 10 00 00 00  00 00 00 00 b5 10 12 81  |Z.<.............|
00000010  64 00 20 00 00 00 00 01  04 00 01 00 0c 10 00 fe  |d. .............|
00000020  fe 03 20 10 f0 10 00 00  00 10 33 00 00 00 70 00  |.. .......3...p.|
00000030  00 00 11 00 48 00 00 00  00 00 34 00 50 00 00 00  |....H.....4.P...|
00000040  04 00 55 66 77 88                                 |..Ufw.|
00000046

(This is what the firmware tool provided to me writes, although I think 
the cards usually came pre-flashed with it.  They gave me the tool 
because on some cards the second function on OX16PCI954 was sometimes 
uninitialized, came up with device id 0x9511 "8-bit bus" 
(PCI_DEVICE_ID_OXSEMI_16PCI95N) and the kernel tries to treat it as UART 
too.)

I think some time ago I found a PDF to decode this here:
https://www.broadcom.com/products/pcie-switches-bridges/pcie-bridges/pex8112#documentation

But the broadcom site is completely broken right now (at least for me; 
there own search for "PEX 8112" links it, but then it says "not found").

Anyway, back then I decoded this to:

- `0x5A 0x03`: Magic Header, contains register and shared memory settings
- `0x003C` = 60 bytes for configs (10 registers):
  - `@0x0010`: `0x00000000` -- BAR0: Locate anywhere in 32-bit
  - `@0x0000`: `0x811210B5` -- Vendor `10B5`, Device `8112` (default)
  - `@0x0064`: `0x00000020` -- Device Capability: Enable "Support 8-bit Tag" field
  - `@0x0100`: `0x00010004` -- Power Budget Enhanced Capability Header (default)
  - `@0x100C`: `0x03FEFE00` -- PCI Control:
    - PCI-To-PCI Express Retry Count set to 0xFE (default: `0x80`)
    - PCI Express-to-PCI Retry Count set to 0xFE (default: `0x00`)
  - `@0x1020`: `0x000010F0` -- GPIO Control
    - GPIO[1-3] Output enable (GPIO[0] is Output enabled by default)
    - GPIO Diagnostic Select: `10b` (default: `01b`)
  - `@0x1000`: `0x00000033` -- Device Initialization (default)
  - `@0x0070`: `0x00110000` -- Link control: default
  - `@0x0048`: `0x00000000` -- Device-Specific Control (default 0)
  - `@0x0034`: `0x00000050` -- PCI Capability pointer `0x50` (default: `0x40`)
    - Skips (disables) Power Management Capability
    - Remaining: MSI and PCI Express
- `0x0004` bytes for shared memory:
  - `0x55`, `0x66`, `0x77`, `0x88`


TLDR: the most notable part probably being "disabling Power Management 
Capability" by the EEPROM.

cheers,
Stefan

[-- Attachment #2: oxford-serial-lspci.txt --]
[-- Type: text/plain, Size: 5194 bytes --]

05:00.0 PCI bridge: PLX Technology, Inc. PEX8112 x1 Lane PCI Express-to-PCI Bridge (rev aa) (prog-if 00 [Normal decode])
	Physical Slot: 1
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 32 bytes
	Interrupt: pin A routed to IRQ 16
	NUMA node: 0
	Bus: primary=05, secondary=06, subordinate=06, sec-latency=64
	I/O behind bridge: 0000e000-0000efff
	Memory behind bridge: fb400000-fb4fffff
	Prefetchable memory behind bridge: fff00000-000fffff
	Secondary status: 66MHz+ FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [50] MSI: Enable- Count=1/1 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [60] Express (v1) PCI-Express to PCI/PCI-X Bridge, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE- SlotPowerLimit 26.000W
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag+ PhantFunc- AuxPwr- NoSnoop- BrConfRtry-
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- UncorrErr+ FatalErr- UnsuppReq+ AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 2.5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <1us, L1 <16us
			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
	Capabilities: [100 v1] Power Budgeting <?>

06:00.0 Serial controller: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART) function 0 (Uart) (prog-if 06 [16950])
	Subsystem: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART) function 0 (Uart)
	Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin A routed to IRQ 16
	NUMA node: 0
	Region 0: I/O ports at e0e0 [size=32]
	Region 1: Memory at fb407000 (32-bit, non-prefetchable) [size=4K]
	Region 2: I/O ports at e0c0 [size=32]
	Region 3: Memory at fb406000 (32-bit, non-prefetchable) [size=4K]
	Capabilities: [40] Power Management version 1
		Flags: PMEClk- DSI- D1- D2+ AuxCurrent=0mA PME(D0+,D1-,D2+,D3hot+,D3cold-)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Kernel driver in use: serial

06:00.1 Bridge: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART) function 0 (Disabled)
	Subsystem: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART) function 0 (Disabled)
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	NUMA node: 0
	Region 0: I/O ports at e0a0 [disabled] [size=32]
	Region 1: Memory at fb405000 (32-bit, non-prefetchable) [disabled] [size=4K]
	Region 2: I/O ports at e080 [disabled] [size=32]
	Region 3: Memory at fb404000 (32-bit, non-prefetchable) [disabled] [size=4K]
	Capabilities: [40] Power Management version 1
		Flags: PMEClk- DSI- D1- D2+ AuxCurrent=0mA PME(D0+,D1-,D2+,D3hot+,D3cold-)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-

06:01.0 Serial controller: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART) function 0 (Uart) (prog-if 06 [16950])
	Subsystem: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART) function 0 (Uart)
	Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin A routed to IRQ 17
	NUMA node: 0
	Region 0: I/O ports at e060 [size=32]
	Region 1: Memory at fb403000 (32-bit, non-prefetchable) [size=4K]
	Region 2: I/O ports at e040 [size=32]
	Region 3: Memory at fb402000 (32-bit, non-prefetchable) [size=4K]
	Capabilities: [40] Power Management version 1
		Flags: PMEClk- DSI- D1- D2+ AuxCurrent=0mA PME(D0+,D1-,D2+,D3hot+,D3cold-)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Kernel driver in use: serial

06:01.1 Bridge: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART) function 0 (Disabled)
	Subsystem: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART) function 0 (Disabled)
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	NUMA node: 0
	Region 0: I/O ports at e020 [disabled] [size=32]
	Region 1: Memory at fb401000 (32-bit, non-prefetchable) [disabled] [size=4K]
	Region 2: I/O ports at e000 [disabled] [size=32]
	Region 3: Memory at fb400000 (32-bit, non-prefetchable) [disabled] [size=4K]
	Capabilities: [40] Power Management version 1
		Flags: PMEClk- DSI- D1- D2+ AuxCurrent=0mA PME(D0+,D1-,D2+,D3hot+,D3cold-)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-


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

* Re: boot interrupt quirk (also in 4.19.y) breaks serial ports (was: [PATCH v2 0/2] pci: Add boot interrupt quirk mechanism for Xeon chipsets)
  2020-11-27  9:17         ` Stefan Bühler
@ 2020-11-30 10:48           ` Thomas Gleixner
  0 siblings, 0 replies; 13+ messages in thread
From: Thomas Gleixner @ 2020-11-30 10:48 UTC (permalink / raw)
  To: Stefan Bühler, sean.v.kelley
  Cc: bhelgaas, bp, corbet, kar.hin.ong, linux-doc, linux-kernel,
	linux-pci, mingo, sassmann, x86, Greg Kroah-Hartman

Stefan,

On Fri, Nov 27 2020 at 10:17, Stefan Bühler wrote:
> On 11/27/20 12:45 AM, Thomas Gleixner wrote:
>> Can you please run this as root so the Capabilities are accessible?
>
> My bad, sorry. I did intend to run it as root, but should have checked
> the output.  Again see attached file.

No problem.

> 05:00.0 PCI bridge: PLX Technology, Inc. PEX8112 x1 Lane PCI Express-to-PCI Bridge (rev aa) (prog-if 00 [Normal decode])
> 	Physical Slot: 1
> 	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
> 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
> 	Latency: 0, Cache Line Size: 32 bytes
> 	Interrupt: pin A routed to IRQ 16
> 	NUMA node: 0
> 	Bus: primary=05, secondary=06, subordinate=06, sec-latency=64
> 	I/O behind bridge: 0000e000-0000efff
> 	Memory behind bridge: fb400000-fb4fffff
> 	Prefetchable memory behind bridge: fff00000-000fffff
> 	Secondary status: 66MHz+ FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
> 	BridgeCtl: Parity- SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
> 		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
> 	Capabilities: [50] MSI: Enable- Count=1/1 Maskable- 64bit+
> 		Address: 0000000000000000  Data: 0000

So the bridge would support MSI, but obviously the devices on the PCI
side do not.

> 06:00.0 Serial controller: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART) function 0 (Uart) (prog-if 06 [16950])
> 	Subsystem: Oxford Semiconductor Ltd OX16PCI954 (Quad 16950 UART) function 0 (Uart)
> 	Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
> 	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
> 	Interrupt: pin A routed to IRQ 16
> 	NUMA node: 0
> 	Region 0: I/O ports at e0e0 [size=32]
> 	Region 1: Memory at fb407000 (32-bit, non-prefetchable) [size=4K]
> 	Region 2: I/O ports at e0c0 [size=32]
> 	Region 3: Memory at fb406000 (32-bit, non-prefetchable) [size=4K]
> 	Capabilities: [40] Power Management version 1
> 		Flags: PMEClk- DSI- D1- D2+ AuxCurrent=0mA PME(D0+,D1-,D2+,D3hot+,D3cold-)
> 		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-

But that should still work because the boot interrupt quirk should not
affect interrupts which are routed through the IOAPIC.

Sean, any idea what's going on here?

Thanks,

        tglx

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

* Re: boot interrupt quirk (also in 4.19.y) breaks serial ports (was: [PATCH v2 0/2] pci: Add boot interrupt quirk mechanism for Xeon chipsets)
  2020-09-16 10:12 ` boot interrupt quirk (also in 4.19.y) breaks serial ports (was: [PATCH v2 0/2] pci: Add boot interrupt quirk mechanism for Xeon chipsets) Stefan Bühler
  2020-11-25 11:54   ` Thomas Gleixner
@ 2022-09-23 19:20   ` Grzegorz Halat
  2022-09-26 21:17     ` Bjorn Helgaas
  2022-09-28  8:34     ` boot interrupt quirk (also in 4.19.y) breaks serial ports (was: [PATCH v2 0/2] pci: Add boot interrupt quirk mechanism for Xeon chipsets) #forregzbot Thorsten Leemhuis
  1 sibling, 2 replies; 13+ messages in thread
From: Grzegorz Halat @ 2022-09-23 19:20 UTC (permalink / raw)
  To: stefan.buehler, sean.v.kelley
  Cc: bhelgaas, bp, corbet, gregkh, kar.hin.ong, linux-doc,
	linux-kernel, linux-pci, mingo, sassmann, tglx, x86,
	Grzegorz Halat

Hi,

On Wed, Sep 16 2020 at 12:12, Stefan Bühler wrote:
> this quirk breaks our serial ports PCIe card (i.e. we don't see any
> output from the connected devices; no idea whether anything we send
> reaches them):

I have the same problem, also with a PCI serial adapter from Oxford Semiconductor.
I've bisected the kernel and it was introduced in b88bf6c3b6ff.
When the system is booted with "pci=noioapicquirk" then the PCI card works fine.
The CPU is Intel Xeon E5-2680 v3 @ 2.50GHz.

Sean, do you have any news about this issue?

Grzegorz


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

* Re: boot interrupt quirk (also in 4.19.y) breaks serial ports (was: [PATCH v2 0/2] pci: Add boot interrupt quirk mechanism for Xeon chipsets)
  2022-09-23 19:20   ` Grzegorz Halat
@ 2022-09-26 21:17     ` Bjorn Helgaas
  2022-09-28  8:34     ` boot interrupt quirk (also in 4.19.y) breaks serial ports (was: [PATCH v2 0/2] pci: Add boot interrupt quirk mechanism for Xeon chipsets) #forregzbot Thorsten Leemhuis
  1 sibling, 0 replies; 13+ messages in thread
From: Bjorn Helgaas @ 2022-09-26 21:17 UTC (permalink / raw)
  To: Grzegorz Halat
  Cc: stefan.buehler, sean.v.kelley, bhelgaas, bp, corbet, gregkh,
	kar.hin.ong, linux-doc, linux-kernel, linux-pci, mingo, sassmann,
	tglx, x86

On Fri, Sep 23, 2022 at 09:20:30PM +0200, Grzegorz Halat wrote:
> On Wed, Sep 16 2020 at 12:12, Stefan Bühler wrote:
> > this quirk breaks our serial ports PCIe card (i.e. we don't see any
> > output from the connected devices; no idea whether anything we send
> > reaches them):
> 
> I have the same problem, also with a PCI serial adapter from Oxford
> Semiconductor.  I've bisected the kernel and it was introduced in
> b88bf6c3b6ff.  When the system is booted with "pci=noioapicquirk"
> then the PCI card works fine.  The CPU is Intel Xeon E5-2680 v3 @
> 2.50GHz.
> 
> Sean, do you have any news about this issue?

I think Sean has moved on and isn't available to work this issue.

To help whoever *can* work on it, would you mind attaching the
complete dmesg log and "sudo lspci -vv" output for your system?  Then
we can potentially tweak the quirk to not break your system.

Bjorn

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

* Re: boot interrupt quirk (also in 4.19.y) breaks serial ports (was: [PATCH v2 0/2] pci: Add boot interrupt quirk mechanism for Xeon chipsets) #forregzbot
  2022-09-23 19:20   ` Grzegorz Halat
  2022-09-26 21:17     ` Bjorn Helgaas
@ 2022-09-28  8:34     ` Thorsten Leemhuis
  1 sibling, 0 replies; 13+ messages in thread
From: Thorsten Leemhuis @ 2022-09-28  8:34 UTC (permalink / raw)
  To: regressions; +Cc: linux-kernel, linux-pci

TWIMC: this mail is primarily send for documentation purposes and for
regzbot, my Linux kernel regression tracking bot. These mails usually
contain '#forregzbot' in the subject, to make them easy to spot and filter.

[TLDR: I'm adding this regression report to the list of tracked
regressions; all text from me you find below is based on a few templates
paragraphs you might have encountered already already in similar form.]

Hi, this is your Linux kernel regression tracker.

On 23.09.22 21:20, Grzegorz Halat wrote:
> Hi,
> 
> On Wed, Sep 16 2020 at 12:12, Stefan Bühler wrote:
>> this quirk breaks our serial ports PCIe card (i.e. we don't see any
>> output from the connected devices; no idea whether anything we send
>> reaches them):
> 
> I have the same problem, also with a PCI serial adapter from Oxford Semiconductor.
> I've bisected the kernel and it was introduced in b88bf6c3b6ff.
> When the system is booted with "pci=noioapicquirk" then the PCI card works fine.
> The CPU is Intel Xeon E5-2680 v3 @ 2.50GHz.
> 
> Sean, do you have any news about this issue?

Thanks for the report. To be sure below issue doesn't fall through the
cracks unnoticed, I'm adding it to regzbot, my Linux kernel regression
tracking bot:

#regzbot ^introduced b88bf6c3b6ff77948
#regzbot title boot interrupt quirk (also in 4.19.y) breaks serial ports
#regzbot ignore-activity
#regzbot backburner: known since 2020, original developer likely moved on

This isn't a regression? This issue or a fix for it are already
discussed somewhere else? It was fixed already? You want to clarify when
the regression started to happen? Or point out I got the title or
something else totally wrong? Then just reply -- ideally with also
telling regzbot about it, as explained here:
https://linux-regtracking.leemhuis.info/tracked-regression/

Reminder for developers: When fixing the issue, add 'Link:' tags
pointing to the report (the mail this one replies to), as explained for
in the Linux kernel's documentation; above webpage explains why this is
important for tracked regressions.

Ciao, Thorsten (wearing his 'the Linux kernel's regression tracker' hat)

P.S.: As the Linux kernel's regression tracker I deal with a lot of
reports and sometimes miss something important when writing mails like
this. If that's the case here, don't hesitate to tell me in a public
reply, it's in everyone's interest to set the public record straight.

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

end of thread, other threads:[~2022-09-28  8:34 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-20 19:29 [PATCH v2 0/2] pci: Add boot interrupt quirk mechanism for Xeon chipsets Sean V Kelley
2020-02-20 19:29 ` [PATCH v2 1/2] " Sean V Kelley
2020-02-20 19:29 ` [PATCH v2 2/2] Documentation:PCI: Add background on Boot Interrupts Sean V Kelley
2020-02-27 22:49 ` [PATCH v2 0/2] pci: Add boot interrupt quirk mechanism for Xeon chipsets Bjorn Helgaas
2020-09-16 10:12 ` boot interrupt quirk (also in 4.19.y) breaks serial ports (was: [PATCH v2 0/2] pci: Add boot interrupt quirk mechanism for Xeon chipsets) Stefan Bühler
2020-11-25 11:54   ` Thomas Gleixner
2020-11-25 13:41     ` Stefan Bühler
2020-11-26 23:45       ` Thomas Gleixner
2020-11-27  9:17         ` Stefan Bühler
2020-11-30 10:48           ` Thomas Gleixner
2022-09-23 19:20   ` Grzegorz Halat
2022-09-26 21:17     ` Bjorn Helgaas
2022-09-28  8:34     ` boot interrupt quirk (also in 4.19.y) breaks serial ports (was: [PATCH v2 0/2] pci: Add boot interrupt quirk mechanism for Xeon chipsets) #forregzbot Thorsten Leemhuis

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).