Re: [PATCH] WHENCE: Fix typo Version v3

2018-07-06 Thread Luciano Coelho
Hi, On Thu, 2018-05-17 at 17:20 +0200, Sedat Dilek wrote: > I have seen that in the WHENCE file there is "Version" with and > without ":", mostly iwlwifi ucodes. > > As an example: > > File: iwlwifi-8265-36.ucode > -Version 36.e91976c0.0 > +Version: 36.e91976c0.0 > > The usual case is

Re: [PATCH] brcmfmac: specify some features per firmware version

2018-07-06 Thread Arend van Spriel
resending without HTML... On 7/4/2018 10:31 PM, Rafał Miłecki wrote: From: Rafał Miłecki Some features supported by firmware aren't advertised and there is no way for a driver to query them. This includes e.g. monitor mode details. Most firmwares support monitor interface but only the latest

Re: [PATCH v2 12/12] mt76: Kconfig and Makefile for mt76x0 driver

2018-07-06 Thread kbuild test robot
Hi Stanislaw, I love your patch! Perhaps something to improve: [auto build test WARNING on wireless-drivers-next/master] [also build test WARNING on v4.18-rc3 next-20180706] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https

[RFC PATCH] mt76: mt76x0_burst_read_regs() can be static

2018-07-06 Thread kbuild test robot
Fixes: c1f1ff1a3d63 ("mt76: Kconfig and Makefile for mt76x0 driver") Signed-off-by: kbuild test robot --- mcu.c |4 ++-- phy.c |2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/net/wireless/mediatek/mt76/mt76x0/mcu.c

Re: [PATCH 00/27] mtd: rawnand: Improve compile-test coverage

2018-07-06 Thread Richard Weinberger
Am Donnerstag, 5. Juli 2018, 12:25:42 CEST schrieb Geert Uytterhoeven: > Hi Boris, > > On Thu, Jul 5, 2018 at 12:09 PM Boris Brezillon > wrote: > > This is an attempt at adding "depends || COMPILE_TEST" to all NAND > > drivers that have no compile-time dependencies on arch > > features/headers.

Re: [PATCH 21/27] bcma: Allow selection of this driver when COMPILE_TEST=y

2018-07-06 Thread Boris Brezillon
On Fri, 06 Jul 2018 17:32:50 +0300 Kalle Valo wrote: > Boris Brezillon writes: > > > This allows us to increase compile-test coverage without having to build > > a kernel for MIPS. That's particularly interesting for subsystem > > maintainers that want to test as many drivers as possible in a

Re: [PATCH 21/27] bcma: Allow selection of this driver when COMPILE_TEST=y

2018-07-06 Thread Kalle Valo
Boris Brezillon writes: > This allows us to increase compile-test coverage without having to build > a kernel for MIPS. That's particularly interesting for subsystem > maintainers that want to test as many drivers as possible in a single > build. > > We also add a dependency on HAS_IOMEM in

iwlwifi is not working after doing the reboot by pressing RESET button

2018-07-06 Thread Palanisamy, Rameshbabu
Hi Team, I am using intel 8265 NGW wifi card in intel leafhill board. We have enabled the Intel -wifi card in the Leaf_hill platform. After powering on the device, the wifi module is working fine but it doesn't work when we do the reboot by pressing RESET button. We have debug the issue and

Re: [PATCH] cfg80211: inspect off channel operation only when off channel given

2018-07-06 Thread Johannes Berg
On Tue, 2018-07-03 at 16:04 -0700, peter...@bowerswilkins.com wrote: > From: Peter Oh > > NL80211_ATTR_OFFCHANNEL_TX_OK does not mean given channel is always > off channel, but it means the channel given could be off channel. > Hence it should not block the given channel to be used if given >

[[PATCH v2]] mac80211_hwsim: Add support for HE

2018-07-06 Thread Luca Coelho
From: Ilan Peer Add support for HE in mac8011_hwsim, conforming with P802.11ax_D2.0. Signed-off-by: Liad Kaufman Signed-off-by: Ilan Peer Signed-off-by: Luca Coelho --- In V2: I fixed compilation issues with the symbols I changed in mac80211's patches, namely: * s/_msc_/_mcs_/ *

Re: Proper SET_KEY usage?

2018-07-06 Thread Johannes Berg
Hi, > > Yeah. This stuff grew out of WEXT mostly, and what things wpa_s did at > > the time... > > Right. My main intent with this was to see if I could understand things > enough to actually start fixing some of the docs, see if we need to > deprecate some things and/or maybe fix bits inside

Re: [linuxwifi] iwlwifi is not working after doing the reboot by pressing RESET button

2018-07-06 Thread Luciano Coelho
HTML emails don't go through to the mailing lists at vger.kernel.org, so please don't use HTML. On Fri, 2018-07-06 at 08:40 +, Palanisamy, Rameshbabu wrote: > Hi Team, > > > I am using intel 8265 NGW wifi card in intel leafhill board. > > We have enabled the Intel -wifi card in the

Re: [PATCH 1/7] wireless: Change single cqm_config to rssi config list

2018-07-06 Thread Johannes Berg
On Wed, 2018-07-04 at 23:46 +0530, Tamizh chelvam wrote: > > > - struct cfg80211_cqm_config *cqm_config; > > > + struct cfg80211_rssi_config *rssi_config; > > > + struct list_head rssi_config_list; > > > > Why do you need both now? Perhaps instead you should allow a NULL/all- > > ones MAC

Re: [PATCH 2/7] cfg80211: Add new NL command to configure peer specific rssi threshold

2018-07-06 Thread Johannes Berg
On Wed, 2018-07-04 at 11:39 +0530, Tamizh chelvam wrote: > On 2018-06-29 14:59, Johannes Berg wrote: > > On Wed, 2018-06-13 at 16:15 +0530, Tamizh chelvam wrote: > > > > > > + * @NL80211_ATTR_STA_MON: Station's connection monitor configuration > > > in a > > > + * nested attribute with

Re: [PATCH 4/7] cfg80211: Add support to notify station's rssi level crossing

2018-07-06 Thread Johannes Berg
On Wed, 2018-07-04 at 11:43 +0530, Tamizh chelvam wrote: > > > --- a/include/uapi/linux/nl80211.h > > > +++ b/include/uapi/linux/nl80211.h > > > @@ -1249,6 +1249,7 @@ enum nl80211_commands { > > > NL80211_CMD_CONTROL_PORT_FRAME, > > > > > > NL80211_CMD_SET_STA_MON, > > > +

Re: [PATCH 6/7] cfg80211: Accept multiple RSSI threholds for STA_MON command

2018-07-06 Thread Johannes Berg
On Thu, 2018-07-05 at 13:07 +0530, Tamizh chelvam wrote: > First I've done patch to have single threshold value for AP mode and as > per the previous discussion extended to multiple thresholds also. Here > the intention is to accept one or more than one RSSI thresholds to > monitor. Any

Re: [PATCH 00/11] Add mt76x0 driver

2018-07-06 Thread Lorenzo Bianconi
On Jul 06, Stanislaw Gruszka wrote: > On Thu, Jul 05, 2018 at 05:32:17PM +0200, Lorenzo Bianconi wrote: > > > My integration efforts can be traced here: > > > https://github.com/sgruszka/wireless-drivers-next/commits/mt76x0-draft > > > > > > > I just had a brief review of the code and I compiled

[PATCH v2 01/12] mt76: add more states

2018-07-06 Thread Stanislaw Gruszka
Add states needed for mt76x0 driver. Signed-off-by: Stanislaw Gruszka --- drivers/net/wireless/mediatek/mt76/mt76.h | 4 1 file changed, 4 insertions(+) diff --git a/drivers/net/wireless/mediatek/mt76/mt76.h b/drivers/net/wireless/mediatek/mt76/mt76.h index 96e9798bb8a0..7b50d4b7f40e

[PATCH v2 07/12] mt76x0: init files

2018-07-06 Thread Stanislaw Gruszka
Add init files of mt76x0 driver. Signed-off-by: Stanislaw Gruszka --- drivers/net/wireless/mediatek/mt76/mt76x0/init.c | 720 + .../net/wireless/mediatek/mt76/mt76x0/initvals.h | 282 2 files changed, 1002 insertions(+) create mode 100644

[PATCH v2 11/12] mt76x0: main file

2018-07-06 Thread Stanislaw Gruszka
Add main file of mt76x0 driver. Signed-off-by: Stanislaw Gruszka --- drivers/net/wireless/mediatek/mt76/mt76x0/main.c | 403 +++ 1 file changed, 403 insertions(+) create mode 100644 drivers/net/wireless/mediatek/mt76/mt76x0/main.c diff --git

[PATCH v2 09/12] mt76x0: trace and debugfs files

2018-07-06 Thread Stanislaw Gruszka
Add trace and debugfs files of mt76x0 driver. Signed-off-by: Stanislaw Gruszka --- .../net/wireless/mediatek/mt76/mt76x0/debugfs.c| 166 ++ drivers/net/wireless/mediatek/mt76/mt76x0/trace.c | 21 ++ drivers/net/wireless/mediatek/mt76/mt76x0/trace.h | 366 + 3

[PATCH v2 10/12] mt76x0: dma and tx files

2018-07-06 Thread Stanislaw Gruszka
Add dma and tx files of mt76x0 driver. Signed-off-by: Stanislaw Gruszka --- drivers/net/wireless/mediatek/mt76/mt76x0/dma.c | 522 drivers/net/wireless/mediatek/mt76/mt76x0/dma.h | 126 ++ drivers/net/wireless/mediatek/mt76/mt76x0/tx.c | 270 3 files

[PATCH v2 03/12] mt76x0: mac files

2018-07-06 Thread Stanislaw Gruszka
Add mac files of mt76x0 driver. Signed-off-by: Stanislaw Gruszka --- drivers/net/wireless/mediatek/mt76/mt76x0/mac.c | 660 drivers/net/wireless/mediatek/mt76/mt76x0/mac.h | 154 ++ 2 files changed, 814 insertions(+) create mode 100644

[PATCH v2 02/12] mt76x0: core files

2018-07-06 Thread Stanislaw Gruszka
Core files of mt76x0 driver. mt76x0 driver adds support for Mediatek MT7610U based USB Wi-Fi dongles. Signed-off-by: Stanislaw Gruszka --- drivers/net/wireless/mediatek/mt76/mt76x0/core.c | 34 ++ drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0.h | 376

[PATCH v2 00/12] Add mt76x0 driver

2018-07-06 Thread Stanislaw Gruszka
Add mt76x0 driver for MT7610U based USB dongles. Currently driver support only STA mode. mt76x0 is based on Jakub's mt7601u driver already included in the kernel. I would like the driver be integrated as part of mt76 (instead of separate driver in mediatek dir like mt7601u) to utilize mt76 code

[PATCH v2 12/12] mt76: Kconfig and Makefile for mt76x0 driver

2018-07-06 Thread Stanislaw Gruszka
Add Kconfig and Makefiles for mt76x0 driver. Now the driver can be build. Signed-off-by: Stanislaw Gruszka --- drivers/net/wireless/mediatek/mt76/Kconfig | 7 +++ drivers/net/wireless/mediatek/mt76/Makefile| 1 + drivers/net/wireless/mediatek/mt76/mt76x0/Makefile | 7 +++

[PATCH v2 05/12] mt76x0: mcu files

2018-07-06 Thread Stanislaw Gruszka
Add mcu files of mt76x0 driver. Signed-off-by: Stanislaw Gruszka --- drivers/net/wireless/mediatek/mt76/mt76x0/mcu.c | 655 drivers/net/wireless/mediatek/mt76/mt76x0/mcu.h | 101 2 files changed, 756 insertions(+) create mode 100644