All of lore.kernel.org
 help / color / mirror / Atom feed
* [ath9k-devel] [PATCH v2 00/10] ath10k: device setup refactor
@ 2013-06-12 12:53 Michal Kazior
  2013-06-12 12:53 ` [ath9k-devel] [PATCH v2 01/10] ath10k: decouple pci init/deinit logic Michal Kazior
                   ` (12 more replies)
  0 siblings, 13 replies; 72+ messages in thread
From: Michal Kazior @ 2013-06-12 12:53 UTC (permalink / raw)
  To: ath9k-devel

This is a respin of my patchset that addresses
hibernation issues.

This is also groundwork for proper hw recovery
that I'm going to post soon.

I addressed review comments and some bugs I've
found along.

Note: this is not based on master branch but on my
latest 'ath10k: fixes' patches. Split for easier
review.

Michal Kazior (10):
  ath10k: decouple pci init/deinit logic
  ath10k: decouple core start/stop logic
  ath10k: allow deferred regd update
  ath10k: reset BMI state upon init
  ath10k: decouple suspend code
  ath10k: move free_vdev_map initialization
  ath10k: make sure all resources are freed upon ath10k_stop()
  ath10k: defer hw setup to start/stop mac80211 hooks
  ath10k: skip updating some params during resume
  ath10k: store firmware files in memory

 drivers/net/wireless/ath/ath10k/bmi.c  |    6 +
 drivers/net/wireless/ath/ath10k/bmi.h  |    1 +
 drivers/net/wireless/ath/ath10k/core.c |  249 ++++++++++++++++++----------
 drivers/net/wireless/ath/ath10k/core.h |   17 +-
 drivers/net/wireless/ath/ath10k/hif.h  |   39 +++++
 drivers/net/wireless/ath/ath10k/mac.c  |  202 ++++++++++++++++++++---
 drivers/net/wireless/ath/ath10k/pci.c  |  284 +++++++++++++-------------------
 7 files changed, 520 insertions(+), 278 deletions(-)

-- 
1.7.9.5

^ permalink raw reply	[flat|nested] 72+ messages in thread

end of thread, other threads:[~2013-07-19 10:19 UTC | newest]

Thread overview: 72+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-06-12 12:53 [ath9k-devel] [PATCH v2 00/10] ath10k: device setup refactor Michal Kazior
2013-06-12 12:53 ` [ath9k-devel] [PATCH v2 01/10] ath10k: decouple pci init/deinit logic Michal Kazior
2013-06-13 18:09   ` Kalle Valo
2013-06-14 12:02     ` Michal Kazior
2013-06-14 12:14       ` Kalle Valo
2013-06-12 12:53 ` [ath9k-devel] [PATCH v2 02/10] ath10k: decouple core start/stop logic Michal Kazior
2013-06-12 12:53 ` [ath9k-devel] [PATCH v2 03/10] ath10k: allow deferred regd update Michal Kazior
2013-06-13 18:08   ` Kalle Valo
2013-06-14 12:03     ` Michal Kazior
2013-06-12 12:53 ` [ath9k-devel] [PATCH v2 04/10] ath10k: reset BMI state upon init Michal Kazior
2013-06-12 12:53 ` [ath9k-devel] [PATCH v2 05/10] ath10k: decouple suspend code Michal Kazior
2013-06-12 12:53 ` [ath9k-devel] [PATCH v2 06/10] ath10k: move free_vdev_map initialization Michal Kazior
2013-06-12 12:53 ` [ath9k-devel] [PATCH v2 07/10] ath10k: make sure all resources are freed upon ath10k_stop() Michal Kazior
2013-06-12 12:54 ` [ath9k-devel] [PATCH v2 08/10] ath10k: defer hw setup to start/stop mac80211 hooks Michal Kazior
2013-06-14 12:23   ` Kalle Valo
2013-06-14 12:43     ` Michal Kazior
2013-06-12 12:54 ` [ath9k-devel] [PATCH v2 09/10] ath10k: skip updating some params during resume Michal Kazior
2013-06-12 12:54 ` [ath9k-devel] [PATCH v2 10/10] ath10k: store firmware files in memory Michal Kazior
2013-06-25  7:59 ` [ath9k-devel] [PATCH v3 0/9] ath10k: device setup refactor Michal Kazior
2013-06-25  7:59   ` [ath9k-devel] [PATCH v3 1/9] ath10k: decouple pci start/stop logic Michal Kazior
2013-07-05  6:29     ` Kalle Valo
2013-07-05  7:05       ` Michal Kazior
2013-06-25  7:59   ` [ath9k-devel] [PATCH v3 2/9] ath10k: decouple core " Michal Kazior
2013-06-25  7:59   ` [ath9k-devel] [PATCH v3 3/9] ath10k: allow deferred regd update Michal Kazior
2013-06-25  7:59   ` [ath9k-devel] [PATCH v3 4/9] ath10k: reset BMI state upon init Michal Kazior
2013-06-25  7:59   ` [ath9k-devel] [PATCH v3 5/9] ath10k: decouple suspend code Michal Kazior
2013-07-05  6:51     ` Kalle Valo
2013-07-05  7:12       ` Michal Kazior
2013-07-05  7:20         ` Kalle Valo
2013-06-25  7:59   ` [ath9k-devel] [PATCH v3 6/9] ath10k: move free_vdev_map initialization Michal Kazior
2013-07-05  7:03     ` Kalle Valo
2013-06-25  7:59   ` [ath9k-devel] [PATCH v3 7/9] ath10k: make sure all resources are freed upon ath10k_stop() Michal Kazior
2013-06-25  7:59   ` [ath9k-devel] [PATCH v3 8/9] ath10k: defer hw setup to start/stop mac80211 hooks Michal Kazior
2013-06-25  7:59   ` [ath9k-devel] [PATCH v3 9/9] ath10k: store firmware files in memory Michal Kazior
2013-06-25  8:09     ` [ath9k-devel] [PATCH v3 10/10] ath10k: skip fw stats debugfs interface if device is down Michal Kazior
2013-07-05  7:09       ` Kalle Valo
2013-07-16  7:19 ` [PATCH v3 00/10] ath10k: device setup refactor Michal Kazior
2013-07-16  7:19   ` [PATCH v3 01/10] ath10k: decouple pci start/stop logic Michal Kazior
2013-07-16  7:19   ` [PATCH v3 02/10] ath10k: decouple core " Michal Kazior
2013-07-16  7:19   ` [PATCH v3 03/10] ath10k: allow deferred regd update Michal Kazior
2013-07-16  7:19   ` [PATCH v3 04/10] ath10k: reset BMI state upon init Michal Kazior
2013-07-16  7:19   ` [PATCH v3 05/10] ath10k: decouple suspend code Michal Kazior
2013-07-16  7:19   ` [PATCH v3 06/10] ath10k: move free_vdev_map initialization Michal Kazior
2013-07-16  7:19   ` [PATCH v3 07/10] ath10k: make sure all resources are freed upon ath10k_stop() Michal Kazior
2013-07-16  7:19   ` [PATCH v3 08/10] ath10k: defer hw setup to start/stop mac80211 hooks Michal Kazior
2013-07-16  7:19   ` [PATCH v3 09/10] ath10k: store firmware files in memory Michal Kazior
2013-07-16  7:19   ` [PATCH v3 10/10] ath10k: skip fw stats debugfs interface if device is down Michal Kazior
2013-07-16  7:27   ` [PATCH v3 00/10] ath10k: device setup refactor Michal Kazior
2013-07-16  7:38 ` [PATCH v4 " Michal Kazior
2013-07-16  7:38   ` Michal Kazior
2013-07-16  7:38   ` [PATCH v4 01/10] ath10k: decouple pci start/stop logic Michal Kazior
2013-07-16  7:38     ` Michal Kazior
2013-07-16  7:38   ` [PATCH v4 02/10] ath10k: decouple core " Michal Kazior
2013-07-16  7:38     ` Michal Kazior
2013-07-16  7:38   ` [PATCH v4 03/10] ath10k: allow deferred regd update Michal Kazior
2013-07-16  7:38     ` Michal Kazior
2013-07-16  7:38   ` [PATCH v4 04/10] ath10k: reset BMI state upon init Michal Kazior
2013-07-16  7:38     ` Michal Kazior
2013-07-16  7:38   ` [PATCH v4 05/10] ath10k: decouple suspend code Michal Kazior
2013-07-16  7:38     ` Michal Kazior
2013-07-16  7:38   ` [PATCH v4 06/10] ath10k: move free_vdev_map initialization Michal Kazior
2013-07-16  7:38     ` Michal Kazior
2013-07-16  7:38   ` [PATCH v4 07/10] ath10k: make sure all resources are freed upon ath10k_stop() Michal Kazior
2013-07-16  7:38     ` Michal Kazior
2013-07-16  7:38   ` [PATCH v4 08/10] ath10k: defer hw setup to start/stop mac80211 hooks Michal Kazior
2013-07-16  7:38     ` Michal Kazior
2013-07-16  7:38   ` [PATCH v4 09/10] ath10k: store firmware files in memory Michal Kazior
2013-07-16  7:38     ` Michal Kazior
2013-07-16  7:38   ` [PATCH v4 10/10] ath10k: skip fw stats debugfs interface if device is down Michal Kazior
2013-07-16  7:38     ` Michal Kazior
2013-07-19 10:18   ` [PATCH v4 00/10] ath10k: device setup refactor Kalle Valo
2013-07-19 10:18     ` Kalle Valo

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.