]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
brcmfmac: update escan for multiple bss and simplify.
authorHante Meuleman <meuleman@broadcom.com>
Fri, 8 Feb 2013 14:53:42 +0000 (15:53 +0100)
committerJohn W. Linville <linville@tuxdriver.com>
Fri, 8 Feb 2013 19:51:38 +0000 (14:51 -0500)
Add support for scanning on non primary netdev (p2p) and
simplify the p2p scanning preparation.

Reviewed-by: Arend Van Spriel <arend@broadcom.com>
Reviewed-by: Pieter-Paul Giesberts <pieterpg@broadcom.com>
Signed-off-by: Hante Meuleman <meuleman@broadcom.com>
Signed-off-by: Arend van Spriel <arend@broadcom.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/brcm80211/brcmfmac/p2p.c
drivers/net/wireless/brcm80211/brcmfmac/p2p.h
drivers/net/wireless/brcm80211/brcmfmac/wl_cfg80211.c

index fff5722d4c0b54de5f75adc76fc8d3841c2f6d74..aef0287f58577046f02a9be5663026a8bea71587 100644 (file)
@@ -91,11 +91,6 @@ struct brcmf_p2p_scan_le {
        };
 };
 
-static struct brcmf_cfg80211_vif *p2p_discover_vif(struct brcmf_p2p_info *p2p)
-{
-       return p2p->bss_idx[P2PAPI_BSSCFG_DEVICE].vif;
-}
-
 /**
  * brcmf_p2p_set_firmware() - prepare firmware for peer-to-peer operation.
  *
@@ -194,34 +189,6 @@ static s32 brcmf_p2p_set_discover_state(struct brcmf_if *ifp, u8 state,
        return ret;
 }
 
-/**
- * brcmf_p2p_discover_disable_search() - reset discover state.
- *
- * @p2p: P2P specific data.
- *
- * Reset the discover state to @WL_P2P_DISC_ST_SCAN. Returns 0 on success.
- */
-static s32 brcmf_p2p_discover_disable_search(struct brcmf_p2p_info *p2p)
-{
-       struct brcmf_cfg80211_vif *vif = p2p->bss_idx[P2PAPI_BSSCFG_DEVICE].vif;
-       struct brcmf_p2p_disc_st_le discovery_mode;
-       int ret;
-
-       /*
-        * vif presence indicates discovery is initialized.
-        */
-       if (!vif)
-               return -ENODEV;
-
-       ret = brcmf_fil_bsscfg_data_get(vif->ifp, "p2p_state",
-                                       &discovery_mode,
-                                       sizeof(discovery_mode));
-       if (!ret && discovery_mode.state != WL_P2P_DISC_ST_SCAN)
-               ret = brcmf_p2p_set_discover_state(vif->ifp,
-                                                 WL_P2P_DISC_ST_SCAN, 0, 0);
-       return ret;
-}
-
 /**
  * brcmf_p2p_init_discovery() - enable discovery in the firmware.
  *
@@ -376,32 +343,6 @@ exit:
 }
 
 /**
- * brcmf_p2p_configure_probereq() - Configure probe request data.
- *
- * @p2p: P2P specific data.
- * @ie: buffer containing information elements.
- * @ie_len: length of @ie buffer.
- *
- */
-static int brcmf_p2p_configure_probereq(struct brcmf_p2p_info *p2p,
-                                       const u8 *ie, u32 ie_len)
-{
-       struct brcmf_cfg80211_vif *vif;
-       s32 err = 0;
-
-       brcmf_dbg(TRACE, "enter\n");
-       vif = p2p->bss_idx[P2PAPI_BSSCFG_DEVICE].vif;
-
-       err = brcmf_vif_set_mgmt_ie(vif, BRCMF_VNDR_IE_PRBREQ_FLAG,
-                                   ie, ie_len);
-
-       if (err < 0)
-               brcmf_err("set probreq ie occurs error %d\n", err);
-
-       return err;
-}
-
-/*
  * brcmf_p2p_escan() - initiate a P2P scan.
  *
  * @p2p: P2P specific data.
@@ -621,12 +562,14 @@ exit:
  *
  * @wiphy: wiphy device.
  * @request: scan request from cfg80211.
+ * @vif: vif on which scan request is to be executed.
  *
  * Prepare the scan appropriately for type of scan requested. Overrides the
  * escan .run() callback for peer-to-peer scanning.
  */
 int brcmf_p2p_scan_prep(struct wiphy *wiphy,
-                       struct cfg80211_scan_request *request)
+                       struct cfg80211_scan_request *request,
+                       struct brcmf_cfg80211_vif *vif)
 {
        struct brcmf_cfg80211_info *cfg = wiphy_to_cfg(wiphy);
        struct brcmf_p2p_info *p2p = &cfg->p2p;
@@ -644,31 +587,16 @@ int brcmf_p2p_scan_prep(struct wiphy *wiphy,
                brcmf_dbg(INFO, "P2P: GO_NEG_PHASE status cleared\n");
 
                err = brcmf_p2p_enable_discovery(p2p);
-               if (err == 0)
-                       err = brcmf_p2p_configure_probereq(p2p, request->ie,
-                                                          request->ie_len);
+               if (err)
+                       return err;
 
-               /*
-                * override .run_escan() callback.
-                */
-               cfg->escan_info.run = brcmf_p2p_run_escan;
-       } else {
-               /*
-                * legacy scan trigger
-                * So, we have to disable p2p discovery if p2p discovery is on
-                */
-               (void)brcmf_p2p_discover_disable_search(p2p);
+               vif = p2p->bss_idx[P2PAPI_BSSCFG_DEVICE].vif;
 
-               /*
-                * clear p2p vendor ies for probe request set by
-                * previous p2p related scan(s).
-                */
-               if (p2p_discover_vif(p2p))
-                       err = brcmf_vif_set_mgmt_ie(p2p_discover_vif(p2p),
-                                                   BRCMF_VNDR_IE_PRBREQ_FLAG,
-                                                   request->ie,
-                                                   request->ie_len);
+               /* override .run_escan() callback. */
+               cfg->escan_info.run = brcmf_p2p_run_escan;
        }
+       err = brcmf_vif_set_mgmt_ie(vif, BRCMF_VNDR_IE_PRBREQ_FLAG,
+                                   request->ie, request->ie_len);
        return err;
 }
 
index df93272ad49f63358a69d5c0180d7cff179d4819..1f97afd8709eb62d659da7873c5288df8a0dec3c 100644 (file)
@@ -111,7 +111,8 @@ int brcmf_p2p_del_vif(struct wiphy *wiphy, struct wireless_dev *wdev);
 int brcmf_p2p_start_device(struct wiphy *wiphy, struct wireless_dev *wdev);
 void brcmf_p2p_stop_device(struct wiphy *wiphy, struct wireless_dev *wdev);
 int brcmf_p2p_scan_prep(struct wiphy *wiphy,
-                       struct cfg80211_scan_request *request);
+                       struct cfg80211_scan_request *request,
+                       struct brcmf_cfg80211_vif *vif);
 int brcmf_p2p_remain_on_channel(struct wiphy *wiphy, struct wireless_dev *wdev,
                                struct ieee80211_channel *channel,
                                unsigned int duration, u64 *cookie);
index d792c3b2331a6c034c88a83663257d7fe8ce1ab8..c57c1dbb0daf96bfd35bf57ed16c7ef3b1ed4221 100644 (file)
@@ -805,6 +805,12 @@ brcmf_cfg80211_escan(struct wiphy *wiphy, struct net_device *ndev,
                return -EAGAIN;
        }
 
+       /* If scan req comes for p2p0, send it over primary I/F */
+       if (ifp->vif == cfg->p2p.bss_idx[P2PAPI_BSSCFG_DEVICE].vif) {
+               ifp = cfg->p2p.bss_idx[P2PAPI_BSSCFG_PRIMARY].vif->ifp;
+               ndev = ifp->ndev;
+       }
+
        /* Arm scan timeout timer */
        mod_timer(&cfg->escan_timeout, jiffies +
                        WL_ESCAN_TIMER_INTERVAL_MS * HZ / 1000);
@@ -824,7 +830,7 @@ brcmf_cfg80211_escan(struct wiphy *wiphy, struct net_device *ndev,
        set_bit(BRCMF_SCAN_STATUS_BUSY, &cfg->scan_status);
        if (escan_req) {
                cfg->escan_info.run = brcmf_run_escan;
-               err = brcmf_p2p_scan_prep(wiphy, request);
+               err = brcmf_p2p_scan_prep(wiphy, request, ifp->vif);
                if (err)
                        goto scan_out;