Skip to content

Commit c47c74b

Browse files
Mani-Sadhasivambjorn-helgaas
authored andcommitted
PCI: qcom-ep: Add support for Link down notification
Add support to pass Link down notification to Endpoint function driver so that the LINK_DOWN event can be processed by the function. Link: https://lore.kernel.org/r/20230602114756.36586-7-manivannan.sadhasivam@linaro.org Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> Signed-off-by: Lorenzo Pieralisi <lpieralisi@kernel.org> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Reviewed-by: Kishon Vijay Abraham I <kishon@kernel.org> Reviewed-by: Damien Le Moal <dlemoal@kernel.org>
1 parent 6360efb commit c47c74b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -569,6 +569,7 @@ static irqreturn_t qcom_pcie_ep_global_irq_thread(int irq, void *data)
569569
if (FIELD_GET(PARF_INT_ALL_LINK_DOWN, status)) {
570570
dev_dbg(dev, "Received Linkdown event\n");
571571
pcie_ep->link_status = QCOM_PCIE_EP_LINK_DOWN;
572+
pci_epc_linkdown(pci->ep.epc);
572573
} else if (FIELD_GET(PARF_INT_ALL_BME, status)) {
573574
dev_dbg(dev, "Received BME event. Link is enabled!\n");
574575
pcie_ep->link_status = QCOM_PCIE_EP_LINK_ENABLED;

0 commit comments

Comments
 (0)