Re: [PATCH v2] ath10k: Implement get_expected_throughput callback

2018-04-15 Thread akolli
On 2018-04-14 01:54, Peter Oh wrote: On 04/13/2018 06:48 AM, Kalle Valo wrote: Sven Eckelmann writes: But of course, I cannot say much about how the rate control from QCA works and in which form these information are already available. If you want to know the average PHY rate then wouldn't

Re: [PATCH 2/2] ath10k: support MAC address randomization in scan

2018-04-15 Thread cjhuang
On 2018-04-13 19:28, Kalle Valo wrote: cjhu...@codeaurora.org writes: + if (test_bit(WMI_SERVICE_SPOOF_MAC_SUPPORT, ar->wmi.svc_map)) { + ret = ath10k_wmi_scan_prob_req_oui(ar, ar->mac_addr); + if (ret) { + ath10k_err(ar, "failed to set pr

Re: [PATCH 2/2] ath10k: support MAC address randomization in scan

2018-04-15 Thread cjhuang
On 2018-04-14 05:13, Arend van Spriel wrote: On 4/13/2018 1:28 PM, Kalle Valo wrote: cjhu...@codeaurora.org writes: + if (test_bit(WMI_SERVICE_SPOOF_MAC_SUPPORT, ar->wmi.svc_map)) { + ret = ath10k_wmi_scan_prob_req_oui(ar, ar->mac_addr); + if (ret) { +

[PATCH] ath10k: Fix fw path name for WCN3990 target

2018-04-15 Thread Govind Singh
FW path is mapped incorrectly for the WCN3990 hw version. Fix fw path with correct hw1.0 name. Signed-off-by: Govind Singh --- drivers/net/wireless/ath/ath10k/hw.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/wireless/ath/ath10k/hw.h b/drivers/net/wireless/ath

Re: Compex WLE1216V2-20 (QCA9984) firmware is missing

2018-04-15 Thread ojab //
Gentle ping. //wbr ojab On Tue, Mar 27, 2018 at 4:41 PM, ojab // wrote: > [please CC me since I'm not subscribed to the lists and terribly sorry > for HTML mails] > > Oh hai! > > I have Compex WLE1216V2-20 (based on QCA9984 chip) that isn't > supported by linux-firmware (git master), card init f

[PATCH 0/2] ath10k: HTT ops wrappers

2018-04-15 Thread Erik Stromdahl
These two patches were included in the High latency v4 RFC submitted a few months ago. I think it would be appropriate to add them separately since they are not really related to the HL patches. This will make the next HL patch set somewhat smaller. Erik Stromdahl (2): ath10k: add inlined wrap

[PATCH 1/2] ath10k: add inlined wrappers for htt tx ops

2018-04-15 Thread Erik Stromdahl
These wrappers makes the HTT ops align better with the HIF ops (where similar wrappers are used). It also makes it easier for a target to have unsupported ops (by letting the corresponding function pointer be NULL). Signed-off-by: Erik Stromdahl --- drivers/net/wireless/ath/ath10k/htt.c| 4

[PATCH 2/2] ath10k: add inlined wrappers for htt rx ops

2018-04-15 Thread Erik Stromdahl
Added for the same reason as the TX wrappers. Signed-off-by: Erik Stromdahl --- drivers/net/wireless/ath/ath10k/htt.h| 37 drivers/net/wireless/ath/ath10k/htt_rx.c | 14 - 2 files changed, 44 insertions(+), 7 deletions(-) diff --git a/drivers/net/wireless/at