Commit e31b2562 authored by Vladimir Kondratiev's avatar Vladimir Kondratiev Committed by John W. Linville

wil6210: Init Rx vring right after reset

at the vring initialisation, memory pool get allocated in the FW.
Make it 1-st because FW need this memory pool to precess
next commands
Signed-off-by: default avatarVladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent d58db4e4
...@@ -454,6 +454,11 @@ static int wil_cfg80211_start_ap(struct wiphy *wiphy, ...@@ -454,6 +454,11 @@ static int wil_cfg80211_start_ap(struct wiphy *wiphy,
if (rc) if (rc)
return rc; return rc;
/* Rx VRING. */
rc = wil_rx_init(wil);
if (rc)
return rc;
rc = wmi_set_ssid(wil, info->ssid_len, info->ssid); rc = wmi_set_ssid(wil, info->ssid_len, info->ssid);
if (rc) if (rc)
return rc; return rc;
...@@ -482,8 +487,6 @@ static int wil_cfg80211_start_ap(struct wiphy *wiphy, ...@@ -482,8 +487,6 @@ static int wil_cfg80211_start_ap(struct wiphy *wiphy,
if (rc) if (rc)
return rc; return rc;
/* Rx VRING. After MAC and beacon */
rc = wil_rx_init(wil);
netif_carrier_on(ndev); netif_carrier_on(ndev);
......
...@@ -295,6 +295,11 @@ static int __wil_up(struct wil6210_priv *wil) ...@@ -295,6 +295,11 @@ static int __wil_up(struct wil6210_priv *wil)
if (rc) if (rc)
return rc; return rc;
/* Rx VRING. After MAC and beacon */
rc = wil_rx_init(wil);
if (rc)
return rc;
/* FIXME Firmware works now in PBSS mode(ToDS=0, FromDS=0) */ /* FIXME Firmware works now in PBSS mode(ToDS=0, FromDS=0) */
wmi_nettype = wil_iftype_nl2wmi(NL80211_IFTYPE_ADHOC); wmi_nettype = wil_iftype_nl2wmi(NL80211_IFTYPE_ADHOC);
switch (wdev->iftype) { switch (wdev->iftype) {
...@@ -356,9 +361,6 @@ static int __wil_up(struct wil6210_priv *wil) ...@@ -356,9 +361,6 @@ static int __wil_up(struct wil6210_priv *wil)
return rc; return rc;
} }
/* Rx VRING. After MAC and beacon */
wil_rx_init(wil);
napi_enable(&wil->napi_rx); napi_enable(&wil->napi_rx);
napi_enable(&wil->napi_tx); napi_enable(&wil->napi_tx);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment