These patches were generated from: https://github.com/raspberrypi/linux/commits/rpi-6.12.y With the following command: git format-patch -N v6.12.27..HEAD (HEAD -> 8d3206ee456a5ecdf9ddbfd8e5e231e4f0cd716e) Exceptions: - (def)configs patches - github workflows patches - applied & reverted patches - readme patches - wireless patches Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
48 lines
2.1 KiB
Diff
48 lines
2.1 KiB
Diff
From 00ebe5d1d6be8beb8119a39a440c97f59782c131 Mon Sep 17 00:00:00 2001
|
|
From: Jonathan Bell <jonathan@raspberrypi.com>
|
|
Date: Tue, 7 Jan 2025 12:02:55 +0000
|
|
Subject: [PATCH] PCI: brcmstb: don't use ASPM state defines for register bits
|
|
|
|
In commit b478e162f227 ("PCI/ASPM: Consolidate link state defines")
|
|
PCIE_LINK_STATE_L1 and PCIE_LINK_STATE_L0s grew some bits for more
|
|
granular control of ASPM.
|
|
|
|
This broke the aspm-no-l0s override, instead disabling link ASPM
|
|
completely if this DT property was specified.
|
|
|
|
Specify the field bits in the driver.
|
|
|
|
Fixes: caab002d5069 ("PCI: brcmstb: Disable L0s component of ASPM if requested")
|
|
Fixes: 0693b4207fd7 ("PCI: brcmstb: Split post-link up initialization to brcm_pcie_start_link()")
|
|
Signed-off-by: Jonathan Bell <jonathan@raspberrypi.com>
|
|
---
|
|
drivers/pci/controller/pcie-brcmstb.c | 10 +++++++---
|
|
1 file changed, 7 insertions(+), 3 deletions(-)
|
|
|
|
--- a/drivers/pci/controller/pcie-brcmstb.c
|
|
+++ b/drivers/pci/controller/pcie-brcmstb.c
|
|
@@ -47,6 +47,9 @@
|
|
|
|
#define PCIE_RC_CFG_PRIV1_LINK_CAPABILITY 0x04dc
|
|
#define PCIE_RC_CFG_PRIV1_LINK_CAPABILITY_ASPM_SUPPORT_MASK 0xc00
|
|
+#define PCIE_RC_CFG_PRIV1_LINK_CAPABILITY_ASPM_SUPPORT_L0S 0x1
|
|
+#define PCIE_RC_CFG_PRIV1_LINK_CAPABILITY_ASPM_SUPPORT_L1 0x2
|
|
+#define PCIE_RC_CFG_PRIV1_LINK_CAPABILITY_MAX_LINK_SPEED_MASK 0xf
|
|
|
|
#define PCIE_RC_CFG_PRIV1_ROOT_CAP 0x4f8
|
|
#define PCIE_RC_CFG_PRIV1_ROOT_CAP_L1SS_MODE_MASK 0xf8
|
|
@@ -1205,10 +1208,11 @@ static int brcm_pcie_setup(struct brcm_p
|
|
pcie->msi_target_addr = BRCM_MSI_TARGET_ADDR_GT_4GB;
|
|
|
|
|
|
- /* Don't advertise L0s capability if 'aspm-no-l0s' */
|
|
- aspm_support = PCIE_LINK_STATE_L1;
|
|
+ /* Always advertise L1 capability */
|
|
+ aspm_support = PCIE_RC_CFG_PRIV1_LINK_CAPABILITY_ASPM_SUPPORT_L1;
|
|
+ /* Advertise L0s capability unless 'aspm-no-l0s' is set */
|
|
if (!of_property_read_bool(pcie->np, "aspm-no-l0s"))
|
|
- aspm_support |= PCIE_LINK_STATE_L0S;
|
|
+ aspm_support |= PCIE_RC_CFG_PRIV1_LINK_CAPABILITY_ASPM_SUPPORT_L0S;
|
|
tmp = readl(base + PCIE_RC_CFG_PRIV1_LINK_CAPABILITY);
|
|
u32p_replace_bits(&tmp, aspm_support,
|
|
PCIE_RC_CFG_PRIV1_LINK_CAPABILITY_ASPM_SUPPORT_MASK);
|