Re: About adding support for MT76x2U to Linux kernel

2015-08-14 Thread Jakub Kiciński
CC: Linus W who was hacking on mt7630e recently. On Fri, 14 Aug 2015 11:15:26 +0300, Tuomas Räsänen wrote: > Hi > > I'm very interested in adding support (especially AP mode) for MT76x2U > USB-dongles to Linux kernel. I'm aware of the work you both have done, Felix's > work on MT76x2 PCI-devices

Re: [PATCH v2] ath10k: Debugfs entry to enable/disable WLAN&Blutooth Coexist feature

2015-06-02 Thread Jakub Kiciński
On Thu, 28 May 2015 12:19:05 -0700, Yanbo Li wrote: > As some radio have no connection with BT modules, enable the WLAN/Bluetooth > coexist(BTC) feature will has some side effect if the radio's GPIO connect > with any other HW modules. Add the control switcher "btc_feature" at > debugfs and set the

Re: [PATCHv2 0/2] add mt7601u driver

2015-05-25 Thread Jakub Kiciński
On Mon, 25 May 2015 11:13:32 +0300, Kalle Valo wrote: > Jakub Kicinski writes: > > > From: Jakub Kicinski > > > >> This miniseries adds support for the simplest of MediaTek Wi-Fi > >> devices. MT7601U is a single stream bgn chip with no bells or whistles. > >> My driver is partially based on Fe

Re: MediaTek WiFi hardware support in upstream kernel

2015-05-20 Thread Jakub Kiciński
On Wed, 20 May 2015 19:06:04 +0200, poma wrote: > With the script 'mt7601u-fw-install' can be initiated the download and > installation of the required firmware, > though it would be optimal to resolve it in the following manner: > > In OpenWrt repo - mt76 - mac80211 driver for MediaTek MT76x2 80

Re: mediatek mt7630e and ksoftirqd CPU load

2015-04-01 Thread Jakub Kiciński
On Wed, 1 Apr 2015 19:33:13 +, gmou...@gmail.com wrote: > Thank you very much for your reply. > > https://github.com/kuba-moo/mt7630e solves my 100% CPU problem. > > I will publicize your repository on the Ubuntu bug > > https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1220146 > > If

Re: mediatek mt7630e and ksoftirqd CPU load

2015-04-01 Thread Jakub Kiciński
On Thu, 26 Mar 2015 11:44:44 -0500, Larry Finger wrote: > On 03/26/2015 11:12 AM, George Moutsopoulos wrote: > > Dear developers, > > > > if this is not the right place to post this, sorry for the spam. I > > haven't filed a bug report yet. Tell me if I should. I am not sure if > > the problem is s

Re: mt7601u dies during channel switch (was: MediaTek WiFi hardware support in upstream kernel)

2015-02-26 Thread Jakub Kiciński
On Thu, 26 Feb 2015 19:50:04 +0100, Sergei Antonov wrote: > Jakub, I'll do all of it, but for now just one quick question: what > firmware binary blob should I use with your driver? Maybe I just took > a wrong firmware... You can send me yours. I have the one from vendor package. The MD5 sum is

Re: MediaTek WiFi hardware support in upstream kernel

2015-02-26 Thread Jakub Kiciński
On Thu, 26 Feb 2015 14:56:46 +0100, poma wrote: > On 06.02.2015 18:29, Jakub Kiciński wrote: > > Hello everyone! > > > > I put together a mac80211 driver for Mediatek MT7601U. It's partially > > based on Felix's mt76, but I'm not sure if it will make sen

mt7601u dies during channel switch (was: MediaTek WiFi hardware support in upstream kernel)

2015-02-25 Thread Jakub Kiciński
On Wed, 25 Feb 2015 01:49:02 +0100, Sergei Antonov wrote: > On 6 February 2015 at 18:29, Jakub Kiciński wrote: > > Hello everyone! > > > > I put together a mac80211 driver for Mediatek MT7601U. It's partially > > based on Felix's mt76, but I'm not sure

Re: MediaTek WiFi hardware support in upstream kernel

2015-02-06 Thread Jakub Kiciński
Hello everyone! I put together a mac80211 driver for Mediatek MT7601U. It's partially based on Felix's mt76, but I'm not sure if it will make sense to merge the two together. MT7601U is a pretty old 1x1 bgn chip for USB dongles and mt76 now only supports the latest and greatest ac APs. I'm test

Re: [PATCH v2] ath10k: Replace ioread with mb to drain write buffer

2015-02-06 Thread Jakub Kiciński
On Fri, 6 Feb 2015 09:58:46 +0100, Jakub Kiciński wrote: > On Fri, 30 Jan 2015 16:14:30 -0800, Peter Oh wrote: > > Using ioread() to perform draining write buffer is excessive. > > Use compact API, mb(), that intended to be used for the case. > > It reduces total 14 CPU

Re: [PATCH v2] ath10k: Replace ioread with mb to drain write buffer

2015-02-06 Thread Jakub Kiciński
On Fri, 30 Jan 2015 16:14:30 -0800, Peter Oh wrote: > Using ioread() to perform draining write buffer is excessive. > Use compact API, mb(), that intended to be used for the case. > It reduces total 14 CPU clocks per interrupt. > > Signed-off-by: Peter Oh I have no idea what the code does but thi