Zhang, Yanmin | 6c2b374 | 2006-07-31 15:21:33 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2006 Intel Corp. |
| 3 | * Tom Long Nguyen (tom.l.nguyen@intel.com) |
| 4 | * Zhang Yanmin (yanmin.zhang@intel.com) |
| 5 | */ |
| 6 | |
| 7 | #ifndef _AER_H_ |
| 8 | #define _AER_H_ |
| 9 | |
Sudip Mukherjee | c89e5b8 | 2015-12-23 21:05:26 +0530 | [diff] [blame] | 10 | #include <linux/errno.h> |
Thierry Reding | efd01a7 | 2014-08-05 14:08:55 +0200 | [diff] [blame] | 11 | #include <linux/types.h> |
| 12 | |
Betty Dall | 9e50a91 | 2013-06-06 12:10:49 -0600 | [diff] [blame] | 13 | #define AER_NONFATAL 0 |
| 14 | #define AER_FATAL 1 |
| 15 | #define AER_CORRECTABLE 2 |
| 16 | |
Mike Qiu | 5ccb822 | 2014-07-29 10:49:25 -0700 | [diff] [blame] | 17 | struct pci_dev; |
| 18 | |
Huang Ying | c413d76 | 2011-02-21 13:54:43 +0800 | [diff] [blame] | 19 | struct aer_header_log_regs { |
| 20 | unsigned int dw0; |
| 21 | unsigned int dw1; |
| 22 | unsigned int dw2; |
| 23 | unsigned int dw3; |
| 24 | }; |
| 25 | |
| 26 | struct aer_capability_regs { |
| 27 | u32 header; |
| 28 | u32 uncor_status; |
| 29 | u32 uncor_mask; |
| 30 | u32 uncor_severity; |
| 31 | u32 cor_status; |
| 32 | u32 cor_mask; |
| 33 | u32 cap_control; |
| 34 | struct aer_header_log_regs header_log; |
| 35 | u32 root_command; |
| 36 | u32 root_status; |
| 37 | u16 cor_err_source; |
| 38 | u16 uncor_err_source; |
| 39 | }; |
| 40 | |
Zhang, Yanmin | 6c2b374 | 2006-07-31 15:21:33 +0800 | [diff] [blame] | 41 | #if defined(CONFIG_PCIEAER) |
| 42 | /* pci-e port driver needs this function to enable aer */ |
Betty Dall | fde41b9 | 2013-06-06 14:35:35 -0600 | [diff] [blame] | 43 | int pci_enable_pcie_error_reporting(struct pci_dev *dev); |
| 44 | int pci_disable_pcie_error_reporting(struct pci_dev *dev); |
| 45 | int pci_cleanup_aer_uncorrect_error_status(struct pci_dev *dev); |
Taku Izumi | b07461a | 2015-09-17 10:09:37 -0500 | [diff] [blame] | 46 | int pci_cleanup_aer_error_status_regs(struct pci_dev *dev); |
Zhang, Yanmin | 6c2b374 | 2006-07-31 15:21:33 +0800 | [diff] [blame] | 47 | #else |
Randy Dunlap | 5547bbe | 2007-08-23 10:37:53 -0700 | [diff] [blame] | 48 | static inline int pci_enable_pcie_error_reporting(struct pci_dev *dev) |
| 49 | { |
| 50 | return -EINVAL; |
| 51 | } |
Randy Dunlap | 5547bbe | 2007-08-23 10:37:53 -0700 | [diff] [blame] | 52 | static inline int pci_disable_pcie_error_reporting(struct pci_dev *dev) |
| 53 | { |
| 54 | return -EINVAL; |
| 55 | } |
| 56 | static inline int pci_cleanup_aer_uncorrect_error_status(struct pci_dev *dev) |
| 57 | { |
| 58 | return -EINVAL; |
| 59 | } |
Taku Izumi | b07461a | 2015-09-17 10:09:37 -0500 | [diff] [blame] | 60 | static inline int pci_cleanup_aer_error_status_regs(struct pci_dev *dev) |
| 61 | { |
| 62 | return -EINVAL; |
| 63 | } |
Zhang, Yanmin | 6c2b374 | 2006-07-31 15:21:33 +0800 | [diff] [blame] | 64 | #endif |
| 65 | |
Tyler Baicar | 95c3549 | 2016-09-14 15:14:45 -0600 | [diff] [blame] | 66 | void cper_print_aer(struct pci_dev *dev, int aer_severity, |
Betty Dall | fde41b9 | 2013-06-06 14:35:35 -0600 | [diff] [blame] | 67 | struct aer_capability_regs *aer); |
| 68 | int cper_severity_to_aer(int cper_severity); |
| 69 | void aer_recover_queue(int domain, unsigned int bus, unsigned int devfn, |
Linus Torvalds | 862f001 | 2013-07-03 16:31:35 -0700 | [diff] [blame] | 70 | int severity, |
| 71 | struct aer_capability_regs *aer_regs); |
Zhang, Yanmin | 6c2b374 | 2006-07-31 15:21:33 +0800 | [diff] [blame] | 72 | #endif //_AER_H_ |
| 73 | |