forked from mirrors/linux
		
	 6777877eb7
			
		
	
	
		6777877eb7
		
	
	
	
	
		
			
			The CXL driver plans to use cper_print_aer() for logging restricted CXL host (RCH) AER errors. cper_print_aer() is not currently exported and therefore not usable by the CXL drivers built as loadable modules. Export the cper_print_aer() function. Use the EXPORT_SYMBOL_NS_GPL() variant to restrict the export to CXL drivers. The CONFIG_ACPI_APEI_PCIEAER kernel config is currently used to enable cper_print_aer(). cper_print_aer() logs the AER registers and is useful in PCIE AER logging outside of APEI. Remove the CONFIG_ACPI_APEI_PCIEAER dependency to enable cper_print_aer(). The cper_print_aer() function name implies CPER specific use but is useful in non-CPER cases as well. Rename cper_print_aer() to pci_print_aer(). Also, update cxl_core to import CXL namespace imports. Co-developed-by: Robert Richter <rrichter@amd.com> Signed-off-by: Terry Bowman <terry.bowman@amd.com> Signed-off-by: Robert Richter <rrichter@amd.com> Cc: Mahesh J Salgaonkar <mahesh@linux.ibm.com> Cc: Oliver O'Halloran <oohall@gmail.com> Cc: Bjorn Helgaas <bhelgaas@google.com> Cc: linux-pci@vger.kernel.org Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Acked-by: Bjorn Helgaas <bhelgaas@google.com> Reviewed-by: Dave Jiang <dave.jiang@intel.com> Link: https://lore.kernel.org/r/20231018171713.1883517-13-rrichter@amd.com Signed-off-by: Dan Williams <dan.j.williams@intel.com>
		
			
				
	
	
		
			60 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0 */
 | |
| /*
 | |
|  * Copyright (C) 2006 Intel Corp.
 | |
|  *     Tom Long Nguyen (tom.l.nguyen@intel.com)
 | |
|  *     Zhang Yanmin (yanmin.zhang@intel.com)
 | |
|  */
 | |
| 
 | |
| #ifndef _AER_H_
 | |
| #define _AER_H_
 | |
| 
 | |
| #include <linux/errno.h>
 | |
| #include <linux/types.h>
 | |
| 
 | |
| #define AER_NONFATAL			0
 | |
| #define AER_FATAL			1
 | |
| #define AER_CORRECTABLE			2
 | |
| #define DPC_FATAL			3
 | |
| 
 | |
| struct pci_dev;
 | |
| 
 | |
| struct aer_header_log_regs {
 | |
| 	unsigned int dw0;
 | |
| 	unsigned int dw1;
 | |
| 	unsigned int dw2;
 | |
| 	unsigned int dw3;
 | |
| };
 | |
| 
 | |
| struct aer_capability_regs {
 | |
| 	u32 header;
 | |
| 	u32 uncor_status;
 | |
| 	u32 uncor_mask;
 | |
| 	u32 uncor_severity;
 | |
| 	u32 cor_status;
 | |
| 	u32 cor_mask;
 | |
| 	u32 cap_control;
 | |
| 	struct aer_header_log_regs header_log;
 | |
| 	u32 root_command;
 | |
| 	u32 root_status;
 | |
| 	u16 cor_err_source;
 | |
| 	u16 uncor_err_source;
 | |
| };
 | |
| 
 | |
| #if defined(CONFIG_PCIEAER)
 | |
| int pci_aer_clear_nonfatal_status(struct pci_dev *dev);
 | |
| int pcie_aer_is_native(struct pci_dev *dev);
 | |
| #else
 | |
| static inline int pci_aer_clear_nonfatal_status(struct pci_dev *dev)
 | |
| {
 | |
| 	return -EINVAL;
 | |
| }
 | |
| static inline int pcie_aer_is_native(struct pci_dev *dev) { return 0; }
 | |
| #endif
 | |
| 
 | |
| void pci_print_aer(struct pci_dev *dev, int aer_severity,
 | |
| 		    struct aer_capability_regs *aer);
 | |
| int cper_severity_to_aer(int cper_severity);
 | |
| void aer_recover_queue(int domain, unsigned int bus, unsigned int devfn,
 | |
| 		       int severity, struct aer_capability_regs *aer_regs);
 | |
| #endif //_AER_H_
 | |
| 
 |