All of lore.kernel.org
 help / color / mirror / Atom feed
* [ath9k-devel] [PATCH v3 00/11] ath9k: add preliminary support for the AR913x SoCs
@ 2009-01-13 13:40 ` Gabor Juhos
  0 siblings, 0 replies; 38+ messages in thread
From: Gabor Juhos @ 2009-01-13 13:40 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-2009-01-12 and 2.6.27.10 
kernel on the following devices:
  * Atheros AP83-050 reference board (AR9132 SoC, AR9106 RF)
  * TRENDnet TEW-632BRP router (AR9130 SoC, AR9102 RF)
  * Mikrotik RB433 board (AR7161 SoC) + AR5416 based miniPCI card

Changes since v2:
  * parentheses around RTC register's names has been removed
  * rebased against master-2009-01-12 of wireless-testing

Changes since v1:
  * enabling support of the AR9100 has been moved to the end of the series
  * bus specific cleanup routine has been rewritten
  * PCI code converted to use 'softc.irq' as well
  * setup of 'hw->flags' and 'hw->wiphy->interface_modes' has been removed 
    from ath_ahb_probe()
  * unregistering of the ath_ahb_diver has been fixed

Changes since RFC:
  * bus specific DMA routines removed
  * bus specific register access routines removed
  * irq value is stored in softc
  * rebased against master-2009-01-06 of wireless-testing
  
11 patches will follow as replies:

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

 drivers/net/wireless/ath9k/Makefile   |    2 
 drivers/net/wireless/ath9k/ahb.c      |  187 +++++++++++++++++++
 drivers/net/wireless/ath9k/ani.c      |    6 -
 drivers/net/wireless/ath9k/beacon.c   |   28 +--
 drivers/net/wireless/ath9k/core.h     |   47 +++++
 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     |  326 +++++----------------------------
 drivers/net/wireless/ath9k/pci.c      |  305 +++++++++++++++++++++++++++++++
 drivers/net/wireless/ath9k/recv.c     |   24 +-
 drivers/net/wireless/ath9k/reg.h      |    4 
 drivers/net/wireless/ath9k/xmit.c     |   14 +
 include/linux/ath9k_platform.h        |   28 +++
 14 files changed, 665 insertions(+), 376 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] 38+ messages in thread

end of thread, other threads:[~2009-02-03 22:17 UTC | newest]

Thread overview: 38+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-13 13:40 [ath9k-devel] [PATCH v3 00/11] ath9k: add preliminary support for the AR913x SoCs Gabor Juhos
2009-01-13 13:40 ` Gabor Juhos
2009-01-13 13:40 ` [ath9k-devel] [PATCH v3 01/11] ath9k: convert to struct device Gabor Juhos
2009-01-13 13:40   ` Gabor Juhos
2009-01-13 13:40 ` [ath9k-devel] [PATCH v3 02/11] ath9k: convert to use bus-agnostic DMA routines Gabor Juhos
2009-01-13 13:40   ` Gabor Juhos
2009-01-13 13:40 ` [ath9k-devel] [PATCH v3 03/11] ath9k: introduce bus specific cache size routine Gabor Juhos
2009-01-13 13:40   ` Gabor Juhos
2009-01-13 13:40 ` [ath9k-devel] [PATCH v3 04/11] ath9k: introduce bus specific cleanup routine Gabor Juhos
2009-01-13 13:40   ` Gabor Juhos
2009-01-13 13:40 ` [ath9k-devel] [PATCH v3 05/11] ath9k: move PCI code into separate file Gabor Juhos
2009-01-13 13:40   ` Gabor Juhos
2009-01-13 13:40 ` [ath9k-devel] [PATCH v3 06/11] ath9k: introduce platform driver for AHB bus support Gabor Juhos
2009-01-13 13:40   ` Gabor Juhos
2009-01-13 13:40 ` [ath9k-devel] [PATCH v3 07/11] ath9k: get EEPROM contents from platform data on AHB bus Gabor Juhos
2009-01-13 13:40   ` Gabor Juhos
2009-01-13 13:40 ` [ath9k-devel] [PATCH v3 08/11] ath9k: remove (u16) casts from rtc register access Gabor Juhos
2009-01-13 13:40   ` Gabor Juhos
2009-01-13 13:40 ` [ath9k-devel] [PATCH v3 09/11] ath9k: fix ar5416Addac_9100 values Gabor Juhos
2009-01-13 13:40   ` Gabor Juhos
2009-01-13 13:40 ` [ath9k-devel] [PATCH v3 10/11] ath9k: fix null pointer dereference in ani monitor code Gabor Juhos
2009-01-13 13:40   ` Gabor Juhos
2009-01-13 13:40 ` [ath9k-devel] [PATCH v3 11/11] ath9k: enable support for AR9100 Gabor Juhos
2009-01-13 13:40   ` Gabor Juhos
2009-02-01  3:13   ` [ath9k-devel] 2.6.29-rc3 reiser problem? Brian
2009-02-01 23:51     ` Luis R. Rodriguez
2009-02-02  1:21       ` Brian
2009-02-02  3:28         ` Luis R. Rodriguez
2009-02-02 10:18           ` Brian
2009-02-02 14:30     ` Pavel Roskin
2009-02-03  7:06       ` Brian
2009-02-03 22:17         ` Pavel Roskin
2009-01-13 21:38 ` [ath9k-devel] [PATCH v3 00/11] ath9k: add preliminary support for the AR913x SoCs Pavel Roskin
2009-01-13 21:38   ` Pavel Roskin
2009-01-14 19:15   ` [ath9k-devel] " Gabor Juhos
2009-01-14 19:15     ` Gabor Juhos
2009-01-14 22:02     ` [ath9k-devel] " Pavel Roskin
2009-01-14 22:02       ` Pavel Roskin

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.