mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-02 05:07:46 -04:00
wifi: rtl8xxxu: support setting bssid register for multiple interfaces
To prepare for concurrent mode, enhance rtl8xxxu_set_bssid() to write the BSSID of the respective interface to REG_BSSID or REG_BSSID1. Like done with rtl8xxxu_set_mac(), call rtl8xxxu_set_bssid() with port_num = 0, until the callers also support multiple interfaces. Signed-off-by: Martin Kaistra <martin.kaistra@linutronix.de> Reviewed-by: Ping-Ke Shih <pkshih@realtek.com> Signed-off-by: Kalle Valo <kvalo@kernel.org> Link: https://msgid.link/20231222101442.626837-10-martin.kaistra@linutronix.de
This commit is contained in:
committed by
Kalle Valo
parent
f86dd8eaf8
commit
3ff7a05996
@@ -3603,14 +3603,24 @@ static int rtl8xxxu_set_mac(struct rtl8xxxu_priv *priv, int port_num)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int rtl8xxxu_set_bssid(struct rtl8xxxu_priv *priv, const u8 *bssid)
|
||||
static int rtl8xxxu_set_bssid(struct rtl8xxxu_priv *priv, const u8 *bssid, int port_num)
|
||||
{
|
||||
int i;
|
||||
u16 reg;
|
||||
|
||||
dev_dbg(&priv->udev->dev, "%s: (%pM)\n", __func__, bssid);
|
||||
|
||||
reg = REG_BSSID;
|
||||
switch (port_num) {
|
||||
case 0:
|
||||
reg = REG_BSSID;
|
||||
break;
|
||||
case 1:
|
||||
reg = REG_BSSID1;
|
||||
break;
|
||||
default:
|
||||
WARN_ONCE("%s: invalid port_num\n", __func__);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
for (i = 0; i < ETH_ALEN; i++)
|
||||
rtl8xxxu_write8(priv, reg + i, bssid[i]);
|
||||
@@ -5068,7 +5078,7 @@ rtl8xxxu_bss_info_changed(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
|
||||
|
||||
if (changed & BSS_CHANGED_BSSID) {
|
||||
dev_dbg(dev, "Changed BSSID!\n");
|
||||
rtl8xxxu_set_bssid(priv, bss_conf->bssid);
|
||||
rtl8xxxu_set_bssid(priv, bss_conf->bssid, 0);
|
||||
}
|
||||
|
||||
if (changed & BSS_CHANGED_BASIC_RATES) {
|
||||
@@ -5097,7 +5107,7 @@ static int rtl8xxxu_start_ap(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
|
||||
struct device *dev = &priv->udev->dev;
|
||||
|
||||
dev_dbg(dev, "Start AP mode\n");
|
||||
rtl8xxxu_set_bssid(priv, vif->bss_conf.bssid);
|
||||
rtl8xxxu_set_bssid(priv, vif->bss_conf.bssid, 0);
|
||||
rtl8xxxu_write16(priv, REG_BCN_INTERVAL, vif->bss_conf.beacon_int);
|
||||
priv->fops->report_connect(priv, RTL8XXXU_BC_MC_MACID, 0, true);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user