From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 9ABBE2F8BC0; Fri, 17 Oct 2025 17:18:12 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1760721492; cv=none; b=UeRTPOQgPdDH3dEwpG9j0hakTcOLLOTXCkFGZ5ss/PvlqXfWkIxLpbNjHO7NVInkHIwG89wep0zpy8/UYOgjud5hByyTehNhzMpQOvU01JKwsrPqY6ss1P9Uh5RFThcgr7LIQpfy9Q2YgM30kZmy9f4o7RVDkAuz7gLmoNogh4k= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1760721492; c=relaxed/simple; bh=B6E2wpMJBvcJ194lmI41fKxMzXJkUATkPDUH0wB8Nuw=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=J/YnHdCZ1AGs0RYmj6MlLDk/RhwUiJgt1qBuzCO5HvOR1vh+t1qW8fPmZtn9HfkNNYIWjMsWKsIqjFa5DOrTHSzeH0IK1OE6Qu2X3zA5opxVdra00LS0MD3mDnrJe9YmiZapH9S/P2lFjpSDfITU+fd4I2eRN0pN0f6DGFKTP0Y= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=JwApvdlQ; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="JwApvdlQ" Received: by smtp.kernel.org (Postfix) with ESMTPSA id DEF19C4CEE7; Fri, 17 Oct 2025 17:18:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1760721492; bh=B6E2wpMJBvcJ194lmI41fKxMzXJkUATkPDUH0wB8Nuw=; h=Date:From:To:Cc:Subject:From; b=JwApvdlQAiTod3POqDMKwmBS3OVlltiMlBVbolB///aJNbuxN8lWRktcjaN59jHgI yJWxbO+HX8nk/r437dA01nVSG5E00nLFhFtCQXYBCIoCxhgyKVwJTB8Gxcqm+zWtRs km4v+nLSOdPJdQip783pMbc0UpZHkqg25Fck6K8fBC23x429Nr9F0PolhVbA54gpBb Pizrmva0uePXOkT/gZ3jpqlKoylF9KBmnqzTyIqoE4yAwlOHdrxFP9SG5zt5g55wRl v6OU+aO4yp62A+lSfDSKFOs2VJIffsUD1XFGSwM2ZCzvLS1P41EShSVGrdUMatlLzO BZuOzfuKhYm0w== Date: Fri, 17 Oct 2025 12:18:10 -0500 From: Bjorn Helgaas To: Linus Torvalds Cc: linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org, Lorenzo Pieralisi , Krzysztof =?utf-8?Q?Wilczy=C5=84ski?= , Manivannan Sadhasivam , Hans Zhang <18255117159@163.com>, Sasha Levin , Ilpo =?utf-8?B?SsOkcnZpbmVu?= , Val Packett , Guenter Roeck , Inochi Amaoto , Thomas Gleixner , Kenneth Crudup , Genes Lists , Todd Brandt , Oliver Hartkopp , =?utf-8?B?SGVydsOp?= , Mario Limonciello , Eric Biggers , Thomas Zimmermann , Nirmal Patel , Jonathan Derrick , Chen Wang , Yixun Lan , Longbin Li Subject: [GIT PULL] PCI fixes for v6.18 Message-ID: <20251017171810.GA1035665@bhelgaas> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit The following changes since commit 3a8660878839faadb4f1a6dd72c3179c1df56787: Linux 6.18-rc1 (2025-10-12 13:42:36 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git tags/pci-v6.18-fixes-2 for you to fetch changes up to a78835b86a4414230e4cf9a9f16d22302cdb8388: PCI/VGA: Select SCREEN_INFO on X86 (2025-10-17 08:31:14 -0500) ---------------------------------------------------------------- - Search for MSI Capability with correct ID to fix an MSI regression on platforms with Cadence IP (Hans Zhang) - Revert early bridge resource set up to fix resource assignment failures that broke at least alpha boot and Snapdragon ath12k WiFi (Ilpo Järvinen) - Implement VMD .irq_startup()/.irq_shutdown() to fix IRQ issues that caused boot crashes and broken devices below VMD (Inochi Amaoto) - Select CONFIG_SCREEN_INFO on X86 to fix black screen on boot when SCREEN_INFO not selected (Mario Limonciello) ---------------------------------------------------------------- Hans Zhang (1): PCI: cadence: Search for MSI Capability with correct ID Ilpo Järvinen (1): PCI: Revert early bridge resource set up Inochi Amaoto (1): PCI: vmd: Override irq_startup()/irq_shutdown() in vmd_init_dev_msi_info() Mario Limonciello (AMD) (1): PCI/VGA: Select SCREEN_INFO on X86 drivers/pci/Kconfig | 1 + drivers/pci/controller/cadence/pcie-cadence-ep.c | 2 +- drivers/pci/controller/vmd.c | 13 +++++++++++++ drivers/pci/probe.c | 13 +++---------- drivers/pci/vgaarb.c | 6 ++---- 5 files changed, 20 insertions(+), 15 deletions(-)