staging: rtl8723bs: remove code related to unsupported channel bandwidth
authorFabio Aiuto <fabioaiuto83@gmail.com>
Tue, 22 Jun 2021 13:09:46 +0000 (15:09 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 24 Jun 2021 12:43:45 +0000 (14:43 +0200)
remove all code related to unsupported channel
bandwidth (i.e. 80, 80+80, 160 Mhz). rtl8723bs NIC
works only on 20 and 40 Mhz channels.

Module parameter rtw_bw_mode can only have two
values: 0 and 1 (20 Mhz and 40Mhz). So modify
the default value setting to zero the 5Ghz nibble.

Comments modified accordingly.

Acked-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Fabio Aiuto <fabioaiuto83@gmail.com>
Link: https://lore.kernel.org/r/7b2ee7cc0abfd8744ed5ff4a654fb333fee77ec7.1624367071.git.fabioaiuto83@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/core/rtw_wlan_util.c
drivers/staging/rtl8723bs/core/rtw_xmit.c
drivers/staging/rtl8723bs/hal/hal_com_phycfg.c
drivers/staging/rtl8723bs/hal/odm.h
drivers/staging/rtl8723bs/hal/odm_DIG.c
drivers/staging/rtl8723bs/hal/rtl8723b_hal_init.c
drivers/staging/rtl8723bs/hal/rtl8723b_phycfg.c
drivers/staging/rtl8723bs/include/drv_types.h
drivers/staging/rtl8723bs/include/rtw_rf.h
drivers/staging/rtl8723bs/os_dep/os_intfs.c

index 2a47d67..c06b74f 100644 (file)
@@ -336,9 +336,7 @@ u8 rtw_get_center_ch(u8 channel, u8 chnl_bw, u8 chnl_offset)
 {
        u8 center_ch = channel;
 
-       if (chnl_bw == CHANNEL_WIDTH_80) {
-               center_ch = 7;
-       } else if (chnl_bw == CHANNEL_WIDTH_40) {
+       if (chnl_bw == CHANNEL_WIDTH_40) {
                if (chnl_offset == HAL_PRIME_CHNL_OFFSET_LOWER)
                        center_ch = channel + 2;
                else
@@ -375,14 +373,6 @@ void set_channel_bwmode(struct adapter *padapter, unsigned char channel, unsigne
 
        center_ch = rtw_get_center_ch(channel, bwmode, channel_offset);
 
-       if (bwmode == CHANNEL_WIDTH_80) {
-               if (center_ch > channel)
-                       chnl_offset80 = HAL_PRIME_CHNL_OFFSET_LOWER;
-               else if (center_ch < channel)
-                       chnl_offset80 = HAL_PRIME_CHNL_OFFSET_UPPER;
-               else
-                       chnl_offset80 = HAL_PRIME_CHNL_OFFSET_DONT_CARE;
-       }
 
        /* set Channel */
        if (mutex_lock_interruptible(&(adapter_to_dvobj(padapter)->setch_mutex)))
@@ -919,9 +909,6 @@ static void bwmode_update_check(struct adapter *padapter, struct ndis_80211_var_
        if (phtpriv->ht_option == false)
                return;
 
-       if (pmlmeext->cur_bwmode >= CHANNEL_WIDTH_80)
-               return;
-
        if (pIE->Length > sizeof(struct HT_info_element))
                return;
 
index 0562fa6..79e4d7d 100644 (file)
@@ -321,15 +321,12 @@ void _rtw_free_xmit_priv(struct xmit_priv *pxmitpriv)
 
 u8 query_ra_short_GI(struct sta_info *psta)
 {
-       u8 sgi = false, sgi_20m = false, sgi_40m = false, sgi_80m = false;
+       u8 sgi = false, sgi_20m = false, sgi_40m = false;
 
        sgi_20m = psta->htpriv.sgi_20m;
        sgi_40m = psta->htpriv.sgi_40m;
 
        switch (psta->bw_mode) {
-       case CHANNEL_WIDTH_80:
-               sgi = sgi_80m;
-               break;
        case CHANNEL_WIDTH_40:
                sgi = sgi_40m;
                break;
index 94d1168..56e657d 100644 (file)
@@ -995,7 +995,6 @@ u8 PHY_GetTxPowerIndexBase(
 )
 {
        struct hal_com_data *pHalData = GET_HAL_DATA(padapter);
-       u8 i = 0;       /* default set to 1S */
        u8 txPower = 0;
        u8 chnlIdx = (Channel-1);
 
@@ -1035,18 +1034,6 @@ u8 PHY_GetTxPowerIndexBase(
                                txPower += pHalData->BW40_24G_Diff[RFPath][TX_4S];
 
                }
-               /*  Willis suggest adopt BW 40M power index while in BW 80 mode */
-               else if (BandWidth == CHANNEL_WIDTH_80) {
-                       if ((MGN_MCS0 <= Rate && Rate <= MGN_MCS31) || (MGN_VHT1SS_MCS0 <= Rate && Rate <= MGN_VHT4SS_MCS9))
-                               txPower += pHalData->BW40_24G_Diff[RFPath][TX_1S];
-                       if ((MGN_MCS8 <= Rate && Rate <= MGN_MCS31) || (MGN_VHT2SS_MCS0 <= Rate && Rate <= MGN_VHT4SS_MCS9))
-                               txPower += pHalData->BW40_24G_Diff[RFPath][TX_2S];
-                       if ((MGN_MCS16 <= Rate && Rate <= MGN_MCS31) || (MGN_VHT3SS_MCS0 <= Rate && Rate <= MGN_VHT4SS_MCS9))
-                               txPower += pHalData->BW40_24G_Diff[RFPath][TX_3S];
-                       if ((MGN_MCS24 <= Rate && Rate <= MGN_MCS31) || (MGN_VHT4SS_MCS0 <= Rate && Rate <= MGN_VHT4SS_MCS9))
-                               txPower += pHalData->BW40_24G_Diff[RFPath][TX_4S];
-
-               }
        } else {/* 3 ============================== 5 G ============================== */
                if (MGN_6M <= Rate)
                        txPower = pHalData->Index5G_BW40_Base[RFPath][chnlIdx];
@@ -1076,23 +1063,6 @@ u8 PHY_GetTxPowerIndexBase(
                        if ((MGN_MCS24 <= Rate && Rate <= MGN_MCS31) || (MGN_VHT4SS_MCS0 <= Rate && Rate <= MGN_VHT4SS_MCS9))
                                txPower += pHalData->BW40_5G_Diff[RFPath][TX_4S];
 
-               } else if (BandWidth == CHANNEL_WIDTH_80) { /*  BW80-1S, BW80-2S */
-                       /*  <20121220, Kordan> Get the index of array "Index5G_BW80_Base". */
-                       u8 channel5G_80M[CHANNEL_MAX_NUMBER_5G_80M] = {42, 58, 106, 122, 138, 155, 171};
-                       for (i = 0; i < ARRAY_SIZE(channel5G_80M); ++i)
-                               if (channel5G_80M[i] == Channel)
-                                       chnlIdx = i;
-
-                       txPower = pHalData->Index5G_BW80_Base[RFPath][chnlIdx];
-
-                       if ((MGN_MCS0 <= Rate && Rate <= MGN_MCS31)  || (MGN_VHT1SS_MCS0 <= Rate && Rate <= MGN_VHT4SS_MCS9))
-                               txPower += + pHalData->BW80_5G_Diff[RFPath][TX_1S];
-                       if ((MGN_MCS8 <= Rate && Rate <= MGN_MCS31) || (MGN_VHT2SS_MCS0 <= Rate && Rate <= MGN_VHT4SS_MCS9))
-                               txPower += pHalData->BW80_5G_Diff[RFPath][TX_2S];
-                       if ((MGN_MCS16 <= Rate && Rate <= MGN_MCS31) || (MGN_VHT3SS_MCS0 <= Rate && Rate <= MGN_VHT4SS_MCS9))
-                               txPower += pHalData->BW80_5G_Diff[RFPath][TX_3S];
-                       if ((MGN_MCS23 <= Rate && Rate <= MGN_MCS31) || (MGN_VHT4SS_MCS0 <= Rate && Rate <= MGN_VHT4SS_MCS9))
-                               txPower += pHalData->BW80_5G_Diff[RFPath][TX_4S];
                }
        }
 
@@ -1512,10 +1482,6 @@ static s16 get_bandwidth_idx(const enum channel_width bandwidth)
                return 0;
        case CHANNEL_WIDTH_40:
                return 1;
-       case CHANNEL_WIDTH_80:
-               return 2;
-       case CHANNEL_WIDTH_160:
-               return 3;
        default:
                return -1;
        }
index 7e2d367..a7a77fb 100644 (file)
@@ -471,9 +471,6 @@ enum { /* tag_Band_Type_Definition */
 enum { /* tag_Bandwidth_Definition */
        ODM_BW20M               = 0,
        ODM_BW40M               = 1,
-       ODM_BW80M               = 2,
-       ODM_BW160M              = 3,
-       ODM_BW10M               = 4,
 };
 
 /*  ODM_CMNINFO_BOARD_TYPE */
index 702bb06..ef5b48b 100644 (file)
@@ -230,8 +230,6 @@ void odm_Adaptivity(void *pDM_VOID, u8 IGI)
                IGI_target = pDM_Odm->IGI_Base;
        else if (*pDM_Odm->pBandWidth == ODM_BW40M)
                IGI_target = pDM_Odm->IGI_Base + 2;
-       else if (*pDM_Odm->pBandWidth == ODM_BW80M)
-               IGI_target = pDM_Odm->IGI_Base + 2;
        else
                IGI_target = pDM_Odm->IGI_Base;
        pDM_Odm->IGI_target = (u8) IGI_target;
index 6359cd6..3ecd034 100644 (file)
@@ -2509,15 +2509,8 @@ u8 BWMapping_8723B(struct adapter *Adapter, struct pkt_attrib *pattrib)
        u8 BWSettingOfDesc = 0;
        struct hal_com_data *pHalData = GET_HAL_DATA(Adapter);
 
-       if (pHalData->CurrentChannelBW == CHANNEL_WIDTH_80) {
-               if (pattrib->bwmode == CHANNEL_WIDTH_80)
-                       BWSettingOfDesc = 2;
-               else if (pattrib->bwmode == CHANNEL_WIDTH_40)
-                       BWSettingOfDesc = 1;
-               else
-                       BWSettingOfDesc = 0;
-       } else if (pHalData->CurrentChannelBW == CHANNEL_WIDTH_40) {
-               if ((pattrib->bwmode == CHANNEL_WIDTH_40) || (pattrib->bwmode == CHANNEL_WIDTH_80))
+       if (pHalData->CurrentChannelBW == CHANNEL_WIDTH_40) {
+               if (pattrib->bwmode == CHANNEL_WIDTH_40)
                        BWSettingOfDesc = 1;
                else
                        BWSettingOfDesc = 0;
@@ -2535,25 +2528,7 @@ u8 SCMapping_8723B(struct adapter *Adapter, struct pkt_attrib *pattrib)
        u8 SCSettingOfDesc = 0;
        struct hal_com_data *pHalData = GET_HAL_DATA(Adapter);
 
-       if (pHalData->CurrentChannelBW == CHANNEL_WIDTH_80) {
-               if (pattrib->bwmode == CHANNEL_WIDTH_80) {
-                       SCSettingOfDesc = VHT_DATA_SC_DONOT_CARE;
-               } else if (pattrib->bwmode == CHANNEL_WIDTH_40) {
-                       if (pHalData->nCur80MhzPrimeSC == HAL_PRIME_CHNL_OFFSET_LOWER)
-                               SCSettingOfDesc = VHT_DATA_SC_40_LOWER_OF_80MHZ;
-                       else if (pHalData->nCur80MhzPrimeSC == HAL_PRIME_CHNL_OFFSET_UPPER)
-                               SCSettingOfDesc = VHT_DATA_SC_40_UPPER_OF_80MHZ;
-               } else {
-                       if ((pHalData->nCur40MhzPrimeSC == HAL_PRIME_CHNL_OFFSET_LOWER) && (pHalData->nCur80MhzPrimeSC == HAL_PRIME_CHNL_OFFSET_LOWER))
-                               SCSettingOfDesc = VHT_DATA_SC_20_LOWEST_OF_80MHZ;
-                       else if ((pHalData->nCur40MhzPrimeSC == HAL_PRIME_CHNL_OFFSET_UPPER) && (pHalData->nCur80MhzPrimeSC == HAL_PRIME_CHNL_OFFSET_LOWER))
-                               SCSettingOfDesc = VHT_DATA_SC_20_LOWER_OF_80MHZ;
-                       else if ((pHalData->nCur40MhzPrimeSC == HAL_PRIME_CHNL_OFFSET_LOWER) && (pHalData->nCur80MhzPrimeSC == HAL_PRIME_CHNL_OFFSET_UPPER))
-                               SCSettingOfDesc = VHT_DATA_SC_20_UPPER_OF_80MHZ;
-                       else if ((pHalData->nCur40MhzPrimeSC == HAL_PRIME_CHNL_OFFSET_UPPER) && (pHalData->nCur80MhzPrimeSC == HAL_PRIME_CHNL_OFFSET_UPPER))
-                               SCSettingOfDesc = VHT_DATA_SC_20_UPPERST_OF_80MHZ;
-               }
-       } else if (pHalData->CurrentChannelBW == CHANNEL_WIDTH_40) {
+       if (pHalData->CurrentChannelBW == CHANNEL_WIDTH_40) {
                if (pattrib->bwmode == CHANNEL_WIDTH_40) {
                        SCSettingOfDesc = VHT_DATA_SC_DONOT_CARE;
                } else if (pattrib->bwmode == CHANNEL_WIDTH_20) {
index 3a2e3d0..2754608 100644 (file)
@@ -609,11 +609,6 @@ static void phy_SetRegBW_8723B(
                rtw_write16(Adapter, REG_TRXPTCL_CTL_8723B, (u2tmp & 0xFEFF)); /*  BIT 7 = 1, BIT 8 = 0 */
                break;
 
-       case CHANNEL_WIDTH_80:
-               u2tmp = RegRfMod_BW | BIT8;
-               rtw_write16(Adapter, REG_TRXPTCL_CTL_8723B, (u2tmp & 0xFF7F)); /*  BIT 7 = 0, BIT 8 = 1 */
-               break;
-
        default:
                break;
        }
@@ -624,33 +619,7 @@ static u8 phy_GetSecondaryChnl_8723B(struct adapter *Adapter)
        u8 SCSettingOf40 = 0, SCSettingOf20 = 0;
        struct hal_com_data *pHalData = GET_HAL_DATA(Adapter);
 
-       if (pHalData->CurrentChannelBW == CHANNEL_WIDTH_80) {
-               if (pHalData->nCur80MhzPrimeSC == HAL_PRIME_CHNL_OFFSET_LOWER)
-                       SCSettingOf40 = VHT_DATA_SC_40_LOWER_OF_80MHZ;
-               else if (pHalData->nCur80MhzPrimeSC == HAL_PRIME_CHNL_OFFSET_UPPER)
-                       SCSettingOf40 = VHT_DATA_SC_40_UPPER_OF_80MHZ;
-
-               if (
-                       (pHalData->nCur40MhzPrimeSC == HAL_PRIME_CHNL_OFFSET_LOWER) &&
-                       (pHalData->nCur80MhzPrimeSC == HAL_PRIME_CHNL_OFFSET_LOWER)
-               )
-                       SCSettingOf20 = VHT_DATA_SC_20_LOWEST_OF_80MHZ;
-               else if (
-                       (pHalData->nCur40MhzPrimeSC == HAL_PRIME_CHNL_OFFSET_UPPER) &&
-                       (pHalData->nCur80MhzPrimeSC == HAL_PRIME_CHNL_OFFSET_LOWER)
-               )
-                       SCSettingOf20 = VHT_DATA_SC_20_LOWER_OF_80MHZ;
-               else if (
-                       (pHalData->nCur40MhzPrimeSC == HAL_PRIME_CHNL_OFFSET_LOWER) &&
-                       (pHalData->nCur80MhzPrimeSC == HAL_PRIME_CHNL_OFFSET_UPPER)
-               )
-                       SCSettingOf20 = VHT_DATA_SC_20_UPPER_OF_80MHZ;
-               else if (
-                       (pHalData->nCur40MhzPrimeSC == HAL_PRIME_CHNL_OFFSET_UPPER) &&
-                       (pHalData->nCur80MhzPrimeSC == HAL_PRIME_CHNL_OFFSET_UPPER)
-               )
-                       SCSettingOf20 = VHT_DATA_SC_20_UPPERST_OF_80MHZ;
-       } else if (pHalData->CurrentChannelBW == CHANNEL_WIDTH_40) {
+       if (pHalData->CurrentChannelBW == CHANNEL_WIDTH_40) {
                if (pHalData->nCur40MhzPrimeSC == HAL_PRIME_CHNL_OFFSET_UPPER)
                        SCSettingOf20 = VHT_DATA_SC_20_UPPER_OF_80MHZ;
                else if (pHalData->nCur40MhzPrimeSC == HAL_PRIME_CHNL_OFFSET_LOWER)
index cc0dac3..02df5bd 100644 (file)
@@ -108,9 +108,11 @@ struct registry_priv {
        struct wlan_bssid_ex    dev_network;
 
        u8 ht_enable;
-       /*  0: 20 MHz, 1: 40 MHz, 2: 80 MHz, 3: 160MHz */
-       /*  2.4G use bit 0 ~ 3, 5G use bit 4 ~ 7 */
-       /*  0x21 means enable 2.4G 40MHz & 5G 80MHz */
+       /*
+        * 0: 20 MHz, 1: 40 MHz
+        * 2.4G use bit 0 ~ 3
+        * 0x01 means enable 2.4G 40MHz
+        */
        u8 bw_mode;
        u8 ampdu_enable;/* for tx */
        u8 rx_stbc;
index cb6becc..98bc274 100644 (file)
@@ -83,10 +83,6 @@ enum {
 enum channel_width {
        CHANNEL_WIDTH_20 = 0,
        CHANNEL_WIDTH_40 = 1,
-       CHANNEL_WIDTH_80 = 2,
-       CHANNEL_WIDTH_160 = 3,
-       CHANNEL_WIDTH_80_80 = 4,
-       CHANNEL_WIDTH_MAX = 5,
 };
 
 /*  Represent Extension Channel Offset in HT Capabilities */
index 4e7c115..a06c8b1 100644 (file)
@@ -65,10 +65,12 @@ static int rtw_uapsd_acvi_en;
 static int rtw_uapsd_acvo_en;
 
 int rtw_ht_enable = 1;
-/*  0: 20 MHz, 1: 40 MHz, 2: 80 MHz, 3: 160MHz, 4: 80+80MHz */
-/*  2.4G use bit 0 ~ 3, 5G use bit 4 ~ 7 */
-/*  0x21 means enable 2.4G 40MHz & 5G 80MHz */
-static int rtw_bw_mode = 0x21;
+/*
+ * 0: 20 MHz, 1: 40 MHz
+ * 2.4G use bit 0 ~ 3
+ * 0x01 means enable 2.4G 40MHz
+ */
+static int rtw_bw_mode = 0x01;
 static int rtw_ampdu_enable = 1;/* for enable tx_ampdu ,0: disable, 0x1:enable (but wifi_spec should be 0), 0x2: force enable (don't care wifi_spec) */
 static int rtw_rx_stbc = 1;/*  0: disable, 1:enable 2.4g */
 static int rtw_ampdu_amsdu;/*  0: disabled, 1:enabled, 2:auto . There is an IOT issu with DLINK DIR-629 when the flag turn on */