All of lore.kernel.org
 help / color / mirror / Atom feed
* [ath9k-devel] [PATCH v2 00/11] ath9k patches
@ 2015-03-14  5:57 ` Sujith Manoharan
  0 siblings, 0 replies; 32+ messages in thread
From: Sujith Manoharan @ 2015-03-14  5:57 UTC (permalink / raw)
  To: ath9k-devel

From: Sujith Manoharan <c_manoha@qca.qualcomm.com>

AIC support, for -next.

v2 : Address warning reported by Kalle:
     ar9003_aic.c: In function 'ar9003_aic_cal_post_process':
     ar9003_aic.c:431:1: warning: the frame size of 1312 bytes is larger than 1024 bytes [-Wframe-larger-than=]

Sujith Manoharan (11):
  ath9k: Add initial structures for AIC
  ath9k: Register private AIC ops
  ath9k: Add register definitions for AIC
  ath9k: Handle MCI_STATE_AIC_CAL_SINGLE
  ath9k: Finish AIC calibration
  ath9k: Process the AIC calibration results
  ath9k: Disable AIC by default
  ath9k: Handle MCI_STATE_AIC_CAL_RESET
  ath9k: Handle MCI_STATE_AIC_START
  ath9k: Handle MCI_STATE_AIC_CAL
  ath9k: Start AIC calibration during MCI reset

 drivers/net/wireless/ath/ath9k/Makefile     |   3 +-
 drivers/net/wireless/ath/ath9k/ar9003_aic.c | 599 ++++++++++++++++++++++++++++
 drivers/net/wireless/ath/ath9k/ar9003_aic.h |  61 +++
 drivers/net/wireless/ath/ath9k/ar9003_hw.c  |   1 +
 drivers/net/wireless/ath/ath9k/ar9003_mci.c |  20 +
 drivers/net/wireless/ath/ath9k/ar9003_phy.h |  25 --
 drivers/net/wireless/ath/ath9k/btcoex.h     |  12 +
 drivers/net/wireless/ath/ath9k/hw-ops.h     |   8 +
 drivers/net/wireless/ath/ath9k/hw.h         |   6 +
 drivers/net/wireless/ath/ath9k/reg_aic.h    | 168 ++++++++
 10 files changed, 877 insertions(+), 26 deletions(-)
 create mode 100644 drivers/net/wireless/ath/ath9k/ar9003_aic.c
 create mode 100644 drivers/net/wireless/ath/ath9k/ar9003_aic.h
 create mode 100644 drivers/net/wireless/ath/ath9k/reg_aic.h

-- 
2.3.1

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

end of thread, other threads:[~2015-03-20 13:55 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-14  5:57 [ath9k-devel] [PATCH v2 00/11] ath9k patches Sujith Manoharan
2015-03-14  5:57 ` Sujith Manoharan
2015-03-14  5:57 ` [ath9k-devel] [PATCH v2 01/11] ath9k: Add initial structures for AIC Sujith Manoharan
2015-03-14  5:57   ` Sujith Manoharan
2015-03-20  6:29   ` [ath9k-devel] [v2,01/11] " Kalle Valo
2015-03-20  6:29     ` Kalle Valo
2015-03-14  5:57 ` [ath9k-devel] [PATCH v2 02/11] ath9k: Register private AIC ops Sujith Manoharan
2015-03-14  5:57   ` Sujith Manoharan
2015-03-20 11:06   ` [ath9k-devel] " Kalle Valo
2015-03-20 11:06     ` Kalle Valo
2015-03-20 13:46     ` [ath9k-devel] " Sujith Manoharan
2015-03-20 13:46       ` Sujith Manoharan
2015-03-20 13:55       ` [ath9k-devel] " Kalle Valo
2015-03-20 13:55         ` Kalle Valo
2015-03-14  5:57 ` [ath9k-devel] [PATCH v2 03/11] ath9k: Add register definitions for AIC Sujith Manoharan
2015-03-14  5:57   ` Sujith Manoharan
2015-03-14  5:57 ` [ath9k-devel] [PATCH v2 04/11] ath9k: Handle MCI_STATE_AIC_CAL_SINGLE Sujith Manoharan
2015-03-14  5:57   ` Sujith Manoharan
2015-03-14  5:57 ` [ath9k-devel] [PATCH v2 05/11] ath9k: Finish AIC calibration Sujith Manoharan
2015-03-14  5:57   ` Sujith Manoharan
2015-03-14  5:57 ` [ath9k-devel] [PATCH v2 06/11] ath9k: Process the AIC calibration results Sujith Manoharan
2015-03-14  5:57   ` Sujith Manoharan
2015-03-14  5:57 ` [ath9k-devel] [PATCH v2 07/11] ath9k: Disable AIC by default Sujith Manoharan
2015-03-14  5:57   ` Sujith Manoharan
2015-03-14  5:57 ` [ath9k-devel] [PATCH v2 08/11] ath9k: Handle MCI_STATE_AIC_CAL_RESET Sujith Manoharan
2015-03-14  5:57   ` Sujith Manoharan
2015-03-14  5:57 ` [ath9k-devel] [PATCH v2 09/11] ath9k: Handle MCI_STATE_AIC_START Sujith Manoharan
2015-03-14  5:57   ` Sujith Manoharan
2015-03-14  5:57 ` [ath9k-devel] [PATCH v2 10/11] ath9k: Handle MCI_STATE_AIC_CAL Sujith Manoharan
2015-03-14  5:57   ` Sujith Manoharan
2015-03-14  5:57 ` [ath9k-devel] [PATCH v2 11/11] ath9k: Start AIC calibration during MCI reset Sujith Manoharan
2015-03-14  5:57   ` Sujith Manoharan

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.