From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from Atcsqr.andestech.com (60-248-80-70.hinet-ip.hinet.net [60.248.80.70]) (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 695DE3126C7; Tue, 14 Oct 2025 12:09:08 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=60.248.80.70 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1760443765; cv=none; b=jF+zkYkodu+WbaPdzLi9W5Wzi6MgdTu5Kz8UD/Xeg/X5/EbGuy4JmZ5/2iVWifvyrDthKrhhYs9FtkEG05GBsFnMpPK40XknDCMo7rhW44a93O5jdewiQu78SUM00x38pDdU6e502De7FKNUEcLXn+YtJygJ8UoBLcQKoIyMHA0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1760443765; c=relaxed/simple; bh=5kDBCsrNHD+lfYpSaurI9bABB4ZUqKNpN1zxDJ8qQIU=; h=From:To:CC:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=Rq794yokPaSn7O1KkqP8jg96xT5pc8Uw2YfRllJouhDnbO9j1n6Qkd16TTNEbdRiO5uK5lmaU3VQuwFQtS87aZLfWqpczZN8dKppEpTWQDil1X8WgrV7Gky5rns6vtGYZqNcqQhDKvwMDoy1amgsLXC4HqY+Rka+Z9AqdWSZAAY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=permerror header.from=andestech.com; spf=pass smtp.mailfrom=andestech.com; arc=none smtp.client-ip=60.248.80.70 Authentication-Results: smtp.subspace.kernel.org; dmarc=permerror header.from=andestech.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=andestech.com Received: from mail.andestech.com (ATCPCS31.andestech.com [10.0.1.89]) by Atcsqr.andestech.com with ESMTPS id 59EC3vK0060853 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Tue, 14 Oct 2025 20:03:57 +0800 (+08) (envelope-from randolph@andestech.com) Received: from atctrx.andestech.com (10.0.15.173) by ATCPCS31.andestech.com (10.0.1.89) with Microsoft SMTP Server id 14.3.498.0; Tue, 14 Oct 2025 20:03:57 +0800 From: Randolph Lin To: CC: , , , , , , , , , , , , , , , , , , , , , , , Randolph Lin Subject: [PATCH v8 1/5] PCI: dwc: Allow adjusting the number of ob/ib windows in glue driver Date: Tue, 14 Oct 2025 20:03:45 +0800 Message-ID: <20251014120349.656553-2-randolph@andestech.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20251014120349.656553-1-randolph@andestech.com> References: <20251014120349.656553-1-randolph@andestech.com> Precedence: bulk X-Mailing-List: linux-pci@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-DKIM-Results: atcpcs31.andestech.com; dkim=none; X-DNSRBL: X-SPAM-SOURCE-CHECK: pass X-MAIL:Atcsqr.andestech.com 59EC3vK0060853 The number of ob/ib windows is determined through write-read loops on registers in the core driver. Some glue drivers need to adjust the number of ob/ib windows to meet specific requirements,such as hardware limitations. This change allows the glue driver to adjust the number of ob/ib windows to satisfy platform-specific constraints. The glue driver may adjust the number of ob/ib windows, but the values must stay within hardware limits. Signed-off-by: Randolph Lin --- drivers/pci/controller/dwc/pcie-designware.c | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/drivers/pci/controller/dwc/pcie-designware.c b/drivers/pci/controller/dwc/pcie-designware.c index c644216995f6..a860890febc3 100644 --- a/drivers/pci/controller/dwc/pcie-designware.c +++ b/drivers/pci/controller/dwc/pcie-designware.c @@ -851,8 +851,16 @@ void dw_pcie_iatu_detect(struct dw_pcie *pci) max = 0; } - pci->num_ob_windows = ob; - pci->num_ib_windows = ib; + if (!pci->num_ob_windows) + pci->num_ob_windows = ob; + else if (pci->num_ob_windows > ob) + dev_err(pci->dev, "Adjusted ob windows exceed the limit\n"); + + if (!pci->num_ib_windows) + pci->num_ib_windows = ib; + else if (pci->num_ib_windows > ib) + dev_err(pci->dev, "Adjusted ib windows exceed the limit\n"); + pci->region_align = 1 << fls(min); pci->region_limit = (max << 32) | (SZ_4G - 1); -- 2.34.1