All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH V2 00/22] Add support for AR9340
@ 2011-04-19 13:58 Vasanthakumar Thiagarajan
  2011-04-19 13:59 ` [PATCH V2 02/22] ath9k_hw: Take care of few host interface register changes " Vasanthakumar Thiagarajan
                   ` (16 more replies)
  0 siblings, 17 replies; 20+ messages in thread
From: Vasanthakumar Thiagarajan @ 2011-04-19 13:58 UTC (permalink / raw)
  To: linville; +Cc: linux-wireless

John,

This patch set mainly adds support for AR9340 which is a built in
wireless mac in ar934x SOCs. It is 2x2, 2.4Ghz only in ar9341 SOC and
dual band in ar9342/ar9344 SOCs. This V2 has updated patch 03/22.

Vasanth

Vasanthakumar Thiagarajan (22):
  ath9k_hw: Define devid and mac version for AR9340
  ath9k_hw: Take care of few host interface register changes for AR9340
  ath9k_hw: Get AHB clock information from ath9k_platform_data
  ath9k_hw: Configure pll control register accordingly for AR9340
  ath9k_hw: Add initvals.h for ar9340
  ath9k_hw: Initialize mode registers from initvals.h for AR9340
  ath9k_hw: Don't do ani initialization for AR9340
  ath9k_hw: Initialize tx and rx gain table from initvals.h for ar9340
  ath9k_hw: Read spur frequency information from eeprom for AR9340
  ath9k_hw: Configure RF channel freqency for AR9340
  ath9k_hw: Clean up rx/tx chain configuration before AGC/IQ cal
  ath9k_hw: Fix register offset AR_PHY_65NM_CH0_THERM for AR9340
  ath9k_hw: Don't configure AR_CH0_THERM for AR9340
  ath9k_hw: Skip internal regulator configuration for AR9340
  ath9k_hw: Configure tuning capacitance value for AR9340 as well
  ath9k_hw: Enable byte Tx/Rx data swap for AR9340
  ath9k_hw: Configure chain switch table and attenuation control only
    for active chains
  ath9k_hw: Read iq calibration data only for active chains
  ath9k: Add AR9340 platform id to id table
  ath9k_hw: Assign macversion based on devid for built-in wmac
  ath9k_hw: Disable INTR_HOST1_FATAL to avoid interrupt strom with
    ar9430
  ath9k_hw: Enable AR9340 support

 drivers/net/wireless/ath/ath9k/ahb.c             |    4 +
 drivers/net/wireless/ath/ath9k/ar9003_calib.c    |   37 +-
 drivers/net/wireless/ath/ath9k/ar9003_eeprom.c   |   59 +-
 drivers/net/wireless/ath/ath9k/ar9003_hw.c       |  101 ++-
 drivers/net/wireless/ath/ath9k/ar9003_phy.c      |   30 +-
 drivers/net/wireless/ath/ath9k/ar9003_phy.h      |    2 +-
 drivers/net/wireless/ath/ath9k/ar9340_initvals.h | 1525 ++++++++++++++++++++++
 drivers/net/wireless/ath/ath9k/hw.c              |   82 +-
 drivers/net/wireless/ath/ath9k/hw.h              |    6 +-
 drivers/net/wireless/ath/ath9k/init.c            |    1 +
 drivers/net/wireless/ath/ath9k/mac.c             |   10 +-
 drivers/net/wireless/ath/ath9k/phy.h             |    3 +
 drivers/net/wireless/ath/ath9k/reg.h             |   81 +-
 include/linux/ath9k_platform.h                   |    2 +
 14 files changed, 1842 insertions(+), 101 deletions(-)
 create mode 100644 drivers/net/wireless/ath/ath9k/ar9340_initvals.h


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

end of thread, other threads:[~2011-04-20  4:35 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-19 13:58 [PATCH V2 00/22] Add support for AR9340 Vasanthakumar Thiagarajan
2011-04-19 13:59 ` [PATCH V2 02/22] ath9k_hw: Take care of few host interface register changes " Vasanthakumar Thiagarajan
2011-04-19 13:59 ` [PATCH V2 03/22] ath9k_hw: Get AHB clock information from ath9k_platform_data Vasanthakumar Thiagarajan
2011-04-19 13:59 ` [PATCH V2 04/22] ath9k_hw: Configure pll control register accordingly for AR9340 Vasanthakumar Thiagarajan
2011-04-19 14:13   ` Sujith
2011-04-20  4:35     ` Vasanthakumar Thiagarajan
2011-04-19 13:59 ` [PATCH V2 05/22] ath9k_hw: Add initvals.h for ar9340 Vasanthakumar Thiagarajan
2011-04-19 13:59 ` [PATCH V2 08/22] ath9k_hw: Initialize tx and rx gain table from " Vasanthakumar Thiagarajan
2011-04-19 13:59 ` [PATCH V2 09/22] ath9k_hw: Read spur frequency information from eeprom for AR9340 Vasanthakumar Thiagarajan
2011-04-19 13:59 ` [PATCH V2 10/22] ath9k_hw: Configure RF channel freqency " Vasanthakumar Thiagarajan
2011-04-19 13:59 ` [PATCH V2 11/22] ath9k_hw: Clean up rx/tx chain configuration before AGC/IQ cal Vasanthakumar Thiagarajan
2011-04-19 13:59 ` [PATCH V2 13/22] ath9k_hw: Don't configure AR_CH0_THERM for AR9340 Vasanthakumar Thiagarajan
2011-04-19 13:59 ` [PATCH V2 14/22] ath9k_hw: Skip internal regulator configuration " Vasanthakumar Thiagarajan
2011-04-19 13:59 ` [PATCH V2 15/22] ath9k_hw: Configure tuning capacitance value for AR9340 as well Vasanthakumar Thiagarajan
2011-04-19 13:59 ` [PATCH V2 16/22] ath9k_hw: Enable byte Tx/Rx data swap for AR9340 Vasanthakumar Thiagarajan
2011-04-19 13:59 ` [PATCH V2 17/22] ath9k_hw: Configure chain switch table and attenuation control only for active chains Vasanthakumar Thiagarajan
2011-04-19 13:59 ` [PATCH V2 18/22] ath9k_hw: Read iq calibration data " Vasanthakumar Thiagarajan
2011-04-19 13:59 ` [PATCH V2 19/22] ath9k: Add AR9340 platform id to id table Vasanthakumar Thiagarajan
2011-04-19 13:59 ` [PATCH V2 21/22] ath9k_hw: Disable INTR_HOST1_FATAL to avoid interrupt strom with ar9430 Vasanthakumar Thiagarajan
2011-04-19 13:59 ` [PATCH V2 22/22] ath9k_hw: Enable AR9340 support Vasanthakumar Thiagarajan

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.