From: David Lin <yu-hao.lin@nxp.com>
To: linux-wireless@vger.kernel.org
Cc: linux-kernel@vger.kernel.org, briannorris@chromium.org,
kvalo@kernel.org, francesco@dolcini.it,
tsung-hsien.hsieh@nxp.com, David Lin <yu-hao.lin@nxp.com>
Subject: [PATCH 00/43] wifi: nxpwifi: create nxpwifi to support iw61x
Date: Fri, 21 Jun 2024 15:51:25 +0800 [thread overview]
Message-ID: <20240621075208.513497-1-yu-hao.lin@nxp.com> (raw)
This series adds support for IW61x which is a new family of 2.4/5 GHz
dual-band 1x1 Wi-Fi 6, Bluetooth/Bluetooth Low Energy 5.2 and 15.4
tri-radio single chip by NXP. These devices support 20/40/80MHz
single spatial stream in both STA and AP mode. Communication to the
IW61x is done via SDIO interface
This driver is a derivative of existing Mwifiex [1] and based on similar
full-MAC architecture [2]. It has been tested with i.MX8M Mini evaluation
kits in both AP and STA mode.
All code passes sparse and checkpatch
Data sheet (require registration):
https://www.nxp.com/products/wireless-connectivity/wi-fi-plus-bluetooth-
plus-802-15-4/2-4-5-ghz-dual-band-1x1-wi-fi-6-802-11ax-plus-bluetooth-5-
4-plus-802-15-4-tri-radio-solution:IW612
Known gaps to be addressed in the following patches,
- Enable 11ax capabilities. This initial patch support up to 11ac.
- Support DFS channel. This initial patch doesn't support DFS channel in
both AP/STA mode.
This patch is presented as a request for comment with the intention of being
made into a patch after initial feedbacks are addressed
[1] We had considered adding IW61x to mwifiex driver, however due to
FW architecture, host command interface and supported features are
significantly different, we have to create the new nxpwifi driver.
Subsequent NXP chipsets will be added and sustained in this new driver.
[2] Some features, as of now, WPA2/WPA3 personal/enterprise are offloaded
to host wpa_supplicant/hostapd.
David Lin (43):
wifi: nxpwifi: add 11ac.c
wifi: nxpwifi: add 11ac.h
wifi: nxpwifi: add 11h.c
wifi: nxpwifi: add 11n.c
wifi: nxpwifi: add 11n.h
wifi: nxpwifi: add 11n_aggr.c
wifi: nxpwifi: add 11n_aggr.h
wifi: nxpwifi: add 11n_rxreorder.c
wifi: nxpwifi: add 11n_rxreorder.h
wifi: nxpwifi: add cfg80211.c
wifi: nxpwifi: add cfg80211.h
wifi: nxpwifi: add cfp.c
wifi: nxpwifi: add cmdevt.c
wifi: nxpwifi: add cmdevt.h
wifi: nxpwifi: add debugfs.c
wifi: nxpwifi: add decl.h
wifi: nxpwifi: add ethtool.c
wifi: nxpwifi: add fw.h
wifi: nxpwifi: add ie.c
wifi: nxpwifi: add init.c
wifi: nxpwifi: add ioctl.h
wifi: nxpwifi: add join.c
wifi: nxpwifi: add main.c
wifi: nxpwifi: add main.h
wifi: nxpwifi: add scan.c
wifi: nxpwifi: add sdio.c
wifi: nxpwifi: add sdio.h
wifi: nxpwifi: add sta_cmd.c
wifi: nxpwifi: add sta_event.c
wifi: nxpwifi: add sta_ioctl.c
wifi: nxpwifi: add sta_rx.c
wifi: nxpwifi: add sta_tx.c
wifi: nxpwifi: add txrx.c
wifi: nxpwifi: add uap_cmd.c
wifi: nxpwifi: add uap_event.c
wifi: nxpwifi: add uap_txrx.c
wifi: nxpwifi: add util.c
wifi: nxpwifi: add util.h
wifi: nxpwifi: add wmm.c
wifi: nxpwifi: add wmm.h
wifi: nxpwifi: add nxp sdio vendor id and iw61x device id
wifi: nxpwifi: add Makefile and Kconfig files for nxpwifi compilation
wifi: nxpwifi: add nxpwifi related information to MAINTAINERS
MAINTAINERS | 7 +
drivers/net/wireless/Kconfig | 1 +
drivers/net/wireless/Makefile | 1 +
drivers/net/wireless/nxp/Kconfig | 17 +
drivers/net/wireless/nxp/Makefile | 3 +
drivers/net/wireless/nxp/nxpwifi/11ac.c | 366 ++
drivers/net/wireless/nxp/nxpwifi/11ac.h | 33 +
drivers/net/wireless/nxp/nxpwifi/11h.c | 432 ++
drivers/net/wireless/nxp/nxpwifi/11n.c | 851 ++++
drivers/net/wireless/nxp/nxpwifi/11n.h | 163 +
drivers/net/wireless/nxp/nxpwifi/11n_aggr.c | 278 ++
drivers/net/wireless/nxp/nxpwifi/11n_aggr.h | 21 +
.../net/wireless/nxp/nxpwifi/11n_rxreorder.c | 928 ++++
.../net/wireless/nxp/nxpwifi/11n_rxreorder.h | 72 +
drivers/net/wireless/nxp/nxpwifi/Kconfig | 22 +
drivers/net/wireless/nxp/nxpwifi/Makefile | 38 +
drivers/net/wireless/nxp/nxpwifi/cfg80211.c | 3773 +++++++++++++++++
drivers/net/wireless/nxp/nxpwifi/cfg80211.h | 19 +
drivers/net/wireless/nxp/nxpwifi/cfp.c | 484 +++
drivers/net/wireless/nxp/nxpwifi/cmdevt.c | 1285 ++++++
drivers/net/wireless/nxp/nxpwifi/cmdevt.h | 92 +
drivers/net/wireless/nxp/nxpwifi/debugfs.c | 1042 +++++
drivers/net/wireless/nxp/nxpwifi/decl.h | 299 ++
drivers/net/wireless/nxp/nxpwifi/ethtool.c | 58 +
drivers/net/wireless/nxp/nxpwifi/fw.h | 2262 ++++++++++
drivers/net/wireless/nxp/nxpwifi/ie.c | 502 +++
drivers/net/wireless/nxp/nxpwifi/init.c | 696 +++
drivers/net/wireless/nxp/nxpwifi/ioctl.h | 445 ++
drivers/net/wireless/nxp/nxpwifi/join.c | 910 ++++
drivers/net/wireless/nxp/nxpwifi/main.c | 1726 ++++++++
drivers/net/wireless/nxp/nxpwifi/main.h | 1507 +++++++
drivers/net/wireless/nxp/nxpwifi/scan.c | 2894 +++++++++++++
drivers/net/wireless/nxp/nxpwifi/sdio.c | 2646 ++++++++++++
drivers/net/wireless/nxp/nxpwifi/sdio.h | 340 ++
drivers/net/wireless/nxp/nxpwifi/sta_cmd.c | 3229 ++++++++++++++
drivers/net/wireless/nxp/nxpwifi/sta_event.c | 858 ++++
drivers/net/wireless/nxp/nxpwifi/sta_ioctl.c | 1320 ++++++
drivers/net/wireless/nxp/nxpwifi/sta_rx.c | 244 ++
drivers/net/wireless/nxp/nxpwifi/sta_tx.c | 215 +
drivers/net/wireless/nxp/nxpwifi/txrx.c | 362 ++
drivers/net/wireless/nxp/nxpwifi/uap_cmd.c | 1170 +++++
drivers/net/wireless/nxp/nxpwifi/uap_event.c | 483 +++
drivers/net/wireless/nxp/nxpwifi/uap_txrx.c | 498 +++
drivers/net/wireless/nxp/nxpwifi/util.c | 751 ++++
drivers/net/wireless/nxp/nxpwifi/util.h | 90 +
drivers/net/wireless/nxp/nxpwifi/wmm.c | 1397 ++++++
drivers/net/wireless/nxp/nxpwifi/wmm.h | 95 +
include/linux/mmc/sdio_ids.h | 3 +
48 files changed, 34928 insertions(+)
create mode 100644 drivers/net/wireless/nxp/Kconfig
create mode 100644 drivers/net/wireless/nxp/Makefile
create mode 100644 drivers/net/wireless/nxp/nxpwifi/11ac.c
create mode 100644 drivers/net/wireless/nxp/nxpwifi/11ac.h
create mode 100644 drivers/net/wireless/nxp/nxpwifi/11h.c
create mode 100644 drivers/net/wireless/nxp/nxpwifi/11n.c
create mode 100644 drivers/net/wireless/nxp/nxpwifi/11n.h
create mode 100644 drivers/net/wireless/nxp/nxpwifi/11n_aggr.c
create mode 100644 drivers/net/wireless/nxp/nxpwifi/11n_aggr.h
create mode 100644 drivers/net/wireless/nxp/nxpwifi/11n_rxreorder.c
create mode 100644 drivers/net/wireless/nxp/nxpwifi/11n_rxreorder.h
create mode 100644 drivers/net/wireless/nxp/nxpwifi/Kconfig
create mode 100644 drivers/net/wireless/nxp/nxpwifi/Makefile
create mode 100644 drivers/net/wireless/nxp/nxpwifi/cfg80211.c
create mode 100644 drivers/net/wireless/nxp/nxpwifi/cfg80211.h
create mode 100644 drivers/net/wireless/nxp/nxpwifi/cfp.c
create mode 100644 drivers/net/wireless/nxp/nxpwifi/cmdevt.c
create mode 100644 drivers/net/wireless/nxp/nxpwifi/cmdevt.h
create mode 100644 drivers/net/wireless/nxp/nxpwifi/debugfs.c
create mode 100644 drivers/net/wireless/nxp/nxpwifi/decl.h
create mode 100644 drivers/net/wireless/nxp/nxpwifi/ethtool.c
create mode 100644 drivers/net/wireless/nxp/nxpwifi/fw.h
create mode 100644 drivers/net/wireless/nxp/nxpwifi/ie.c
create mode 100644 drivers/net/wireless/nxp/nxpwifi/init.c
create mode 100644 drivers/net/wireless/nxp/nxpwifi/ioctl.h
create mode 100644 drivers/net/wireless/nxp/nxpwifi/join.c
create mode 100644 drivers/net/wireless/nxp/nxpwifi/main.c
create mode 100644 drivers/net/wireless/nxp/nxpwifi/main.h
create mode 100644 drivers/net/wireless/nxp/nxpwifi/scan.c
create mode 100644 drivers/net/wireless/nxp/nxpwifi/sdio.c
create mode 100644 drivers/net/wireless/nxp/nxpwifi/sdio.h
create mode 100644 drivers/net/wireless/nxp/nxpwifi/sta_cmd.c
create mode 100644 drivers/net/wireless/nxp/nxpwifi/sta_event.c
create mode 100644 drivers/net/wireless/nxp/nxpwifi/sta_ioctl.c
create mode 100644 drivers/net/wireless/nxp/nxpwifi/sta_rx.c
create mode 100644 drivers/net/wireless/nxp/nxpwifi/sta_tx.c
create mode 100644 drivers/net/wireless/nxp/nxpwifi/txrx.c
create mode 100644 drivers/net/wireless/nxp/nxpwifi/uap_cmd.c
create mode 100644 drivers/net/wireless/nxp/nxpwifi/uap_event.c
create mode 100644 drivers/net/wireless/nxp/nxpwifi/uap_txrx.c
create mode 100644 drivers/net/wireless/nxp/nxpwifi/util.c
create mode 100644 drivers/net/wireless/nxp/nxpwifi/util.h
create mode 100644 drivers/net/wireless/nxp/nxpwifi/wmm.c
create mode 100644 drivers/net/wireless/nxp/nxpwifi/wmm.h
base-commit: 238d636723a30311e20fde0a361662e829fe488b
--
2.34.1
next reply other threads:[~2024-06-21 7:52 UTC|newest]
Thread overview: 57+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-21 7:51 David Lin [this message]
2024-06-21 7:51 ` [PATCH 01/43] wifi: nxpwifi: add 11ac.c David Lin
2024-06-28 8:22 ` Abel Vesa
2024-07-01 0:46 ` [EXT] " David Lin
2024-06-21 7:51 ` [PATCH 02/43] wifi: nxpwifi: add 11ac.h David Lin
2024-06-21 7:51 ` [PATCH 03/43] wifi: nxpwifi: add 11h.c David Lin
2024-06-21 7:51 ` [PATCH 04/43] wifi: nxpwifi: add 11n.c David Lin
2024-06-21 7:51 ` [PATCH 05/43] wifi: nxpwifi: add 11n.h David Lin
2024-06-21 7:51 ` [PATCH 06/43] wifi: nxpwifi: add 11n_aggr.c David Lin
2024-06-21 7:51 ` [PATCH 07/43] wifi: nxpwifi: add 11n_aggr.h David Lin
2024-06-21 7:51 ` [PATCH 08/43] wifi: nxpwifi: add 11n_rxreorder.c David Lin
2024-06-21 7:51 ` [PATCH 09/43] wifi: nxpwifi: add 11n_rxreorder.h David Lin
2024-06-21 7:51 ` [PATCH 10/43] wifi: nxpwifi: add cfg80211.c David Lin
2024-06-21 7:51 ` [PATCH 11/43] wifi: nxpwifi: add cfg80211.h David Lin
2024-06-21 7:51 ` [PATCH 12/43] wifi: nxpwifi: add cfp.c David Lin
2024-06-21 7:51 ` [PATCH 13/43] wifi: nxpwifi: add cmdevt.c David Lin
2024-06-21 7:51 ` [PATCH 14/43] wifi: nxpwifi: add cmdevt.h David Lin
2024-06-21 7:51 ` [PATCH 15/43] wifi: nxpwifi: add debugfs.c David Lin
2024-06-21 7:51 ` [PATCH 16/43] wifi: nxpwifi: add decl.h David Lin
2024-06-21 7:51 ` [PATCH 17/43] wifi: nxpwifi: add ethtool.c David Lin
2024-06-21 7:51 ` [PATCH 18/43] wifi: nxpwifi: add fw.h David Lin
2024-06-21 7:51 ` [PATCH 19/43] wifi: nxpwifi: add ie.c David Lin
2024-06-21 7:51 ` [PATCH 20/43] wifi: nxpwifi: add init.c David Lin
2024-06-21 7:51 ` [PATCH 21/43] wifi: nxpwifi: add ioctl.h David Lin
2024-06-21 7:51 ` [PATCH 22/43] wifi: nxpwifi: add join.c David Lin
2024-06-21 7:51 ` [PATCH 23/43] wifi: nxpwifi: add main.c David Lin
2024-06-21 7:51 ` [PATCH 24/43] wifi: nxpwifi: add main.h David Lin
2024-06-21 7:51 ` [PATCH 25/43] wifi: nxpwifi: add scan.c David Lin
2024-06-21 7:51 ` [PATCH 26/43] wifi: nxpwifi: add sdio.c David Lin
2024-06-26 11:40 ` [EXTERNAL] " Nemanov, Michael
2024-06-27 3:37 ` [EXT] " David Lin
2024-06-27 6:26 ` Nemanov, Michael
2024-06-27 6:33 ` [EXT] " David Lin
2024-06-21 7:51 ` [PATCH 27/43] wifi: nxpwifi: add sdio.h David Lin
2024-06-21 7:51 ` [PATCH 28/43] wifi: nxpwifi: add sta_cmd.c David Lin
2024-06-21 7:51 ` [PATCH 29/43] wifi: nxpwifi: add sta_event.c David Lin
2024-06-21 7:51 ` [PATCH 30/43] wifi: nxpwifi: add sta_ioctl.c David Lin
2024-06-21 7:51 ` [PATCH 31/43] wifi: nxpwifi: add sta_rx.c David Lin
2024-06-21 7:51 ` [PATCH 32/43] wifi: nxpwifi: add sta_tx.c David Lin
2024-06-21 7:51 ` [PATCH 33/43] wifi: nxpwifi: add txrx.c David Lin
2024-06-21 7:51 ` [PATCH 34/43] wifi: nxpwifi: add uap_cmd.c David Lin
2024-06-21 7:52 ` [PATCH 35/43] wifi: nxpwifi: add uap_event.c David Lin
2024-06-21 7:52 ` [PATCH 36/43] wifi: nxpwifi: add uap_txrx.c David Lin
2024-06-21 7:52 ` [PATCH 37/43] wifi: nxpwifi: add util.c David Lin
2024-06-21 7:52 ` [PATCH 38/43] wifi: nxpwifi: add util.h David Lin
2024-06-21 7:52 ` [PATCH 39/43] wifi: nxpwifi: add wmm.c David Lin
2024-06-21 7:52 ` [PATCH 40/43] wifi: nxpwifi: add wmm.h David Lin
2024-06-21 7:52 ` [PATCH 41/43] wifi: nxpwifi: add nxp sdio vendor id and iw61x device id David Lin
2024-06-21 7:52 ` [PATCH 42/43] wifi: nxpwifi: add Makefile and Kconfig files for nxpwifi compilation David Lin
2024-06-26 0:19 ` kernel test robot
2024-06-26 0:24 ` kernel test robot
2024-06-28 4:46 ` kernel test robot
2024-06-21 7:52 ` [PATCH 43/43] wifi: nxpwifi: add nxpwifi related information to MAINTAINERS David Lin
2024-06-21 17:53 ` [PATCH 00/43] wifi: nxpwifi: create nxpwifi to support iw61x Brian Norris
2024-06-21 18:20 ` Johannes Berg
2024-07-01 1:08 ` [EXT] " David Lin
[not found] <PAWPR04MB9910AE0CBBFAE748D265EAE09CFE2@PAWPR04MB9910.eurprd04.prod.outlook.com>
2025-02-14 5:52 ` Jeff Chen
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=20240621075208.513497-1-yu-hao.lin@nxp.com \
--to=yu-hao.lin@nxp.com \
--cc=briannorris@chromium.org \
--cc=francesco@dolcini.it \
--cc=kvalo@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-wireless@vger.kernel.org \
--cc=tsung-hsien.hsieh@nxp.com \
/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;
as well as URLs for NNTP newsgroup(s).