Re: [PATCH] rtlwifi: Fix non-working BSS STA mode

From: Pkshih
Date: Thu Dec 13 2018 - 02:39:46 EST


On Thu, 2018-12-13 at 13:36 +0800, Kai Heng Feng wrote:
> > On Dec 13, 2018, at 08:35, Pkshih <pkshih@xxxxxxxxxxx> wrote:
>
> > On Wed, 2018-12-12 at 13:13 +0800, Kai-Heng Feng wrote:
> >> Once BSS STA mode gets started, it can be scanned by other clients but
> >> cannot entablish a connection.
> >ÂÂÂÂÂÂÂÂÂÂ^^^ typo: establish
> >>Â
> >> Turns out the set_bcn_reg() and its *_set_beacon_related_registers()
> >> callbacks never get called so it has problem beaconing.
> >>Â
> >> Enable the function in rtl_op_bss_info_changed() can make BSS STA mode
> >> start to work.
> >>Â
> >> Signed-off-by: Kai-Heng Feng <kai.heng.feng@xxxxxxxxxxxxx>
> >> ---
> >>ÂÂdrivers/net/wireless/realtek/rtlwifi/core.c | 2 +-
> >>ÂÂ1 file changed, 1 insertion(+), 1 deletion(-)
> >>Â
> >> diff --git a/drivers/net/wireless/realtek/rtlwifi/core.c
> >> b/drivers/net/wireless/realtek/rtlwifi/core.c
> >> index 4bf7967590ca..11d27a5cc576 100644
> >> --- a/drivers/net/wireless/realtek/rtlwifi/core.c
> >> +++ b/drivers/net/wireless/realtek/rtlwifi/core.c
> >> @@ -1054,7 +1054,7 @@ static void rtl_op_bss_info_changed(struct
> ieee80211_hw
> >> *hw,
> >>ÂÂ Â"BSS_CHANGED_BEACON_ENABLED\n");
> >>ÂÂ
> >>ÂÂ /*start hw beacon interrupt. */
> >> - /*rtlpriv->cfg->ops->set_bcn_reg(hw); */
> >> + rtlpriv->cfg->ops->set_bcn_reg(hw);
> >>ÂÂ mac->beacon_enabled = 1;
> >>ÂÂ rtlpriv->cfg->ops-
> >update_interrupt_mask(hw,
> >>ÂÂ rtlpriv->cfg->maps
>
> > Which wifi chip do you use? And, please share your test scenario.
>
> Itâs Realtek 8723DE, which is currently not supported in mainline so I use
> rtl8723de in rtlwifi_new [1] to test it out.
>
> The test scenario is simply enable hotspot through network manager, which uses
> wpa_supplicant to do the work.
>
> [1] https://github.com/lwfinger/rtlwifi_new
>

Since rtl8723de isn't supported yet, this patch would be pending.
I'll take time to check whether it works on existing chips.

Thanks
PK