Re: [ath5k-devel] ath5k 5GHz Receive Diversity problem

2014-07-17 Thread Wojciech Dubowik
On 07/17/2014 03:24 AM, brettwri...@eaton.com wrote: Hello List, I am having a problem getting Rx diversity to work with both ar5213 and ar5413. What I have found is that the fast diversity works great for receiving 802.11b (i.e. CCK) modulations. But fast diversity for OFDM just does

Re: [ath5k-devel] ath5k: issues with AHB support on ubiquiti bullet 2 (AR2315)

2011-02-01 Thread Wojciech Dubowik
from madwifi. From what I have noticed the chip will hang as in your description on any access to MAC registers if it's not resetted properly. So here is the mentioned and untested patch: [PATCH] Added extra wakeup form sleep in PCI for AR2315 and up Signed-off-by: Wojciech Dubowik wojciech.dubo

[ath5k-devel] [PATCH] ath5k: Fix return codes for eeprom read functions.

2011-01-11 Thread Wojciech Dubowik
Eeprom read functions are of bool type and not int. Signed-off-by: Wojciech Dubowik wojciech.dubo...@neratec.com --- drivers/net/wireless/ath/ath5k/ahb.c|7 --- drivers/net/wireless/ath/ath5k/eeprom.c | 24 drivers/net/wireless/ath/ath5k/eeprom.h |5

Re: [ath5k-devel] ath5k_pci_eeprom_read return values

2011-01-10 Thread Wojciech Dubowik
From: Dr. David Alan Gilbert li...@treblig.org To: n...@openwrt.org, Wojciech Dubowik wojciech.dubo...@neratec.com, linvi...@tuxdriver.com Cc: ath5k-devel@lists.ath5k.org Sent: Sunday, January 9, 2011 1:13:13 AM Subject: ath5k_pci_eeprom_read return values Hi, I've been running 'sparse

Re: [ath5k-devel] ath5k on AR2315 WiSoC

2010-12-09 Thread Wojciech Dubowik
2.6.32.26. Best regards Lorenzo I am going to bisect the issue in more detail by next few days Best regards Lorenzo Best regards Lorenzo -- Wojciech Dubowik Senior Software Engineer Neratec Solutions AG Rosswiesstr. 29, CH-8608 Bubikon, Switzerland

Re: [ath5k-devel] ath5k on AR2315 WiSoC

2010-12-03 Thread Wojciech Dubowik
. Best regards Lorenzo I am going to bisect the issue in more detail by next few days Best regards Lorenzo Best regards Lorenzo -- Wojciech Dubowik Senior Software Engineer Neratec Solutions AG Rosswiesstr. 29, CH-8608 Bubikon, Switzerland Tel: +41 55 253 2096 (office

Re: [ath5k-devel] ath5k on AR2315 WiSoC

2010-12-02 Thread Wojciech Dubowik
will probably need your help for testing if I find something. Br, Wojtek Best regards Lorenzo -- Wojciech Dubowik Senior Software Engineer Neratec Solutions AG Rosswiesstr. 29, CH-8608 Bubikon, Switzerland Tel: +41 55 253 2096 (office) Fax: +41 55 253 2070 wojciech.dubo...@neratec.com http

[ath5k-devel] [PATCH v7 7/9] ath5k: Add initial registers values for radio RF2317 chip.

2010-12-02 Thread Wojciech Dubowik
From: Felix Fietkau n...@openwrt.org Signed-off-by: Felix Fietkau n...@openwrt.org Signed-off-by: Wojciech Dubowik wojciech.dubo...@neratec.com --- drivers/net/wireless/ath/ath5k/initvals.c | 23 +++ 1 files changed, 23 insertions(+), 0 deletions(-) diff --git a/drivers

[ath5k-devel] [PATCH v7 8/9] ath5k: Add AHB bus support.

2010-12-02 Thread Wojciech Dubowik
From: Felix Fietkau n...@openwrt.org AHB specific functions are now in ahb.c file. AHB bus is compiled in when CONFIG_ATHEROS_AR231X is set in kernel. All other platforms will use PCI bus. Signed-off-by: Felix Fietkau n...@openwrt.org Signed-off-by: Wojciech Dubowik wojciech.dubo...@neratec.com

[ath5k-devel] [PATCH v7 9/9] ath5k: Fix reset and interrupts for AHB type of devices.

2010-12-02 Thread Wojciech Dubowik
From: Felix Fietkau n...@openwrt.org On WiSoc we cannot access mac register before it is resetted. It will crash hardware otherwise. Signed-off-by: Felix Fietkau n...@openwrt.org Signed-off-by: Wojciech Dubowik wojciech.dubo...@neratec.com --- drivers/net/wireless/ath/ath5k/base.c |7

Re: [ath5k-devel] [PATCH v6 6/9] ath5k: Add a function to read chipset's MAC revision

2010-11-29 Thread Wojciech Dubowik
2010/11/26 Wojciech Dubowik dubo...@neratec.com: From: Felix Fietkau n...@openwrt.org Add bus dependent revision read function which is used to determine chipset's MAC before hardware is initialized. Signed-off-by: Felix Fietkau n...@openwrt.org Signed-off-by: Wojciech Dubowik

Re: [ath5k-devel] [PATCH v6 8/9] ath5k: Add AHB bus support.

2010-11-29 Thread Wojciech Dubowik
2010/11/26 Wojciech Dubowik dubo...@neratec.com: From: Felix Fietkau n...@openwrt.org AHB specific functions are now in ahb.c file. AHB bus is compiled in when CONFIG_ATHEROS_AR231X is set in kernel. All other platforms will use PCI bus. Signed-off-by: Felix Fietkau n...@openwrt.org

Re: [ath5k-devel] [PATCH v6 9/9] ath5k: Fix reset and interrupts for AHB type of devices.

2010-11-29 Thread Wojciech Dubowik
2010/11/26 Wojciech Dubowik dubo...@neratec.com: From: Felix Fietkau n...@openwrt.org On WiSoc we cannot access mac register before it is resetted. It will crash hardware otherwise. Signed-off-by: Felix Fietkau n...@openwrt.org Signed-off-by: Wojciech Dubowik wojciech.dubo

[ath5k-devel] [PATCH v6 1/9] ath5k: Use Generic DMA for later support of AHB bus.

2010-11-26 Thread Wojciech Dubowik
From: Felix Fietkau n...@openwrt.org Signed-off-by: Felix Fietkau n...@openwrt.org Signed-off-by: Wojciech Dubowik wojciech.dubo...@neratec.com --- drivers/net/wireless/ath/ath5k/base.c | 66 ++--- drivers/net/wireless/ath/ath5k/base.h |4 +- 2 files changed, 39

[ath5k-devel] [PATCH v6 2/9] ath5k: Introduce ath5k_init_softc function as in ath9k

2010-11-26 Thread Wojciech Dubowik
-by: Wojciech Dubowik wojciech.dubo...@neratec.com --- drivers/net/wireless/ath/ath5k/ath5k.h | 13 +- drivers/net/wireless/ath/ath5k/attach.c | 10 +- drivers/net/wireless/ath/ath5k/base.c | 344 ++- drivers/net/wireless/ath/ath5k/base.h |1 + drivers/net

[ath5k-devel] [PATCH v6 3/9] ath5k: Move PCI bus functions to separate file.

2010-11-26 Thread Wojciech Dubowik
From: Felix Fietkau n...@openwrt.org Signed-off-by: Felix Fietkau n...@openwrt.org Signed-off-by: Wojciech Dubowik wojciech.dubo...@neratec.com --- drivers/net/wireless/ath/ath5k/Makefile |1 + drivers/net/wireless/ath/ath5k/ath5k.h |5 + drivers/net/wireless/ath/ath5k/base.c | 267

[ath5k-devel] [PATCH v6 4/9] ath5k: Use generic eeprom read from common ath_bus_opts struct.

2010-11-26 Thread Wojciech Dubowik
From: Felix Fietkau n...@openwrt.org Signed-off-by: Felix Fietkau n...@openwrt.org Signed-off-by: Wojciech Dubowik wojciech.dubo...@neratec.com --- drivers/net/wireless/ath/ath5k/ath5k.h |6 + drivers/net/wireless/ath/ath5k/eeprom.c | 38 +- drivers/net

[ath5k-devel] [PATCH v6 5/9] ath5k: Check if pci pdev struct is initialized in common functions.

2010-11-26 Thread Wojciech Dubowik
From: Felix Fietkau n...@openwrt.org To be able to support other busses than PCI check if pci device structure is initialized. Signed-off-by: Felix Fietkau n...@openwrt.org Signed-off-by: Wojciech Dubowik wojciech.dubo...@neratec.com --- drivers/net/wireless/ath/ath5k/attach.c |5

[ath5k-devel] [PATCH v6 7/9] ath5k: Add initial registers values for radio RF2317 chip.

2010-11-26 Thread Wojciech Dubowik
From: Felix Fietkau n...@openwrt.org Signed-off-by: Felix Fietkau n...@openwrt.org Signed-off-by: Wojciech Dubowik wojciech.dubo...@neratec.com --- drivers/net/wireless/ath/ath5k/initvals.c | 23 +++ 1 files changed, 23 insertions(+), 0 deletions(-) diff --git a/drivers

[ath5k-devel] [PATCH v6 9/9] ath5k: Fix reset and interrupts for AHB type of devices.

2010-11-26 Thread Wojciech Dubowik
From: Felix Fietkau n...@openwrt.org On WiSoc we cannot access mac register before it is resetted. It will crash hardware otherwise. Signed-off-by: Felix Fietkau n...@openwrt.org Signed-off-by: Wojciech Dubowik wojciech.dubo...@neratec.com --- drivers/net/wireless/ath/ath5k/base.c |7

[ath5k-devel] [PATCH v6 8/9] ath5k: Add AHB bus support.

2010-11-26 Thread Wojciech Dubowik
From: Felix Fietkau n...@openwrt.org AHB specific functions are now in ahb.c file. AHB bus is compiled in when CONFIG_ATHEROS_AR231X is set in kernel. All other platforms will use PCI bus. Signed-off-by: Felix Fietkau n...@openwrt.org Signed-off-by: Wojciech Dubowik wojciech.dubo...@neratec.com

Re: [ath5k-devel] [PATCH v4 0/9] ath5k: Add AHB support

2010-11-16 Thread Wojciech Dubowik
visibility. There are three false positive checkpatch warnings from them. Wojciech Dubowik (9): ath5k: Use Generic DMA for later support of AHB bus. From: Felix Fietkau n...@openwrt.org ath5k: Introduce ath5k_init_softc function as in ath9k From: Felix Fietkau