On Tue, 3 Feb 2026, Ilpo Järvinen wrote: > On Tue, 3 Feb 2026, Sizhe Liu wrote: > > > In pci_read_bridge_mmio_pref(), pci_read_bridge_mmio() and pci_read_bridge_io(), > > when the MEMORY_BASE value is greater than MEMORY_LIMIT, > > resource_set_range(res, 0, 0) is called to set both the start address > > and the size of the address of the PCI bridge resource to 0. > > However, the end address is later calculated as: > > res->end = res->start + size - 1 > > As a result, the resource range becomes [0x00000000-0xffffffffffffffff] > > instead of the expected [0x00000000-0x00000000]. > > Hi, > > Thanks for the patch but your understanding on how resources addresses > work is not correct. > > A zero sized resource should have end at start - 1, just like > resource_set_range() sets it! > > > This causes an exception in the subsequent resource claiming process, > > because the address range [0x00000000-0xffffffffffffffff] exceeds > > the range specified in the DSDT. The abnormal bridge triggers clipping > > when claiming resources, then the entire parent PCI bus address range > > becomes occupied. Other bridges on the same bus will report > > address conflicts during their claim process. The resource allocation > > may be degraded from 64-bit to 32-bit, or even worse, it fails. > > > > The related boot log is as follows: > > pci 0000:20:00.0: PCI bridge to [bus 21] > > pci 0000:20:00.0: bridge window [io size 0x0000 disabled]: can't claim; no address assigned > > pci 0000:20:00.0: [io 0x0000-0xffffffffffffffff disabled] clipped to [io 0x0000-0xffff disabled] > > pci_bus_clip_resource() should not touch IORESOURCE_DISABLED resources > nor zero sized resources. The problem seems to originate from > pci_claim_bridge_resources() and pci_claim_bridge_resource() which try to > claim such resources no matter what. > > I think pci_claim_bridge_resources() should check if IORESOURCE_DISABLED > is set and use continue, it already has check !r->flags which probably > worked prior to 8278c6914306 ("PCI: Preserve bridge window resource type > flags") but is no longer enough to decided if bridge window is valid or > not. > > Do you want to do that patch and test it? (I'm quite busy this week > myself.) I managed to get the patch done: -- From: =?UTF-8?q?Ilpo=20J=C3=A4rvinen?= Date: Tue, 3 Feb 2026 19:14:30 +0200 Subject: [PATCH 1/1] PCI: Don't claim disabled bridge windows MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The commit 8278c6914306 ("PCI: Preserve bridge window resource type flags") change bridge window resource behavior such that flags are no longer zero if the bridge window is not valid or is disabled (mainly to preserve the type flags for later use). If a bridge window has its limit smaller than base address, pci_read_bridge_*() sets both IORESOURCE_UNSET and IORESOURCE_DISABLED to indicate the bridge window exists but is not valid with the current base and limit configuration. The code in pci_claim_bridge_resources() still depends on the old behavior be checking validity of the bridge window solely based on !r->flags, whereas after the commit 8278c6914306 ("PCI: Preserve bridge window resource type flags"), also IORESOURCE_DISABLED may indicate bridge window addresses are not valid. While pci_claim_resource() does check IORESOURCE_UNSET, pci_claim_bridge_resource() does attempt to clip the resource if pci_claim_resource() fails which is not correct for not valid bridge window resource. As pci_bus_clip_resource() performs clipping regardless flags and then clears IORESOURCE_UNSET, it should not be called for not valid resources. The problem is visible in this log: pci 0000:20:00.0: PCI bridge to [bus 21] pci 0000:20:00.0: bridge window [io size 0x0000 disabled]: can't claim; no address assigned pci 0000:20:00.0: [io 0x0000-0xffffffffffffffff disabled] clipped to [io 0x0000-0xffff disabled] Add IORESOURCE_DISABLED check into pci_claim_bridge_resources() to only claim bridge windows that appear to have a valid configuration. Reported-by: Sizhe Liu Fixes: 8278c6914306 ("PCI: Preserve bridge window resource type flags") Cc: Signed-off-by: Ilpo Järvinen --- drivers/pci/setup-bus.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/pci/setup-bus.c b/drivers/pci/setup-bus.c index 6e90f46f52af..43ea635e1ea8 100644 --- a/drivers/pci/setup-bus.c +++ b/drivers/pci/setup-bus.c @@ -1733,6 +1733,8 @@ static void pci_claim_bridge_resources(struct pci_dev *dev) if (!r->flags || r->parent) continue; + if (r->flags & IORESOURCE_DISABLED) + continue; pci_claim_bridge_resource(dev, i); } base-commit: 8f0b4cce4481fb22653697cced8d0d04027cb1e8 -- 2.39.5