From 94672e2b45b61729afbfb990a4b7efb80f4b79a2 Mon Sep 17 00:00:00 2001 From: Nicholas Sudsgaard Date: Tue, 14 Oct 2025 21:43:16 +0900 Subject: [PATCH] sb/intel/ibexpeak: Remove 6/7 series chipset PCI IDs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Support for the Ibex Peak chipset was added in commit 888d559b0373 ("Support for Ibexpeak southbridge") by copy-pasting the bd82x6x implementation and making appropriate changes. This resulted in some of the PCI IDs for 6/7 series chipsets being left behind. While some of these PCI IDs were removed in a commit b7d878888013 ("ibexpeak/lpc: Fix PCIIDs."), there are still some that remain, we remove those in this commit. Change-Id: I5dc0e4fb2694eec9ef6246e0ae9211dff604d5b9 Signed-off-by: Nicholas Sudsgaard Reviewed-on: https://review.coreboot.org/c/coreboot/+/89569 Reviewed-by: Jérémy Compostella Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel Reviewed-by: Matt DeVillier --- src/southbridge/intel/ibexpeak/azalia.c | 2 -- src/southbridge/intel/ibexpeak/me.c | 1 - src/southbridge/intel/ibexpeak/smbus.c | 2 -- 3 files changed, 5 deletions(-) diff --git a/src/southbridge/intel/ibexpeak/azalia.c b/src/southbridge/intel/ibexpeak/azalia.c index 6196096a14..6a738f356d 100644 --- a/src/southbridge/intel/ibexpeak/azalia.c +++ b/src/southbridge/intel/ibexpeak/azalia.c @@ -117,8 +117,6 @@ static struct device_operations azalia_ops = { }; static const unsigned short pci_device_ids[] = { - 0x1c20, - 0x1e20, PCI_DID_INTEL_IBEXPEAK_AUDIO, 0 }; diff --git a/src/southbridge/intel/ibexpeak/me.c b/src/southbridge/intel/ibexpeak/me.c index fbcb01dc3a..68a0ca5b3a 100644 --- a/src/southbridge/intel/ibexpeak/me.c +++ b/src/southbridge/intel/ibexpeak/me.c @@ -515,7 +515,6 @@ static struct device_operations device_ops = { }; static const unsigned short pci_device_ids[] = { - 0x1c3a, PCI_DID_INTEL_IBEXPEAK_HECI1, 0 }; diff --git a/src/southbridge/intel/ibexpeak/smbus.c b/src/southbridge/intel/ibexpeak/smbus.c index 6bbd1e44f8..13886131bb 100644 --- a/src/southbridge/intel/ibexpeak/smbus.c +++ b/src/southbridge/intel/ibexpeak/smbus.c @@ -33,8 +33,6 @@ static struct device_operations smbus_ops = { }; static const unsigned short pci_device_ids[] = { - 0x1c22, - 0x1e22, PCI_DID_INTEL_IBEXPEAK_SMBUS, 0 };