From patchwork Thu Aug 1 13:16:12 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexei Avshalom Lazar X-Patchwork-Id: 11070701 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 61026912 for ; Thu, 1 Aug 2019 13:16:24 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 52A592863C for ; Thu, 1 Aug 2019 13:16:24 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 511F428647; Thu, 1 Aug 2019 13:16:24 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id ABFC428658 for ; Thu, 1 Aug 2019 13:16:22 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729535AbfHANQW (ORCPT ); Thu, 1 Aug 2019 09:16:22 -0400 Received: from alexa-out-ams-02.qualcomm.com ([185.23.61.163]:9929 "EHLO alexa-out-ams-02.qualcomm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728476AbfHANQV (ORCPT ); Thu, 1 Aug 2019 09:16:21 -0400 Received: from ironmsg03-ams.qualcomm.com ([10.251.56.4]) by alexa-out-ams-02.qualcomm.com with ESMTP; 01 Aug 2019 15:16:20 +0200 Received: from unknown (HELO wigig-1329.mea.qualcomm.com) ([10.4.89.235]) by ironmsg03-ams.qualcomm.com with ESMTP; 01 Aug 2019 15:16:16 +0200 From: Alexei Avshalom Lazar To: Johannes Berg Cc: Alexei Avshalom Lazar , linux-wireless@vger.kernel.org, wil6210@qti.qualcomm.com Subject: [PATCH v6 0/2] Add support for new channels on 60GHz band Date: Thu, 1 Aug 2019 16:16:12 +0300 Message-Id: <1564665374-2856-1-git-send-email-ailizaro@codeaurora.org> X-Mailer: git-send-email 2.7.4 Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP The following set of patches add support for new channels on 60GHz band and EDMG channels: Changelog: V6: - update commit message - initialize chandef variable V5: - Addressed to comments from the community - Added enum for bw_config - Updated nla_policy to NLA_POLICY_RANGE() V4: - Addressed to comments from the community - Updated comments and variable name V3: - Addressed to comments from the community - Added 60G check for verifying some EDMG cases are relevant - Used the ieee80211_sta_edmg_cap struct as the edmg channel configuration - Updated nla_policy to NLA_POLICY_RANGE() V2 - Addressed to comments from the community - Align to latest Spec release Alexei Avshalom Lazar (2): nl80211: Add support for EDMG channels wil6210: Add EDMG channel support drivers/net/wireless/ath/wil6210/cfg80211.c | 205 +++++++++++++++++++++++++-- drivers/net/wireless/ath/wil6210/txrx_edma.c | 2 + drivers/net/wireless/ath/wil6210/txrx_edma.h | 6 + drivers/net/wireless/ath/wil6210/wil6210.h | 8 +- drivers/net/wireless/ath/wil6210/wmi.c | 5 +- drivers/net/wireless/ath/wil6210/wmi.h | 26 +++- include/net/cfg80211.h | 86 ++++++++++- include/uapi/linux/nl80211.h | 24 ++++ net/mac80211/mlme.c | 2 +- net/mac80211/status.c | 2 +- net/wireless/chan.c | 159 +++++++++++++++++++++ net/wireless/nl80211.c | 37 +++++ net/wireless/util.c | 42 +++++- 13 files changed, 584 insertions(+), 20 deletions(-)