|
|
@@ -0,0 +1,59 @@
|
|
|
+From patchwork Sat Oct 26 13:52:25 2024
|
|
|
+Content-Type: text/plain; charset="utf-8"
|
|
|
+MIME-Version: 1.0
|
|
|
+Content-Transfer-Encoding: 7bit
|
|
|
+X-Patchwork-Submitter: Daniel Golle <[email protected]>
|
|
|
+X-Patchwork-Id: 13852245
|
|
|
+X-Patchwork-Delegate: [email protected]
|
|
|
+Date: Sat, 26 Oct 2024 14:52:25 +0100
|
|
|
+From: Daniel Golle <[email protected]>
|
|
|
+To: [email protected],
|
|
|
+ [email protected], [email protected],
|
|
|
+ [email protected], Sujuan Chen <[email protected]>,
|
|
|
+ AngeloGioacchino Del Regno <[email protected]>,
|
|
|
+ Matthias Brugger <[email protected]>,
|
|
|
+ Paolo Abeni <[email protected]>, Jakub Kicinski <[email protected]>,
|
|
|
+ Eric Dumazet <[email protected]>,
|
|
|
+ "David S. Miller" <[email protected]>,
|
|
|
+ Andrew Lunn <[email protected]>,
|
|
|
+ Lorenzo Bianconi <[email protected]>,
|
|
|
+ Mark Lee <[email protected]>,
|
|
|
+ Sean Wang <[email protected]>, Felix Fietkau <[email protected]>,
|
|
|
+ John Crispin <[email protected]>
|
|
|
+Subject: [PATCH net] net: ethernet: mtk_wed: fix path of MT7988 WO firmware
|
|
|
+Message-ID: <[email protected]>
|
|
|
+Precedence: bulk
|
|
|
+X-Mailing-List: [email protected]
|
|
|
+List-Id: <netdev.vger.kernel.org>
|
|
|
+List-Subscribe: <mailto:[email protected]>
|
|
|
+List-Unsubscribe: <mailto:[email protected]>
|
|
|
+MIME-Version: 1.0
|
|
|
+Content-Disposition: inline
|
|
|
+X-Patchwork-Delegate: [email protected]
|
|
|
+
|
|
|
+linux-firmware commit 808cba84 ("mtk_wed: add firmware for mt7988
|
|
|
+Wireless Ethernet Dispatcher") added mt7988_wo_{0,1}.bin in the
|
|
|
+'mediatek/mt7988' directory while driver current expects the files in
|
|
|
+the 'mediatek' directory.
|
|
|
+
|
|
|
+Change path in the driver header now that the firmware has been added.
|
|
|
+
|
|
|
+Fixes: e2f64db13aa1 ("net: ethernet: mtk_wed: introduce WED support for MT7988")
|
|
|
+Signed-off-by: Daniel Golle <[email protected]>
|
|
|
+---
|
|
|
+ drivers/net/ethernet/mediatek/mtk_wed_wo.h | 4 ++--
|
|
|
+ 1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
+
|
|
|
+--- a/drivers/net/ethernet/mediatek/mtk_wed_wo.h
|
|
|
++++ b/drivers/net/ethernet/mediatek/mtk_wed_wo.h
|
|
|
+@@ -91,8 +91,8 @@ enum mtk_wed_dummy_cr_idx {
|
|
|
+ #define MT7981_FIRMWARE_WO "mediatek/mt7981_wo.bin"
|
|
|
+ #define MT7986_FIRMWARE_WO0 "mediatek/mt7986_wo_0.bin"
|
|
|
+ #define MT7986_FIRMWARE_WO1 "mediatek/mt7986_wo_1.bin"
|
|
|
+-#define MT7988_FIRMWARE_WO0 "mediatek/mt7988_wo_0.bin"
|
|
|
+-#define MT7988_FIRMWARE_WO1 "mediatek/mt7988_wo_1.bin"
|
|
|
++#define MT7988_FIRMWARE_WO0 "mediatek/mt7988/mt7988_wo_0.bin"
|
|
|
++#define MT7988_FIRMWARE_WO1 "mediatek/mt7988/mt7988_wo_1.bin"
|
|
|
+
|
|
|
+ #define MTK_WO_MCU_CFG_LS_BASE 0
|
|
|
+ #define MTK_WO_MCU_CFG_LS_HW_VER_ADDR (MTK_WO_MCU_CFG_LS_BASE + 0x000)
|