Return-path: Received: from mail-lb0-f182.google.com ([209.85.217.182]:32791 "EHLO mail-lb0-f182.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751181AbaJ0IoK (ORCPT ); Mon, 27 Oct 2014 04:44:10 -0400 Received: by mail-lb0-f182.google.com with SMTP id f15so4340422lbj.13 for ; Mon, 27 Oct 2014 01:44:08 -0700 (PDT) From: Bartosz Markowski To: ath10k@lists.infradead.org Cc: linux-wireless@vger.kernel.org, Bartosz Markowski Subject: [PATCH v2] ath10k: fix pm resume after suspend Date: Mon, 27 Oct 2014 09:43:56 +0100 Message-Id: <1414399436-7047-1-git-send-email-bartosz.markowski@tieto.com> (sfid-20141027_094414_382190_BEE681FF) Sender: linux-wireless-owner@vger.kernel.org List-ID: Firmware was crashing when we were trying to warm reset it after suspend. This was due to the fact that target registeres can be accessed only if the hardware is awaken. This patch makes sure to awake the device also on the hif up, not only in case of probe call. Signed-off-by: Bartosz Markowski --- drivers/net/wireless/ath/ath10k/pci.c | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/drivers/net/wireless/ath/ath10k/pci.c b/drivers/net/wireless/ath/ath10k/pci.c index 4a4740b..d31488b 100644 --- a/drivers/net/wireless/ath/ath10k/pci.c +++ b/drivers/net/wireless/ath/ath10k/pci.c @@ -1877,10 +1877,16 @@ static int ath10k_pci_hif_power_up_warm(struct ath10k *ar) static int ath10k_pci_hif_power_up(struct ath10k *ar) { - int ret; + int ret = 0; ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot hif power up\n"); + ret = ath10k_pci_wake(ar); + if (ret) { + ath10k_err(ar, "failed to wake up target: %d\n", ret); + return ret; + } + /* * Hardware CUS232 version 2 has some issues with cold reset and the * preferred (and safer) way to perform a device reset is through a @@ -1895,7 +1901,7 @@ static int ath10k_pci_hif_power_up(struct ath10k *ar) ret); if (ath10k_pci_reset_mode == ATH10K_PCI_RESET_WARM_ONLY) - return ret; + goto err_sleep; ath10k_warn(ar, "trying cold reset\n"); @@ -1903,11 +1909,15 @@ static int ath10k_pci_hif_power_up(struct ath10k *ar) if (ret) { ath10k_err(ar, "failed to power up target using cold reset too (%d)\n", ret); - return ret; + goto err_sleep; } } - return 0; + return ret; + +err_sleep: + ath10k_pci_sleep(ar); + return ret; } static void ath10k_pci_hif_power_down(struct ath10k *ar) @@ -1915,6 +1925,7 @@ static void ath10k_pci_hif_power_down(struct ath10k *ar) ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot hif power down\n"); ath10k_pci_warm_reset(ar); + ath10k_pci_sleep(ar); } #ifdef CONFIG_PM @@ -2516,6 +2527,8 @@ static int ath10k_pci_probe(struct pci_dev *pdev, goto err_deinit_irq; } + ath10k_pci_sleep(ar); + ret = ath10k_core_register(ar, chip_id); if (ret) { ath10k_err(ar, "failed to register driver core: %d\n", ret); @@ -2567,7 +2580,6 @@ static void ath10k_pci_remove(struct pci_dev *pdev) ath10k_pci_deinit_irq(ar); ath10k_pci_ce_deinit(ar); ath10k_pci_free_pipes(ar); - ath10k_pci_sleep(ar); ath10k_pci_release(ar); ath10k_core_destroy(ar); } -- 1.8.2