From patchwork Mon Aug 26 07:26:44 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sascha Hauer X-Patchwork-Id: 823118 Received: from metis.whiteo.stw.pengutronix.de (metis.whiteo.stw.pengutronix.de [185.203.201.7]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id C9A4E12C54D for ; Mon, 26 Aug 2024 07:27:07 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.203.201.7 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724657230; cv=none; b=iKHAJThsenV111UK2HeGDdR/FVZ6Ege4Y6YSHN6x6UVHq45KIS5dxzhQyAeqT39PG0Q9wLtcDXA4YN/hy7roVx0YtsHMQSP3eH/E8mVTe0+P+mUSc8l5FwJszEdHhU8QqJxsnWVVhpZIOUB3tQM5U7zkoCoQtEC8emOd5ZO6SZI= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724657230; c=relaxed/simple; bh=RPce0U/YUpPYjEp4lRO4eYswbyRtkfoz8XO+AxXbLPw=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=pR3kLtE52KI5xnoMdip4B0TrkzTJpBVhCrC/bu6OsFQCS9laKoeDtf3xfHbOnV/HUjz0R4Z2j7eWTgvL2JBNs3s9HCcUYxrQ7tk2s3NMZi4LhhYRC7/b0wilmkmi/tNk5m1fcH2Is5mW/Vcg+8ZPRTfHR+nMg4xhk0CQzhuty2U= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=pengutronix.de; spf=pass smtp.mailfrom=pengutronix.de; arc=none smtp.client-ip=185.203.201.7 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=pengutronix.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=pengutronix.de Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1siU7p-0005HP-SI; Mon, 26 Aug 2024 09:26:53 +0200 Received: from [2a0a:edc0:0:1101:1d::28] (helo=dude02.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1siU7p-0038Eo-1E; Mon, 26 Aug 2024 09:26:53 +0200 Received: from localhost ([::1] helo=dude02.red.stw.pengutronix.de) by dude02.red.stw.pengutronix.de with esmtp (Exim 4.96) (envelope-from ) id 1siU7o-000hSF-2y; Mon, 26 Aug 2024 09:26:52 +0200 From: Sascha Hauer To: Francesco Dolcini Cc: Calvin Owens , Brian Norris , Kalle Valo , David Lin , linux-wireless@vger.kernel.org, linux-kernel@vger.kernel.org, kernel@pengutronix.de, Sascha Hauer Subject: [RFC PATCH 0/4] mwifiex: add support for iw61x Date: Mon, 26 Aug 2024 09:26:44 +0200 Message-Id: <20240826072648.167004-1-s.hauer@pengutronix.de> X-Mailer: git-send-email 2.39.2 Precedence: bulk X-Mailing-List: linux-wireless@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-SA-Exim-Connect-IP: 2a0a:edc0:0:c01:1d::a2 X-SA-Exim-Mail-From: s.hauer@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: linux-wireless@vger.kernel.org This series adds support for the iw61x chips to the mwifiex driver. There are a few things to address, hence the RFC status. See the commit messages for details. The series is based on wireless-next/main. I am sending this now since people requested it here [1], but as it's out now feel free to leave your comments to the issues mentioned (or others I haven't mentioned ;) [1] https://lore.kernel.org/all/20240809094533.1660-1-yu-hao.lin@nxp.com/ Sascha Sascha Hauer (4): wifi: mwifiex: release firmware at remove time wifi: mwifiex: handle VDLL wifi: mwifiex: wait longer for SDIO card status mwifiex: add iw61x support drivers/net/wireless/marvell/mwifiex/cmdevt.c | 86 +++++++++++++++++++ drivers/net/wireless/marvell/mwifiex/fw.h | 16 ++++ drivers/net/wireless/marvell/mwifiex/main.c | 9 +- drivers/net/wireless/marvell/mwifiex/main.h | 4 + drivers/net/wireless/marvell/mwifiex/sdio.c | 81 ++++++++++++++++- drivers/net/wireless/marvell/mwifiex/sdio.h | 3 + .../net/wireless/marvell/mwifiex/sta_event.c | 4 + .../net/wireless/marvell/mwifiex/uap_event.c | 4 + include/linux/mmc/sdio_ids.h | 3 + 9 files changed, 205 insertions(+), 5 deletions(-)