Skip to content

Commit fba6045

Browse files
Qiang Yukwilczynski
authored andcommitted
PCI: qcom: Disable ASPM L0s for X1E80100
Currently, the cfg_1_9_0 which is being used for X1E80100 doesn't disable ASPM L0s. However, hardware team recommends to disable L0s as the PHY init sequence is not tuned support L0s. Hence reuse cfg_sc8280xp for X1E80100. Note that the config_sid() callback is not present in cfg_sc8280xp, don't concern about this because config_sid() callback is originally a no-op for X1E80100. Fixes: 6d0c393 ("PCI: qcom: Add X1E80100 PCIe support") Link: https://lore.kernel.org/r/20241101030902.579789-5-quic_qianyu@quicinc.com Signed-off-by: Qiang Yu <quic_qianyu@quicinc.com> Signed-off-by: Krzysztof Wilczyński <kwilczynski@kernel.org> Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Reviewed-by: Johan Hovold <johan+linaro@kernel.org> Reviewed-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> Cc: <stable@vger.kernel.org> # 6.9
1 parent 1362af9 commit fba6045

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/pci/controller/dwc/pcie-qcom.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1856,7 +1856,7 @@ static const struct of_device_id qcom_pcie_match[] = {
18561856
{ .compatible = "qcom,pcie-sm8450-pcie0", .data = &cfg_1_9_0 },
18571857
{ .compatible = "qcom,pcie-sm8450-pcie1", .data = &cfg_1_9_0 },
18581858
{ .compatible = "qcom,pcie-sm8550", .data = &cfg_1_9_0 },
1859-
{ .compatible = "qcom,pcie-x1e80100", .data = &cfg_1_9_0 },
1859+
{ .compatible = "qcom,pcie-x1e80100", .data = &cfg_sc8280xp },
18601860
{ }
18611861
};
18621862

0 commit comments

Comments
 (0)