mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Jeff Chen <jeff.chen_1@nxp.com>
To: linux-wireless@vger.kernel.org
Cc: linux-kernel@vger.kernel.org, briannorris@chromium.org,
	johannes@sipsolutions.net, francesco@dolcini.it,
	tsung-hsien.hsieh@nxp.com, s.hauer@pengutronix.de,
	Jeff Chen <jeff.chen_1@nxp.com>
Subject: [PATCH v6 20/22] wifi: nxpwifi: add NXP vendor and IW61x device IDs to sdio_ids.h
Date: Wed,  5 Nov 2025 18:47:42 +0800	[thread overview]
Message-ID: <20251105104744.2401992-21-jeff.chen_1@nxp.com> (raw)
In-Reply-To: <20251105104744.2401992-1-jeff.chen_1@nxp.com>

Register NXP's SDIO vendor ID (0x0471) and IW61x device ID (0x0205)
in the global SDIO ID list. This allows the nxpwifi SDIO driver to
match and bind to supported NXP Wi-Fi chips via the SDIO bus.

Signed-off-by: Jeff Chen <jeff.chen_1@nxp.com>
---
 include/linux/mmc/sdio_ids.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/include/linux/mmc/sdio_ids.h b/include/linux/mmc/sdio_ids.h
index 673cbdf43453..39ac2b612e4a 100644
--- a/include/linux/mmc/sdio_ids.h
+++ b/include/linux/mmc/sdio_ids.h
@@ -116,6 +116,9 @@
 #define SDIO_VENDOR_ID_MICROCHIP_WILC		0x0296
 #define SDIO_DEVICE_ID_MICROCHIP_WILC1000	0x5347
 
+#define SDIO_VENDOR_ID_NXP			0x0471
+#define SDIO_DEVICE_ID_NXP_IW61X		0x0205
+
 #define SDIO_VENDOR_ID_REALTEK			0x024c
 #define SDIO_DEVICE_ID_REALTEK_RTW8723BS	0xb723
 #define SDIO_DEVICE_ID_REALTEK_RTW8821BS	0xb821
-- 
2.34.1


  parent reply	other threads:[~2025-11-05 10:50 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-11-05 10:47 [PATCH v6 00/22] wifi: nxpwifi: create nxpwifi to support iw61x Jeff Chen
2025-11-05 10:47 ` [PATCH v6 01/22] wifi: nxpwifi: Add 802.11n support for client and AP modes Jeff Chen
2025-11-05 10:47 ` [PATCH v6 02/22] wifi: nxpwifi: add initial support for 802.11ac Jeff Chen
2025-11-05 10:47 ` [PATCH v6 03/22] wifi: nxpwifi: add initial support for 802.11ax Jeff Chen
2025-11-05 10:47 ` [PATCH v6 04/22] wifi: nxpwifi: add support for 802.11h (DFS and TPC) Jeff Chen
2025-11-05 10:47 ` [PATCH v6 05/22] wifi: nxpwifi: add support for WMM Jeff Chen
2025-11-05 10:47 ` [PATCH v6 06/22] wifi: nxpwifi: add scan support Jeff Chen
2025-11-05 10:47 ` [PATCH v6 07/22] wifi: nxpwifi: add join and association support Jeff Chen
2025-11-05 10:47 ` [PATCH v6 08/22] wifi: nxpwifi: add channel/frequency/power (cfp) support Jeff Chen
2025-11-05 10:47 ` [PATCH v6 09/22] wifi: nxpwifi: add configuration support Jeff Chen
2025-11-05 10:47 ` [PATCH v6 10/22] wifi: nxpwifi: implement cfg80211 ops for STA and AP modes Jeff Chen
2025-11-05 10:47 ` [PATCH v6 11/22] wifi: nxpwifi: add firmware command and TLV definitions Jeff Chen
2025-11-05 10:47 ` [PATCH v6 12/22] wifi: nxpwifi: introduce command and event handling infrastructure Jeff Chen
2025-11-05 10:47 ` [PATCH v6 13/22] wifi: nxpwifi: add data path support for STA and AP modes Jeff Chen
2025-11-05 10:47 ` [PATCH v6 14/22] wifi: nxpwifi: add debugfs support for diagnostics and testing Jeff Chen
2025-11-05 10:47 ` [PATCH v6 15/22] wifi: nxpwifi: add ethtool support for Wake-on-LAN Jeff Chen
2025-11-05 10:47 ` [PATCH v6 16/22] wifi: nxpwifi: add utility and IE handling support Jeff Chen
2025-11-05 10:47 ` [PATCH v6 17/22] wifi: nxpwifi: add driver initialization and shutdown support Jeff Chen
2025-11-05 10:47 ` [PATCH v6 18/22] wifi: nxpwifi: add core driver implementation Jeff Chen
2025-11-05 10:47 ` [PATCH v6 19/22] wifi: nxpwifi: add initial SDIO bus driver support Jeff Chen
2025-11-05 10:47 ` Jeff Chen [this message]
2025-11-05 10:47 ` [PATCH v6 21/22] wifi: nxpwifi: add Kconfig and Makefile for kernel integration Jeff Chen
2025-11-05 10:47 ` [PATCH v6 22/22] wifi: nxpwifi: add MAINTAINERS entry for nxpwifi driver Jeff Chen
2025-11-11 10:37 ` [PATCH v6 00/22] wifi: nxpwifi: create nxpwifi to support iw61x Johannes Berg
2025-11-17 18:08   ` jeff.chen_1

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=20251105104744.2401992-21-jeff.chen_1@nxp.com \
    --to=jeff.chen_1@nxp.com \
    --cc=briannorris@chromium.org \
    --cc=francesco@dolcini.it \
    --cc=johannes@sipsolutions.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-wireless@vger.kernel.org \
    --cc=s.hauer@pengutronix.de \
    --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

all inboxes | Powered by JetHome®