From patchwork Sat Dec 17 00:02:20 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Miquel Raynal X-Patchwork-Id: 13075658 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 31D18C4167B for ; Sat, 17 Dec 2022 00:02:35 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229588AbiLQACe (ORCPT ); Fri, 16 Dec 2022 19:02:34 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41356 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229475AbiLQACd (ORCPT ); Fri, 16 Dec 2022 19:02:33 -0500 Received: from relay3-d.mail.gandi.net (relay3-d.mail.gandi.net [IPv6:2001:4b98:dc4:8::223]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id C64E72EF32; Fri, 16 Dec 2022 16:02:31 -0800 (PST) Received: (Authenticated sender: miquel.raynal@bootlin.com) by mail.gandi.net (Postfix) with ESMTPSA id 3E8D460004; Sat, 17 Dec 2022 00:02:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=gm1; t=1671235349; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=/Ejgp9ajxNABEqykahIVbJcC7ujvWK97/e5XwqL57VI=; b=VgA+53ptcW4Y6qj5Kz7Ns0qgDLoKKELyCxOsIQBQd853QwZrN/BGEg6eJ2hRgt3rTPm2ec bHkhQNpMr8zGG4tSwS3cJjEUDTnbMsnt6bBDXe1w67LgvDujMHxp96BZ770UZGR1DzhySk 4ctJppt7HOSicIoqAfTW5h/vEcB+Y+Mazjg6AEUpbiEFFxUF/c573zSRk6t7AsPWr4wgPM zDjoaegDdcYZlKZe9ET/QS9CpVif/bRfg5DlFCgl56dRG7qJdNZAREM1huY5KCIf2n38Hi kwmran18U4/DuwpyY+G7R+PEVcxjhJN90o+GwTUoGuKVgwy2xfJgQDOeLPRreQ== From: Miquel Raynal To: Alexander Aring , Stefan Schmidt , linux-wpan@vger.kernel.org Cc: David Girault , Romuald Despres , Frederic Blain , Nicolas Schodet , Guilhem Imberton , Thomas Petazzoni , "David S. Miller" , Jakub Kicinski , Paolo Abeni , Eric Dumazet , netdev@vger.kernel.org, Miquel Raynal Subject: [PATCH wpan-next v2 0/6] IEEE 802.15.4 passive scan support Date: Sat, 17 Dec 2022 01:02:20 +0100 Message-Id: <20221217000226.646767-1-miquel.raynal@bootlin.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-wpan@vger.kernel.org Hello, We now have the infrastructure to report beacons/PANs, we also have the capability to transmit MLME commands synchronously. It is time to use these to implement a proper scan implementation. There are a few side-changes which are necessary for the soft MAC scan implementation to compile/work, but nothing big. The two main changes are: * The introduction of a user API for managing scans. * The soft MAC implementation of a scan. In all the past, current and future submissions, David and Romuald from Qorvo are credited in various ways (main author, co-author, suggested-by) depending of the amount of rework that was involved on each patch, reflecting as much as possible the open-source guidelines we follow in the kernel. All this effort is made possible thanks to Qorvo Inc which is pushing towards a featureful upstream WPAN support. Example of output: # iwpan monitor coord1 (phy #1): scan started coord1 (phy #1): beacon received: PAN 0xabcd, addr 0xb2bcc36ac5570abe coord1 (phy #1): scan finished coord1 (phy #1): scan started coord1 (phy #1): scan aborted Cheers, Miquèl Changes in v2: * Different way to forward the reason why a scan was terminated, instead of providing two different "commands" we provide the same "scan done" command and aside an attribute, saying whether the scan was aborted by the user or terminated by itself at the end of the required list of (complex) channels to scan. Miquel Raynal (6): ieee802154: Add support for user scanning requests ieee802154: Define a beacon frame header ieee802154: Introduce a helper to validate a channel mac802154: Prepare forcing specific symbol duration mac802154: Add MLME Tx locked helpers mac802154: Handle passive scanning include/linux/ieee802154.h | 7 + include/net/cfg802154.h | 55 +++++- include/net/ieee802154_netdev.h | 36 ++++ include/net/nl802154.h | 58 +++++++ net/ieee802154/nl802154.c | 223 +++++++++++++++++++++++- net/ieee802154/nl802154.h | 3 + net/ieee802154/rdev-ops.h | 28 ++++ net/ieee802154/trace.h | 40 +++++ net/mac802154/Makefile | 2 +- net/mac802154/cfg.c | 33 +++- net/mac802154/ieee802154_i.h | 43 ++++- net/mac802154/iface.c | 3 + net/mac802154/main.c | 36 ++-- net/mac802154/rx.c | 36 +++- net/mac802154/scan.c | 289 ++++++++++++++++++++++++++++++++ net/mac802154/tx.c | 42 +++-- 16 files changed, 902 insertions(+), 32 deletions(-) create mode 100644 net/mac802154/scan.c Acked-by: Alexander Aring