mirror of
https://github.com/torvalds/linux.git
synced 2026-05-27 08:33:17 +02:00
PCI: mediatek-gen3: Disable device if further setup fails
If further setup fails after the device is powered on and link training succeeds, we want to place the device back in a quiescence state to avoid unintended activity and save power. This also helps with power state tracking and balancing once pwrctrl API is integrated. Power down the device in the error paths of mtk_pcie_startup_port() and mtk_pcie_probe(). Signed-off-by: Chen-Yu Tsai <wenst@chromium.org> Signed-off-by: Manivannan Sadhasivam <mani@kernel.org> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com> Reviewed-by: Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com> Reviewed-by: Manivannan Sadhasivam <mani@kernel.org> Link: https://patch.msgid.link/20260324052002.4072430-7-wenst@chromium.org
This commit is contained in:
parent
69b8d3ccf7
commit
55482b9579
|
|
@ -555,10 +555,14 @@ static int mtk_pcie_startup_port(struct mtk_gen3_pcie *pcie)
|
|||
dev_err(pcie->dev,
|
||||
"PCIe link down, current LTSSM state: %s (%#x)\n",
|
||||
ltssm_state, val);
|
||||
return err;
|
||||
goto err_power_down_device;
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
||||
err_power_down_device:
|
||||
mtk_pcie_devices_power_down(pcie);
|
||||
return err;
|
||||
}
|
||||
|
||||
#define MTK_MSI_FLAGS_REQUIRED (MSI_FLAG_USE_DEF_DOM_OPS | \
|
||||
|
|
@ -1218,6 +1222,7 @@ static int mtk_pcie_probe(struct platform_device *pdev)
|
|||
return 0;
|
||||
|
||||
err_power_down_pcie:
|
||||
mtk_pcie_devices_power_down(pcie);
|
||||
mtk_pcie_power_down(pcie);
|
||||
err_tear_down_irq:
|
||||
mtk_pcie_irq_teardown(pcie);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user