drivers/wifi: Move MTL Magnetar CNVi DIDs from SoC to generic driver

This patch removes the MTL CNVi DIDs macros from IA common code and is
added into the generic wifi driver.

As per Intel Connectivity Platform BIOS Guide, Connectivity Controller
IP for MTL-P is `Magnetar` and supported CRF is `Typhoon Peak 2`.

Previously Garfield Peak DIDs for Alder Lake SoC also added similarly
to generic wifi drivers.

BUG=b:224325352
TEST=Able to build and boot on MTL emulator.

Signed-off-by: Subrata Banik <subratabanik@google.com>
Change-Id: Ib98762749c71f63df3e8d03be910539469359c68
Reviewed-on: https://review.coreboot.org/c/coreboot/+/64592
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Tarun Tuli <taruntuli@google.com>
Reviewed-by: Wonkyu Kim <wonkyu.kim@intel.com>
This commit is contained in:
Subrata Banik
2022-05-23 13:47:50 +05:30
committed by Paul Fagerburg
parent c3bfbafda5
commit 510a55d4ee
3 changed files with 9 additions and 8 deletions

View File

@@ -119,6 +119,11 @@ static const unsigned short intel_pci_device_ids[] = {
PCI_DID_GrP_6SERIES_1_WIFI,
PCI_DID_GrP_6SERIES_2_WIFI,
PCI_DID_GrP_6SERIES_3_WIFI,
/* Typhoon Peak 2 */
PCI_DID_TyP2_6SERIES_1_WIFI,
PCI_DID_TyP2_6SERIES_2_WIFI,
PCI_DID_TyP2_6SERIES_3_WIFI,
PCI_DID_TyP2_6SERIES_4_WIFI,
0
};