All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 00/20] ath9k_hw: ar93xx initial abstraction work
@ 2010-03-17 22:27 ` Luis R. Rodriguez
  0 siblings, 0 replies; 52+ messages in thread
From: Luis R. Rodriguez @ 2010-03-17 22:27 UTC (permalink / raw)
  To: linville; +Cc: linux-wireless, ath9k-devel, Luis R. Rodriguez

Here's what I have so far, this is rebased on top of Senthil's patches
for ath9k_htc posted today. Just tested it on my AR9280, it doesn't
break anything.

Luis R. Rodriguez (20):
  ath9k: start building an abstraction layer for hardware routines
  ath9k: initial move of ar9002 specific code to its own file
  ath9k: rename initvals.h to ar9002_initvals.h
  ath9k_hw: rename getNoiseFloorThresh() to ath9k_hw_getnf_thres()
  ath9k_hw: move < AR9002 specific calibration stuff to its own file
  ath9k_hw: move calibration settings to ar9002_calib_settings.c
  ath9k_hw: consolidate the pci express checks on __ath9k_hw_init()
  ath9k_hw: move ar9002 bluetooth coexistence code to its own file
  ath9k_hw: Use a helper for setting phy error masks
  ath9k_hw: add helpers for writing phy errors counts
  ath9k_hw: add a helper for phy error counter reads
  ath9k_hw: add documentation for the TPC register
  ath9k_hw: remove unused and buggy ath9k_hw_GetMibCycleCountsPct()
  ath9k_hw: add a helper for retrieving the MIB cycle counters
  ath9k_hw: provide a helper for clearing the MIB counters
  ath9k_hw: simplify reseting of the MIB control register
  ath9k_hw: provide a helper for managing the MIB control register
  ath9k_hw: move common defines for ANI into ath/reg.h
  ath9k_hw: move ar9002 ANI code to its own file
  ath9k_hw: remove wrapper ath9k_hw_write_regs()

 drivers/net/wireless/ath/ath9k/Makefile            |    6 +-
 drivers/net/wireless/ath/ath9k/ani.c               |  403 +-
 drivers/net/wireless/ath/ath9k/ani.h               |   22 +-
 drivers/net/wireless/ath/ath9k/ar9002_ani.c        |  356 +
 drivers/net/wireless/ath/ath9k/ar9002_btcoex.c     |  239 +
 drivers/net/wireless/ath/ath9k/ar9002_calib.c      |  826 +++
 .../net/wireless/ath/ath9k/ar9002_calib_settings.c |  388 ++
 drivers/net/wireless/ath/ath9k/ar9002_hw.c         |  821 +++
 drivers/net/wireless/ath/ath9k/ar9002_initvals.h   | 7115 ++++++++++++++++++++
 drivers/net/wireless/ath/ath9k/btcoex.c            |  227 -
 drivers/net/wireless/ath/ath9k/btcoex.h            |   10 -
 drivers/net/wireless/ath/ath9k/calib.c             | 1095 +---
 drivers/net/wireless/ath/ath9k/calib.h             |   15 +-
 drivers/net/wireless/ath/ath9k/common.h            |    1 +
 drivers/net/wireless/ath/ath9k/hw-ops.h            |  235 +
 drivers/net/wireless/ath/ath9k/hw.c                |  911 +---
 drivers/net/wireless/ath/ath9k/hw.h                |  149 +-
 drivers/net/wireless/ath/ath9k/init.c              |    9 +-
 drivers/net/wireless/ath/ath9k/initvals.h          | 7115 --------------------
 drivers/net/wireless/ath/ath9k/phy.c               |   15 -
 drivers/net/wireless/ath/ath9k/phy.h               |    3 -
 drivers/net/wireless/ath/ath9k/reg.h               |   17 +-
 drivers/net/wireless/ath/reg.h                     |    5 +
 23 files changed, 10382 insertions(+), 9601 deletions(-)
 create mode 100644 drivers/net/wireless/ath/ath9k/ar9002_ani.c
 create mode 100644 drivers/net/wireless/ath/ath9k/ar9002_btcoex.c
 create mode 100644 drivers/net/wireless/ath/ath9k/ar9002_calib.c
 create mode 100644 drivers/net/wireless/ath/ath9k/ar9002_calib_settings.c
 create mode 100644 drivers/net/wireless/ath/ath9k/ar9002_hw.c
 create mode 100644 drivers/net/wireless/ath/ath9k/ar9002_initvals.h
 delete mode 100644 drivers/net/wireless/ath/ath9k/btcoex.c
 create mode 100644 drivers/net/wireless/ath/ath9k/hw-ops.h
 delete mode 100644 drivers/net/wireless/ath/ath9k/initvals.h


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

end of thread, other threads:[~2010-03-23 20:53 UTC | newest]

Thread overview: 52+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-03-17 22:27 [PATCH v2 00/20] ath9k_hw: ar93xx initial abstraction work Luis R. Rodriguez
2010-03-17 22:27 ` [ath9k-devel] " Luis R. Rodriguez
2010-03-17 22:27 ` [PATCH v2 01/20] ath9k: start building an abstraction layer for hardware routines Luis R. Rodriguez
2010-03-17 22:27   ` [ath9k-devel] " Luis R. Rodriguez
2010-03-17 22:27 ` [PATCH v2 02/20] ath9k: initial move of ar9002 specific code to its own file Luis R. Rodriguez
2010-03-17 22:27   ` [ath9k-devel] " Luis R. Rodriguez
2010-03-17 22:27 ` [PATCH v2 03/20] ath9k: rename initvals.h to ar9002_initvals.h Luis R. Rodriguez
2010-03-17 22:27   ` [ath9k-devel] " Luis R. Rodriguez
2010-03-17 22:27 ` [PATCH v2 04/20] ath9k_hw: rename getNoiseFloorThresh() to ath9k_hw_getnf_thres() Luis R. Rodriguez
2010-03-17 22:27   ` [ath9k-devel] " Luis R. Rodriguez
2010-03-17 22:27 ` [PATCH v2 05/20] ath9k_hw: move < AR9002 specific calibration stuff to its own file Luis R. Rodriguez
2010-03-17 22:27   ` [ath9k-devel] " Luis R. Rodriguez
2010-03-17 22:27 ` [PATCH v2 06/20] ath9k_hw: move calibration settings to ar9002_calib_settings.c Luis R. Rodriguez
2010-03-17 22:27   ` [ath9k-devel] " Luis R. Rodriguez
2010-03-17 22:28 ` [PATCH v2 07/20] ath9k_hw: consolidate the pci express checks on __ath9k_hw_init() Luis R. Rodriguez
2010-03-17 22:28   ` [ath9k-devel] " Luis R. Rodriguez
2010-03-17 22:28 ` [PATCH v2 08/20] ath9k_hw: move ar9002 bluetooth coexistence code to its own file Luis R. Rodriguez
2010-03-17 22:28   ` [ath9k-devel] " Luis R. Rodriguez
2010-03-17 22:28 ` [PATCH v2 09/20] ath9k_hw: Use a helper for setting phy error masks Luis R. Rodriguez
2010-03-17 22:28   ` [ath9k-devel] " Luis R. Rodriguez
2010-03-17 22:28 ` [PATCH v2 10/20] ath9k_hw: add helpers for writing phy errors counts Luis R. Rodriguez
2010-03-17 22:28   ` [ath9k-devel] " Luis R. Rodriguez
2010-03-17 22:28 ` [PATCH v2 11/20] ath9k_hw: add a helper for phy error counter reads Luis R. Rodriguez
2010-03-17 22:28   ` [ath9k-devel] " Luis R. Rodriguez
2010-03-17 22:28 ` [PATCH v2 12/20] ath9k_hw: add documentation for the TPC register Luis R. Rodriguez
2010-03-17 22:28   ` [ath9k-devel] " Luis R. Rodriguez
2010-03-17 22:28 ` [PATCH v2 13/20] ath9k_hw: remove unused and buggy ath9k_hw_GetMibCycleCountsPct() Luis R. Rodriguez
2010-03-17 22:28   ` [ath9k-devel] " Luis R. Rodriguez
2010-03-17 22:28 ` [PATCH v2 14/20] ath9k_hw: add a helper for retrieving the MIB cycle counters Luis R. Rodriguez
2010-03-17 22:28   ` [ath9k-devel] " Luis R. Rodriguez
2010-03-17 22:28 ` [PATCH v2 15/20] ath9k_hw: provide a helper for clearing the MIB counters Luis R. Rodriguez
2010-03-17 22:28   ` [ath9k-devel] " Luis R. Rodriguez
2010-03-17 22:28 ` [PATCH v2 16/20] ath9k_hw: simplify reseting of the MIB control register Luis R. Rodriguez
2010-03-17 22:28   ` [ath9k-devel] " Luis R. Rodriguez
2010-03-17 22:28 ` [PATCH v2 17/20] ath9k_hw: provide a helper for managing " Luis R. Rodriguez
2010-03-17 22:28   ` [ath9k-devel] " Luis R. Rodriguez
2010-03-17 22:28 ` [PATCH v2 18/20] ath9k_hw: move common defines for ANI into ath/reg.h Luis R. Rodriguez
2010-03-17 22:28   ` [ath9k-devel] " Luis R. Rodriguez
2010-03-17 22:28 ` [PATCH v2 19/20] ath9k_hw: move ar9002 ANI code to its own file Luis R. Rodriguez
2010-03-17 22:28   ` [ath9k-devel] " Luis R. Rodriguez
2010-03-17 22:28 ` [PATCH v2 20/20] ath9k_hw: remove wrapper ath9k_hw_write_regs() Luis R. Rodriguez
2010-03-17 22:28   ` [ath9k-devel] " Luis R. Rodriguez
2010-03-17 22:32 ` [PATCH v2 00/20] ath9k_hw: ar93xx initial abstraction work Luis R. Rodriguez
2010-03-17 22:32   ` [ath9k-devel] " Luis R. Rodriguez
2010-03-17 22:50   ` Luis R. Rodriguez
2010-03-17 22:50     ` [ath9k-devel] " Luis R. Rodriguez
2010-03-18  1:53     ` Luis R. Rodriguez
2010-03-18  1:53       ` [ath9k-devel] " Luis R. Rodriguez
2010-03-23 20:44       ` John W. Linville
2010-03-23 20:44         ` [ath9k-devel] " John W. Linville
2010-03-23 20:53         ` Luis R. Rodriguez
2010-03-23 20:53           ` [ath9k-devel] " Luis R. Rodriguez

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.