diff options
author | Subrata Banik <subrata.banik@intel.com> | 2019-02-19 12:11:26 +0530 |
---|---|---|
committer | Subrata Banik <subrata.banik@intel.com> | 2019-02-20 04:24:57 +0000 |
commit | 71da5fe5e9a4f3735bbda684e587ed02750776b0 (patch) | |
tree | 3c67e9ef313e71b3d680da7127e5efd8efea3c74 | |
parent | 47924a297eabc00c99896048a249f311d487cfe2 (diff) |
drivers/intel/wifi: Add support for Harrison Peak (HrP) 9560 module
Add HrP 9560 module device ID (0x02F0) into device/pci_ids.h file.
TEST=HrP module is getting detected during PCI enumeration
Change-Id: Id0a8a7a8cf7c665bd49f27b1c50d41d26a3274ce
Signed-off-by: Subrata Banik <subrata.banik@intel.com>
Signed-off-by: Wonkyu Kim <wonkyu.kim@intel.com>
Reviewed-on: https://review.coreboot.org/c/31475
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Duncan Laurie <dlaurie@chromium.org>
Reviewed-by: Furquan Shaikh <furquan@google.com>
-rw-r--r-- | src/drivers/intel/wifi/wifi.c | 1 | ||||
-rw-r--r-- | src/include/device/pci_ids.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/drivers/intel/wifi/wifi.c b/src/drivers/intel/wifi/wifi.c index cd512ea3bb..416b04b909 100644 --- a/src/drivers/intel/wifi/wifi.c +++ b/src/drivers/intel/wifi/wifi.c @@ -350,6 +350,7 @@ static const unsigned short pci_device_ids[] = { /* Harrison Peak */ PCI_DEVICE_ID_HrP_9560_SERIES_1_WIFI, PCI_DEVICE_ID_HrP_9560_SERIES_2_WIFI, + PCI_DEVICE_ID_HrP_9560_SERIES_3_WIFI, 0 }; diff --git a/src/include/device/pci_ids.h b/src/include/device/pci_ids.h index 00309612b3..2d19194206 100644 --- a/src/include/device/pci_ids.h +++ b/src/include/device/pci_ids.h @@ -3137,6 +3137,7 @@ #define PCI_DEVICE_ID_TP_9260_SERIES_WIFI 0x2526 #define PCI_DEVICE_ID_HrP_9560_SERIES_1_WIFI 0x34f0 #define PCI_DEVICE_ID_HrP_9560_SERIES_2_WIFI 0xa0f0 +#define PCI_DEVICE_ID_HrP_9560_SERIES_3_WIFI 0x02f0 #define PCI_VENDOR_ID_COMPUTONE 0x8e0e #define PCI_DEVICE_ID_COMPUTONE_IP2EX 0x0291 |