rtw88: 8822c: update phy parameter tables to v50

Update RTL8822C devices' phy tables to v50.

The new parameters introduces new RFE type 5 for some new modules.
Also added a new regulatory CN for power limit.

Signed-off-by: Yan-Hsuan Chuang <yhchuang@realtek.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20200424073812.26896-1-yhchuang@realtek.com
This commit is contained in:
Yan-Hsuan Chuang 2020-04-24 15:38:12 +08:00 committed by Kalle Valo
parent c1070c1c6c
commit 421ae61c10
4 changed files with 14848 additions and 631 deletions

View file

@ -339,6 +339,7 @@ enum rtw_regulatory_domains {
RTW_REGD_CHILE = 6, RTW_REGD_CHILE = 6,
RTW_REGD_UKRAINE = 7, RTW_REGD_UKRAINE = 7,
RTW_REGD_MEXICO = 8, RTW_REGD_MEXICO = 8,
RTW_REGD_CN = 9,
RTW_REGD_WW, RTW_REGD_WW,
RTW_REGD_MAX RTW_REGD_MAX

View file

@ -3899,6 +3899,7 @@ static const struct rtw_rfe_def rtw8822c_rfe_defs[] = {
[0] = RTW_DEF_RFE(8822c, 0, 0), [0] = RTW_DEF_RFE(8822c, 0, 0),
[1] = RTW_DEF_RFE(8822c, 0, 0), [1] = RTW_DEF_RFE(8822c, 0, 0),
[2] = RTW_DEF_RFE(8822c, 0, 0), [2] = RTW_DEF_RFE(8822c, 0, 0),
[5] = RTW_DEF_RFE(8822c, 0, 5),
}; };
static const struct rtw_hw_reg rtw8822c_dig[] = { static const struct rtw_hw_reg rtw8822c_dig[] = {

File diff suppressed because it is too large Load diff

View file

@ -12,6 +12,7 @@ extern const struct rtw_table rtw8822c_bb_pg_type0_tbl;
extern const struct rtw_table rtw8822c_rf_a_tbl; extern const struct rtw_table rtw8822c_rf_a_tbl;
extern const struct rtw_table rtw8822c_rf_b_tbl; extern const struct rtw_table rtw8822c_rf_b_tbl;
extern const struct rtw_table rtw8822c_txpwr_lmt_type0_tbl; extern const struct rtw_table rtw8822c_txpwr_lmt_type0_tbl;
extern const struct rtw_table rtw8822c_txpwr_lmt_type5_tbl;
extern const struct rtw_table rtw8822c_dpk_afe_no_dpk_tbl; extern const struct rtw_table rtw8822c_dpk_afe_no_dpk_tbl;
extern const struct rtw_table rtw8822c_dpk_afe_is_dpk_tbl; extern const struct rtw_table rtw8822c_dpk_afe_is_dpk_tbl;
extern const struct rtw_table rtw8822c_dpk_mac_bb_tbl; extern const struct rtw_table rtw8822c_dpk_mac_bb_tbl;