diff options
author | Subrata Banik <subratabanik@google.com> | 2022-05-23 13:47:50 +0530 |
---|---|---|
committer | Paul Fagerburg <pfagerburg@chromium.org> | 2022-06-03 15:28:12 +0000 |
commit | 510a55d4eeaeb32047c17328ef238b55b89e7296 (patch) | |
tree | b1aa5a4ca3983503f98fa3927fdb81dc117b0ad6 /src/drivers/wifi | |
parent | c3bfbafda5c3241ff74ec1de3fbdc469af0e4ce0 (diff) |
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>
Diffstat (limited to 'src/drivers/wifi')
-rw-r--r-- | src/drivers/wifi/generic/generic.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/drivers/wifi/generic/generic.c b/src/drivers/wifi/generic/generic.c index a66656e3d3..e8e066bc79 100644 --- a/src/drivers/wifi/generic/generic.c +++ b/src/drivers/wifi/generic/generic.c @@ -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 }; |