PatchSiren

PatchSiren cyber security CVE debrief

CVE-2026-53051 Linux CVE debrief

A MEDIUM severity vulnerability was found in the Linux kernel, specifically in the PCI: tegra194 component. The vulnerability occurs when PERST# is deasserted twice, causing a CBB timeout at DBI register offset 0x8bc. This happens because pci_epc_deinit_notify() and dw_pcie_ep_cleanup() are called before reset_control_deassert() powers on the controller core. The issue can be resolved by adjusting the call order to ensure the controller is fully powered on before DBI register accesses.

Vendor
Linux
Product
Linux kernel
CVSS
MEDIUM 5.5
CISA KEV
Not listed in stored evidence
Original CVE published
2026-06-24
Original CVE updated
2026-07-21
Advisory published
2026-06-24
Advisory updated
2026-07-21

Who should care

Linux kernel users, administrators, and security teams should be aware of this vulnerability and take necessary actions to mitigate it. Affected systems may require patching to prevent CBB timeouts. Operators of Linux-based infrastructure should review system configurations and apply vendor guidance.

Technical summary

The vulnerability is caused by accessing DBI registers before the controller core is powered on. The call chain that causes the timeout involves pci_epc_deinit_notify() and dw_pcie_ep_cleanup() being called before reset_control_deassert(pcie->core_rst). To fix this, pci_epc_deinit_notify() and dw_pcie_ep_cleanup() should be moved after reset_control_deassert(pcie->core_rst), ensuring the controller is fully powered on before any DBI register accesses occur. This change prevents the CBB timeout and resolves the vulnerability.

Defensive priority

Medium priority, as it requires specific conditions to be triggered and has a limited attack surface.

Recommended defensive actions

  • Apply patches provided by the Linux kernel maintainers
  • Ensure the controller core is powered on before accessing DBI registers
  • Monitor system logs for potential CBB timeouts
  • Review compensating controls for exposed systems while remediation is scheduled and verified
  • Check relevant monitoring, detection, and logs for exposed assets that need extra review
  • Track exceptions, retest remediated assets, and close the item only after evidence is documented
  • Confirm whether affected product deployments exist in managed environments and assign an owner for follow-up

Evidence notes

The vulnerability was resolved by moving pci_epc_deinit_notify() and dw_pcie_ep_cleanup() to after reset_control_deassert(pcie->core_rst). This change ensures that the controller core is fully powered on before accessing DBI registers, preventing the CBB timeout. Linux kernel users should verify their systems for potential exposure and apply patches provided by the Linux kernel maintainers. Evidence is limited to public CVE details and NVD analysis.

Official resources

AI-assisted PatchSiren debrief based on the supplied source corpus. The CVE record was published on 2026-06-24T17:17:17.083Z and has not been modified since then. The NVD entry is currently Analyzed.