Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 15 additions & 4 deletions platform/broadcom/platform.c
Original file line number Diff line number Diff line change
Expand Up @@ -3265,10 +3265,13 @@ static void platform_get_radio_caps_2g(wifi_radio_info_t *radio, wifi_interface_
static const u8 he_phy_cap[HE_MAX_PHY_CAPAB_SIZE] = { 0x22, 0x20, 0x02, 0xc0, 0x0f, 0x03, 0x95,
0x18, 0x00, 0xcc, 0x00 };
#endif // TCXB7_PORT || TCHCBRV2_PORT || SKYSR213_PORT
#if defined(TCXB8_PORT) || defined(XB10_PORT) || defined(SCXER10_PORT)
#if defined(XB10_PORT)
static const u8 he_phy_cap[HE_MAX_PHY_CAPAB_SIZE] = { 0x22, 0x20, 0x42, 0xc0, 0x02, 0x03, 0x95,
0x00, 0x00, 0xcc, 0x00 };
#elif defined(TCXB8_PORT) || defined(SCXER10_PORT) || defined(SCXF10_PORT)
static const u8 he_phy_cap[HE_MAX_PHY_CAPAB_SIZE] = { 0x22, 0x20, 0x02, 0xc0, 0x02, 0x03, 0x95,
0x00, 0x00, 0xcc, 0x00 };
#endif // TCXB8_PORT || XB10_PORT || SCXER10_PORT
#endif // TCXB8_PORT || SCXER10_PORT || SCXF10_PORT
#if HOSTAPD_VERSION >= 211
static const u8 eht_mcs[] = { 0x44, 0x44, 0x44 };
#endif /* HOSTAPD_VERSION >= 211 */
Expand Down Expand Up @@ -3348,10 +3351,13 @@ static void platform_get_radio_caps_5g(wifi_radio_info_t *radio, wifi_interface_
static const u8 he_phy_cap[HE_MAX_PHY_CAPAB_SIZE] = { 0x4c, 0x20, 0x02, 0xc0, 0x6f, 0x1b, 0x95,
0x18, 0x00, 0xcc, 0x00 };
#endif // TCXB7_PORT || TCHCBRV2_PORT || SKYSR213_PORT
#if defined(TCXB8_PORT) || defined(XB10_PORT) || defined(SCXER10_PORT)
#if defined(XB10_PORT)
static const u8 he_phy_cap[HE_MAX_PHY_CAPAB_SIZE] = { 0x4c, 0x20, 0x42, 0xc0, 0x02, 0x1b, 0x95,
0x00, 0x00, 0xcc, 0x00 };
#elif defined(TCXB8_PORT) || defined(SCXER10_PORT) || defined(SCXF10_PORT)
static const u8 he_phy_cap[HE_MAX_PHY_CAPAB_SIZE] = { 0x4c, 0x20, 0x02, 0xc0, 0x02, 0x1b, 0x95,
0x00, 0x00, 0xcc, 0x00 };
#endif // TCXB8_PORT
#endif // TCXB8_PORT || SCXER10_PORT || SCXF10_PORT
#if defined(SCXER10_PORT)
static const u8 eht_phy_cap[EHT_PHY_CAPAB_LEN] = { 0x2c, 0x00, 0x1b, 0xe0, 0x00, 0xe7, 0x00,
0x7e, 0x00 };
Expand Down Expand Up @@ -3439,8 +3445,13 @@ static void platform_get_radio_caps_6g(wifi_radio_info_t *radio, wifi_interface_
#endif // XB10_PORT || SCXER10_PORT
#if defined(TCXB7_PORT) || defined(TCXB8_PORT) || defined(XB10_PORT) || defined(SCXER10_PORT)
static const u8 he_mac_cap[HE_MAX_MAC_CAPAB_SIZE] = { 0x05, 0x00, 0x18, 0x12, 0x00, 0x10 };
#if defined(XB10_PORT)
static const u8 he_phy_cap[HE_MAX_PHY_CAPAB_SIZE] = { 0x4c, 0x20, 0x42, 0xc0, 0x02, 0x1b, 0x95,
0x00, 0x00, 0xcc, 0x00 };
#else
static const u8 he_phy_cap[HE_MAX_PHY_CAPAB_SIZE] = { 0x4c, 0x20, 0x02, 0xc0, 0x02, 0x1b, 0x95,
0x00, 0x00, 0xcc, 0x00 };
#endif
static const u8 he_mcs[HE_MAX_MCS_CAPAB_SIZE] = { 0xaa, 0xff, 0xaa, 0xff, 0xaa, 0xff, 0xaa,
0xff };
static const u8 he_ppet[HE_MAX_PPET_CAPAB_SIZE] = { 0x7b, 0x1c, 0xc7, 0x71, 0x1c, 0xc7, 0x71,
Expand Down
Loading