diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2024-03-12 20:14:19 +0300 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2024-03-12 20:14:19 +0300 |
commit | 5aff0f394b83ee7dd3ee0dd01c5d256d651fffcd (patch) | |
tree | 3d342f91cf393d97129b8a66f41a009ae9f46f46 /include/linux/aer.h | |
parent | 6613476e225e090cc9aad49be7fa504e290dd33d (diff) | |
parent | 0a5a46a6a61be7b63c12c18495d427f91f3662a9 (diff) | |
download | linux-5aff0f394b83ee7dd3ee0dd01c5d256d651fffcd.tar.xz |
Merge branch 'pci/aer'
- Fix sysfs paths in aer_rootport_total_err_* documentation (Johan Hovold)
- Block runtime suspend while handling AER errors (Stanislaw Gruszka)
- Add a generic Header Log structure and reader shared by AER and DPC (Ilpo
Järvinen)
* pci/aer:
PCI/AER: Generalize TLP Header Log reading
PCI/AER: Use explicit register size for PCI_ERR_CAP
PCI/AER: Block runtime suspend when handling errors
PCI/AER: Clean up version indentation in ABI docs
PCI/AER: Fix rootport attribute paths in ABI docs
Diffstat (limited to 'include/linux/aer.h')
-rw-r--r-- | include/linux/aer.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/include/linux/aer.h b/include/linux/aer.h index ae0fae70d4bd..4b97f38f3fcf 100644 --- a/include/linux/aer.h +++ b/include/linux/aer.h @@ -18,11 +18,8 @@ struct pci_dev; -struct aer_header_log_regs { - u32 dw0; - u32 dw1; - u32 dw2; - u32 dw3; +struct pcie_tlp_log { + u32 dw[4]; }; struct aer_capability_regs { @@ -33,13 +30,15 @@ struct aer_capability_regs { u32 cor_status; u32 cor_mask; u32 cap_control; - struct aer_header_log_regs header_log; + struct pcie_tlp_log header_log; u32 root_command; u32 root_status; u16 cor_err_source; u16 uncor_err_source; }; +int pcie_read_tlp_log(struct pci_dev *dev, int where, struct pcie_tlp_log *log); + #if defined(CONFIG_PCIEAER) int pci_aer_clear_nonfatal_status(struct pci_dev *dev); int pcie_aer_is_native(struct pci_dev *dev); |