All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 00/31] wl1271: patches for wk50
@ 2009-12-11 13:40 Luciano Coelho
  2009-12-11 13:40 ` [PATCH v2 01/31] wl1271: updated radio parameters structure for newer firmwares Luciano Coelho
                   ` (31 more replies)
  0 siblings, 32 replies; 33+ messages in thread
From: Luciano Coelho @ 2009-12-11 13:40 UTC (permalink / raw)
  To: linville; +Cc: linux-wireless

Hi,

These are the patches that have resulted from a one-week debug and
implementation camp with TI.  Mostly bug fixes and improvements, but also we
now added support for a new version of the firmware.

With these patches, the driver should be pretty much functional, even though
there are still a couple of known bugs.

In v2:

* use channel max_power configuration instead of hacking the tx_power to 25dBm
* removed some lame internal bug tags
* fixed my own email address in one of the s-o-b tags

Cheers,
Luca.

Juuso Oikarinen (15):
  wl1271: Configure smart-reflex paramter values.
  wl1271: Remove smart reflex ACX
  wl1271: Use slow rates for association messages
  wl1271: Fix event acknowledging functionality
  wl1271: prevent power save entry while not associated
  wl1271: Implement chipset boot retry
  wl1271: Add pre-power-on sleep
  wl1271: Remove beacon-loss-ind from PSM entry failure handling
  wl1271: Add rudimentary ad-hoc support
  wl1271: Change rates configured for templates
  wl1271: Fix supported rate management
  wl1271: Change booleans in struct wl1271 into a flags bitmask
  wl1271: Add support for acx_pm_config
  wl1271: Check vif for NULL when indicating beacon-loss
  wl1271: Prevent performing "join" before association

Luciano Coelho (16):
  wl1271: updated radio parameters structure for newer firmwares
  wl1271: updated general parameters structure for newer firmwares
  wl1271: update radio and general parameters values
  wl1271: added radio parameters configuration values newer firmwares
  wl1271: use join command with dummy BSSID
  wl1271: remove workaround for disconnection
  wl1271: limit TX power to 25dBm for every channel
  wl1271: check result code from the join command
  wl1271: set null data template when BSSID is known
  wl1271: use the correct macro when setting the basic rates
  wl1271: implement dco itrim parameters setting
  wl1271: fix one typo in the rx_rssi_and_proc_compens values
  wl1271: add gpio_power file in debugfs to power the chip on and off
  wl1271: upload only the first 468 bytes from the NVS file
  wl1271: some new configuration values according to new reference
  wl1271: use channel 1 when configuring the data path

 drivers/net/wireless/wl12xx/wl1271.h         |   35 +-
 drivers/net/wireless/wl12xx/wl1271_acx.c     |  134 ++++----
 drivers/net/wireless/wl12xx/wl1271_acx.h     |   37 +-
 drivers/net/wireless/wl12xx/wl1271_boot.c    |    8 +-
 drivers/net/wireless/wl12xx/wl1271_cmd.c     |   67 +++--
 drivers/net/wireless/wl12xx/wl1271_cmd.h     |   33 ++-
 drivers/net/wireless/wl12xx/wl1271_conf.h    |  100 +++---
 drivers/net/wireless/wl12xx/wl1271_debugfs.c |   62 ++++
 drivers/net/wireless/wl12xx/wl1271_event.c   |   20 +-
 drivers/net/wireless/wl12xx/wl1271_event.h   |    2 +-
 drivers/net/wireless/wl12xx/wl1271_init.c    |   12 +-
 drivers/net/wireless/wl12xx/wl1271_main.c    |  482 ++++++++++++++++----------
 drivers/net/wireless/wl12xx/wl1271_ps.c      |   15 +-
 drivers/net/wireless/wl12xx/wl1271_tx.c      |   43 +++-
 14 files changed, 680 insertions(+), 370 deletions(-)


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

end of thread, other threads:[~2009-12-16 11:47 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-11 13:40 [PATCH v2 00/31] wl1271: patches for wk50 Luciano Coelho
2009-12-11 13:40 ` [PATCH v2 01/31] wl1271: updated radio parameters structure for newer firmwares Luciano Coelho
2009-12-11 13:40 ` [PATCH v2 02/31] wl1271: updated general " Luciano Coelho
2009-12-11 13:40 ` [PATCH v2 03/31] wl1271: update radio and general parameters values Luciano Coelho
2009-12-11 13:40 ` [PATCH v2 04/31] wl1271: added radio parameters configuration values newer firmwares Luciano Coelho
2009-12-11 13:40 ` [PATCH v2 05/31] wl1271: use join command with dummy BSSID Luciano Coelho
2009-12-11 13:40 ` [PATCH v2 06/31] wl1271: remove workaround for disconnection Luciano Coelho
2009-12-11 13:40 ` [PATCH v2 07/31] wl1271: limit TX power to 25dBm for every channel Luciano Coelho
2009-12-11 13:40 ` [PATCH v2 08/31] wl1271: check result code from the join command Luciano Coelho
2009-12-11 13:40 ` [PATCH v2 09/31] wl1271: set null data template when BSSID is known Luciano Coelho
2009-12-11 13:40 ` [PATCH v2 10/31] wl1271: use the correct macro when setting the basic rates Luciano Coelho
2009-12-11 13:40 ` [PATCH v2 11/31] wl1271: implement dco itrim parameters setting Luciano Coelho
2009-12-11 13:40 ` [PATCH v2 12/31] wl1271: fix one typo in the rx_rssi_and_proc_compens values Luciano Coelho
2009-12-11 13:40 ` [PATCH v2 13/31] wl1271: add gpio_power file in debugfs to power the chip on and off Luciano Coelho
2009-12-11 13:40 ` [PATCH v2 14/31] wl1271: upload only the first 468 bytes from the NVS file Luciano Coelho
2009-12-11 13:40 ` [PATCH v2 15/31] wl1271: some new configuration values according to new reference Luciano Coelho
2009-12-11 13:40 ` [PATCH v2 16/31] wl1271: use channel 1 when configuring the data path Luciano Coelho
2009-12-11 13:40 ` [PATCH v2 17/31] wl1271: Configure smart-reflex paramter values Luciano Coelho
2009-12-11 13:40 ` [PATCH v2 18/31] wl1271: Remove smart reflex ACX Luciano Coelho
2009-12-11 13:40 ` [PATCH v2 19/31] wl1271: Use slow rates for association messages Luciano Coelho
2009-12-11 13:40 ` [PATCH v2 20/31] wl1271: Fix event acknowledging functionality Luciano Coelho
2009-12-11 13:41 ` [PATCH v2 21/31] wl1271: prevent power save entry while not associated Luciano Coelho
2009-12-11 13:41 ` [PATCH v2 22/31] wl1271: Implement chipset boot retry Luciano Coelho
2009-12-11 13:41 ` [PATCH v2 23/31] wl1271: Add pre-power-on sleep Luciano Coelho
2009-12-11 13:41 ` [PATCH v2 24/31] wl1271: Remove beacon-loss-ind from PSM entry failure handling Luciano Coelho
2009-12-11 13:41 ` [PATCH v2 25/31] wl1271: Add rudimentary ad-hoc support Luciano Coelho
2009-12-11 13:41 ` [PATCH v2 26/31] wl1271: Change rates configured for templates Luciano Coelho
2009-12-11 13:41 ` [PATCH v2 27/31] wl1271: Fix supported rate management Luciano Coelho
2009-12-11 13:41 ` [PATCH v2 28/31] wl1271: Change booleans in struct wl1271 into a flags bitmask Luciano Coelho
2009-12-11 13:41 ` [PATCH v2 29/31] wl1271: Add support for acx_pm_config Luciano Coelho
2009-12-11 13:41 ` [PATCH v2 30/31] wl1271: Check vif for NULL when indicating beacon-loss Luciano Coelho
2009-12-11 13:41 ` [PATCH v2 31/31] wl1271: Prevent performing "join" before association Luciano Coelho
2009-12-16 11:46 ` [PATCH v2 00/31] wl1271: patches for wk50 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.