Skip to content

Commit 8102734

Browse files
kitakar5525qzed
authored andcommitted
Revert "BACKPORT: wireless/mwifiex: Fix S0ix / suspend"
This reverts commit d3e3527. Signed-off-by: Tsuchiya Yuto (kitakar5525) <kitakar@gmail.com> (corresponds to commit dd9a57a from PR #44) Signed-off-by: Tsuchiya Yuto (kitakar5525) <kitakar@gmail.com>
1 parent 999ef39 commit 8102734

File tree

2 files changed

+50
-40
lines changed

2 files changed

+50
-40
lines changed

drivers/net/wireless/marvell/mwifiex/pcie.c

Lines changed: 36 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -149,39 +149,37 @@ static bool mwifiex_pcie_ok_to_access_hw(struct mwifiex_adapter *adapter)
149149
*/
150150
static int mwifiex_pcie_suspend(struct device *dev)
151151
{
152-
struct pci_dev *pdev = to_pci_dev(dev);
153-
struct pcie_service_card *card = pci_get_drvdata(pdev);
154152
struct mwifiex_adapter *adapter;
155-
struct mwifiex_private *priv;
156-
const struct mwifiex_pcie_card_reg *reg;
157-
u32 fw_status;
158-
int ret;
153+
struct pcie_service_card *card;
154+
struct pci_dev *pdev = to_pci_dev(dev);
159155

156+
card = pci_get_drvdata(pdev);
160157

161158
/* Might still be loading firmware */
162159
wait_for_completion(&card->fw_done);
163160

164161
adapter = card->adapter;
165-
if (!adapter || !adapter->priv_num)
162+
if (!adapter) {
163+
dev_err(dev, "adapter is not valid\n");
166164
return 0;
165+
}
167166

168-
reg = card->pcie.reg;
169-
if (reg)
170-
ret = mwifiex_read_reg(adapter, reg->fw_status, &fw_status);
171-
else
172-
fw_status = -1;
173-
174-
if (fw_status == FIRMWARE_READY_PCIE && !adapter->mfg_mode) {
175-
mwifiex_deauthenticate_all(adapter);
176-
177-
priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY);
178-
179-
mwifiex_disable_auto_ds(priv);
167+
mwifiex_enable_wake(adapter);
180168

181-
mwifiex_init_shutdown_fw(priv, MWIFIEX_FUNC_SHUTDOWN);
169+
/* Enable the Host Sleep */
170+
if (!mwifiex_enable_hs(adapter)) {
171+
mwifiex_dbg(adapter, ERROR,
172+
"cmd: failed to suspend\n");
173+
clear_bit(MWIFIEX_IS_HS_ENABLING, &adapter->work_flags);
174+
mwifiex_disable_wake(adapter);
175+
return -EFAULT;
182176
}
183177

184-
mwifiex_remove_card(adapter);
178+
flush_workqueue(adapter->workqueue);
179+
180+
/* Indicate device suspended */
181+
set_bit(MWIFIEX_IS_SUSPENDED, &adapter->work_flags);
182+
clear_bit(MWIFIEX_IS_HS_ENABLING, &adapter->work_flags);
185183

186184
return 0;
187185
}
@@ -196,29 +194,30 @@ static int mwifiex_pcie_suspend(struct device *dev)
196194
*/
197195
static int mwifiex_pcie_resume(struct device *dev)
198196
{
197+
struct mwifiex_adapter *adapter;
198+
struct pcie_service_card *card;
199199
struct pci_dev *pdev = to_pci_dev(dev);
200-
struct pcie_service_card *card = pci_get_drvdata(pdev);
201-
int ret;
202200

203-
pr_debug("info: vendor=0x%4.04X device=0x%4.04X rev=%d\n",
204-
pdev->vendor, pdev->device, pdev->revision);
201+
card = pci_get_drvdata(pdev);
205202

206-
init_completion(&card->fw_done);
203+
if (!card->adapter) {
204+
dev_err(dev, "adapter structure is not valid\n");
205+
return 0;
206+
}
207207

208-
card->dev = pdev;
208+
adapter = card->adapter;
209209

210-
/* device tree node parsing and platform specific configuration */
211-
if (pdev->dev.of_node) {
212-
ret = mwifiex_pcie_probe_of(&pdev->dev);
213-
if (ret)
214-
return ret;
210+
if (!test_bit(MWIFIEX_IS_SUSPENDED, &adapter->work_flags)) {
211+
mwifiex_dbg(adapter, WARN,
212+
"Device already resumed\n");
213+
return 0;
215214
}
216215

217-
if (mwifiex_add_card(card, &card->fw_done, &pcie_ops,
218-
MWIFIEX_PCIE, &pdev->dev)) {
219-
pr_err("%s failed\n", __func__);
220-
return -1;
221-
}
216+
clear_bit(MWIFIEX_IS_SUSPENDED, &adapter->work_flags);
217+
218+
mwifiex_cancel_hs(mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_STA),
219+
MWIFIEX_ASYNC_CMD);
220+
mwifiex_disable_wake(adapter);
222221

223222
return 0;
224223
}
@@ -272,8 +271,6 @@ static int mwifiex_pcie_probe(struct pci_dev *pdev,
272271
return -1;
273272
}
274273

275-
pdev->bus->self->bridge_d3 = false;
276-
277274
return 0;
278275
}
279276

drivers/net/wireless/marvell/mwifiex/sta_cmd.c

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2265,13 +2265,14 @@ int mwifiex_sta_prepare_cmd(struct mwifiex_private *priv, uint16_t cmd_no,
22652265
int mwifiex_sta_init_cmd(struct mwifiex_private *priv, u8 first_sta, bool init)
22662266
{
22672267
struct mwifiex_adapter *adapter = priv->adapter;
2268+
int ret;
22682269
struct mwifiex_ds_11n_amsdu_aggr_ctrl amsdu_aggr_ctrl;
2270+
struct mwifiex_ds_auto_ds auto_ds;
22692271
enum state_11d_t state_11d;
22702272
struct mwifiex_ds_11n_tx_cfg tx_cfg;
22712273
u8 sdio_sp_rx_aggr_enable;
22722274
u16 packet_aggr_enable;
22732275
int data;
2274-
int ret;
22752276

22762277
if (first_sta) {
22772278
if (priv->adapter->iface_type == MWIFIEX_PCIE) {
@@ -2383,6 +2384,18 @@ int mwifiex_sta_init_cmd(struct mwifiex_private *priv, u8 first_sta, bool init)
23832384
if (ret)
23842385
return -1;
23852386

2387+
if (!disable_auto_ds && first_sta &&
2388+
priv->bss_type != MWIFIEX_BSS_TYPE_UAP) {
2389+
/* Enable auto deep sleep */
2390+
auto_ds.auto_ds = DEEP_SLEEP_ON;
2391+
auto_ds.idle_time = DEEP_SLEEP_IDLE_TIME;
2392+
ret = mwifiex_send_cmd(priv, HostCmd_CMD_802_11_PS_MODE_ENH,
2393+
EN_AUTO_PS, BITMAP_AUTO_DS,
2394+
&auto_ds, true);
2395+
if (ret)
2396+
return -1;
2397+
}
2398+
23862399
if (priv->bss_type != MWIFIEX_BSS_TYPE_UAP) {
23872400
/* Send cmd to FW to enable/disable 11D function */
23882401
state_11d = ENABLE_11D;

0 commit comments

Comments
 (0)