Re: [PATCH] PCI: dwc: Add the sysfs property to provide the LTSSM status of the PCIe link
From: Bjorn Helgaas
Date: Thu Jan 23 2025 - 11:49:53 EST
On Thu, Jan 23, 2025 at 03:13:26PM +0800, Hans Zhang wrote:
> Add the sysfs property to provide a view of the current link's LTSSM
> status from the root port device.
>
> /sys/bus/pci/devices/<dev>/ltssm_status
Would need a rationale, i.e., what benefit this provides. Obviously
this is currently only implemented for DWC-based controllers and
probably not ever available for ACPI or other generic host bridges.
Also documentation somewhere in
Documentation/ABI/testing/sysfs-bus-pci*.
LTSSM is applicable to all Downstream Ports, including both Root Ports
and Switch Downstream Ports, but in general I doubt this information
is available for Switches in any generic way.
> +++ b/drivers/pci/pci-sysfs.c
> @@ -1696,6 +1696,9 @@ const struct attribute_group *pci_dev_attr_groups[] = {
> #endif
> #ifdef CONFIG_PCIEASPM
> &aspm_ctrl_attr_group,
> +#endif
> +#ifdef CONFIG_PCIE_DW_HOST
> + &dw_ltssm_status_attr_group,
> #endif
I'm not convinced of the value of potentially dozens of device- or
vendor-specific additions like this.
Bjorn