All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/20] First batch of new patches for wl1271
@ 2009-10-08 18:56 Luciano Coelho
  2009-10-08 18:56 ` [PATCH 01/20] wl1271: remove unecessary qual parameter from rx status Luciano Coelho
                   ` (19 more replies)
  0 siblings, 20 replies; 23+ messages in thread
From: Luciano Coelho @ 2009-10-08 18:56 UTC (permalink / raw)
  To: linville; +Cc: linux-wireless

Hi John et al,

We have finally upgraded our internal kernel to 2.6.32, so I now had the time
to continue working on forward porting the patches we have been working on
internally, on top of 2.6.28.  There are 61 patches in total, so I decided to
break them down into separate patch sets, so that it's a bit easier to review.

Here's the first batch.  There are multiple fixes, improvements and updates for
a new firmware release (which has some API changes).

I'll wait until these patches cook a little bit before I send the next bunch.

Cheers,
Luca.

Juuso Oikarinen (17):
  wl1271: Correction to TX block allocation calculation
  wl1271: Security sequence number handling for TX (for WPA)
  wl1271: Correct TKIP header space handling in TX path
  wl1271: Implement delayed entry into ELP
  wl1271: mask aid bits 14 and 15 in ps-poll template
  wl1271: Implementation for SPI busy word checking
  wl1271: Configure rate policies based on AP rates
  wl1271: Update join usage
  wl1271: Corrections to TX path
  wl1271: use workqueue provided by mac80211 instead of the default
  wl1271: Clear probe-request template after scan
  wl1271: Multicast filtering configuration
  wl1271: Use vmalloc to allocate memory for firmware
  wl1271: Add connection monitoring configuration
  wl1271: Enable beacon filtering with the stack
  wl1271: Configure beacon filtering on if PSM used
  wl1271: Mask unneeded events from firmware to conserve power

Luciano Coelho (3):
  wl1271: remove unecessary qual parameter from rx status
  wl1271: added Juuso Oikarinen as module author
  wl1271: hack to disable filters

 drivers/net/wireless/wl12xx/wl1271.h       |   42 +++++-
 drivers/net/wireless/wl12xx/wl1271_acx.c   |   54 +++++--
 drivers/net/wireless/wl12xx/wl1271_acx.h   |   29 +++-
 drivers/net/wireless/wl12xx/wl1271_boot.c  |   21 ++-
 drivers/net/wireless/wl12xx/wl1271_cmd.c   |   40 +++--
 drivers/net/wireless/wl12xx/wl1271_cmd.h   |    6 +-
 drivers/net/wireless/wl12xx/wl1271_event.c |   18 ++-
 drivers/net/wireless/wl12xx/wl1271_init.c  |   13 ++-
 drivers/net/wireless/wl12xx/wl1271_main.c  |  244 +++++++++++++++++++++++-----
 drivers/net/wireless/wl12xx/wl1271_ps.c    |   57 +++++--
 drivers/net/wireless/wl12xx/wl1271_ps.h    |    2 +-
 drivers/net/wireless/wl12xx/wl1271_rx.c    |    6 -
 drivers/net/wireless/wl12xx/wl1271_spi.c   |   69 ++++++++-
 drivers/net/wireless/wl12xx/wl1271_tx.c    |   48 ++++--
 14 files changed, 517 insertions(+), 132 deletions(-)


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

end of thread, other threads:[~2009-10-08 20:17 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-08 18:56 [PATCH 00/20] First batch of new patches for wl1271 Luciano Coelho
2009-10-08 18:56 ` [PATCH 01/20] wl1271: remove unecessary qual parameter from rx status Luciano Coelho
2009-10-08 18:56 ` [PATCH 02/20] wl1271: Correction to TX block allocation calculation Luciano Coelho
2009-10-08 18:56 ` [PATCH 03/20] wl1271: Security sequence number handling for TX (for WPA) Luciano Coelho
2009-10-08 18:56 ` [PATCH 04/20] wl1271: Correct TKIP header space handling in TX path Luciano Coelho
2009-10-08 18:56 ` [PATCH 05/20] wl1271: Implement delayed entry into ELP Luciano Coelho
2009-10-08 18:56 ` [PATCH 06/20] wl1271: mask aid bits 14 and 15 in ps-poll template Luciano Coelho
2009-10-08 18:56 ` [PATCH 07/20] wl1271: Implementation for SPI busy word checking Luciano Coelho
2009-10-08 18:56 ` [PATCH 08/20] wl1271: Configure rate policies based on AP rates Luciano Coelho
2009-10-08 18:56 ` [PATCH 09/20] wl1271: Update join usage Luciano Coelho
2009-10-08 18:56 ` [PATCH 10/20] wl1271: Corrections to TX path Luciano Coelho
2009-10-08 18:56 ` [PATCH 11/20] wl1271: added Juuso Oikarinen as module author Luciano Coelho
2009-10-08 18:56 ` [PATCH 12/20] wl1271: hack to disable filters Luciano Coelho
2009-10-08 18:56 ` [PATCH 13/20] wl1271: use workqueue provided by mac80211 instead of the default Luciano Coelho
2009-10-08 18:56 ` [PATCH 14/20] wl1271: Clear probe-request template after scan Luciano Coelho
2009-10-08 18:56 ` [PATCH 15/20] wl1271: Multicast filtering configuration Luciano Coelho
2009-10-08 20:01   ` Johannes Berg
2009-10-08 20:15     ` Luciano Coelho
2009-10-08 18:56 ` [PATCH 16/20] wl1271: Use vmalloc to allocate memory for firmware Luciano Coelho
2009-10-08 18:56 ` [PATCH 17/20] wl1271: Add connection monitoring configuration Luciano Coelho
2009-10-08 18:56 ` [PATCH 18/20] wl1271: Enable beacon filtering with the stack Luciano Coelho
2009-10-08 18:56 ` [PATCH 19/20] wl1271: Configure beacon filtering on if PSM used Luciano Coelho
2009-10-08 18:56 ` [PATCH 20/20] wl1271: Mask unneeded events from firmware to conserve power Luciano Coelho

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.