[PATCH] ath10k: Fix the Transmit Power Control stats display format

2017-03-31 Thread c_mkenna
From: Maharaja Kennadyrajan This patch helps to fix TPC stats to display the stats properly. Here cosmetic change has been done to print the TPC stats for all the cases 1.CDD 2.STBC 3.TXBF Signed-off-by: Maharaja Kennadyrajan ---

[PATCH] ath10k: Add debugfs support to get per peer tids log via tracing

2017-01-29 Thread c_mkenna
From: Maharaja Kennadyrajan This patch provides support to get per peer tids log. echo 1 > /sys/kernel/debug/ieee80211/phyX/netdev\:wlanX/stations/ XX:XX/peer_debug_trigger These logs will be the part of FWLOGS which we collect the logs via tracing interface. Here we

[PATCH] ath10k: Provide provision to get Transmit Power Control stats for 10.4

2016-09-15 Thread c_mkenna
From: Maharaja Kennadyrajan This patch helps to get the TPC stats for 10.4 fw variants. Signed-off-by: Maharaja Kennadyrajan --- drivers/net/wireless/ath/ath10k/wmi.c |4 1 file changed, 4 insertions(+) diff --git

[PATCH] ath10k: Added support for extended dbglog module id for 10.4

2016-08-23 Thread c_mkenna
From: Maharaja Kennadyrajan For 10.4 fw versions, dbglog module id has been extended from u32 to u64, hence this patch fixes the same in the ath10k driver side. This patch doesn't break the older 10.4 releases. The FW change is already present in the older FWs.

[PATCH] ath10k: hide kernel addresses from logs using %pK format specifier

2016-08-04 Thread c_mkenna
From: Maharaja Kennadyrajan With the %pK format specifier we hide the kernel addresses with the help of kptr_restrict sysctl. In this patch, %p is changed to %pK in the driver code. The sysctl is documented in Documentation/sysctl/kernel.txt. Signed-off-by: Maharaja

[PATCHv3] ath10k: Enable adaptive CCA

2015-10-14 Thread c_mkenna
From: Maharaja European Union has made it mandatory that all devices working in 2.4 GHz has to adhere to the ETSI specification (ETSI EN 300 328 V1.9.1) beginnig this year. The standard basically speaks about interferences in 2.4Ghz band. For example, when 802.11

[PATCHv2] ath10k: Enable adaptive CCA

2015-10-11 Thread c_mkenna
From: Maharaja European Union has made it mandatory that all devices working in 2.4 GHz has to adhere to the ETSI specification (ETSI EN 300 328 V1.9.1) beginnig this year. The standard basically speaks about interferences in 2.4Ghz band. For example, when 802.11

[PATCH] ath10k: Enable adaptive CCA

2015-10-07 Thread c_mkenna
From: Maharaja Kennadyrajan European Union has made it mandatory that all devices working in 2.4 GHz has to adhere to the ETSI specification (ETSI EN 300 328 V1.9.1) beginnig this year. The standard basically speaks about interferences in 2.4Ghz band. For example, when

[PATCH] ath10k: Increase pci wakeup timeout to 30 ms

2015-09-24 Thread c_mkenna
From: Maharaja Kennadyrajan It is noticed that pci wakeup time is exceeding current timeout (10ms) randomly which is tested on QCA988x. So, the wake up time is increased to 30 ms and added debug prints to log total timeout. Signed-off-by: Maharaja Kennadyrajan