wcn36xx: Add VHT fields to parameter data structures
authorBryan O'Donoghue <bryan.odonoghue@linaro.org>
Thu, 10 Sep 2020 15:04:49 +0000 (16:04 +0100)
committerKalle Valo <kvalo@codeaurora.org>
Mon, 21 Sep 2020 13:13:20 +0000 (16:13 +0300)
In order to pass VHT parameters to wcn3680 we need to use a super-set of
the V1 data-structures with additional VHT parameters tacked on.

This patch adds the additional fields to the STA and BSS parameter
structures.

Since neither wcn3620 nor wcn3660 support VHT the size of the passed
message is fixed to the previous message length. Subsequent changes will
differentiate between wcn3620/wcn3660 and wcn3680 which does use the larger
message size.

Signed-off-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20200910150450.2178784-2-bryan.odonoghue@linaro.org
drivers/net/wireless/ath/wcn36xx/hal.h
drivers/net/wireless/ath/wcn36xx/smd.c

index 573799274a02070f1e727b7ae75b43112e7c4841..3cceeaf0136fe8e77ddf5ed6b320b9fa36ddcc91 100644 (file)
@@ -1592,9 +1592,15 @@ struct wcn36xx_hal_config_sta_params_v1 {
        u8 reserved:4;
 
        /* These rates are the intersection of peer and self capabilities. */
-       struct wcn36xx_hal_supported_rates supported_rates;
+       struct wcn36xx_hal_supported_rates_v1 supported_rates;
+
+       u8 vht_capable;
+       u8 vht_tx_channel_width_set;
+
 } __packed;
 
+#define WCN36XX_DIFF_STA_PARAMS_V1_NOVHT 10
+
 struct wcn36xx_hal_config_sta_req_msg_v1 {
        struct wcn36xx_hal_msg_header header;
        struct wcn36xx_hal_config_sta_params_v1 sta_params;
@@ -2015,8 +2021,14 @@ struct wcn36xx_hal_config_bss_params_v1 {
         *  "STA context"
         */
        struct wcn36xx_hal_config_sta_params_v1 sta;
+
+       u8 vht_capable;
+       u8 vht_tx_channel_width_set;
+
 } __packed;
 
+#define WCN36XX_DIFF_BSS_PARAMS_V1_NOVHT (WCN36XX_DIFF_STA_PARAMS_V1_NOVHT + 2)
+
 struct wcn36xx_hal_config_bss_req_msg_v1 {
        struct wcn36xx_hal_msg_header header;
        struct wcn36xx_hal_config_bss_params_v1 bss_params;
index 4c30036e2e562574cdba13497c2f5b5252a5c5a6..55aaaeb78b1458fb103309e8f4e8f1095b49641e 100644 (file)
@@ -1223,6 +1223,7 @@ static int wcn36xx_smd_config_sta_v1(struct wcn36xx *wcn,
        struct wcn36xx_hal_config_sta_params_v1 *sta = &msg_body.sta_params;
 
        INIT_HAL_MSG(msg_body, WCN36XX_HAL_CONFIG_STA_REQ);
+       msg_body.header.len -= WCN36XX_DIFF_STA_PARAMS_V1_NOVHT;
 
        wcn36xx_smd_convert_sta_to_v1(wcn, &orig->sta_params,
                                      &msg_body.sta_params);
@@ -1294,6 +1295,7 @@ static int wcn36xx_smd_config_bss_v1(struct wcn36xx *wcn,
                return -ENOMEM;
 
        INIT_HAL_MSG((*msg_body), WCN36XX_HAL_CONFIG_BSS_REQ);
+       msg_body->header.len -= WCN36XX_DIFF_BSS_PARAMS_V1_NOVHT;
 
        bss = &msg_body->bss_params;
        sta = &bss->sta;