From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from canpmsgout05.his.huawei.com (canpmsgout05.his.huawei.com [113.46.200.220]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 2D31637AA66; Mon, 27 Apr 2026 08:58:58 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=113.46.200.220 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777280340; cv=none; b=t0yZZPjuLngjpSgaXonqgzio0R9avb9EFe3b8t0TCwCoHXm4VATEGTaAkW/p2O/AqE5mBLX5am5qkkd74SxLrmfuC6woqDWYzZJv1UxrpY3NC9vq2ndPW2Mq+E2jX+KCN+yHMMAi0+zYTUJspCAZ5UHXzGKuIYqhUHyHrWXHFk4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777280340; c=relaxed/simple; bh=mzNyDVhHcwgIp4o8iKfqQgvZHWJoENEGvEu1AWkA9Mo=; h=From:To:CC:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=rjqQzwIS64g2J0OEDfnchsWJ5NjnELRfjnOYy5sW4zNbLdWpJfBJJkCbKzpTDgDvqJQGdyCBfBmdfuPoyoi+T+Vr5YbB4TEe1wqL3cyRyeoDjO5JvuPACrSXKVtF1ugh0V/wjqaiCeRfFDiBnYio8UUVbZyhqHKSzilpQ7+KHYo= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=huawei.com; spf=pass smtp.mailfrom=huawei.com; dkim=pass (1024-bit key) header.d=huawei.com header.i=@huawei.com header.b=GQ9s0NCQ; arc=none smtp.client-ip=113.46.200.220 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=huawei.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=huawei.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=huawei.com header.i=@huawei.com header.b="GQ9s0NCQ" dkim-signature: v=1; a=rsa-sha256; d=huawei.com; s=dkim; c=relaxed/relaxed; q=dns/txt; h=From; bh=7nlljrvCqU78VC/MnyFqbpq9PR/5AYoPcaH4Y7KRztM=; b=GQ9s0NCQSQxZGlRcvsgaqak7Y0xelQ6OKl4WQJjm5P1G7OABVm/8MXltm7GoqeLCnCqlGAtAM 4PTfASgpV/ju7IJpd1o0/IshXlnZOrVNX9jO1bg6XREIH5n6QFIv2ZJa6su8XhO7ntAuxXiTS2+ 4IUok1W7zL7ITbEugA3KIrE= Received: from mail.maildlp.com (unknown [172.19.163.104]) by canpmsgout05.his.huawei.com (SkyGuard) with ESMTPS id 4g3y3W3w7Xz12LJC; Mon, 27 Apr 2026 16:51:35 +0800 (CST) Received: from kwepemk500009.china.huawei.com (unknown [7.202.194.94]) by mail.maildlp.com (Postfix) with ESMTPS id 09DC94048F; Mon, 27 Apr 2026 16:58:50 +0800 (CST) Received: from localhost.localdomain (10.50.163.32) by kwepemk500009.china.huawei.com (7.202.194.94) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1544.11; Mon, 27 Apr 2026 16:58:49 +0800 From: Chengwen Feng To: , CC: , , , , , , Subject: [PATCH v5 1/6] PCI/TPH: Fix pcie_tph_get_st_table_loc() field extraction Date: Mon, 27 Apr 2026 16:58:38 +0800 Message-ID: <20260427085843.42460-2-fengchengwen@huawei.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20260427085843.42460-1-fengchengwen@huawei.com> References: <20260427085843.42460-1-fengchengwen@huawei.com> Precedence: bulk X-Mailing-List: linux-pci@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain X-ClientProxiedBy: kwepems100002.china.huawei.com (7.221.188.206) To kwepemk500009.china.huawei.com (7.202.194.94) pcie_tph_get_st_table_loc() incorrectly uses FIELD_GET(), which shifts the field value to bit 0. But the function is designed to return raw PCI_TPH_LOC_* values as defined in the function comment. This causes incorrect ST table location detection. Fix it by using bitwise AND with PCI_TPH_CAP_LOC_MASK to return the unshifted field value matching the function specification. Fixes: d2e8a34876ce ("PCI/TPH: Add Steering Tag support") Cc: stable@vger.kernel.org Signed-off-by: Chengwen Feng --- drivers/pci/tph.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/drivers/pci/tph.c b/drivers/pci/tph.c index 91145e8d9d95..f17b74b5fb1e 100644 --- a/drivers/pci/tph.c +++ b/drivers/pci/tph.c @@ -170,7 +170,7 @@ u32 pcie_tph_get_st_table_loc(struct pci_dev *pdev) pci_read_config_dword(pdev, pdev->tph_cap + PCI_TPH_CAP, ®); - return FIELD_GET(PCI_TPH_CAP_LOC_MASK, reg); + return reg & PCI_TPH_CAP_LOC_MASK; } EXPORT_SYMBOL(pcie_tph_get_st_table_loc); @@ -183,11 +183,7 @@ u16 pcie_tph_get_st_table_size(struct pci_dev *pdev) u32 reg; u32 loc; - /* Check ST table location first */ loc = pcie_tph_get_st_table_loc(pdev); - - /* Convert loc to match with PCI_TPH_LOC_* defined in pci_regs.h */ - loc = FIELD_PREP(PCI_TPH_CAP_LOC_MASK, loc); if (loc != PCI_TPH_LOC_CAP) return 0; @@ -316,8 +312,6 @@ int pcie_tph_set_st_entry(struct pci_dev *pdev, unsigned int index, u16 tag) set_ctrl_reg_req_en(pdev, PCI_TPH_REQ_DISABLE); loc = pcie_tph_get_st_table_loc(pdev); - /* Convert loc to match with PCI_TPH_LOC_* */ - loc = FIELD_PREP(PCI_TPH_CAP_LOC_MASK, loc); switch (loc) { case PCI_TPH_LOC_MSIX: -- 2.17.1