All of lore.kernel.org
 help / color / mirror / Atom feed
* [ath9k-devel] [RFC 00/12] ath9k: add preliminary support for the AR913x SoCs
@ 2009-01-03 13:44 ` Gabor Juhos
  0 siblings, 0 replies; 44+ messages in thread
From: Gabor Juhos @ 2009-01-03 13:44 UTC (permalink / raw)
  To: ath9k-devel

This patch set introduces preliminary support for the Atheros' AR9130/AR9132
SoCs built-in WMAC device. Tested with compat-wireless-2008-12-29 on 2.6.2{7,8} 
kernels.

12 patches will follow as replies:

Gabor Juhos (12):
      ath9k: introduce bus specific DMA routines
      ath9k: introduce bus specific register access routines
      ath9k: introduce bus specific cache size routine
      ath9k: introduce bus specific cleanup routine
      ath9k: move PCI code into separate file
      ath9k: convert to struct device
      ath9k: introduce platform driver for AHB bus support
      ath9k: get EEPROM contents from platform data on AHB bus
      ath9k: enable support for AR9100
      ath9k: remove (u16) casts from rtc register access
      ath9k: fix ar5416Addac_9100 values
      ath9k: fix null pointer dereference in ani monitor code

 drivers/net/wireless/ath9k/Makefile   |    2 
 drivers/net/wireless/ath9k/ahb.c      |  285 +++++++++++++++++++++++++
 drivers/net/wireless/ath9k/ani.c      |    6 -
 drivers/net/wireless/ath9k/ath9k.h    |    4 
 drivers/net/wireless/ath9k/beacon.c   |   29 +--
 drivers/net/wireless/ath9k/core.h     |  137 ++++++++++++
 drivers/net/wireless/ath9k/eeprom.c   |   51 ----
 drivers/net/wireless/ath9k/hw.c       |   17 +
 drivers/net/wireless/ath9k/initvals.h |    2 
 drivers/net/wireless/ath9k/main.c     |  315 +++------------------------
 drivers/net/wireless/ath9k/pci.c      |  381 +++++++++++++++++++++++++++++++++
 drivers/net/wireless/ath9k/recv.c     |   30 +--
 drivers/net/wireless/ath9k/xmit.c     |   12 -
 include/linux/ath9k_platform.h        |   28 ++
 14 files changed, 913 insertions(+), 386 deletions(-)
 create mode 100644 drivers/net/wireless/ath9k/ahb.c
 create mode 100644 drivers/net/wireless/ath9k/pci.c
 create mode 100644 include/linux/ath9k_platform.h

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

end of thread, other threads:[~2009-01-06  9:41 UTC | newest]

Thread overview: 44+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-03 13:44 [ath9k-devel] [RFC 00/12] ath9k: add preliminary support for the AR913x SoCs Gabor Juhos
2009-01-03 13:44 ` Gabor Juhos
2009-01-03 13:44 ` [ath9k-devel] [RFC 01/12] ath9k: introduce bus specific DMA routines Gabor Juhos
2009-01-03 13:44   ` Gabor Juhos
2009-01-04  7:26   ` [ath9k-devel] " Christoph Hellwig
2009-01-04  7:26     ` Christoph Hellwig
2009-01-04 11:16     ` [ath9k-devel] " Gabor Juhos
2009-01-04 11:16       ` Gabor Juhos
2009-01-03 13:44 ` [ath9k-devel] [RFC 02/12] ath9k: introduce bus specific register access routines Gabor Juhos
2009-01-03 13:44   ` Gabor Juhos
2009-01-04  7:27   ` [ath9k-devel] " Christoph Hellwig
2009-01-04  7:27     ` Christoph Hellwig
2009-01-04 11:17     ` [ath9k-devel] " Gabor Juhos
2009-01-04 11:17       ` Gabor Juhos
2009-01-03 13:44 ` [ath9k-devel] [RFC 03/12] ath9k: introduce bus specific cache size routine Gabor Juhos
2009-01-03 13:44   ` Gabor Juhos
2009-01-03 13:44 ` [ath9k-devel] [RFC 04/12] ath9k: introduce bus specific cleanup routine Gabor Juhos
2009-01-03 13:44   ` Gabor Juhos
2009-01-03 13:44 ` [ath9k-devel] [RFC 05/12] ath9k: move PCI code into separate file Gabor Juhos
2009-01-03 13:44   ` Gabor Juhos
2009-01-03 13:44 ` [ath9k-devel] [RFC 06/12] ath9k: convert to struct device Gabor Juhos
2009-01-03 13:44   ` Gabor Juhos
2009-01-03 13:44 ` [ath9k-devel] [RFC 07/12] ath9k: introduce platform driver for AHB bus support Gabor Juhos
2009-01-03 13:44   ` Gabor Juhos
2009-01-04  7:30   ` [ath9k-devel] " Christoph Hellwig
2009-01-04  7:30     ` Christoph Hellwig
2009-01-04 11:18     ` [ath9k-devel] " Gabor Juhos
2009-01-04 11:18       ` Gabor Juhos
2009-01-03 13:44 ` [ath9k-devel] [RFC 08/12] ath9k: get EEPROM contents from platform data on AHB bus Gabor Juhos
2009-01-03 13:44   ` Gabor Juhos
2009-01-05 10:29   ` [ath9k-devel] " Sujith
2009-01-05 10:29     ` Sujith
2009-01-05 12:23     ` [ath9k-devel] " Gabor Juhos
2009-01-05 12:23       ` Gabor Juhos
2009-01-06  9:38       ` [ath9k-devel] " Sujith
2009-01-06  9:38         ` Sujith
2009-01-03 13:44 ` [ath9k-devel] [RFC 09/12] ath9k: enable support for AR9100 Gabor Juhos
2009-01-03 13:44   ` Gabor Juhos
2009-01-03 13:44 ` [ath9k-devel] [RFC 10/12] ath9k: remove (u16) casts from rtc register access Gabor Juhos
2009-01-03 13:44   ` Gabor Juhos
2009-01-03 13:44 ` [ath9k-devel] [RFC 11/12] ath9k: fix ar5416Addac_9100 values Gabor Juhos
2009-01-03 13:44   ` Gabor Juhos
2009-01-03 13:44 ` [ath9k-devel] [RFC 12/12] ath9k: fix null pointer dereference in ani monitor code Gabor Juhos
2009-01-03 13:44   ` Gabor Juhos

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.