Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1D3CCC433FE for ; Tue, 4 Jan 2022 11:12:30 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232030AbiADLM3 (ORCPT ); Tue, 4 Jan 2022 06:12:29 -0500 Received: from out30-130.freemail.mail.aliyun.com ([115.124.30.130]:38534 "EHLO out30-130.freemail.mail.aliyun.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231834AbiADLM2 (ORCPT ); Tue, 4 Jan 2022 06:12:28 -0500 X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R731e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=e01e01424;MF=yaohongbo@linux.alibaba.com;NM=1;PH=DS;RN=7;SR=0;TI=SMTPD_---0V0wr6Dd_1641294736; Received: from localhost(mailfrom:yaohongbo@linux.alibaba.com fp:SMTPD_---0V0wr6Dd_1641294736) by smtp.aliyun-inc.com(127.0.0.1); Tue, 04 Jan 2022 19:12:26 +0800 From: Yao Hongbo To: bhelgaas@google.com, lukas@wunner.de Cc: yaohongbo@linux.alibaba.com, zhangliguang@linux.alibaba.com, alikernel-developer@linux.alibaba.com, linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [RFC PATCH] PCI: Waiting command completed in get_port_device_capability() Date: Tue, 4 Jan 2022 19:12:16 +0800 Message-Id: <1641294736-96718-1-git-send-email-yaohongbo@linux.alibaba.com> X-Mailer: git-send-email 1.8.3.1 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org According to the PCIe specification Revision 5.0, section 7.5.3.11 (slot Status Register), if Command Complete notification is supported, a write to the slot control register needs to set the command completed bit, which can indicate the controller is ready to receive the next command. However, before probing the pcie hotplug service, there needs to set HPIE bit in the slot ctrl register to disable hotplug interrupts, and there is no wait currently. The interval between the two functions get_port_device_capability() and pcie_disable_notification() is not long, which may cause the latter to be interfered by the former. The command complete event received by pcie_disable_notification() may belong to the opertion of get_port_device_capability(). Signed-off-by: Liguang Zhang Signed-off-by: Yao Hongbo --- drivers/pci/pcie/portdrv_core.c | 41 +++++++++++++++++++++++++++++++++++++++-- 1 file changed, 39 insertions(+), 2 deletions(-) diff --git a/drivers/pci/pcie/portdrv_core.c b/drivers/pci/pcie/portdrv_core.c index bda6308..47715aa 100644 --- a/drivers/pci/pcie/portdrv_core.c +++ b/drivers/pci/pcie/portdrv_core.c @@ -15,6 +15,7 @@ #include #include #include +#include #include "../pci.h" #include "portdrv.h" @@ -190,6 +191,43 @@ static int pcie_init_service_irqs(struct pci_dev *dev, int *irqs, int mask) return 0; } +static void pcie_port_disable_hp_interrupt(struct pci_dev *dev) +{ + u16 slot_status; + u32 slot_cap; + unsigned long timeout = 1000; + + + pcie_capability_clear_word(dev, PCI_EXP_SLTCTL, + PCI_EXP_SLTCTL_CCIE | PCI_EXP_SLTCTL_HPIE); + + /* + * If the command completed notification is not supported, + * we don't need to wait after writing to the slot ctrl register. + */ + pcie_capability_read_dword(dev, PCI_EXP_SLTCAP, &slot_cap); + if (slot_cap & PCI_EXP_SLTCAP_NCCS) + return; + + do { + pcie_capability_read_word(dev, PCI_EXP_SLTSTA, &slot_status); + if (slot_status == (u16) ~0) { + pci_info(dev, "%s: no response from device\n", __func__); + return; + } + + if (slot_status & PCI_EXP_SLTSTA_CC) { + pcie_capability_write_word(dev, PCI_EXP_SLTSTA, PCI_EXP_SLTSTA_CC); + return; + } + + msleep(10); + timeout -= 10; + } while (timeout >= 0); + + pci_info(dev, "Timeout on hotplug disable interrupt!\n"); +} + /** * get_port_device_capability - discover capabilities of a PCI Express port * @dev: PCI Express port to examine @@ -213,8 +251,7 @@ static int get_port_device_capability(struct pci_dev *dev) * Disable hot-plug interrupts in case they have been enabled * by the BIOS and the hot-plug service driver is not loaded. */ - pcie_capability_clear_word(dev, PCI_EXP_SLTCTL, - PCI_EXP_SLTCTL_CCIE | PCI_EXP_SLTCTL_HPIE); + pcie_port_disable_hp_interrupt(dev); } #ifdef CONFIG_PCIEAER -- 1.8.3.1