All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/19]  iwlwifi updates 11/20/2009
@ 2009-11-20 20:04 Reinette Chatre
  2009-11-20 20:04 ` [PATCH 01/19] iwlwifi: Add iwl_write8() Reinette Chatre
                   ` (18 more replies)
  0 siblings, 19 replies; 20+ messages in thread
From: Reinette Chatre @ 2009-11-20 20:04 UTC (permalink / raw)
  To: linville; +Cc: linux-wireless, ipw3945-devel, Reinette Chatre

This series includes various fixes and cleanup. Driver is now able to do
single byte writes to treat registers with single-byte fields correctly
and not rely on execution order. A previous patch "iwlwifi:
separate led function from statistic notification" broke LEDs on 3945. This
is now fixed. Some more LED cleanup is also included. More work surrounding
SM PS is included. debugfs received some attention with files now having
correct permissions, all TX queue information can now be displayed, memory
for display of sram contents is now dynamically allocated, and if a user
did not specify the offset and length when dumping sram contents then the
entire data portion will be printed. It is now possible
to separate IO tracing to reduce amount of data. The pci ids of 5000 series
is updated to reflect what is in production. A uCode error log as well as
portion of the event log is now always printed when a problem occurs, user
does not need to set debug flags. Driver now informs uCode promptly when
disassociated to prevent uCode from sending data to AP.

"iwlwifi: no need to set use_rts_for_ht for BG device" fixes a merge
problem that is present in wireless-testing but not in wireless-next-2.6

Ben M Cahill (2):
  iwlwifi: Add iwl_write8()
  iwlagn: Use iwl_write8() for CSR_INT_COALESCING register

Jay Sternberg (1):
  iwlwifi: Tell the ucode immediately when association state changes

Johannes Berg (1):
  iwlwifi: separate IO tracing

Reinette Chatre (2):
  iwl3945: removed unused struct and definitions
  iwlwifi: no need to set use_rts_for_ht for BG device

Wey-Yi Guy (13):
  iwlwifi: control led while update tx/rx bytes counts
  iwlwifi: set sm_ps_mode as part of cfg parameters
  iwlwifi: reset led_tpt when clear tx/rx traffic byte counts
  iwlwifi: set read/write permission for debugfs files
  iwlwifi: increase tx_queue debugfs buffer size
  iwlwifi: dynamically allocate buffer for sram debugfs file
  iwlwifi: fix reserved2 field in iwl4965_addsta
  iwlwifi: update supported PCI_ID list for 5xx0 series
  iwlwifi: by default, dump entire sram data portion
  iwlwifi: dump error log when uCode error occurred
  iwlwifi: print limited number of event log when uCode error
  iwlwifi: change message for cmd queue full error
  iwlwifi: remove reset led_tpt from iwl_leds_init()

 drivers/net/wireless/iwlwifi/iwl-1000.c     |    2 +-
 drivers/net/wireless/iwlwifi/iwl-3945.h     |   11 +--
 drivers/net/wireless/iwlwifi/iwl-4965.c     |    3 +-
 drivers/net/wireless/iwlwifi/iwl-5000.c     |   33 +++++-
 drivers/net/wireless/iwlwifi/iwl-6000.c     |    4 +-
 drivers/net/wireless/iwlwifi/iwl-agn-rs.c   |    8 +-
 drivers/net/wireless/iwlwifi/iwl-agn.c      |  174 ++++++++++++++++++++-------
 drivers/net/wireless/iwlwifi/iwl-core.c     |   76 ++++++------
 drivers/net/wireless/iwlwifi/iwl-core.h     |   22 +---
 drivers/net/wireless/iwlwifi/iwl-csr.h      |    4 +-
 drivers/net/wireless/iwlwifi/iwl-debug.h    |    3 +-
 drivers/net/wireless/iwlwifi/iwl-debugfs.c  |  125 ++++++++++----------
 drivers/net/wireless/iwlwifi/iwl-dev.h      |   12 +--
 drivers/net/wireless/iwlwifi/iwl-devtrace.c |    1 +
 drivers/net/wireless/iwlwifi/iwl-devtrace.h |   21 +++-
 drivers/net/wireless/iwlwifi/iwl-io.h       |   20 +++
 drivers/net/wireless/iwlwifi/iwl-led.c      |    1 -
 drivers/net/wireless/iwlwifi/iwl-rx.c       |    3 +-
 drivers/net/wireless/iwlwifi/iwl-tx.c       |    2 +-
 drivers/net/wireless/iwlwifi/iwl3945-base.c |   74 ++++++++++--
 20 files changed, 395 insertions(+), 204 deletions(-)


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

end of thread, other threads:[~2009-11-20 20:05 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-11-20 20:04 [PATCH 00/19] iwlwifi updates 11/20/2009 Reinette Chatre
2009-11-20 20:04 ` [PATCH 01/19] iwlwifi: Add iwl_write8() Reinette Chatre
2009-11-20 20:04 ` [PATCH 02/19] iwlagn: Use iwl_write8() for CSR_INT_COALESCING register Reinette Chatre
2009-11-20 20:04 ` [PATCH 03/19] iwlwifi: control led while update tx/rx bytes counts Reinette Chatre
2009-11-20 20:04 ` [PATCH 04/19] iwlwifi: set sm_ps_mode as part of cfg parameters Reinette Chatre
2009-11-20 20:04 ` [PATCH 05/19] iwlwifi: reset led_tpt when clear tx/rx traffic byte counts Reinette Chatre
2009-11-20 20:04 ` [PATCH 06/19] iwl3945: removed unused struct and definitions Reinette Chatre
2009-11-20 20:04 ` [PATCH 07/19] iwlwifi: set read/write permission for debugfs files Reinette Chatre
2009-11-20 20:04 ` [PATCH 08/19] iwlwifi: increase tx_queue debugfs buffer size Reinette Chatre
2009-11-20 20:05 ` [PATCH 09/19] iwlwifi: dynamically allocate buffer for sram debugfs file Reinette Chatre
2009-11-20 20:05 ` [PATCH 10/19] iwlwifi: fix reserved2 field in iwl4965_addsta Reinette Chatre
2009-11-20 20:05 ` [PATCH 11/19] iwlwifi: separate IO tracing Reinette Chatre
2009-11-20 20:05 ` [PATCH 12/19] iwlwifi: update supported PCI_ID list for 5xx0 series Reinette Chatre
2009-11-20 20:05 ` [PATCH 13/19] iwlwifi: by default, dump entire sram data portion Reinette Chatre
2009-11-20 20:05 ` [PATCH 14/19] iwlwifi: dump error log when uCode error occurred Reinette Chatre
2009-11-20 20:05 ` [PATCH 15/19] iwlwifi: Tell the ucode immediately when association state changes Reinette Chatre
2009-11-20 20:05 ` [PATCH 16/19] iwlwifi: print limited number of event log when uCode error Reinette Chatre
2009-11-20 20:05 ` [PATCH 17/19] iwlwifi: change message for cmd queue full error Reinette Chatre
2009-11-20 20:05 ` [PATCH 18/19] iwlwifi: remove reset led_tpt from iwl_leds_init() Reinette Chatre
2009-11-20 20:05 ` [PATCH 19/19 w-t only] iwlwifi: no need to set use_rts_for_ht for BG device Reinette Chatre

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.