forked from mirrors/linux
		
	 f873c51a15
			
		
	
	
		f873c51a15
		
	
	
	
	
		
			
			The _HPX Type 3 Setting Record is intended to be more generic and allow configuration of settings not possible with Type 2 records. For example, firmware could ensure that the completion timeout value is set accordingly throughout the PCI tree. Implement support for _HPX Type 3 Setting Records, which were added in the ACPI 6.3 spec. Link: https://lore.kernel.org/lkml/20190208162414.3996-4-mr.nuke.me@gmail.com Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
		
			
				
	
	
		
			209 lines
		
	
	
	
		
			6.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			209 lines
		
	
	
	
		
			6.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0+ */
 | |
| /*
 | |
|  * PCI HotPlug Core Functions
 | |
|  *
 | |
|  * Copyright (C) 1995,2001 Compaq Computer Corporation
 | |
|  * Copyright (C) 2001 Greg Kroah-Hartman (greg@kroah.com)
 | |
|  * Copyright (C) 2001 IBM Corp.
 | |
|  *
 | |
|  * All rights reserved.
 | |
|  *
 | |
|  * Send feedback to <kristen.c.accardi@intel.com>
 | |
|  *
 | |
|  */
 | |
| #ifndef _PCI_HOTPLUG_H
 | |
| #define _PCI_HOTPLUG_H
 | |
| 
 | |
| /**
 | |
|  * struct hotplug_slot_ops -the callbacks that the hotplug pci core can use
 | |
|  * @enable_slot: Called when the user wants to enable a specific pci slot
 | |
|  * @disable_slot: Called when the user wants to disable a specific pci slot
 | |
|  * @set_attention_status: Called to set the specific slot's attention LED to
 | |
|  * the specified value
 | |
|  * @hardware_test: Called to run a specified hardware test on the specified
 | |
|  * slot.
 | |
|  * @get_power_status: Called to get the current power status of a slot.
 | |
|  * @get_attention_status: Called to get the current attention status of a slot.
 | |
|  * @get_latch_status: Called to get the current latch status of a slot.
 | |
|  * @get_adapter_status: Called to get see if an adapter is present in the slot or not.
 | |
|  * @reset_slot: Optional interface to allow override of a bus reset for the
 | |
|  *	slot for cases where a secondary bus reset can result in spurious
 | |
|  *	hotplug events or where a slot can be reset independent of the bus.
 | |
|  *
 | |
|  * The table of function pointers that is passed to the hotplug pci core by a
 | |
|  * hotplug pci driver.  These functions are called by the hotplug pci core when
 | |
|  * the user wants to do something to a specific slot (query it for information,
 | |
|  * set an LED, enable / disable power, etc.)
 | |
|  */
 | |
| struct hotplug_slot_ops {
 | |
| 	int (*enable_slot)		(struct hotplug_slot *slot);
 | |
| 	int (*disable_slot)		(struct hotplug_slot *slot);
 | |
| 	int (*set_attention_status)	(struct hotplug_slot *slot, u8 value);
 | |
| 	int (*hardware_test)		(struct hotplug_slot *slot, u32 value);
 | |
| 	int (*get_power_status)		(struct hotplug_slot *slot, u8 *value);
 | |
| 	int (*get_attention_status)	(struct hotplug_slot *slot, u8 *value);
 | |
| 	int (*get_latch_status)		(struct hotplug_slot *slot, u8 *value);
 | |
| 	int (*get_adapter_status)	(struct hotplug_slot *slot, u8 *value);
 | |
| 	int (*reset_slot)		(struct hotplug_slot *slot, int probe);
 | |
| };
 | |
| 
 | |
| /**
 | |
|  * struct hotplug_slot - used to register a physical slot with the hotplug pci core
 | |
|  * @ops: pointer to the &struct hotplug_slot_ops to be used for this slot
 | |
|  * @owner: The module owner of this structure
 | |
|  * @mod_name: The module name (KBUILD_MODNAME) of this structure
 | |
|  */
 | |
| struct hotplug_slot {
 | |
| 	const struct hotplug_slot_ops	*ops;
 | |
| 
 | |
| 	/* Variables below this are for use only by the hotplug pci core. */
 | |
| 	struct list_head		slot_list;
 | |
| 	struct pci_slot			*pci_slot;
 | |
| 	struct module			*owner;
 | |
| 	const char			*mod_name;
 | |
| };
 | |
| 
 | |
| static inline const char *hotplug_slot_name(const struct hotplug_slot *slot)
 | |
| {
 | |
| 	return pci_slot_name(slot->pci_slot);
 | |
| }
 | |
| 
 | |
| int __pci_hp_register(struct hotplug_slot *slot, struct pci_bus *pbus, int nr,
 | |
| 		      const char *name, struct module *owner,
 | |
| 		      const char *mod_name);
 | |
| int __pci_hp_initialize(struct hotplug_slot *slot, struct pci_bus *bus, int nr,
 | |
| 			const char *name, struct module *owner,
 | |
| 			const char *mod_name);
 | |
| int pci_hp_add(struct hotplug_slot *slot);
 | |
| 
 | |
| void pci_hp_del(struct hotplug_slot *slot);
 | |
| void pci_hp_destroy(struct hotplug_slot *slot);
 | |
| void pci_hp_deregister(struct hotplug_slot *slot);
 | |
| 
 | |
| /* use a define to avoid include chaining to get THIS_MODULE & friends */
 | |
| #define pci_hp_register(slot, pbus, devnr, name) \
 | |
| 	__pci_hp_register(slot, pbus, devnr, name, THIS_MODULE, KBUILD_MODNAME)
 | |
| #define pci_hp_initialize(slot, bus, nr, name) \
 | |
| 	__pci_hp_initialize(slot, bus, nr, name, THIS_MODULE, KBUILD_MODNAME)
 | |
| 
 | |
| /* PCI Setting Record (Type 0) */
 | |
| struct hpp_type0 {
 | |
| 	u32 revision;
 | |
| 	u8  cache_line_size;
 | |
| 	u8  latency_timer;
 | |
| 	u8  enable_serr;
 | |
| 	u8  enable_perr;
 | |
| };
 | |
| 
 | |
| /* PCI-X Setting Record (Type 1) */
 | |
| struct hpp_type1 {
 | |
| 	u32 revision;
 | |
| 	u8  max_mem_read;
 | |
| 	u8  avg_max_split;
 | |
| 	u16 tot_max_split;
 | |
| };
 | |
| 
 | |
| /* PCI Express Setting Record (Type 2) */
 | |
| struct hpp_type2 {
 | |
| 	u32 revision;
 | |
| 	u32 unc_err_mask_and;
 | |
| 	u32 unc_err_mask_or;
 | |
| 	u32 unc_err_sever_and;
 | |
| 	u32 unc_err_sever_or;
 | |
| 	u32 cor_err_mask_and;
 | |
| 	u32 cor_err_mask_or;
 | |
| 	u32 adv_err_cap_and;
 | |
| 	u32 adv_err_cap_or;
 | |
| 	u16 pci_exp_devctl_and;
 | |
| 	u16 pci_exp_devctl_or;
 | |
| 	u16 pci_exp_lnkctl_and;
 | |
| 	u16 pci_exp_lnkctl_or;
 | |
| 	u32 sec_unc_err_sever_and;
 | |
| 	u32 sec_unc_err_sever_or;
 | |
| 	u32 sec_unc_err_mask_and;
 | |
| 	u32 sec_unc_err_mask_or;
 | |
| };
 | |
| 
 | |
| /*
 | |
|  * _HPX PCI Express Setting Record (Type 3)
 | |
|  */
 | |
| struct hpx_type3 {
 | |
| 	u16 device_type;
 | |
| 	u16 function_type;
 | |
| 	u16 config_space_location;
 | |
| 	u16 pci_exp_cap_id;
 | |
| 	u16 pci_exp_cap_ver;
 | |
| 	u16 pci_exp_vendor_id;
 | |
| 	u16 dvsec_id;
 | |
| 	u16 dvsec_rev;
 | |
| 	u16 match_offset;
 | |
| 	u32 match_mask_and;
 | |
| 	u32 match_value;
 | |
| 	u16 reg_offset;
 | |
| 	u32 reg_mask_and;
 | |
| 	u32 reg_mask_or;
 | |
| };
 | |
| 
 | |
| struct hotplug_program_ops {
 | |
| 	void (*program_type0)(struct pci_dev *dev, struct hpp_type0 *hpp);
 | |
| 	void (*program_type1)(struct pci_dev *dev, struct hpp_type1 *hpp);
 | |
| 	void (*program_type2)(struct pci_dev *dev, struct hpp_type2 *hpp);
 | |
| 	void (*program_type3)(struct pci_dev *dev, struct hpx_type3 *hpp);
 | |
| };
 | |
| 
 | |
| enum hpx_type3_dev_type {
 | |
| 	HPX_TYPE_ENDPOINT	= BIT(0),
 | |
| 	HPX_TYPE_LEG_END	= BIT(1),
 | |
| 	HPX_TYPE_RC_END		= BIT(2),
 | |
| 	HPX_TYPE_RC_EC		= BIT(3),
 | |
| 	HPX_TYPE_ROOT_PORT	= BIT(4),
 | |
| 	HPX_TYPE_UPSTREAM	= BIT(5),
 | |
| 	HPX_TYPE_DOWNSTREAM	= BIT(6),
 | |
| 	HPX_TYPE_PCI_BRIDGE	= BIT(7),
 | |
| 	HPX_TYPE_PCIE_BRIDGE	= BIT(8),
 | |
| };
 | |
| 
 | |
| enum hpx_type3_fn_type {
 | |
| 	HPX_FN_NORMAL		= BIT(0),
 | |
| 	HPX_FN_SRIOV_PHYS	= BIT(1),
 | |
| 	HPX_FN_SRIOV_VIRT	= BIT(2),
 | |
| };
 | |
| 
 | |
| enum hpx_type3_cfg_loc {
 | |
| 	HPX_CFG_PCICFG		= 0,
 | |
| 	HPX_CFG_PCIE_CAP	= 1,
 | |
| 	HPX_CFG_PCIE_CAP_EXT	= 2,
 | |
| 	HPX_CFG_VEND_CAP	= 3,
 | |
| 	HPX_CFG_DVSEC		= 4,
 | |
| 	HPX_CFG_MAX,
 | |
| };
 | |
| 
 | |
| #ifdef CONFIG_ACPI
 | |
| #include <linux/acpi.h>
 | |
| int pci_acpi_program_hp_params(struct pci_dev *dev,
 | |
| 			       const struct hotplug_program_ops *hp_ops);
 | |
| bool pciehp_is_native(struct pci_dev *bridge);
 | |
| int acpi_get_hp_hw_control_from_firmware(struct pci_dev *bridge);
 | |
| bool shpchp_is_native(struct pci_dev *bridge);
 | |
| int acpi_pci_check_ejectable(struct pci_bus *pbus, acpi_handle handle);
 | |
| int acpi_pci_detect_ejectable(acpi_handle handle);
 | |
| #else
 | |
| static inline int pci_acpi_program_hp_params(struct pci_dev *dev,
 | |
| 				    const struct hotplug_program_ops *hp_ops)
 | |
| {
 | |
| 	return -ENODEV;
 | |
| }
 | |
| 
 | |
| static inline int acpi_get_hp_hw_control_from_firmware(struct pci_dev *bridge)
 | |
| {
 | |
| 	return 0;
 | |
| }
 | |
| static inline bool pciehp_is_native(struct pci_dev *bridge) { return true; }
 | |
| static inline bool shpchp_is_native(struct pci_dev *bridge) { return true; }
 | |
| #endif
 | |
| 
 | |
| static inline bool hotplug_is_native(struct pci_dev *bridge)
 | |
| {
 | |
| 	return pciehp_is_native(bridge) || shpchp_is_native(bridge);
 | |
| }
 | |
| #endif
 |