linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
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 02/43] wifi: nxpwifi: add 11ac.h
Date: Fri, 21 Jun 2024 15:51:27 +0800	[thread overview]
Message-ID: <20240621075208.513497-3-yu-hao.lin@nxp.com> (raw)
In-Reply-To: <20240621075208.513497-1-yu-hao.lin@nxp.com>

Signed-off-by: David Lin <yu-hao.lin@nxp.com>
---
 drivers/net/wireless/nxp/nxpwifi/11ac.h | 33 +++++++++++++++++++++++++
 1 file changed, 33 insertions(+)
 create mode 100644 drivers/net/wireless/nxp/nxpwifi/11ac.h

diff --git a/drivers/net/wireless/nxp/nxpwifi/11ac.h b/drivers/net/wireless/nxp/nxpwifi/11ac.h
new file mode 100644
index 000000000000..b060de17a18e
--- /dev/null
+++ b/drivers/net/wireless/nxp/nxpwifi/11ac.h
@@ -0,0 +1,33 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+/*
+ * NXP Wireless LAN device driver: 802.11ac
+ *
+ * Copyright 2011-2024 NXP
+ */
+
+#ifndef _NXPWIFI_11AC_H_
+#define _NXPWIFI_11AC_H_
+
+#define VHT_CFG_2GHZ BIT(0)
+#define VHT_CFG_5GHZ BIT(1)
+
+enum vht_cfg_misc_config {
+	VHT_CAP_TX_OPERATION = 1,
+	VHT_CAP_ASSOCIATION,
+	VHT_CAP_UAP_ONLY
+};
+
+#define DEFAULT_VHT_MCS_SET 0xfffe
+#define DISABLE_VHT_MCS_SET 0xffff
+
+#define VHT_BW_80_160_80P80 BIT(2)
+
+int nxpwifi_cmd_append_11ac_tlv(struct nxpwifi_private *priv,
+				struct nxpwifi_bssdescriptor *bss_desc,
+				u8 **buffer);
+int nxpwifi_cmd_11ac_cfg(struct nxpwifi_private *priv,
+			 struct host_cmd_ds_command *cmd, u16 cmd_action,
+			 struct nxpwifi_11ac_vht_cfg *cfg);
+void nxpwifi_fill_vht_cap_tlv(struct nxpwifi_private *priv,
+			      struct ieee80211_vht_cap *vht_cap, u8 bands);
+#endif /* _NXPWIFI_11AC_H_ */
-- 
2.34.1


  parent reply	other threads:[~2024-06-21  7:52 UTC|newest]

Thread overview: 56+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-21  7:51 [PATCH 00/43] wifi: nxpwifi: create nxpwifi to support iw61x David Lin
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 ` David Lin [this message]
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

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-3-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).