Linux wireless drivers development
 help / color / mirror / Atom feed
From: Shahar Levi <shahar_levi@ti.com>
To: <linux-wireless@vger.kernel.org>
Cc: Luciano Coelho <coelho@ti.com>
Subject: [PATCH 00/15] wl12xx: 1281/1283 support
Date: Sun,  6 Mar 2011 16:32:05 +0200	[thread overview]
Message-ID: <1299421940-26292-1-git-send-email-shahar_levi@ti.com> (raw)

Adding support to 1281/1283 WLAN TI chip (Quattro).
That support required changes in boot sequence, Tx&Rx path, ISR
polarity, SDIO block size padding, dynamic TX mem blocks, Dummy
packet event support, interrupt pacing and more.
Auto detection support between wl127x and wl128x that add the ability to operate
in each of them automatically.

Note:
That patch doesn't add support for wl128x with SPI bus.

Arik Nemtsov (2):
  wl12xx: 1281/1283 support - Use different FW file for AP mode
    wl127x/wl128x chips
  wl12xx: 1281/1283 support - disable TX aggregation for AP mode in
    wl128x

Shahar Levi (13):
  wl12xx: 1281/1283 support - move IRQ polarity
  wl12xx: 1281/1283 support - Add Definitions
  wl12xx: 1281/1283 support - Add acx commands
  wl12xx: 1281/1283 support - New radio struc & func
  wl12xx: 1281/1283 support - Loading FW & NVS
  wl12xx: 1281/1283 support - New boot sequence
  wl12xx: 1281/1283 support - Set mem conf & dynamic mem
  wl12xx: 1281/1283 support - Improve Tx & Rx path
  wl12xx: 1281/1283 support - Add dummy packet support
  wl12xx: 1281/1283 support - Set WiFi & BT cox
  wl12xx: 1281/1283 support - Add chip interrupt pacing
  wl12xx: 1281/1283 support - Use 1 spare blocks for 128x STA, and 2
    for the rest
  wl12xx: 1281/1283 support - enable chip support

 drivers/net/wireless/wl12xx/Kconfig     |    2 +-
 drivers/net/wireless/wl12xx/acx.c       |   71 ++++++--
 drivers/net/wireless/wl12xx/acx.h       |   11 +
 drivers/net/wireless/wl12xx/boot.c      |  307 ++++++++++++++++++++++++++-----
 drivers/net/wireless/wl12xx/boot.h      |   59 ++++++
 drivers/net/wireless/wl12xx/cmd.c       |   97 +++++++++-
 drivers/net/wireless/wl12xx/cmd.h       |   34 ++++
 drivers/net/wireless/wl12xx/conf.h      |   17 ++-
 drivers/net/wireless/wl12xx/event.c     |    6 +
 drivers/net/wireless/wl12xx/event.h     |    5 +-
 drivers/net/wireless/wl12xx/ini.h       |   96 ++++++++++-
 drivers/net/wireless/wl12xx/init.c      |   37 ++++-
 drivers/net/wireless/wl12xx/io.c        |    5 +
 drivers/net/wireless/wl12xx/io.h        |    2 +
 drivers/net/wireless/wl12xx/main.c      |  154 ++++++++++++++--
 drivers/net/wireless/wl12xx/reg.h       |   15 +--
 drivers/net/wireless/wl12xx/rx.c        |   34 ++--
 drivers/net/wireless/wl12xx/sdio.c      |   20 ++-
 drivers/net/wireless/wl12xx/sdio_test.c |   17 ++-
 drivers/net/wireless/wl12xx/spi.c       |   16 ++-
 drivers/net/wireless/wl12xx/testmode.c  |   22 ++-
 drivers/net/wireless/wl12xx/tx.c        |  172 ++++++++++++++----
 drivers/net/wireless/wl12xx/tx.h        |   53 +++++-
 drivers/net/wireless/wl12xx/wl12xx.h    |   24 ++-
 include/linux/wl12xx.h                  |    1 +
 25 files changed, 1092 insertions(+), 185 deletions(-)


             reply	other threads:[~2011-03-06 14:28 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-03-06 14:32 Shahar Levi [this message]
2011-03-06 14:32 ` [PATCH 01/15] wl12xx: 1281/1283 support - move IRQ polarity Shahar Levi
2011-03-06 14:32 ` [PATCH 02/15] wl12xx: 1281/1283 support - Add Definitions Shahar Levi
2011-03-06 14:32 ` [PATCH 03/15] wl12xx: 1281/1283 support - Add acx commands Shahar Levi
2011-03-07 12:53   ` [PATCH] wl12xx: fixes for " Luciano Coelho
2011-03-07 12:55     ` Luciano Coelho
2011-03-08  7:57     ` [PATCH v2] " Luciano Coelho
2011-03-08 16:56       ` Levi, Shahar
2011-03-06 14:32 ` [PATCH 04/15] wl12xx: 1281/1283 support - New radio struc & func Shahar Levi
2011-03-06 14:32 ` [PATCH 05/15] wl12xx: 1281/1283 support - Loading FW & NVS Shahar Levi
2011-03-10 21:13   ` Luciano Coelho
2011-03-06 14:32 ` [PATCH 06/15] wl12xx: 1281/1283 support - New boot sequence Shahar Levi
2011-03-08 13:11   ` Luciano Coelho
2011-03-08 18:08     ` Levi, Shahar
2011-03-09  8:12       ` Luciano Coelho
2011-03-08 13:37   ` [PATCH] wl12xx: fixes for " Luciano Coelho
2011-03-08 18:15     ` Levi, Shahar
2011-03-09  8:16       ` Luciano Coelho
2011-03-06 14:32 ` [PATCH 07/15] wl12xx: 1281/1283 support - Set mem conf & dynamic mem Shahar Levi
2011-03-06 14:32 ` [PATCH 08/15] wl12xx: 1281/1283 support - Improve Tx & Rx path Shahar Levi
2011-03-09  8:41   ` Luciano Coelho
2011-03-06 14:32 ` [PATCH 09/15] wl12xx: 1281/1283 support - Add dummy packet support Shahar Levi
2011-03-06 14:32 ` [PATCH 10/15] wl12xx: 1281/1283 support - Set WiFi & BT cox Shahar Levi
2011-03-09 14:37   ` Luciano Coelho
2011-03-09 17:39     ` Levi, Shahar
2011-03-09 18:15       ` Luciano Coelho
2011-03-06 14:32 ` [PATCH 11/15] wl12xx: 1281/1283 support - Add chip interrupt pacing Shahar Levi
2011-03-06 14:32 ` [PATCH 12/15] wl12xx: 1281/1283 support - Use 1 spare blocks for 128x STA, and 2 for the rest Shahar Levi
2011-03-06 14:32 ` [PATCH 13/15] wl12xx: 1281/1283 support - Use different FW file for AP mode wl127x/wl128x chips Shahar Levi
2011-03-06 14:32 ` [PATCH 14/15] wl12xx: 1281/1283 support - disable TX aggregation for AP mode in wl128x Shahar Levi
     [not found]   ` <AANLkTik8TYGmg3hekoN546ToRDxi5HJeoq75R29WfSxt@mail.gmail.com>
2011-03-06 15:38     ` Arik Nemtsov
2011-03-06 14:32 ` [PATCH 15/15] wl12xx: 1281/1283 support - enable chip support Shahar Levi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1299421940-26292-1-git-send-email-shahar_levi@ti.com \
    --to=shahar_levi@ti.com \
    --cc=coelho@ti.com \
    --cc=linux-wireless@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox