From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id BCFAAC76191 for ; Mon, 15 Jul 2019 12:46:27 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 965602067C for ; Mon, 15 Jul 2019 12:46:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730600AbfGOMq1 (ORCPT ); Mon, 15 Jul 2019 08:46:27 -0400 Received: from alexa-out-ams-01.qualcomm.com ([185.23.61.162]:48742 "EHLO alexa-out-ams-01.qualcomm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730595AbfGOMq0 (ORCPT ); Mon, 15 Jul 2019 08:46:26 -0400 Received: from ironmsg01-ams.qualcomm.com ([10.251.56.2]) by alexa-out-ams-01.qualcomm.com with ESMTP; 15 Jul 2019 14:46:21 +0200 X-IronPort-AV: E=McAfee;i="6000,8403,9318"; a="8780998" Received: from unknown (HELO wigig-1329.mea.qualcomm.com) ([10.4.89.235]) by ironmsg01-ams.qualcomm.com with ESMTP; 15 Jul 2019 14:46:16 +0200 From: Alexei Avshalom Lazar To: Johannes Berg Cc: Alexei Avshalom Lazar , linux-wireless@vger.kernel.org, wil6210@qti.qualcomm.com Subject: [PATCH v5 0/2] Add support for new channels on 60GHz band Date: Mon, 15 Jul 2019 15:46:05 +0300 Message-Id: <1563194767-4817-1-git-send-email-ailizaro@codeaurora.org> X-Mailer: git-send-email 1.9.1 Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org The following set of patches add support for new channels on 60GHz band and EDMG channels: Changelog: 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 | 30 +++- include/net/cfg80211.h | 86 ++++++++++- include/uapi/linux/nl80211.h | 24 ++++ net/wireless/chan.c | 159 +++++++++++++++++++++ net/wireless/nl80211.c | 37 +++++ net/wireless/util.c | 42 +++++- 11 files changed, 585 insertions(+), 19 deletions(-) -- 1.9.1