mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-09-18 23:19:34 +02:00
Introduce regulatory wiphy self-managed mode support for MT7921, allowing the driver to manage its own regulatory domain independently from the kernel's regulatory framework. Signed-off-by: Charlie-cy Wu <Charlie-cy.Wu@mediatek.com> Link: https://patch.msgid.link/20260609065036.577329-1-jb.tsai@mediatek.com Signed-off-by: Felix Fietkau <nbd@nbd.name>
71 lines
1.4 KiB
C
71 lines
1.4 KiB
C
/* SPDX-License-Identifier: BSD-3-Clause-Clear */
|
|
/* Copyright (C) 2025 MediaTek Inc. */
|
|
|
|
#ifndef __MT7921_REGD_H
|
|
#define __MT7921_REGD_H
|
|
|
|
#include "mt7921.h"
|
|
|
|
struct mt7921_regd_rule_header {
|
|
u8 alpha2[2];
|
|
u8 dfs_region;
|
|
u8 rsv[13];
|
|
};
|
|
|
|
struct mt7921_regd_rule {
|
|
__le32 start_freq;
|
|
__le32 end_freq;
|
|
__le32 max_bw;
|
|
__le32 eirp;
|
|
__le32 flags;
|
|
u8 rsv[12];
|
|
};
|
|
|
|
struct mt7921_regd_cc {
|
|
u8 alpha2[2];
|
|
u8 ver;
|
|
u8 rsv;
|
|
__le32 n_reg_rules;
|
|
u8 sign_type;
|
|
u8 rsv1[7];
|
|
u8 data[];
|
|
};
|
|
|
|
struct mt7921_regd_rule_ev {
|
|
__le16 tag;
|
|
__le16 len;
|
|
__le32 n_reg_rules;
|
|
u8 dfs_region;
|
|
u8 rsv[15];
|
|
struct mt7921_regd_rule reg_rule[];
|
|
};
|
|
|
|
struct mt7921_regd_query_req {
|
|
u8 ver;
|
|
u8 sign_type;
|
|
u8 rsv1[2];
|
|
__le32 size;
|
|
u8 alpha2[2];
|
|
u8 rsv2[2];
|
|
__le32 n_reg_rules;
|
|
u8 rsv3[64];
|
|
u8 data[];
|
|
};
|
|
|
|
#define MT7921_REGD_SUPPORTED(phy) \
|
|
(((phy)->chip_cap & MT792x_CHIP_CAP_REGD_EN) && \
|
|
(phy)->clc[MT792x_CLC_REGD])
|
|
|
|
int mt7921_mcu_regd_update(struct mt792x_dev *dev, u8 *alpha2,
|
|
enum environment_cap country_ie_env);
|
|
int __mt7921_mcu_regd_update(struct mt792x_dev *dev, u8 *alpha2,
|
|
enum environment_cap country_ie_env);
|
|
void mt7921_regd_notifier(struct wiphy *wiphy,
|
|
struct regulatory_request *request);
|
|
bool mt7921_regd_clc_supported(struct mt792x_dev *dev);
|
|
int mt7921_regd_change(struct mt792x_phy *phy, char *alpha2);
|
|
int mt7921_regd_init(struct mt792x_phy *phy);
|
|
int mt7921_regd_update(struct mt792x_phy *phy, char *alpha2);
|
|
|
|
#endif
|