Skip to content

Commit 456cdc4

Browse files
sebancStollD
authored andcommitted
wireless/mwifiex: Fix S0ix / suspend
1 parent ca0e4f1 commit 456cdc4

File tree

2 files changed

+41
-48
lines changed

2 files changed

+41
-48
lines changed

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

Lines changed: 40 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -149,35 +149,38 @@ 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);
152154
struct mwifiex_adapter *adapter;
153-
struct pcie_service_card *card = dev_get_drvdata(dev);
154-
155+
struct mwifiex_private *priv;
156+
const struct mwifiex_pcie_card_reg *reg;
157+
u32 fw_status;
158+
int ret;
155159

156160
/* Might still be loading firmware */
157161
wait_for_completion(&card->fw_done);
158162

159163
adapter = card->adapter;
160-
if (!adapter) {
161-
dev_err(dev, "adapter is not valid\n");
164+
if (!adapter || !adapter->priv_num)
162165
return 0;
163-
}
164166

165-
mwifiex_enable_wake(adapter);
167+
reg = card->pcie.reg;
168+
if (reg)
169+
ret = mwifiex_read_reg(adapter, reg->fw_status, &fw_status);
170+
else
171+
fw_status = -1;
172+
173+
if (fw_status == FIRMWARE_READY_PCIE && !adapter->mfg_mode) {
174+
mwifiex_deauthenticate_all(adapter);
166175

167-
/* Enable the Host Sleep */
168-
if (!mwifiex_enable_hs(adapter)) {
169-
mwifiex_dbg(adapter, ERROR,
170-
"cmd: failed to suspend\n");
171-
clear_bit(MWIFIEX_IS_HS_ENABLING, &adapter->work_flags);
172-
mwifiex_disable_wake(adapter);
173-
return -EFAULT;
174-
}
176+
priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY);
175177

176-
flush_workqueue(adapter->workqueue);
178+
mwifiex_disable_auto_ds(priv);
177179

178-
/* Indicate device suspended */
179-
set_bit(MWIFIEX_IS_SUSPENDED, &adapter->work_flags);
180-
clear_bit(MWIFIEX_IS_HS_ENABLING, &adapter->work_flags);
180+
mwifiex_init_shutdown_fw(priv, MWIFIEX_FUNC_SHUTDOWN);
181+
}
182+
183+
mwifiex_remove_card(adapter);
181184

182185
return 0;
183186
}
@@ -192,28 +195,29 @@ static int mwifiex_pcie_suspend(struct device *dev)
192195
*/
193196
static int mwifiex_pcie_resume(struct device *dev)
194197
{
195-
struct mwifiex_adapter *adapter;
196-
struct pcie_service_card *card = dev_get_drvdata(dev);
198+
struct pci_dev *pdev = to_pci_dev(dev);
199+
struct pcie_service_card *card = pci_get_drvdata(pdev);
200+
int ret;
197201

202+
pr_debug("info: vendor=0x%4.04X device=0x%4.04X rev=%d\n",
203+
pdev->vendor, pdev->device, pdev->revision);
198204

199-
if (!card->adapter) {
200-
dev_err(dev, "adapter structure is not valid\n");
201-
return 0;
202-
}
205+
init_completion(&card->fw_done);
203206

204-
adapter = card->adapter;
207+
card->dev = pdev;
205208

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

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

218222
return 0;
219223
}
@@ -267,6 +271,8 @@ static int mwifiex_pcie_probe(struct pci_dev *pdev,
267271
return -1;
268272
}
269273

274+
pdev->bus->self->bridge_d3 = false;
275+
270276
return 0;
271277
}
272278

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

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2265,14 +2265,13 @@ 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;
22692268
struct mwifiex_ds_11n_amsdu_aggr_ctrl amsdu_aggr_ctrl;
2270-
struct mwifiex_ds_auto_ds auto_ds;
22712269
enum state_11d_t state_11d;
22722270
struct mwifiex_ds_11n_tx_cfg tx_cfg;
22732271
u8 sdio_sp_rx_aggr_enable;
22742272
u16 packet_aggr_enable;
22752273
int data;
2274+
int ret;
22762275

22772276
if (first_sta) {
22782277
if (priv->adapter->iface_type == MWIFIEX_PCIE) {
@@ -2395,18 +2394,6 @@ int mwifiex_sta_init_cmd(struct mwifiex_private *priv, u8 first_sta, bool init)
23952394
if (ret)
23962395
return -1;
23972396

2398-
if (!disable_auto_ds && first_sta &&
2399-
priv->bss_type != MWIFIEX_BSS_TYPE_UAP) {
2400-
/* Enable auto deep sleep */
2401-
auto_ds.auto_ds = DEEP_SLEEP_ON;
2402-
auto_ds.idle_time = DEEP_SLEEP_IDLE_TIME;
2403-
ret = mwifiex_send_cmd(priv, HostCmd_CMD_802_11_PS_MODE_ENH,
2404-
EN_AUTO_PS, BITMAP_AUTO_DS,
2405-
&auto_ds, true);
2406-
if (ret)
2407-
return -1;
2408-
}
2409-
24102397
if (priv->bss_type != MWIFIEX_BSS_TYPE_UAP) {
24112398
/* Send cmd to FW to enable/disable 11D function */
24122399
state_11d = ENABLE_11D;

0 commit comments

Comments
 (0)