mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00

Signed-off-by: Linhui Liu <liulinhui36@gmail.com> Signed-off-by: Linhui Liu <liulinhui36@gmail.com>
40 lines
1.3 KiB
Diff
40 lines
1.3 KiB
Diff
From 46f04f3808e8b8c9608d0974c4cede1e78110b7f Mon Sep 17 00:00:00 2001
|
|
From: Daniel Golle <daniel@makrotopia.org>
|
|
Date: Mon, 25 Jul 2022 04:17:44 +0200
|
|
Subject: [PATCH 1/1] devices: add MediaTek MT7986 WiSoC
|
|
|
|
Add detection of the MediaTek MT7986 WiSoC using the compatible string
|
|
from device tree.
|
|
|
|
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
|
|
---
|
|
devices.txt | 1 +
|
|
iwinfo_nl80211.c | 6 ++++++
|
|
2 files changed, 7 insertions(+)
|
|
|
|
--- a/hardware.txt
|
|
+++ b/hardware.txt
|
|
@@ -225,5 +225,6 @@
|
|
0x14c3 0x7650 0x14c3 0x7650 0 0 "MediaTek" "MT7610E"
|
|
0x14c3 0x7662 0x14c3 0x7662 0 0 "MediaTek" "MT76x2E"
|
|
0x14c3 0x7915 0x14c3 0x7915 0 0 "MediaTek" "MT7915E"
|
|
+0x14c3 0x7986 0x14c3 0x7986 0 0 "MediaTek" "MT7986"
|
|
0x14e4 0xaa52 0x14e4 0xaa52 0 0 "Broadcom" "BCM43602"
|
|
0x1ae9 0x0310 0x1ae9 0x0000 0 0 "Wilocity" "Wil6210"
|
|
--- a/iwinfo_nl80211.c
|
|
+++ b/iwinfo_nl80211.c
|
|
@@ -3386,7 +3386,13 @@ static int nl80211_hardware_id_from_fdt(
|
|
id->device_id = 0x7622;
|
|
id->subsystem_vendor_id = 0x14c3;
|
|
id->subsystem_device_id = 0x7622;
|
|
+ } else if (!strcmp(compat, "mediatek,mt7986-wmac")) {
|
|
+ id->vendor_id = 0x14c3;
|
|
+ id->device_id = 0x7986;
|
|
+ id->subsystem_vendor_id = 0x14c3;
|
|
+ id->subsystem_device_id = 0x7986;
|
|
}
|
|
+
|
|
return (id->vendor_id && id->device_id) ? 0 : -1;
|
|
}
|
|
|