linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [RFC 00/32] ath9k: add initial support for AR9330
@ 2011-05-31 19:36 Gabor Juhos
  2011-05-31 19:36 ` [RFC 01/32] ath9k: define mac version " Gabor Juhos
                   ` (32 more replies)
  0 siblings, 33 replies; 39+ messages in thread
From: Gabor Juhos @ 2011-05-31 19:36 UTC (permalink / raw)
  To: John W. Linville
  Cc: linux-wireless, Luis Rodriguez, Vasanthakumar Thiagarajan,
	Gabor Juhos

The patch set adds initial support for the AR9330 wireless MAC 
which can be found in the Atheros AR933{0,1} SoCs. 
It is a 1x1 chip and supports 2.4GHz only.

Gabor Juhos (32):
  ath9k: define mac version for AR9330
  ath9k: define device id for AR9330
  ath9k: add MAC revision detection for AR9330
  ath9k: add platform device id for AR9330
  ath9k: add AR9330 initvals
  ath9k: initialize mode registers for AR9330
  ath9k: initialize tx gain table for AR9330
  ath9k: initialize rx gain table for AR9330
  ath9k: add AR9330 specific PLL initialization
  ath9k: use different BB watchdog timeout value for AR9330
  ath9k: don't enable LDPC for AR9330
  ath9k: read spur frequency information from eeprom for AR9330
  ath9k: fix channel frequency calculation for AR9340
  ath9k: configure RF channel frequency for AR9330
  ath9k: enable TX/RX data byte swap for AR9330
  ath9k: skip internal regulator configuration for AR9330
  ath9k: enable tuning capacitance configuration for AR9330
  ath9k: use correct EEPROM base for AR9330
  ath9k: configure xpa bias level for AR9330
  ath9k: set NF limits for AR9330
  ath9k: enable antenna diversity for AR9330
  ath9k: use correct max_streams for AR9330
  ath9k: add a missing case statement to ath_ant_div_comb_alt_check
  ath9k: fix antenna diversity configuration for non AR9485 chips
  ath9k: remove superfluous parentheses
  ath9k: add fast_div_bias configuration for diversity group 1
  ath9k: set diversity group for AR9330
  ath9k: fix few register offsets for AR9330
  ath9k: configure diversity based on eeprom contents for AR9330
  ath9k: configure internal regulator for AR9330
  ath9k: add external_reset callback to ath9k_platfom_data for AR9330
  ath9k: enable support for AR9330

 drivers/net/wireless/ath/ath9k/ahb.c               |    4 +
 drivers/net/wireless/ath/ath9k/ar9003_eeprom.c     |   35 +-
 drivers/net/wireless/ath/ath9k/ar9003_hw.c         |  182 +++-
 drivers/net/wireless/ath/ath9k/ar9003_phy.c        |   41 +-
 drivers/net/wireless/ath/ath9k/ar9003_phy.h        |    6 +-
 .../net/wireless/ath/ath9k/ar9330_1p1_initvals.h   | 1303 ++++++++++++++++++++
 .../net/wireless/ath/ath9k/ar9330_1p2_initvals.h   | 1236 +++++++++++++++++++
 drivers/net/wireless/ath/ath9k/hw.c                |   96 ++-
 drivers/net/wireless/ath/ath9k/hw.h                |    3 +
 drivers/net/wireless/ath/ath9k/init.c              |    4 +-
 drivers/net/wireless/ath/ath9k/recv.c              |  146 ++-
 drivers/net/wireless/ath/ath9k/reg.h               |   16 +
 include/linux/ath9k_platform.h                     |    2 +
 13 files changed, 3010 insertions(+), 64 deletions(-)
 create mode 100644 drivers/net/wireless/ath/ath9k/ar9330_1p1_initvals.h
 create mode 100644 drivers/net/wireless/ath/ath9k/ar9330_1p2_initvals.h

-- 
1.7.2.1


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

end of thread, other threads:[~2011-06-01  8:52 UTC | newest]

Thread overview: 39+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-31 19:36 [RFC 00/32] ath9k: add initial support for AR9330 Gabor Juhos
2011-05-31 19:36 ` [RFC 01/32] ath9k: define mac version " Gabor Juhos
2011-05-31 19:36 ` [RFC 02/32] ath9k: define device id " Gabor Juhos
2011-05-31 19:36 ` [RFC 03/32] ath9k: add MAC revision detection " Gabor Juhos
2011-05-31 19:36 ` [RFC 04/32] ath9k: add platform device id " Gabor Juhos
2011-05-31 19:36 ` [RFC 05/32] ath9k: add AR9330 initvals Gabor Juhos
2011-05-31 19:36 ` [RFC 06/32] ath9k: initialize mode registers for AR9330 Gabor Juhos
2011-05-31 19:36 ` [RFC 07/32] ath9k: initialize tx gain table " Gabor Juhos
2011-05-31 19:36 ` [RFC 08/32] ath9k: initialize rx " Gabor Juhos
2011-05-31 19:37 ` [RFC 09/32] ath9k: add AR9330 specific PLL initialization Gabor Juhos
2011-05-31 19:37 ` [RFC 10/32] ath9k: use different BB watchdog timeout value for AR9330 Gabor Juhos
2011-05-31 19:37 ` [RFC 11/32] ath9k: don't enable LDPC " Gabor Juhos
2011-05-31 19:37 ` [RFC 12/32] ath9k: read spur frequency information from eeprom " Gabor Juhos
2011-05-31 19:37 ` [RFC 13/32] ath9k: fix channel frequency calculation for AR9340 Gabor Juhos
2011-05-31 19:37 ` [RFC 14/32] ath9k: configure RF channel frequency for AR9330 Gabor Juhos
2011-05-31 19:37 ` [RFC 15/32] ath9k: enable TX/RX data byte swap " Gabor Juhos
2011-05-31 19:37 ` [RFC 16/32] ath9k: skip internal regulator configuration " Gabor Juhos
2011-05-31 19:37 ` [RFC 17/32] ath9k: enable tuning capacitance " Gabor Juhos
2011-05-31 19:37 ` [RFC 18/32] ath9k: use correct EEPROM base " Gabor Juhos
2011-05-31 19:37 ` [RFC 19/32] ath9k: configure xpa bias level " Gabor Juhos
2011-05-31 19:37 ` [RFC 20/32] ath9k: set NF limits " Gabor Juhos
2011-05-31 23:03   ` Felix Fietkau
2011-06-01  8:52     ` Gabor Juhos
2011-05-31 19:37 ` [RFC 21/32] ath9k: enable antenna diversity " Gabor Juhos
2011-05-31 19:37 ` [RFC 22/32] ath9k: use correct max_streams " Gabor Juhos
2011-05-31 19:37 ` [RFC 23/32] ath9k: add a missing case statement to ath_ant_div_comb_alt_check Gabor Juhos
2011-05-31 19:37 ` [RFC 24/32] ath9k: fix antenna diversity configuration for non AR9485 chips Gabor Juhos
2011-05-31 19:37 ` [RFC 25/32] ath9k: remove superfluous parentheses Gabor Juhos
2011-05-31 19:37 ` [RFC 26/32] ath9k: add fast_div_bias configuration for diversity group 1 Gabor Juhos
2011-05-31 19:37 ` [RFC 27/32] ath9k: set diversity group for AR9330 Gabor Juhos
2011-05-31 19:37 ` [RFC 28/32] ath9k: fix few register offsets " Gabor Juhos
2011-05-31 19:37 ` [RFC 29/32] ath9k: configure diversity based on eeprom contents " Gabor Juhos
2011-05-31 19:37 ` [RFC 30/32] ath9k: configure internal regulator " Gabor Juhos
2011-05-31 19:37 ` [RFC 31/32] ath9k: add external_reset callback to ath9k_platfom_data " Gabor Juhos
2011-05-31 19:37 ` [RFC 32/32] ath9k: enable support " Gabor Juhos
2011-05-31 19:51 ` [RFC 00/32] ath9k: add initial " Daniel Halperin
2011-06-01  0:46   ` Adrian Chadd
2011-06-01  1:05     ` Daniel Halperin
2011-06-01  1:13       ` Adrian Chadd

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).