[PATCH] wifi: mt76: mt7922: only check CLC hw encap type on MT7922
JB Tsai
jb.tsai at mediatek.com
Thu Sep 10 02:28:55 PDT 2026
From: Charlie-cy Wu <Charlie-cy.Wu at mediatek.com>
The hw type encap field in the CLC header is only populated on MT7922.
On other chips the EEPROM MT_EE_HW_TYPE read is skipped, leaving
hw_encap as 0, so the POWER and REGD entries are compared against a
bogus value and dropped, leaving those CLC tables empty.
Read MT_EE_HW_TYPE and run the header sanity check only on MT7922, and
accept the CLC entries as-is on the other chips.
Fixes: 31bc74e462b1 ("wifi: mt76: mt7921: add CLC regulatory domain support")
Signed-off-by: Charlie-cy Wu <Charlie-cy.Wu at mediatek.com>
---
.../net/wireless/mediatek/mt76/mt7921/mcu.c | 18 ++++++++++--------
1 file changed, 10 insertions(+), 8 deletions(-)
diff --git a/drivers/net/wireless/mediatek/mt76/mt7921/mcu.c b/drivers/net/wireless/mediatek/mt76/mt7921/mcu.c
index c6af7f00ca59..0092a90eb7fb 100644
--- a/drivers/net/wireless/mediatek/mt76/mt7921/mcu.c
+++ b/drivers/net/wireless/mediatek/mt76/mt7921/mcu.c
@@ -423,7 +423,7 @@ static int mt7921_load_clc(struct mt792x_dev *dev, const char *fw_name)
if (!mt7921_regd_clc_supported(dev))
return 0;
- if (mt76_is_mmio(&dev->mt76)) {
+ if (is_mt7922(&dev->mt76) && mt76_is_mmio(&dev->mt76)) {
ret = mt7921_mcu_read_eeprom(dev, MT_EE_HW_TYPE, &hw_encap);
if (ret)
return ret;
@@ -471,14 +471,16 @@ static int mt7921_load_clc(struct mt792x_dev *dev, const char *fw_name)
if (phy->clc[clc->idx])
continue;
- /* header content sanity */
- if (clc->idx == MT7921_CLC_POWER &&
- u8_get_bits(clc->type, MT_EE_HW_TYPE_ENCAP) != hw_encap)
- continue;
+ /* header content sanity, only MT7922 encodes hw type in CLC */
+ if (is_mt7922(&dev->mt76)) {
+ if (clc->idx == MT7921_CLC_POWER &&
+ u8_get_bits(clc->type, MT_EE_HW_TYPE_ENCAP) != hw_encap)
+ continue;
- if (clc->idx == MT7921_CLC_REGD &&
- u8_get_bits(clc->type, MT_EE_HW_TYPE_ENCAP) != hw_encap)
- continue;
+ if (clc->idx == MT7921_CLC_REGD &&
+ u8_get_bits(clc->type, MT_EE_HW_TYPE_ENCAP) != hw_encap)
+ continue;
+ }
phy->clc[clc->idx] = devm_kmemdup(mdev->dev, clc,
le32_to_cpu(clc->len),
--
2.18.0
More information about the Linux-mediatek
mailing list