The following set of patches add support for new channels on 60GHz band and EDMG channels: Changelog: V7: - Checkpatch fix in wil6210 driver - Verify stats initialized in wil6210 driver 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): wil6210: Add EDMG channel support nl support for dmtool drivers/net/wireless/ath/wil6210/Kconfig | 11 ++ drivers/net/wireless/ath/wil6210/Makefile | 1 + drivers/net/wireless/ath/wil6210/cfg80211.c | 206 +++++++++++++++++++++- drivers/net/wireless/ath/wil6210/ioctl.c | 245 +++++++++++++++++++++++++++ drivers/net/wireless/ath/wil6210/netdev.c | 8 + 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 | 9 +- drivers/net/wireless/ath/wil6210/wmi.c | 5 +- drivers/net/wireless/ath/wil6210/wmi.h | 26 ++- include/uapi/linux/wil6210_uapi.h | 77 +++++++++ 11 files changed, 583 insertions(+), 13 deletions(-) create mode 100644 drivers/net/wireless/ath/wil6210/ioctl.c create mode 100644 include/uapi/linux/wil6210_uapi.h -- 2.7.4