mirror of
https://github.com/torvalds/linux.git
synced 2026-06-01 02:53:36 +02:00
wifi: rtw89: add general way to generate module firmware string
Module firmware string depends on max format of the firmware. When max format is 0, the module firmware string will be like XYZ.bin. However, when max format N > 0, the module firmware string will become XYZ-N.bin. Originally, when one chip updated its max firmware format from 0 to 1, the module firmware string also needed to be changed. However, did not need to do for other cases, e.g. from 1 to 2. It's a bit inconvenient to always remember that from 0 to 1 is a special case. So, add a general macro to generate the corresponding module firmware string based on max firmware format. Signed-off-by: Zong-Zhe Yang <kevin_yang@realtek.com> Signed-off-by: Ping-Ke Shih <pkshih@realtek.com> Link: https://patch.msgid.link/20260213061552.29997-4-pkshih@realtek.com
This commit is contained in:
parent
fdb626b794
commit
888226bd56
|
|
@ -4152,6 +4152,15 @@ struct rtw89_reg_imr {
|
|||
u32 set;
|
||||
};
|
||||
|
||||
#define RTW89_MODULE_FWNAME_PLACEHOLDER_0 0,
|
||||
#define __RTW89_GEN_MODULE_FWNAME_FMT(placeholder_or_ignored, strfmt) \
|
||||
__take_second_arg(placeholder_or_ignored, strfmt)
|
||||
#define RTW89_GEN_MODULE_FWNAME_FMT(maxfmt) \
|
||||
__RTW89_GEN_MODULE_FWNAME_FMT(RTW89_MODULE_FWNAME_PLACEHOLDER_ ## maxfmt, \
|
||||
"-" __stringify(maxfmt))
|
||||
#define RTW89_GEN_MODULE_FWNAME(basename, maxformat) \
|
||||
basename RTW89_GEN_MODULE_FWNAME_FMT(maxformat) ".bin"
|
||||
|
||||
struct rtw89_fw_def {
|
||||
const char *fw_basename;
|
||||
u8 fw_format_max;
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@
|
|||
#define RTW8851B_FW_FORMAT_MAX 0
|
||||
#define RTW8851B_FW_BASENAME "rtw89/rtw8851b_fw"
|
||||
#define RTW8851B_MODULE_FIRMWARE \
|
||||
RTW8851B_FW_BASENAME ".bin"
|
||||
RTW89_GEN_MODULE_FWNAME(RTW8851B_FW_BASENAME, RTW8851B_FW_FORMAT_MAX)
|
||||
|
||||
static const struct rtw89_hfc_ch_cfg rtw8851b_hfc_chcfg_pcie[] = {
|
||||
{5, 343, grp_0}, /* ACH 0 */
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
#define RTW8852A_FW_FORMAT_MAX 0
|
||||
#define RTW8852A_FW_BASENAME "rtw89/rtw8852a_fw"
|
||||
#define RTW8852A_MODULE_FIRMWARE \
|
||||
RTW8852A_FW_BASENAME ".bin"
|
||||
RTW89_GEN_MODULE_FWNAME(RTW8852A_FW_BASENAME, RTW8852A_FW_FORMAT_MAX)
|
||||
|
||||
static const struct rtw89_hfc_ch_cfg rtw8852a_hfc_chcfg_pcie[] = {
|
||||
{128, 1896, grp_0}, /* ACH 0 */
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
#define RTW8852B_FW_FORMAT_MAX 1
|
||||
#define RTW8852B_FW_BASENAME "rtw89/rtw8852b_fw"
|
||||
#define RTW8852B_MODULE_FIRMWARE \
|
||||
RTW8852B_FW_BASENAME "-" __stringify(RTW8852B_FW_FORMAT_MAX) ".bin"
|
||||
RTW89_GEN_MODULE_FWNAME(RTW8852B_FW_BASENAME, RTW8852B_FW_FORMAT_MAX)
|
||||
|
||||
static const struct rtw89_hfc_ch_cfg rtw8852b_hfc_chcfg_pcie[] = {
|
||||
{5, 341, grp_0}, /* ACH 0 */
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
#define RTW8852BT_FW_FORMAT_MAX 0
|
||||
#define RTW8852BT_FW_BASENAME "rtw89/rtw8852bt_fw"
|
||||
#define RTW8852BT_MODULE_FIRMWARE \
|
||||
RTW8852BT_FW_BASENAME ".bin"
|
||||
RTW89_GEN_MODULE_FWNAME(RTW8852BT_FW_BASENAME, RTW8852BT_FW_FORMAT_MAX)
|
||||
|
||||
static const struct rtw89_hfc_ch_cfg rtw8852bt_hfc_chcfg_pcie[] = {
|
||||
{16, 742, grp_0}, /* ACH 0 */
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@
|
|||
#define RTW8852C_FW_FORMAT_MAX 2
|
||||
#define RTW8852C_FW_BASENAME "rtw89/rtw8852c_fw"
|
||||
#define RTW8852C_MODULE_FIRMWARE \
|
||||
RTW8852C_FW_BASENAME "-" __stringify(RTW8852C_FW_FORMAT_MAX) ".bin"
|
||||
RTW89_GEN_MODULE_FWNAME(RTW8852C_FW_BASENAME, RTW8852C_FW_FORMAT_MAX)
|
||||
|
||||
static const struct rtw89_hfc_ch_cfg rtw8852c_hfc_chcfg_pcie[] = {
|
||||
{13, 1614, grp_0}, /* ACH 0 */
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@
|
|||
#define RTW8922A_FW_FORMAT_MAX 4
|
||||
#define RTW8922A_FW_BASENAME "rtw89/rtw8922a_fw"
|
||||
#define RTW8922A_MODULE_FIRMWARE \
|
||||
RTW8922A_FW_BASENAME "-" __stringify(RTW8922A_FW_FORMAT_MAX) ".bin"
|
||||
RTW89_GEN_MODULE_FWNAME(RTW8922A_FW_BASENAME, RTW8922A_FW_FORMAT_MAX)
|
||||
|
||||
#define HE_N_USER_MAX_8922A 4
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user