All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 2/2] ath10k:  support get/set antenna configurations.
@ 2014-05-08 16:18 ` greearb
  0 siblings, 0 replies; 134+ messages in thread
From: greearb @ 2014-05-08 16:18 UTC (permalink / raw)
  To: ath10k; +Cc: linux-wireless, Ben Greear

From: Ben Greear <greearb@candelatech.com>

Tested with CT firmware, but should work on standard
firmware as well.

Verified that target's tx/rx chain register is set appropriately,
and that the tx rate goes down as number of chains
decrease, but I did not actually try to verify antenna
ceased to transmit when disabled.

Signed-off-by: Ben Greear <greearb@candelatech.com>
---

v2:  Fixes suggested by Michal Kazior.

 drivers/net/wireless/ath/ath10k/core.h |  6 +++
 drivers/net/wireless/ath/ath10k/mac.c  | 72 ++++++++++++++++++++++++++++++++++
 drivers/net/wireless/ath/ath10k/wmi.c  |  5 +++
 3 files changed, 83 insertions(+)

diff --git a/drivers/net/wireless/ath/ath10k/core.h b/drivers/net/wireless/ath/ath10k/core.h
index 7050c47..791d76d 100644
--- a/drivers/net/wireless/ath/ath10k/core.h
+++ b/drivers/net/wireless/ath/ath10k/core.h
@@ -472,6 +472,12 @@ struct ath10k {
 	u32 dfs_block_radar_events;
 	int install_key_rv; /* Store error code from key-install */
 
+	/* Protected by conf-mutex */
+	unsigned char supp_tx_chainmask;
+	unsigned char supp_rx_chainmask;
+	unsigned char cfg_tx_chainmask;
+	unsigned char cfg_rx_chainmask;
+
 	struct wmi_pdev_set_wmm_params_arg wmm_params;
 	struct completion install_key_done;
 
diff --git a/drivers/net/wireless/ath/ath10k/mac.c b/drivers/net/wireless/ath/ath10k/mac.c
index dcb147d..01ba41e 100644
--- a/drivers/net/wireless/ath/ath10k/mac.c
+++ b/drivers/net/wireless/ath/ath10k/mac.c
@@ -2483,6 +2483,69 @@ void ath10k_halt(struct ath10k *ar)
 	spin_unlock_bh(&ar->data_lock);
 }
 
+static int ath10k_get_antenna(struct ieee80211_hw *hw, u32 *tx_ant, u32 *rx_ant)
+{
+	struct ath10k *ar = hw->priv;
+
+	mutex_lock(&ar->conf_mutex);
+
+	if (ar->cfg_tx_chainmask) {
+		*tx_ant = ar->cfg_tx_chainmask;
+		*rx_ant = ar->cfg_rx_chainmask;
+	} else {
+		*tx_ant = ar->supp_tx_chainmask;
+		*rx_ant = ar->supp_rx_chainmask;
+	}
+
+	mutex_unlock(&ar->conf_mutex);
+
+	return 0;
+}
+
+static int __ath10k_set_antenna(struct ath10k *ar, u32 tx_ant, u32 rx_ant)
+{
+	int ret;
+
+	lockdep_assert_held(&ar->conf_mutex);
+
+	ar->cfg_tx_chainmask = tx_ant;
+	ar->cfg_rx_chainmask = rx_ant;
+
+	if ((ar->state != ATH10K_STATE_ON) &&
+	    (ar->state != ATH10K_STATE_RESTARTED))
+		return 0;
+
+	ret = ath10k_wmi_pdev_set_param(ar, ar->wmi.pdev_param->tx_chain_mask,
+					tx_ant);
+	if (ret) {
+		ath10k_warn("failed to set tx-chainmask: %d, req 0x%x\n",
+			    ret, tx_ant);
+		return ret;
+	}
+
+	ret = ath10k_wmi_pdev_set_param(ar, ar->wmi.pdev_param->rx_chain_mask,
+					rx_ant);
+	if (ret) {
+		ath10k_warn("failed to set rx-chainmask: %d, req 0x%x\n",
+			    ret, rx_ant);
+		return ret;
+	}
+
+	return 0;
+}
+
+static int ath10k_set_antenna(struct ieee80211_hw *hw, u32 tx_ant, u32 rx_ant)
+{
+	struct ath10k *ar = hw->priv;
+	int ret;
+
+	mutex_lock(&ar->conf_mutex);
+	ret = __ath10k_set_antenna(ar, tx_ant, rx_ant);
+	mutex_unlock(&ar->conf_mutex);
+	return ret;
+}
+
+
 static int ath10k_start(struct ieee80211_hw *hw)
 {
 	struct ath10k *ar = hw->priv;
@@ -2530,6 +2593,10 @@ static int ath10k_start(struct ieee80211_hw *hw)
 	if (ret)
 		ath10k_warn("failed to enable dynamic BW: %d\n", ret);
 
+	if (ar->cfg_tx_chainmask)
+		__ath10k_set_antenna(ar, ar->cfg_tx_chainmask,
+				     ar->cfg_rx_chainmask);
+
 	/*
 	 * By default FW set ARP frames ac to voice (6). In that case ARP
 	 * exchange is not working properly for UAPSD enabled AP. ARP requests
@@ -4437,6 +4504,8 @@ static const struct ieee80211_ops ath10k_ops = {
 	.set_frag_threshold		= ath10k_set_frag_threshold,
 	.flush				= ath10k_flush,
 	.tx_last_beacon			= ath10k_tx_last_beacon,
+	.set_antenna			= ath10k_set_antenna,
+	.get_antenna			= ath10k_get_antenna,
 	.restart_complete		= ath10k_restart_complete,
 	.get_survey			= ath10k_get_survey,
 	.set_bitrate_mask		= ath10k_set_bitrate_mask,
@@ -4818,6 +4887,9 @@ int ath10k_mac_register(struct ath10k *ar)
 		BIT(NL80211_IFTYPE_ADHOC) |
 		BIT(NL80211_IFTYPE_AP);
 
+	ar->hw->wiphy->available_antennas_rx = ar->supp_rx_chainmask;
+	ar->hw->wiphy->available_antennas_tx = ar->supp_tx_chainmask;
+
 	if (!test_bit(ATH10K_FW_FEATURE_NO_P2P, ar->fw_features))
 		ar->hw->wiphy->interface_modes |=
 			BIT(NL80211_IFTYPE_P2P_CLIENT) |
diff --git a/drivers/net/wireless/ath/ath10k/wmi.c b/drivers/net/wireless/ath/ath10k/wmi.c
index 82a827e..d82b740 100644
--- a/drivers/net/wireless/ath/ath10k/wmi.c
+++ b/drivers/net/wireless/ath/ath10k/wmi.c
@@ -2601,6 +2601,8 @@ static int ath10k_wmi_main_cmd_init(struct ath10k *ar)
 	config.ast_skid_limit = __cpu_to_le32(TARGET_AST_SKID_LIMIT);
 	config.tx_chain_mask = __cpu_to_le32(TARGET_TX_CHAIN_MASK);
 	config.rx_chain_mask = __cpu_to_le32(TARGET_RX_CHAIN_MASK);
+	ar->supp_tx_chainmask = TARGET_TX_CHAIN_MASK;
+	ar->supp_rx_chainmask = TARGET_RX_CHAIN_MASK;
 	config.rx_timeout_pri_vo = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
 	config.rx_timeout_pri_vi = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
 	config.rx_timeout_pri_be = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
@@ -2721,6 +2723,9 @@ static int ath10k_wmi_10x_cmd_init(struct ath10k *ar)
 	config.num_tids = __cpu_to_le32(TARGET_10X_NUM_TIDS);
 	config.tx_chain_mask = __cpu_to_le32(TARGET_10X_TX_CHAIN_MASK);
 	config.rx_chain_mask = __cpu_to_le32(TARGET_10X_RX_CHAIN_MASK);
+	/* TODO:  Have to deal with 2x2 chips if/when the come out. */
+	ar->supp_tx_chainmask = TARGET_10X_TX_CHAIN_MASK;
+	ar->supp_rx_chainmask = TARGET_10X_RX_CHAIN_MASK;
 	config.rx_timeout_pri_vo = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);
 	config.rx_timeout_pri_vi = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);
 	config.rx_timeout_pri_be = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);
-- 
1.7.11.7


^ permalink raw reply related	[flat|nested] 134+ messages in thread

* [PATCH v2 2/2] ath10k:  support get/set antenna configurations.
@ 2014-05-08 16:18 ` greearb
  0 siblings, 0 replies; 134+ messages in thread
From: greearb @ 2014-05-08 16:18 UTC (permalink / raw)
  To: ath10k; +Cc: Ben Greear, linux-wireless

From: Ben Greear <greearb@candelatech.com>

Tested with CT firmware, but should work on standard
firmware as well.

Verified that target's tx/rx chain register is set appropriately,
and that the tx rate goes down as number of chains
decrease, but I did not actually try to verify antenna
ceased to transmit when disabled.

Signed-off-by: Ben Greear <greearb@candelatech.com>
---

v2:  Fixes suggested by Michal Kazior.

 drivers/net/wireless/ath/ath10k/core.h |  6 +++
 drivers/net/wireless/ath/ath10k/mac.c  | 72 ++++++++++++++++++++++++++++++++++
 drivers/net/wireless/ath/ath10k/wmi.c  |  5 +++
 3 files changed, 83 insertions(+)

diff --git a/drivers/net/wireless/ath/ath10k/core.h b/drivers/net/wireless/ath/ath10k/core.h
index 7050c47..791d76d 100644
--- a/drivers/net/wireless/ath/ath10k/core.h
+++ b/drivers/net/wireless/ath/ath10k/core.h
@@ -472,6 +472,12 @@ struct ath10k {
 	u32 dfs_block_radar_events;
 	int install_key_rv; /* Store error code from key-install */
 
+	/* Protected by conf-mutex */
+	unsigned char supp_tx_chainmask;
+	unsigned char supp_rx_chainmask;
+	unsigned char cfg_tx_chainmask;
+	unsigned char cfg_rx_chainmask;
+
 	struct wmi_pdev_set_wmm_params_arg wmm_params;
 	struct completion install_key_done;
 
diff --git a/drivers/net/wireless/ath/ath10k/mac.c b/drivers/net/wireless/ath/ath10k/mac.c
index dcb147d..01ba41e 100644
--- a/drivers/net/wireless/ath/ath10k/mac.c
+++ b/drivers/net/wireless/ath/ath10k/mac.c
@@ -2483,6 +2483,69 @@ void ath10k_halt(struct ath10k *ar)
 	spin_unlock_bh(&ar->data_lock);
 }
 
+static int ath10k_get_antenna(struct ieee80211_hw *hw, u32 *tx_ant, u32 *rx_ant)
+{
+	struct ath10k *ar = hw->priv;
+
+	mutex_lock(&ar->conf_mutex);
+
+	if (ar->cfg_tx_chainmask) {
+		*tx_ant = ar->cfg_tx_chainmask;
+		*rx_ant = ar->cfg_rx_chainmask;
+	} else {
+		*tx_ant = ar->supp_tx_chainmask;
+		*rx_ant = ar->supp_rx_chainmask;
+	}
+
+	mutex_unlock(&ar->conf_mutex);
+
+	return 0;
+}
+
+static int __ath10k_set_antenna(struct ath10k *ar, u32 tx_ant, u32 rx_ant)
+{
+	int ret;
+
+	lockdep_assert_held(&ar->conf_mutex);
+
+	ar->cfg_tx_chainmask = tx_ant;
+	ar->cfg_rx_chainmask = rx_ant;
+
+	if ((ar->state != ATH10K_STATE_ON) &&
+	    (ar->state != ATH10K_STATE_RESTARTED))
+		return 0;
+
+	ret = ath10k_wmi_pdev_set_param(ar, ar->wmi.pdev_param->tx_chain_mask,
+					tx_ant);
+	if (ret) {
+		ath10k_warn("failed to set tx-chainmask: %d, req 0x%x\n",
+			    ret, tx_ant);
+		return ret;
+	}
+
+	ret = ath10k_wmi_pdev_set_param(ar, ar->wmi.pdev_param->rx_chain_mask,
+					rx_ant);
+	if (ret) {
+		ath10k_warn("failed to set rx-chainmask: %d, req 0x%x\n",
+			    ret, rx_ant);
+		return ret;
+	}
+
+	return 0;
+}
+
+static int ath10k_set_antenna(struct ieee80211_hw *hw, u32 tx_ant, u32 rx_ant)
+{
+	struct ath10k *ar = hw->priv;
+	int ret;
+
+	mutex_lock(&ar->conf_mutex);
+	ret = __ath10k_set_antenna(ar, tx_ant, rx_ant);
+	mutex_unlock(&ar->conf_mutex);
+	return ret;
+}
+
+
 static int ath10k_start(struct ieee80211_hw *hw)
 {
 	struct ath10k *ar = hw->priv;
@@ -2530,6 +2593,10 @@ static int ath10k_start(struct ieee80211_hw *hw)
 	if (ret)
 		ath10k_warn("failed to enable dynamic BW: %d\n", ret);
 
+	if (ar->cfg_tx_chainmask)
+		__ath10k_set_antenna(ar, ar->cfg_tx_chainmask,
+				     ar->cfg_rx_chainmask);
+
 	/*
 	 * By default FW set ARP frames ac to voice (6). In that case ARP
 	 * exchange is not working properly for UAPSD enabled AP. ARP requests
@@ -4437,6 +4504,8 @@ static const struct ieee80211_ops ath10k_ops = {
 	.set_frag_threshold		= ath10k_set_frag_threshold,
 	.flush				= ath10k_flush,
 	.tx_last_beacon			= ath10k_tx_last_beacon,
+	.set_antenna			= ath10k_set_antenna,
+	.get_antenna			= ath10k_get_antenna,
 	.restart_complete		= ath10k_restart_complete,
 	.get_survey			= ath10k_get_survey,
 	.set_bitrate_mask		= ath10k_set_bitrate_mask,
@@ -4818,6 +4887,9 @@ int ath10k_mac_register(struct ath10k *ar)
 		BIT(NL80211_IFTYPE_ADHOC) |
 		BIT(NL80211_IFTYPE_AP);
 
+	ar->hw->wiphy->available_antennas_rx = ar->supp_rx_chainmask;
+	ar->hw->wiphy->available_antennas_tx = ar->supp_tx_chainmask;
+
 	if (!test_bit(ATH10K_FW_FEATURE_NO_P2P, ar->fw_features))
 		ar->hw->wiphy->interface_modes |=
 			BIT(NL80211_IFTYPE_P2P_CLIENT) |
diff --git a/drivers/net/wireless/ath/ath10k/wmi.c b/drivers/net/wireless/ath/ath10k/wmi.c
index 82a827e..d82b740 100644
--- a/drivers/net/wireless/ath/ath10k/wmi.c
+++ b/drivers/net/wireless/ath/ath10k/wmi.c
@@ -2601,6 +2601,8 @@ static int ath10k_wmi_main_cmd_init(struct ath10k *ar)
 	config.ast_skid_limit = __cpu_to_le32(TARGET_AST_SKID_LIMIT);
 	config.tx_chain_mask = __cpu_to_le32(TARGET_TX_CHAIN_MASK);
 	config.rx_chain_mask = __cpu_to_le32(TARGET_RX_CHAIN_MASK);
+	ar->supp_tx_chainmask = TARGET_TX_CHAIN_MASK;
+	ar->supp_rx_chainmask = TARGET_RX_CHAIN_MASK;
 	config.rx_timeout_pri_vo = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
 	config.rx_timeout_pri_vi = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
 	config.rx_timeout_pri_be = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
@@ -2721,6 +2723,9 @@ static int ath10k_wmi_10x_cmd_init(struct ath10k *ar)
 	config.num_tids = __cpu_to_le32(TARGET_10X_NUM_TIDS);
 	config.tx_chain_mask = __cpu_to_le32(TARGET_10X_TX_CHAIN_MASK);
 	config.rx_chain_mask = __cpu_to_le32(TARGET_10X_RX_CHAIN_MASK);
+	/* TODO:  Have to deal with 2x2 chips if/when the come out. */
+	ar->supp_tx_chainmask = TARGET_10X_TX_CHAIN_MASK;
+	ar->supp_rx_chainmask = TARGET_10X_RX_CHAIN_MASK;
 	config.rx_timeout_pri_vo = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);
 	config.rx_timeout_pri_vi = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);
 	config.rx_timeout_pri_be = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);
-- 
1.7.11.7


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply related	[flat|nested] 134+ messages in thread

* RE : [PATCH v2 2/2] ath10k:  support get/set antenna configurations.
  2014-05-08 16:18 ` greearb
  (?)
@ 2014-05-12 15:43 ` Vu Hai NGUYEN
  2014-05-12 16:17   ` Ben Greear
  -1 siblings, 1 reply; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-05-12 15:43 UTC (permalink / raw)
  To: greearb; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k

Thank you very much for the patch, I just had a question of a new bie: Your patch is for the branch of ath-next-test, not for the branch ath-master, right?
But even it is for ath-next-test, I can not apply it, there is a conflict, for example the first change of your patch (in file "core.h" which starts from line 472 but I found in the branch of ath-next-test that it must start from line 444 where there is u32 dfs_block_radar_events; )
So I have to apply your patch manually (I look for the different and add it to the code) and then the result is quite good, I can see the Available and Configured Antennas from "iw list". Then I can also select the antenna thanks to the command "iw phyX set antenna" too. 
Sorry if I disturbing you for the question about applying the patch. 
Regards,
 
NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE

________________________________________
De : ath10k [ath10k-bounces@lists.infradead.org] de la part de greearb@candelatech.com [greearb@candelatech.com]
Date d'envoi : jeudi 8 mai 2014 18:18
À : ath10k@lists.infradead.org
Cc : Ben Greear; linux-wireless@vger.kernel.org
Objet : [PATCH v2 2/2] ath10k:  support get/set antenna configurations.

From: Ben Greear <greearb@candelatech.com>

Tested with CT firmware, but should work on standard
firmware as well.

Verified that target's tx/rx chain register is set appropriately,
and that the tx rate goes down as number of chains
decrease, but I did not actually try to verify antenna
ceased to transmit when disabled.

Signed-off-by: Ben Greear <greearb@candelatech.com>
---

v2:  Fixes suggested by Michal Kazior.

 drivers/net/wireless/ath/ath10k/core.h |  6 +++
 drivers/net/wireless/ath/ath10k/mac.c  | 72 ++++++++++++++++++++++++++++++++++
 drivers/net/wireless/ath/ath10k/wmi.c  |  5 +++
 3 files changed, 83 insertions(+)

diff --git a/drivers/net/wireless/ath/ath10k/core.h b/drivers/net/wireless/ath/ath10k/core.h
index 7050c47..791d76d 100644
--- a/drivers/net/wireless/ath/ath10k/core.h
+++ b/drivers/net/wireless/ath/ath10k/core.h
@@ -472,6 +472,12 @@ struct ath10k {
        u32 dfs_block_radar_events;
        int install_key_rv; /* Store error code from key-install */

+       /* Protected by conf-mutex */
+       unsigned char supp_tx_chainmask;
+       unsigned char supp_rx_chainmask;
+       unsigned char cfg_tx_chainmask;
+       unsigned char cfg_rx_chainmask;
+
        struct wmi_pdev_set_wmm_params_arg wmm_params;
        struct completion install_key_done;

diff --git a/drivers/net/wireless/ath/ath10k/mac.c b/drivers/net/wireless/ath/ath10k/mac.c
index dcb147d..01ba41e 100644
--- a/drivers/net/wireless/ath/ath10k/mac.c
+++ b/drivers/net/wireless/ath/ath10k/mac.c
@@ -2483,6 +2483,69 @@ void ath10k_halt(struct ath10k *ar)
        spin_unlock_bh(&ar->data_lock);
 }

+static int ath10k_get_antenna(struct ieee80211_hw *hw, u32 *tx_ant, u32 *rx_ant)
+{
+       struct ath10k *ar = hw->priv;
+
+       mutex_lock(&ar->conf_mutex);
+
+       if (ar->cfg_tx_chainmask) {
+               *tx_ant = ar->cfg_tx_chainmask;
+               *rx_ant = ar->cfg_rx_chainmask;
+       } else {
+               *tx_ant = ar->supp_tx_chainmask;
+               *rx_ant = ar->supp_rx_chainmask;
+       }
+
+       mutex_unlock(&ar->conf_mutex);
+
+       return 0;
+}
+
+static int __ath10k_set_antenna(struct ath10k *ar, u32 tx_ant, u32 rx_ant)
+{
+       int ret;
+
+       lockdep_assert_held(&ar->conf_mutex);
+
+       ar->cfg_tx_chainmask = tx_ant;
+       ar->cfg_rx_chainmask = rx_ant;
+
+       if ((ar->state != ATH10K_STATE_ON) &&
+           (ar->state != ATH10K_STATE_RESTARTED))
+               return 0;
+
+       ret = ath10k_wmi_pdev_set_param(ar, ar->wmi.pdev_param->tx_chain_mask,
+                                       tx_ant);
+       if (ret) {
+               ath10k_warn("failed to set tx-chainmask: %d, req 0x%x\n",
+                           ret, tx_ant);
+               return ret;
+       }
+
+       ret = ath10k_wmi_pdev_set_param(ar, ar->wmi.pdev_param->rx_chain_mask,
+                                       rx_ant);
+       if (ret) {
+               ath10k_warn("failed to set rx-chainmask: %d, req 0x%x\n",
+                           ret, rx_ant);
+               return ret;
+       }
+
+       return 0;
+}
+
+static int ath10k_set_antenna(struct ieee80211_hw *hw, u32 tx_ant, u32 rx_ant)
+{
+       struct ath10k *ar = hw->priv;
+       int ret;
+
+       mutex_lock(&ar->conf_mutex);
+       ret = __ath10k_set_antenna(ar, tx_ant, rx_ant);
+       mutex_unlock(&ar->conf_mutex);
+       return ret;
+}
+
+
 static int ath10k_start(struct ieee80211_hw *hw)
 {
        struct ath10k *ar = hw->priv;
@@ -2530,6 +2593,10 @@ static int ath10k_start(struct ieee80211_hw *hw)
        if (ret)
                ath10k_warn("failed to enable dynamic BW: %d\n", ret);

+       if (ar->cfg_tx_chainmask)
+               __ath10k_set_antenna(ar, ar->cfg_tx_chainmask,
+                                    ar->cfg_rx_chainmask);
+
        /*
         * By default FW set ARP frames ac to voice (6). In that case ARP
         * exchange is not working properly for UAPSD enabled AP. ARP requests
@@ -4437,6 +4504,8 @@ static const struct ieee80211_ops ath10k_ops = {
        .set_frag_threshold             = ath10k_set_frag_threshold,
        .flush                          = ath10k_flush,
        .tx_last_beacon                 = ath10k_tx_last_beacon,
+       .set_antenna                    = ath10k_set_antenna,
+       .get_antenna                    = ath10k_get_antenna,
        .restart_complete               = ath10k_restart_complete,
        .get_survey                     = ath10k_get_survey,
        .set_bitrate_mask               = ath10k_set_bitrate_mask,
@@ -4818,6 +4887,9 @@ int ath10k_mac_register(struct ath10k *ar)
                BIT(NL80211_IFTYPE_ADHOC) |
                BIT(NL80211_IFTYPE_AP);

+       ar->hw->wiphy->available_antennas_rx = ar->supp_rx_chainmask;
+       ar->hw->wiphy->available_antennas_tx = ar->supp_tx_chainmask;
+
        if (!test_bit(ATH10K_FW_FEATURE_NO_P2P, ar->fw_features))
                ar->hw->wiphy->interface_modes |=
                        BIT(NL80211_IFTYPE_P2P_CLIENT) |
diff --git a/drivers/net/wireless/ath/ath10k/wmi.c b/drivers/net/wireless/ath/ath10k/wmi.c
index 82a827e..d82b740 100644
--- a/drivers/net/wireless/ath/ath10k/wmi.c
+++ b/drivers/net/wireless/ath/ath10k/wmi.c
@@ -2601,6 +2601,8 @@ static int ath10k_wmi_main_cmd_init(struct ath10k *ar)
        config.ast_skid_limit = __cpu_to_le32(TARGET_AST_SKID_LIMIT);
        config.tx_chain_mask = __cpu_to_le32(TARGET_TX_CHAIN_MASK);
        config.rx_chain_mask = __cpu_to_le32(TARGET_RX_CHAIN_MASK);
+       ar->supp_tx_chainmask = TARGET_TX_CHAIN_MASK;
+       ar->supp_rx_chainmask = TARGET_RX_CHAIN_MASK;
        config.rx_timeout_pri_vo = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
        config.rx_timeout_pri_vi = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
        config.rx_timeout_pri_be = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
@@ -2721,6 +2723,9 @@ static int ath10k_wmi_10x_cmd_init(struct ath10k *ar)
        config.num_tids = __cpu_to_le32(TARGET_10X_NUM_TIDS);
        config.tx_chain_mask = __cpu_to_le32(TARGET_10X_TX_CHAIN_MASK);
        config.rx_chain_mask = __cpu_to_le32(TARGET_10X_RX_CHAIN_MASK);
+       /* TODO:  Have to deal with 2x2 chips if/when the come out. */
+       ar->supp_tx_chainmask = TARGET_10X_TX_CHAIN_MASK;
+       ar->supp_rx_chainmask = TARGET_10X_RX_CHAIN_MASK;
        config.rx_timeout_pri_vo = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);
        config.rx_timeout_pri_vi = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);
        config.rx_timeout_pri_be = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);
--
1.7.11.7


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply related	[flat|nested] 134+ messages in thread

* Re: RE : [PATCH v2 2/2] ath10k: support get/set antenna configurations.
  2014-05-12 15:43 ` RE : " Vu Hai NGUYEN
@ 2014-05-12 16:17   ` Ben Greear
  2014-05-13  0:49     ` Avery Pennarun
                       ` (2 more replies)
  0 siblings, 3 replies; 134+ messages in thread
From: Ben Greear @ 2014-05-12 16:17 UTC (permalink / raw)
  To: Vu Hai NGUYEN; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k

On 05/12/2014 08:43 AM, Vu Hai NGUYEN wrote:
> Thank you very much for the patch, I just had a question of a new bie: Your patch is for the branch of ath-next-test, not for the branch ath-master, right?
> But even it is for ath-next-test, I can not apply it, there is a conflict, for example the first change of your patch (in file "core.h" which starts from line 472 but I found in the branch of ath-next-test that it must start from line 444 where there is u32 dfs_block_radar_events; )
> So I have to apply your patch manually (I look for the different and add it to the code) and then the result is quite good, I can see the Available and Configured Antennas from "iw list". Then I can also select the antenna thanks to the command "iw phyX set antenna" too. 
> Sorry if I disturbing you for the question about applying the patch. 

My patch was against my own tree which is a mix of 3.14 and an older version of git://github.com/kvalo/ath.git

I do not have time right now to re-do the patch, but next time I get some time I will
fix the patch to apply to ath.git.  If someone else wants to do it first, I will not
complain :)

Thanks,
Ben

-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : [PATCH v2 2/2] ath10k: support get/set antenna configurations.
  2014-05-12 16:17   ` Ben Greear
@ 2014-05-13  0:49     ` Avery Pennarun
  2014-05-13  3:36       ` Ben Greear
  2014-05-13  0:52     ` [PATCH] ath10k: support get/set antenna configurations Avery Pennarun
  2014-05-13 17:50     ` RE : [PATCH v2 2/2] " Kalle Valo
  2 siblings, 1 reply; 134+ messages in thread
From: Avery Pennarun @ 2014-05-13  0:49 UTC (permalink / raw)
  To: Ben Greear; +Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, ath10k

On Mon, May 12, 2014 at 12:17 PM, Ben Greear <greearb@candelatech.com> wrote:
> My patch was against my own tree which is a mix of 3.14 and an older version of git://github.com/kvalo/ath.git
>
> I do not have time right now to re-do the patch, but next time I get some time I will
> fix the patch to apply to ath.git.  If someone else wants to do it first, I will not
> complain :)

I've tested it and will upload a re-spun version against a more resent
ath-next shortly.

Using firmware 10.1.467.2-1, I tested it as follows:
- disconnected the second antenna
- iw phy phy1 set antenna {all, 1, 2, 4, 6, 3, 5, 7}
- Measure iperf performance and RSSI from my (2x2) macbook.

Expected:
- lower RSSI when using fewer antennas
- very poor signal when using only the disconnected antenna
- slower speeds when using fewer antennas

Actual:
- my AP did not successfully send out any beacons with antenna modes 2, 4, or 6.
- RSSI was roughly 6dB less with 1 than with 5 or 7
- seemed to degrade to 1 spatial stream as expected in modes 1 and 3
- 2 spatial streams and good RSSI as expected in modes 5 and 7

So there seems to be a problem when the first antenna is not enabled.
Firmware bug perhaps?

Thanks,

Avery

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* [PATCH] ath10k: support get/set antenna configurations.
  2014-05-12 16:17   ` Ben Greear
  2014-05-13  0:49     ` Avery Pennarun
@ 2014-05-13  0:52     ` Avery Pennarun
  2014-05-13 18:10       ` Kalle Valo
  2014-05-13 21:11       ` [PATCH v3] " Avery Pennarun
  2014-05-13 17:50     ` RE : [PATCH v2 2/2] " Kalle Valo
  2 siblings, 2 replies; 134+ messages in thread
From: Avery Pennarun @ 2014-05-13  0:52 UTC (permalink / raw)
  To: Ben Greear, Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, ath10k

From: Ben Greear <greearb@candelatech.com>

Tested with CT firmware, but should work on standard
firmware as well.

Verified that target's tx/rx chain register is set appropriately,
and that the tx rate goes down as number of chains
decrease, but I did not actually try to verify antenna
ceased to transmit when disabled.

Signed-off-by: Ben Greear <greearb@candelatech.com>
Tested-by: Avery Pennarun <apenwarr@gmail.com>
---
 drivers/net/wireless/ath/ath10k/core.h |  6 +++
 drivers/net/wireless/ath/ath10k/mac.c  | 72 ++++++++++++++++++++++++++++++++++
 drivers/net/wireless/ath/ath10k/wmi.c  |  5 +++
 3 files changed, 83 insertions(+)

diff --git a/drivers/net/wireless/ath/ath10k/core.h b/drivers/net/wireless/ath/ath10k/core.h
index 9b86e57..2a4638f 100644
--- a/drivers/net/wireless/ath/ath10k/core.h
+++ b/drivers/net/wireless/ath/ath10k/core.h
@@ -440,6 +440,12 @@ struct ath10k {
 	bool radar_enabled;
 	int num_started_vdevs;
 
+	/* Protected by conf-mutex */
+	unsigned char supp_tx_chainmask;
+	unsigned char supp_rx_chainmask;
+	unsigned char cfg_tx_chainmask;
+	unsigned char cfg_rx_chainmask;
+
 	struct wmi_pdev_set_wmm_params_arg wmm_params;
 	struct completion install_key_done;
 
diff --git a/drivers/net/wireless/ath/ath10k/mac.c b/drivers/net/wireless/ath/ath10k/mac.c
index ecd191b..ac1d9b1 100644
--- a/drivers/net/wireless/ath/ath10k/mac.c
+++ b/drivers/net/wireless/ath/ath10k/mac.c
@@ -2329,6 +2329,69 @@ void ath10k_halt(struct ath10k *ar)
 	spin_unlock_bh(&ar->data_lock);
 }
 
+static int ath10k_get_antenna(struct ieee80211_hw *hw, u32 *tx_ant, u32 *rx_ant)
+{
+	struct ath10k *ar = hw->priv;
+
+	mutex_lock(&ar->conf_mutex);
+
+	if (ar->cfg_tx_chainmask) {
+		*tx_ant = ar->cfg_tx_chainmask;
+		*rx_ant = ar->cfg_rx_chainmask;
+	} else {
+		*tx_ant = ar->supp_tx_chainmask;
+		*rx_ant = ar->supp_rx_chainmask;
+	}
+
+	mutex_unlock(&ar->conf_mutex);
+
+	return 0;
+}
+
+static int __ath10k_set_antenna(struct ath10k *ar, u32 tx_ant, u32 rx_ant)
+{
+	int ret;
+
+	lockdep_assert_held(&ar->conf_mutex);
+
+	ar->cfg_tx_chainmask = tx_ant;
+	ar->cfg_rx_chainmask = rx_ant;
+
+	if ((ar->state != ATH10K_STATE_ON) &&
+	    (ar->state != ATH10K_STATE_RESTARTED))
+		return 0;
+
+	ret = ath10k_wmi_pdev_set_param(ar, ar->wmi.pdev_param->tx_chain_mask,
+					tx_ant);
+	if (ret) {
+		ath10k_warn("failed to set tx-chainmask: %d, req 0x%x\n",
+			    ret, tx_ant);
+		return ret;
+	}
+
+	ret = ath10k_wmi_pdev_set_param(ar, ar->wmi.pdev_param->rx_chain_mask,
+					rx_ant);
+	if (ret) {
+		ath10k_warn("failed to set rx-chainmask: %d, req 0x%x\n",
+			    ret, rx_ant);
+		return ret;
+	}
+
+	return 0;
+}
+
+static int ath10k_set_antenna(struct ieee80211_hw *hw, u32 tx_ant, u32 rx_ant)
+{
+	struct ath10k *ar = hw->priv;
+	int ret;
+
+	mutex_lock(&ar->conf_mutex);
+	ret = __ath10k_set_antenna(ar, tx_ant, rx_ant);
+	mutex_unlock(&ar->conf_mutex);
+	return ret;
+}
+
+
 static int ath10k_start(struct ieee80211_hw *hw)
 {
 	struct ath10k *ar = hw->priv;
@@ -2370,6 +2433,10 @@ static int ath10k_start(struct ieee80211_hw *hw)
 	if (ret)
 		ath10k_warn("failed to enable dynamic BW: %d\n", ret);
 
+	if (ar->cfg_tx_chainmask)
+		__ath10k_set_antenna(ar, ar->cfg_tx_chainmask,
+				     ar->cfg_rx_chainmask);
+
 	/*
 	 * By default FW set ARP frames ac to voice (6). In that case ARP
 	 * exchange is not working properly for UAPSD enabled AP. ARP requests
@@ -4252,6 +4319,8 @@ static const struct ieee80211_ops ath10k_ops = {
 	.set_frag_threshold		= ath10k_set_frag_threshold,
 	.flush				= ath10k_flush,
 	.tx_last_beacon			= ath10k_tx_last_beacon,
+	.set_antenna			= ath10k_set_antenna,
+	.get_antenna			= ath10k_get_antenna,
 	.restart_complete		= ath10k_restart_complete,
 	.get_survey			= ath10k_get_survey,
 	.set_bitrate_mask		= ath10k_set_bitrate_mask,
@@ -4601,6 +4670,9 @@ int ath10k_mac_register(struct ath10k *ar)
 		BIT(NL80211_IFTYPE_ADHOC) |
 		BIT(NL80211_IFTYPE_AP);
 
+	ar->hw->wiphy->available_antennas_rx = ar->supp_rx_chainmask;
+	ar->hw->wiphy->available_antennas_tx = ar->supp_tx_chainmask;
+
 	if (!test_bit(ATH10K_FW_FEATURE_NO_P2P, ar->fw_features))
 		ar->hw->wiphy->interface_modes |=
 			BIT(NL80211_IFTYPE_P2P_CLIENT) |
diff --git a/drivers/net/wireless/ath/ath10k/wmi.c b/drivers/net/wireless/ath/ath10k/wmi.c
index 0a2d04c..d22874a 100644
--- a/drivers/net/wireless/ath/ath10k/wmi.c
+++ b/drivers/net/wireless/ath/ath10k/wmi.c
@@ -2558,6 +2558,8 @@ static int ath10k_wmi_main_cmd_init(struct ath10k *ar)
 	config.ast_skid_limit = __cpu_to_le32(TARGET_AST_SKID_LIMIT);
 	config.tx_chain_mask = __cpu_to_le32(TARGET_TX_CHAIN_MASK);
 	config.rx_chain_mask = __cpu_to_le32(TARGET_RX_CHAIN_MASK);
+	ar->supp_tx_chainmask = TARGET_TX_CHAIN_MASK;
+	ar->supp_rx_chainmask = TARGET_RX_CHAIN_MASK;
 	config.rx_timeout_pri_vo = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
 	config.rx_timeout_pri_vi = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
 	config.rx_timeout_pri_be = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
@@ -2652,6 +2654,9 @@ static int ath10k_wmi_10x_cmd_init(struct ath10k *ar)
 	config.ast_skid_limit = __cpu_to_le32(TARGET_10X_AST_SKID_LIMIT);
 	config.tx_chain_mask = __cpu_to_le32(TARGET_10X_TX_CHAIN_MASK);
 	config.rx_chain_mask = __cpu_to_le32(TARGET_10X_RX_CHAIN_MASK);
+	/* TODO:  Have to deal with 2x2 chips if/when the come out. */
+	ar->supp_tx_chainmask = TARGET_10X_TX_CHAIN_MASK;
+	ar->supp_rx_chainmask = TARGET_10X_RX_CHAIN_MASK;
 	config.rx_timeout_pri_vo = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);
 	config.rx_timeout_pri_vi = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);
 	config.rx_timeout_pri_be = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);
-- 
1.9.1.423.g4596e3a


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply related	[flat|nested] 134+ messages in thread

* Re: RE : [PATCH v2 2/2] ath10k: support get/set antenna configurations.
  2014-05-13  0:49     ` Avery Pennarun
@ 2014-05-13  3:36       ` Ben Greear
  2014-05-13 13:08         ` ath10k: set channel by command "iw" not from hostapd and DFS support of firmware-2.bin_10.1.467.2-1 Vu Hai NGUYEN
  0 siblings, 1 reply; 134+ messages in thread
From: Ben Greear @ 2014-05-13  3:36 UTC (permalink / raw)
  To: Avery Pennarun; +Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, ath10k



On 05/12/2014 05:49 PM, Avery Pennarun wrote:
> On Mon, May 12, 2014 at 12:17 PM, Ben Greear <greearb@candelatech.com> wrote:
>> My patch was against my own tree which is a mix of 3.14 and an older version of git://github.com/kvalo/ath.git
>>
>> I do not have time right now to re-do the patch, but next time I get some time I will
>> fix the patch to apply to ath.git.  If someone else wants to do it first, I will not
>> complain :)
>
> I've tested it and will upload a re-spun version against a more resent
> ath-next shortly.
>
> Using firmware 10.1.467.2-1, I tested it as follows:
> - disconnected the second antenna
> - iw phy phy1 set antenna {all, 1, 2, 4, 6, 3, 5, 7}
> - Measure iperf performance and RSSI from my (2x2) macbook.
>
> Expected:
> - lower RSSI when using fewer antennas
> - very poor signal when using only the disconnected antenna
> - slower speeds when using fewer antennas
>
> Actual:
> - my AP did not successfully send out any beacons with antenna modes 2, 4, or 6.
> - RSSI was roughly 6dB less with 1 than with 5 or 7
> - seemed to degrade to 1 spatial stream as expected in modes 1 and 3
> - 2 spatial streams and good RSSI as expected in modes 5 and 7
>
> So there seems to be a problem when the first antenna is not enabled.
> Firmware bug perhaps?

I seem to recall that you can only use 1, 3, or 7 in ath9k, probably ath10k
has same constraints.

Thanks,
Ben

>
> Thanks,
>
> Avery
>

-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* ath10k: set channel by command "iw" not from hostapd and DFS support of firmware-2.bin_10.1.467.2-1
  2014-05-13  3:36       ` Ben Greear
@ 2014-05-13 13:08         ` Vu Hai NGUYEN
  2014-05-14  9:32           ` Matti Laakso
  2014-05-15  7:07           ` ath10k: firmware crash in station mode Vu Hai NGUYEN
  0 siblings, 2 replies; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-05-13 13:08 UTC (permalink / raw)
  To: ath10k; +Cc: Patrick CARNEIRO RODRIGUEZ

I am able to run mode access point by using ath10k and hostapd, but I have to set the channel in the configuration file for hostapd (I desactivated ACS when building hostapd)
If I set channel by the command "iw wlan0 set channel 10 HT20"  and remove the line "channel=10" from the configuration file of hostapd, this error appears when I run hostapd: 

ACS was disabled on your build, rebuild hostapd with CONFIG_ACS=y or set channel    
wlan0: IEEE 802.11 Configured channel (0) not found from the channel list of current mode (1) IEEE 802.11g
wlan0: IEEE 802.11 Hardware does not support configured channel
Could not select hw_mode and channel. (-3)
wlan0: Unable to setup interface.
hostapd_free_hapd_data: Interface wlan0 wasn't started

Does it mean that ath10k does not support configured channel ???? The reason I want to do it by command "iw" because it has more options than hostapd (iw wlan0 set freq <control freq> [20|40|80|80+80|160] [<center freq 1>] [<center freq 2>] )

I had another problem with setting a cannal that employs DFS (for example 52): 

wlan0: interface state COUNTRY_UPDATE->DFS                                      
wlan0: DFS-CAC-START freq=5260 chan=52 sec_chan=0                               
wlan0: Unable to setup interface.   
ADDRCONF(NETDEV_UP): wlan0: link is not ready    

I'm using the firmware-2.bin_10.1.467.2-1 which indicates that supports DFS on the website of ath10k. Is there anyone got the same issue like me?
Thanks in advance,

NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : [PATCH v2 2/2] ath10k: support get/set antenna configurations.
  2014-05-12 16:17   ` Ben Greear
  2014-05-13  0:49     ` Avery Pennarun
  2014-05-13  0:52     ` [PATCH] ath10k: support get/set antenna configurations Avery Pennarun
@ 2014-05-13 17:50     ` Kalle Valo
  2 siblings, 0 replies; 134+ messages in thread
From: Kalle Valo @ 2014-05-13 17:50 UTC (permalink / raw)
  To: Ben Greear; +Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, ath10k

Ben Greear <greearb@candelatech.com> writes:

> On 05/12/2014 08:43 AM, Vu Hai NGUYEN wrote:
>> Thank you very much for the patch, I just had a question of a new bie: Your patch is for the branch of ath-next-test, not for the branch ath-master, right?
>> But even it is for ath-next-test, I can not apply it, there is a conflict, for example the first change of your patch (in file "core.h" which starts from line 472 but I found in the branch of ath-next-test that it must start from line 444 where there is u32 dfs_block_radar_events; )
>> So I have to apply your patch manually (I look for the different and add it to the code) and then the result is quite good, I can see the Available and Configured Antennas from "iw list". Then I can also select the antenna thanks to the command "iw phyX set antenna" too. 
>> Sorry if I disturbing you for the question about applying the patch. 
>
> My patch was against my own tree which is a mix of 3.14 and an older
> version of git://github.com/kvalo/ath.git
>
> I do not have time right now to re-do the patch, but next time I get
> some time I will fix the patch to apply to ath.git. If someone else
> wants to do it first, I will not complain :)

If you send patches agains some out-of-tree version of ath10k, PLEASE
state that clearly. I now wasted time trying to apply the patch, before
I read your reply.

The best (=easiest for me) is to base patches on master branch of my
ath.git tree.

-- 
Kalle Valo

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: [PATCH] ath10k: support get/set antenna configurations.
  2014-05-13  0:52     ` [PATCH] ath10k: support get/set antenna configurations Avery Pennarun
@ 2014-05-13 18:10       ` Kalle Valo
  2014-05-13 18:15         ` Ben Greear
  2014-05-13 21:11       ` [PATCH v3] " Avery Pennarun
  1 sibling, 1 reply; 134+ messages in thread
From: Kalle Valo @ 2014-05-13 18:10 UTC (permalink / raw)
  To: Avery Pennarun
  Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, Ben Greear, ath10k

Avery Pennarun <apenwarr@gmail.com> writes:

> From: Ben Greear <greearb@candelatech.com>
>
> Tested with CT firmware, but should work on standard
> firmware as well.

I think this is unnecessary as it works with the standard firmware,
right?

> Verified that target's tx/rx chain register is set appropriately,
> and that the tx rate goes down as number of chains
> decrease, but I did not actually try to verify antenna
> ceased to transmit when disabled.
>
> Signed-off-by: Ben Greear <greearb@candelatech.com>
> Tested-by: Avery Pennarun <apenwarr@gmail.com>

I'm no lawyer, but I think that when person A resends person B's patch
then person A should add Signed-off-by line as well. And then that would
make Tested-by line moot as well.

> --- a/drivers/net/wireless/ath/ath10k/core.h
> +++ b/drivers/net/wireless/ath/ath10k/core.h
> @@ -440,6 +440,12 @@ struct ath10k {
>  	bool radar_enabled;
>  	int num_started_vdevs;
>  
> +	/* Protected by conf-mutex */
> +	unsigned char supp_tx_chainmask;
> +	unsigned char supp_rx_chainmask;
> +	unsigned char cfg_tx_chainmask;
> +	unsigned char cfg_rx_chainmask;

char is a bit odd here, as we are not storing characters here. Would u8
be better?

> +static int __ath10k_set_antenna(struct ath10k *ar, u32 tx_ant, u32 rx_ant)
> +{
> +	int ret;
> +
> +	lockdep_assert_held(&ar->conf_mutex);
> +
> +	ar->cfg_tx_chainmask = tx_ant;
> +	ar->cfg_rx_chainmask = rx_ant;
> +
> +	if ((ar->state != ATH10K_STATE_ON) &&
> +	    (ar->state != ATH10K_STATE_RESTARTED))
> +		return 0;

Should we return an error value instead? Aren't we otherwise cheating by
claiming that the command was succesful?

> +static int ath10k_set_antenna(struct ieee80211_hw *hw, u32 tx_ant, u32 rx_ant)
> +{
> +	struct ath10k *ar = hw->priv;
> +	int ret;
> +
> +	mutex_lock(&ar->conf_mutex);
> +	ret = __ath10k_set_antenna(ar, tx_ant, rx_ant);
> +	mutex_unlock(&ar->conf_mutex);
> +	return ret;
> +}
> +
> +

One empty line is enough here.

> --- a/drivers/net/wireless/ath/ath10k/wmi.c
> +++ b/drivers/net/wireless/ath/ath10k/wmi.c
> @@ -2558,6 +2558,8 @@ static int ath10k_wmi_main_cmd_init(struct ath10k *ar)
>  	config.ast_skid_limit = __cpu_to_le32(TARGET_AST_SKID_LIMIT);
>  	config.tx_chain_mask = __cpu_to_le32(TARGET_TX_CHAIN_MASK);
>  	config.rx_chain_mask = __cpu_to_le32(TARGET_RX_CHAIN_MASK);
> +	ar->supp_tx_chainmask = TARGET_TX_CHAIN_MASK;
> +	ar->supp_rx_chainmask = TARGET_RX_CHAIN_MASK;
>  	config.rx_timeout_pri_vo = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
>  	config.rx_timeout_pri_vi = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
>  	config.rx_timeout_pri_be = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
> @@ -2652,6 +2654,9 @@ static int ath10k_wmi_10x_cmd_init(struct ath10k *ar)
>  	config.ast_skid_limit = __cpu_to_le32(TARGET_10X_AST_SKID_LIMIT);
>  	config.tx_chain_mask = __cpu_to_le32(TARGET_10X_TX_CHAIN_MASK);
>  	config.rx_chain_mask = __cpu_to_le32(TARGET_10X_RX_CHAIN_MASK);
> +	/* TODO:  Have to deal with 2x2 chips if/when the come out. */
> +	ar->supp_tx_chainmask = TARGET_10X_TX_CHAIN_MASK;
> +	ar->supp_rx_chainmask = TARGET_10X_RX_CHAIN_MASK;
>  	config.rx_timeout_pri_vo = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);
>  	config.rx_timeout_pri_vi = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);
>  	config.rx_timeout_pri_be = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);

This initialisation looks out of place as we these variables have
nothing to do with the actual WMI_INIT_CMDID command. And besides, they
would get overwritten every time we start the firmware. Is that on
purpose?

I think we should find more approriate place, for example
ath10k_mac_register() would be one to look at.

-- 
Kalle Valo

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: [PATCH] ath10k: support get/set antenna configurations.
  2014-05-13 18:10       ` Kalle Valo
@ 2014-05-13 18:15         ` Ben Greear
  2014-05-13 21:03           ` Avery Pennarun
  0 siblings, 1 reply; 134+ messages in thread
From: Ben Greear @ 2014-05-13 18:15 UTC (permalink / raw)
  To: Kalle Valo
  Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, ath10k, Avery Pennarun

On 05/13/2014 11:10 AM, Kalle Valo wrote:

>> +static int __ath10k_set_antenna(struct ath10k *ar, u32 tx_ant, u32 rx_ant)
>> +{
>> +	int ret;
>> +
>> +	lockdep_assert_held(&ar->conf_mutex);
>> +
>> +	ar->cfg_tx_chainmask = tx_ant;
>> +	ar->cfg_rx_chainmask = rx_ant;
>> +
>> +	if ((ar->state != ATH10K_STATE_ON) &&
>> +	    (ar->state != ATH10K_STATE_RESTARTED))
>> +		return 0;
> 
> Should we return an error value instead? Aren't we otherwise cheating by
> claiming that the command was succesful?

I think not..we store the values, and they will be applied when firmware
does come up.

We might should return error if bad bit patterns are set, but to be honest,
aside from trial and error, I'm not sure how to figure those out.  Maybe
some internal QCA docs document the allowed configurations?

>> --- a/drivers/net/wireless/ath/ath10k/wmi.c
>> +++ b/drivers/net/wireless/ath/ath10k/wmi.c
>> @@ -2558,6 +2558,8 @@ static int ath10k_wmi_main_cmd_init(struct ath10k *ar)
>>  	config.ast_skid_limit = __cpu_to_le32(TARGET_AST_SKID_LIMIT);
>>  	config.tx_chain_mask = __cpu_to_le32(TARGET_TX_CHAIN_MASK);
>>  	config.rx_chain_mask = __cpu_to_le32(TARGET_RX_CHAIN_MASK);
>> +	ar->supp_tx_chainmask = TARGET_TX_CHAIN_MASK;
>> +	ar->supp_rx_chainmask = TARGET_RX_CHAIN_MASK;
>>  	config.rx_timeout_pri_vo = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
>>  	config.rx_timeout_pri_vi = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
>>  	config.rx_timeout_pri_be = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
>> @@ -2652,6 +2654,9 @@ static int ath10k_wmi_10x_cmd_init(struct ath10k *ar)
>>  	config.ast_skid_limit = __cpu_to_le32(TARGET_10X_AST_SKID_LIMIT);
>>  	config.tx_chain_mask = __cpu_to_le32(TARGET_10X_TX_CHAIN_MASK);
>>  	config.rx_chain_mask = __cpu_to_le32(TARGET_10X_RX_CHAIN_MASK);
>> +	/* TODO:  Have to deal with 2x2 chips if/when the come out. */
>> +	ar->supp_tx_chainmask = TARGET_10X_TX_CHAIN_MASK;
>> +	ar->supp_rx_chainmask = TARGET_10X_RX_CHAIN_MASK;
>>  	config.rx_timeout_pri_vo = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);
>>  	config.rx_timeout_pri_vi = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);
>>  	config.rx_timeout_pri_be = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);
> 
> This initialisation looks out of place as we these variables have
> nothing to do with the actual WMI_INIT_CMDID command. And besides, they
> would get overwritten every time we start the firmware. Is that on
> purpose?
> 
> I think we should find more approriate place, for example
> ath10k_mac_register() would be one to look at.

It doesn't hurt that they are over-written, but probably it
can be done better.

I'm knee deep in other bugs though...maybe Avery has time to
address this.

Thanks,
Ben


-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: [PATCH] ath10k: support get/set antenna configurations.
  2014-05-13 18:15         ` Ben Greear
@ 2014-05-13 21:03           ` Avery Pennarun
  2014-05-14 12:28             ` Kalle Valo
  0 siblings, 1 reply; 134+ messages in thread
From: Avery Pennarun @ 2014-05-13 21:03 UTC (permalink / raw)
  To: Ben Greear; +Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, Kalle Valo, ath10k

On Tue, May 13, 2014 at 2:15 PM, Ben Greear <greearb@candelatech.com> wrote:
> On 05/13/2014 11:10 AM, Kalle Valo wrote:
>>> --- a/drivers/net/wireless/ath/ath10k/wmi.c
>>> +++ b/drivers/net/wireless/ath/ath10k/wmi.c
>>> @@ -2558,6 +2558,8 @@ static int ath10k_wmi_main_cmd_init(struct ath10k *ar)
>>>      config.ast_skid_limit = __cpu_to_le32(TARGET_AST_SKID_LIMIT);
>>>      config.tx_chain_mask = __cpu_to_le32(TARGET_TX_CHAIN_MASK);
>>>      config.rx_chain_mask = __cpu_to_le32(TARGET_RX_CHAIN_MASK);
>>> +    ar->supp_tx_chainmask = TARGET_TX_CHAIN_MASK;
>>> +    ar->supp_rx_chainmask = TARGET_RX_CHAIN_MASK;
>>>      config.rx_timeout_pri_vo = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
>>>      config.rx_timeout_pri_vi = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
>>>      config.rx_timeout_pri_be = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
>>> @@ -2652,6 +2654,9 @@ static int ath10k_wmi_10x_cmd_init(struct ath10k *ar)
>>>      config.ast_skid_limit = __cpu_to_le32(TARGET_10X_AST_SKID_LIMIT);
>>>      config.tx_chain_mask = __cpu_to_le32(TARGET_10X_TX_CHAIN_MASK);
>>>      config.rx_chain_mask = __cpu_to_le32(TARGET_10X_RX_CHAIN_MASK);
>>> +    /* TODO:  Have to deal with 2x2 chips if/when the come out. */
>>> +    ar->supp_tx_chainmask = TARGET_10X_TX_CHAIN_MASK;
>>> +    ar->supp_rx_chainmask = TARGET_10X_RX_CHAIN_MASK;
>>>      config.rx_timeout_pri_vo = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);
>>>      config.rx_timeout_pri_vi = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);
>>>      config.rx_timeout_pri_be = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);
>>
>> This initialisation looks out of place as we these variables have
>> nothing to do with the actual WMI_INIT_CMDID command. And besides, they
>> would get overwritten every time we start the firmware. Is that on
>> purpose?
>>
>> I think we should find more approriate place, for example
>> ath10k_mac_register() would be one to look at.
>
> It doesn't hurt that they are over-written, but probably it
> can be done better.

As far as I can see, supp_{tx,rx}_chainmask are effectively constants.
 So it kind of makes sense to me to initialize them here with a bunch
of other constants.  cfg_{tx,rx}_chainmask do not seem to be
initialized ever (so I guess they default to zero, and we don't change
the antenna mask unless they are set).  I think this looks safe.

> I'm knee deep in other bugs though...maybe Avery has time to
> address this.

I'll respin the patch with the other suggested changed.  If you guys
think the supp_{tx,rx}_chainmask stuff should be moved elsewhere, let
me know where and I can make another one :)

Have fun,

Avery

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* [PATCH v3] ath10k: support get/set antenna configurations.
  2014-05-13  0:52     ` [PATCH] ath10k: support get/set antenna configurations Avery Pennarun
  2014-05-13 18:10       ` Kalle Valo
@ 2014-05-13 21:11       ` Avery Pennarun
  2014-05-14  6:20         ` Yeoh Chun-Yeow
                           ` (2 more replies)
  1 sibling, 3 replies; 134+ messages in thread
From: Avery Pennarun @ 2014-05-13 21:11 UTC (permalink / raw)
  To: Ben Greear, Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, ath10k
  Cc: Avery Pennarun

From: Ben Greear <greearb@candelatech.com>

Tested with CT firmware, but should work on standard
firmware as well.

Verified that target's tx/rx chain register is set appropriately,
and that the tx rate goes down as number of chains
decrease, but I did not actually try to verify antenna
ceased to transmit when disabled.

Signed-off-by: Ben Greear <greearb@candelatech.com>
Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
---
 drivers/net/wireless/ath/ath10k/core.h |  6 +++
 drivers/net/wireless/ath/ath10k/mac.c  | 71 ++++++++++++++++++++++++++++++++++
 drivers/net/wireless/ath/ath10k/wmi.c  |  5 +++
 3 files changed, 82 insertions(+)

diff --git a/drivers/net/wireless/ath/ath10k/core.h b/drivers/net/wireless/ath/ath10k/core.h
index 9b86e57..6ab6c73 100644
--- a/drivers/net/wireless/ath/ath10k/core.h
+++ b/drivers/net/wireless/ath/ath10k/core.h
@@ -440,6 +440,12 @@ struct ath10k {
 	bool radar_enabled;
 	int num_started_vdevs;
 
+	/* Protected by conf-mutex */
+	u8 supp_tx_chainmask;
+	u8 supp_rx_chainmask;
+	u8 cfg_tx_chainmask;
+	u8 cfg_rx_chainmask;
+
 	struct wmi_pdev_set_wmm_params_arg wmm_params;
 	struct completion install_key_done;
 
diff --git a/drivers/net/wireless/ath/ath10k/mac.c b/drivers/net/wireless/ath/ath10k/mac.c
index ecd191b..f0ae331 100644
--- a/drivers/net/wireless/ath/ath10k/mac.c
+++ b/drivers/net/wireless/ath/ath10k/mac.c
@@ -2329,6 +2329,68 @@ void ath10k_halt(struct ath10k *ar)
 	spin_unlock_bh(&ar->data_lock);
 }
 
+static int ath10k_get_antenna(struct ieee80211_hw *hw, u32 *tx_ant, u32 *rx_ant)
+{
+	struct ath10k *ar = hw->priv;
+
+	mutex_lock(&ar->conf_mutex);
+
+	if (ar->cfg_tx_chainmask) {
+		*tx_ant = ar->cfg_tx_chainmask;
+		*rx_ant = ar->cfg_rx_chainmask;
+	} else {
+		*tx_ant = ar->supp_tx_chainmask;
+		*rx_ant = ar->supp_rx_chainmask;
+	}
+
+	mutex_unlock(&ar->conf_mutex);
+
+	return 0;
+}
+
+static int __ath10k_set_antenna(struct ath10k *ar, u32 tx_ant, u32 rx_ant)
+{
+	int ret;
+
+	lockdep_assert_held(&ar->conf_mutex);
+
+	ar->cfg_tx_chainmask = tx_ant;
+	ar->cfg_rx_chainmask = rx_ant;
+
+	if ((ar->state != ATH10K_STATE_ON) &&
+	    (ar->state != ATH10K_STATE_RESTARTED))
+		return 0;
+
+	ret = ath10k_wmi_pdev_set_param(ar, ar->wmi.pdev_param->tx_chain_mask,
+					tx_ant);
+	if (ret) {
+		ath10k_warn("failed to set tx-chainmask: %d, req 0x%x\n",
+			    ret, tx_ant);
+		return ret;
+	}
+
+	ret = ath10k_wmi_pdev_set_param(ar, ar->wmi.pdev_param->rx_chain_mask,
+					rx_ant);
+	if (ret) {
+		ath10k_warn("failed to set rx-chainmask: %d, req 0x%x\n",
+			    ret, rx_ant);
+		return ret;
+	}
+
+	return 0;
+}
+
+static int ath10k_set_antenna(struct ieee80211_hw *hw, u32 tx_ant, u32 rx_ant)
+{
+	struct ath10k *ar = hw->priv;
+	int ret;
+
+	mutex_lock(&ar->conf_mutex);
+	ret = __ath10k_set_antenna(ar, tx_ant, rx_ant);
+	mutex_unlock(&ar->conf_mutex);
+	return ret;
+}
+
 static int ath10k_start(struct ieee80211_hw *hw)
 {
 	struct ath10k *ar = hw->priv;
@@ -2370,6 +2432,10 @@ static int ath10k_start(struct ieee80211_hw *hw)
 	if (ret)
 		ath10k_warn("failed to enable dynamic BW: %d\n", ret);
 
+	if (ar->cfg_tx_chainmask)
+		__ath10k_set_antenna(ar, ar->cfg_tx_chainmask,
+				     ar->cfg_rx_chainmask);
+
 	/*
 	 * By default FW set ARP frames ac to voice (6). In that case ARP
 	 * exchange is not working properly for UAPSD enabled AP. ARP requests
@@ -4252,6 +4318,8 @@ static const struct ieee80211_ops ath10k_ops = {
 	.set_frag_threshold		= ath10k_set_frag_threshold,
 	.flush				= ath10k_flush,
 	.tx_last_beacon			= ath10k_tx_last_beacon,
+	.set_antenna			= ath10k_set_antenna,
+	.get_antenna			= ath10k_get_antenna,
 	.restart_complete		= ath10k_restart_complete,
 	.get_survey			= ath10k_get_survey,
 	.set_bitrate_mask		= ath10k_set_bitrate_mask,
@@ -4601,6 +4669,9 @@ int ath10k_mac_register(struct ath10k *ar)
 		BIT(NL80211_IFTYPE_ADHOC) |
 		BIT(NL80211_IFTYPE_AP);
 
+	ar->hw->wiphy->available_antennas_rx = ar->supp_rx_chainmask;
+	ar->hw->wiphy->available_antennas_tx = ar->supp_tx_chainmask;
+
 	if (!test_bit(ATH10K_FW_FEATURE_NO_P2P, ar->fw_features))
 		ar->hw->wiphy->interface_modes |=
 			BIT(NL80211_IFTYPE_P2P_CLIENT) |
diff --git a/drivers/net/wireless/ath/ath10k/wmi.c b/drivers/net/wireless/ath/ath10k/wmi.c
index 0a2d04c..d22874a 100644
--- a/drivers/net/wireless/ath/ath10k/wmi.c
+++ b/drivers/net/wireless/ath/ath10k/wmi.c
@@ -2558,6 +2558,8 @@ static int ath10k_wmi_main_cmd_init(struct ath10k *ar)
 	config.ast_skid_limit = __cpu_to_le32(TARGET_AST_SKID_LIMIT);
 	config.tx_chain_mask = __cpu_to_le32(TARGET_TX_CHAIN_MASK);
 	config.rx_chain_mask = __cpu_to_le32(TARGET_RX_CHAIN_MASK);
+	ar->supp_tx_chainmask = TARGET_TX_CHAIN_MASK;
+	ar->supp_rx_chainmask = TARGET_RX_CHAIN_MASK;
 	config.rx_timeout_pri_vo = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
 	config.rx_timeout_pri_vi = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
 	config.rx_timeout_pri_be = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
@@ -2652,6 +2654,9 @@ static int ath10k_wmi_10x_cmd_init(struct ath10k *ar)
 	config.ast_skid_limit = __cpu_to_le32(TARGET_10X_AST_SKID_LIMIT);
 	config.tx_chain_mask = __cpu_to_le32(TARGET_10X_TX_CHAIN_MASK);
 	config.rx_chain_mask = __cpu_to_le32(TARGET_10X_RX_CHAIN_MASK);
+	/* TODO:  Have to deal with 2x2 chips if/when the come out. */
+	ar->supp_tx_chainmask = TARGET_10X_TX_CHAIN_MASK;
+	ar->supp_rx_chainmask = TARGET_10X_RX_CHAIN_MASK;
 	config.rx_timeout_pri_vo = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);
 	config.rx_timeout_pri_vi = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);
 	config.rx_timeout_pri_be = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);
-- 
1.9.1.423.g4596e3a


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply related	[flat|nested] 134+ messages in thread

* Re: [PATCH v3] ath10k: support get/set antenna configurations.
  2014-05-13 21:11       ` [PATCH v3] " Avery Pennarun
@ 2014-05-14  6:20         ` Yeoh Chun-Yeow
  2014-05-14  6:21           ` Avery Pennarun
  2014-05-16 12:30         ` Kalle Valo
  2014-05-22 16:56         ` Kalle Valo
  2 siblings, 1 reply; 134+ messages in thread
From: Yeoh Chun-Yeow @ 2014-05-14  6:20 UTC (permalink / raw)
  To: Avery Pennarun
  Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, Ben Greear, ath10k

I try to test by setting of antennas in my AP (firmware version
10.1.467.2-1) using ath10k to the following:

iw phy0 info | grep Antennas
Available Antennas: TX 0x7 RX 0x7
Configured Antennas: TX 0x1 RX 0x1

But my STA (using ath10k) seems to get the same throughput even with
single tx and rx antenna.

Anyone has any idea.

---
Chun-Yeow

On Wed, May 14, 2014 at 5:11 AM, Avery Pennarun <apenwarr@gmail.com> wrote:
> From: Ben Greear <greearb@candelatech.com>
>
> Tested with CT firmware, but should work on standard
> firmware as well.
>
> Verified that target's tx/rx chain register is set appropriately,
> and that the tx rate goes down as number of chains
> decrease, but I did not actually try to verify antenna
> ceased to transmit when disabled.
>
> Signed-off-by: Ben Greear <greearb@candelatech.com>
> Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
> ---
>  drivers/net/wireless/ath/ath10k/core.h |  6 +++
>  drivers/net/wireless/ath/ath10k/mac.c  | 71 ++++++++++++++++++++++++++++++++++
>  drivers/net/wireless/ath/ath10k/wmi.c  |  5 +++
>  3 files changed, 82 insertions(+)
>
> diff --git a/drivers/net/wireless/ath/ath10k/core.h b/drivers/net/wireless/ath/ath10k/core.h
> index 9b86e57..6ab6c73 100644
> --- a/drivers/net/wireless/ath/ath10k/core.h
> +++ b/drivers/net/wireless/ath/ath10k/core.h
> @@ -440,6 +440,12 @@ struct ath10k {
>         bool radar_enabled;
>         int num_started_vdevs;
>
> +       /* Protected by conf-mutex */
> +       u8 supp_tx_chainmask;
> +       u8 supp_rx_chainmask;
> +       u8 cfg_tx_chainmask;
> +       u8 cfg_rx_chainmask;
> +
>         struct wmi_pdev_set_wmm_params_arg wmm_params;
>         struct completion install_key_done;
>
> diff --git a/drivers/net/wireless/ath/ath10k/mac.c b/drivers/net/wireless/ath/ath10k/mac.c
> index ecd191b..f0ae331 100644
> --- a/drivers/net/wireless/ath/ath10k/mac.c
> +++ b/drivers/net/wireless/ath/ath10k/mac.c
> @@ -2329,6 +2329,68 @@ void ath10k_halt(struct ath10k *ar)
>         spin_unlock_bh(&ar->data_lock);
>  }
>
> +static int ath10k_get_antenna(struct ieee80211_hw *hw, u32 *tx_ant, u32 *rx_ant)
> +{
> +       struct ath10k *ar = hw->priv;
> +
> +       mutex_lock(&ar->conf_mutex);
> +
> +       if (ar->cfg_tx_chainmask) {
> +               *tx_ant = ar->cfg_tx_chainmask;
> +               *rx_ant = ar->cfg_rx_chainmask;
> +       } else {
> +               *tx_ant = ar->supp_tx_chainmask;
> +               *rx_ant = ar->supp_rx_chainmask;
> +       }
> +
> +       mutex_unlock(&ar->conf_mutex);
> +
> +       return 0;
> +}
> +
> +static int __ath10k_set_antenna(struct ath10k *ar, u32 tx_ant, u32 rx_ant)
> +{
> +       int ret;
> +
> +       lockdep_assert_held(&ar->conf_mutex);
> +
> +       ar->cfg_tx_chainmask = tx_ant;
> +       ar->cfg_rx_chainmask = rx_ant;
> +
> +       if ((ar->state != ATH10K_STATE_ON) &&
> +           (ar->state != ATH10K_STATE_RESTARTED))
> +               return 0;
> +
> +       ret = ath10k_wmi_pdev_set_param(ar, ar->wmi.pdev_param->tx_chain_mask,
> +                                       tx_ant);
> +       if (ret) {
> +               ath10k_warn("failed to set tx-chainmask: %d, req 0x%x\n",
> +                           ret, tx_ant);
> +               return ret;
> +       }
> +
> +       ret = ath10k_wmi_pdev_set_param(ar, ar->wmi.pdev_param->rx_chain_mask,
> +                                       rx_ant);
> +       if (ret) {
> +               ath10k_warn("failed to set rx-chainmask: %d, req 0x%x\n",
> +                           ret, rx_ant);
> +               return ret;
> +       }
> +
> +       return 0;
> +}
> +
> +static int ath10k_set_antenna(struct ieee80211_hw *hw, u32 tx_ant, u32 rx_ant)
> +{
> +       struct ath10k *ar = hw->priv;
> +       int ret;
> +
> +       mutex_lock(&ar->conf_mutex);
> +       ret = __ath10k_set_antenna(ar, tx_ant, rx_ant);
> +       mutex_unlock(&ar->conf_mutex);
> +       return ret;
> +}
> +
>  static int ath10k_start(struct ieee80211_hw *hw)
>  {
>         struct ath10k *ar = hw->priv;
> @@ -2370,6 +2432,10 @@ static int ath10k_start(struct ieee80211_hw *hw)
>         if (ret)
>                 ath10k_warn("failed to enable dynamic BW: %d\n", ret);
>
> +       if (ar->cfg_tx_chainmask)
> +               __ath10k_set_antenna(ar, ar->cfg_tx_chainmask,
> +                                    ar->cfg_rx_chainmask);
> +
>         /*
>          * By default FW set ARP frames ac to voice (6). In that case ARP
>          * exchange is not working properly for UAPSD enabled AP. ARP requests
> @@ -4252,6 +4318,8 @@ static const struct ieee80211_ops ath10k_ops = {
>         .set_frag_threshold             = ath10k_set_frag_threshold,
>         .flush                          = ath10k_flush,
>         .tx_last_beacon                 = ath10k_tx_last_beacon,
> +       .set_antenna                    = ath10k_set_antenna,
> +       .get_antenna                    = ath10k_get_antenna,
>         .restart_complete               = ath10k_restart_complete,
>         .get_survey                     = ath10k_get_survey,
>         .set_bitrate_mask               = ath10k_set_bitrate_mask,
> @@ -4601,6 +4669,9 @@ int ath10k_mac_register(struct ath10k *ar)
>                 BIT(NL80211_IFTYPE_ADHOC) |
>                 BIT(NL80211_IFTYPE_AP);
>
> +       ar->hw->wiphy->available_antennas_rx = ar->supp_rx_chainmask;
> +       ar->hw->wiphy->available_antennas_tx = ar->supp_tx_chainmask;
> +
>         if (!test_bit(ATH10K_FW_FEATURE_NO_P2P, ar->fw_features))
>                 ar->hw->wiphy->interface_modes |=
>                         BIT(NL80211_IFTYPE_P2P_CLIENT) |
> diff --git a/drivers/net/wireless/ath/ath10k/wmi.c b/drivers/net/wireless/ath/ath10k/wmi.c
> index 0a2d04c..d22874a 100644
> --- a/drivers/net/wireless/ath/ath10k/wmi.c
> +++ b/drivers/net/wireless/ath/ath10k/wmi.c
> @@ -2558,6 +2558,8 @@ static int ath10k_wmi_main_cmd_init(struct ath10k *ar)
>         config.ast_skid_limit = __cpu_to_le32(TARGET_AST_SKID_LIMIT);
>         config.tx_chain_mask = __cpu_to_le32(TARGET_TX_CHAIN_MASK);
>         config.rx_chain_mask = __cpu_to_le32(TARGET_RX_CHAIN_MASK);
> +       ar->supp_tx_chainmask = TARGET_TX_CHAIN_MASK;
> +       ar->supp_rx_chainmask = TARGET_RX_CHAIN_MASK;
>         config.rx_timeout_pri_vo = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
>         config.rx_timeout_pri_vi = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
>         config.rx_timeout_pri_be = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
> @@ -2652,6 +2654,9 @@ static int ath10k_wmi_10x_cmd_init(struct ath10k *ar)
>         config.ast_skid_limit = __cpu_to_le32(TARGET_10X_AST_SKID_LIMIT);
>         config.tx_chain_mask = __cpu_to_le32(TARGET_10X_TX_CHAIN_MASK);
>         config.rx_chain_mask = __cpu_to_le32(TARGET_10X_RX_CHAIN_MASK);
> +       /* TODO:  Have to deal with 2x2 chips if/when the come out. */
> +       ar->supp_tx_chainmask = TARGET_10X_TX_CHAIN_MASK;
> +       ar->supp_rx_chainmask = TARGET_10X_RX_CHAIN_MASK;
>         config.rx_timeout_pri_vo = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);
>         config.rx_timeout_pri_vi = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);
>         config.rx_timeout_pri_be = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);
> --
> 1.9.1.423.g4596e3a
>
>
> _______________________________________________
> ath10k mailing list
> ath10k@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/ath10k

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: [PATCH v3] ath10k: support get/set antenna configurations.
  2014-05-14  6:20         ` Yeoh Chun-Yeow
@ 2014-05-14  6:21           ` Avery Pennarun
  2014-05-14  6:25             ` Yeoh Chun-Yeow
  0 siblings, 1 reply; 134+ messages in thread
From: Avery Pennarun @ 2014-05-14  6:21 UTC (permalink / raw)
  To: Yeoh Chun-Yeow
  Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, Ben Greear, ath10k

On Wed, May 14, 2014 at 2:20 AM, Yeoh Chun-Yeow <yeohchunyeow@gmail.com> wrote:
> I try to test by setting of antennas in my AP (firmware version
> 10.1.467.2-1) using ath10k to the following:
>
> iw phy0 info | grep Antennas
> Available Antennas: TX 0x7 RX 0x7
> Configured Antennas: TX 0x1 RX 0x1
>
> But my STA (using ath10k) seems to get the same throughput even with
> single tx and rx antenna.

What throughput are you getting, and what is the signal strength?

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: [PATCH v3] ath10k: support get/set antenna configurations.
  2014-05-14  6:21           ` Avery Pennarun
@ 2014-05-14  6:25             ` Yeoh Chun-Yeow
  2014-05-14  7:18               ` Avery Pennarun
  0 siblings, 1 reply; 134+ messages in thread
From: Yeoh Chun-Yeow @ 2014-05-14  6:25 UTC (permalink / raw)
  To: Avery Pennarun
  Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, Ben Greear, ath10k

Here is from the fw_stats:

             ath10k PEER stats (1)
             =================

              Peer MAC address 04:f0:21:0c:a5:1c
                     Peer RSSI 43
                  Peer TX rate 877500
                  Peer RX rate 877500

TCP throughput is roughly around 151Mbps.

----
Chun-Yeow


On Wed, May 14, 2014 at 2:21 PM, Avery Pennarun <apenwarr@gmail.com> wrote:
> On Wed, May 14, 2014 at 2:20 AM, Yeoh Chun-Yeow <yeohchunyeow@gmail.com> wrote:
>> I try to test by setting of antennas in my AP (firmware version
>> 10.1.467.2-1) using ath10k to the following:
>>
>> iw phy0 info | grep Antennas
>> Available Antennas: TX 0x7 RX 0x7
>> Configured Antennas: TX 0x1 RX 0x1
>>
>> But my STA (using ath10k) seems to get the same throughput even with
>> single tx and rx antenna.
>
> What throughput are you getting, and what is the signal strength?

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: [PATCH v3] ath10k: support get/set antenna configurations.
  2014-05-14  6:25             ` Yeoh Chun-Yeow
@ 2014-05-14  7:18               ` Avery Pennarun
  2014-05-14  7:22                 ` Yeoh Chun-Yeow
  0 siblings, 1 reply; 134+ messages in thread
From: Avery Pennarun @ 2014-05-14  7:18 UTC (permalink / raw)
  To: Yeoh Chun-Yeow
  Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, Ben Greear, ath10k

On Wed, May 14, 2014 at 2:25 AM, Yeoh Chun-Yeow <yeohchunyeow@gmail.com> wrote:
> Here is from the fw_stats:
>
>              ath10k PEER stats (1)
>              =================
>
>               Peer MAC address 04:f0:21:0c:a5:1c
>                      Peer RSSI 43
>                   Peer TX rate 877500
>                   Peer RX rate 877500
>
> TCP throughput is roughly around 151Mbps.

In my tests it's easy to achieve >151 Mbps with a 40 MHz channel and
2x2.  So if you're using an 80 MHz channel (twice the speed) and only
one antenna (half the speed) you could still get 151 Mbps pretty
easily.

I wouldn't be surprised if your speed is being limited by something
else, maybe the host CPU or a slow interconnect on the station or AP
(USB perhaps?), so it doesn't look "worse" with only one antenna
because it should be at least twice as good when operating normally.

If you use wireshark or tcpdump you should be able to check the MCS
level of the packets and see that it's lower with fewer antennas.

Have fun,

Avery

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: [PATCH v3] ath10k: support get/set antenna configurations.
  2014-05-14  7:18               ` Avery Pennarun
@ 2014-05-14  7:22                 ` Yeoh Chun-Yeow
  2014-05-14  7:33                   ` Yeoh Chun-Yeow
  0 siblings, 1 reply; 134+ messages in thread
From: Yeoh Chun-Yeow @ 2014-05-14  7:22 UTC (permalink / raw)
  To: Avery Pennarun
  Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, Ben Greear, ath10k

[-- Attachment #1: Type: text/plain, Size: 1287 bytes --]

Here is the screenshot of my wireshark capture. I am seeing 3 spatial
streams instead of 1 after setting the antennas.

---
Chun-Yeow

On Wed, May 14, 2014 at 3:18 PM, Avery Pennarun <apenwarr@gmail.com> wrote:
> On Wed, May 14, 2014 at 2:25 AM, Yeoh Chun-Yeow <yeohchunyeow@gmail.com> wrote:
>> Here is from the fw_stats:
>>
>>              ath10k PEER stats (1)
>>              =================
>>
>>               Peer MAC address 04:f0:21:0c:a5:1c
>>                      Peer RSSI 43
>>                   Peer TX rate 877500
>>                   Peer RX rate 877500
>>
>> TCP throughput is roughly around 151Mbps.
>
> In my tests it's easy to achieve >151 Mbps with a 40 MHz channel and
> 2x2.  So if you're using an 80 MHz channel (twice the speed) and only
> one antenna (half the speed) you could still get 151 Mbps pretty
> easily.
>
> I wouldn't be surprised if your speed is being limited by something
> else, maybe the host CPU or a slow interconnect on the station or AP
> (USB perhaps?), so it doesn't look "worse" with only one antenna
> because it should be at least twice as good when operating normally.
>
> If you use wireshark or tcpdump you should be able to check the MCS
> level of the packets and see that it's lower with fewer antennas.
>
> Have fun,
>
> Avery

[-- Attachment #2: 3spatial-stream.png --]
[-- Type: image/png, Size: 250048 bytes --]

[-- Attachment #3: Type: text/plain, Size: 146 bytes --]

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: [PATCH v3] ath10k: support get/set antenna configurations.
  2014-05-14  7:22                 ` Yeoh Chun-Yeow
@ 2014-05-14  7:33                   ` Yeoh Chun-Yeow
  0 siblings, 0 replies; 134+ messages in thread
From: Yeoh Chun-Yeow @ 2014-05-14  7:33 UTC (permalink / raw)
  To: Avery Pennarun
  Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, Ben Greear, ath10k

I also try to confirm using debug_mask in ath10k and it seems also 3
spatial streams:
[ 3826.320000] ath10k: rx skb 86533480 len 1534 vht80 rate_idx 7
vht_nss 3 freq 5180 band 1 flag 0x40600000 fcs-err 0mic-err 0

-----
Chun-Yeow

On Wed, May 14, 2014 at 3:22 PM, Yeoh Chun-Yeow <yeohchunyeow@gmail.com> wrote:
> Here is the screenshot of my wireshark capture. I am seeing 3 spatial
> streams instead of 1 after setting the antennas.
>
> ---
> Chun-Yeow
>
> On Wed, May 14, 2014 at 3:18 PM, Avery Pennarun <apenwarr@gmail.com> wrote:
>> On Wed, May 14, 2014 at 2:25 AM, Yeoh Chun-Yeow <yeohchunyeow@gmail.com> wrote:
>>> Here is from the fw_stats:
>>>
>>>              ath10k PEER stats (1)
>>>              =================
>>>
>>>               Peer MAC address 04:f0:21:0c:a5:1c
>>>                      Peer RSSI 43
>>>                   Peer TX rate 877500
>>>                   Peer RX rate 877500
>>>
>>> TCP throughput is roughly around 151Mbps.
>>
>> In my tests it's easy to achieve >151 Mbps with a 40 MHz channel and
>> 2x2.  So if you're using an 80 MHz channel (twice the speed) and only
>> one antenna (half the speed) you could still get 151 Mbps pretty
>> easily.
>>
>> I wouldn't be surprised if your speed is being limited by something
>> else, maybe the host CPU or a slow interconnect on the station or AP
>> (USB perhaps?), so it doesn't look "worse" with only one antenna
>> because it should be at least twice as good when operating normally.
>>
>> If you use wireshark or tcpdump you should be able to check the MCS
>> level of the packets and see that it's lower with fewer antennas.
>>
>> Have fun,
>>
>> Avery

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: ath10k: set channel by command "iw" not from hostapd and DFS support of firmware-2.bin_10.1.467.2-1
  2014-05-13 13:08         ` ath10k: set channel by command "iw" not from hostapd and DFS support of firmware-2.bin_10.1.467.2-1 Vu Hai NGUYEN
@ 2014-05-14  9:32           ` Matti Laakso
  2014-05-14 11:56             ` RE : " Vu Hai NGUYEN
  2014-05-15  7:07           ` ath10k: firmware crash in station mode Vu Hai NGUYEN
  1 sibling, 1 reply; 134+ messages in thread
From: Matti Laakso @ 2014-05-14  9:32 UTC (permalink / raw)
  To: ath10k

> I am able to run mode access point by using ath10k and hostapd, but I have to set the channel in the configuration file for hostapd (I desactivated ACS when building hostapd)
> If I set channel by the command "iw wlan0 set channel 10 HT20"  and remove the line "channel=10" from the configuration file of hostapd, this error appears when I run hostapd: 
>
> ACS was disabled on your build, rebuild hostapd with CONFIG_ACS=y or set channel    
> wlan0: IEEE 802.11 Configured channel (0) not found from the channel list of current mode (1) IEEE 802.11g
> wlan0: IEEE 802.11 Hardware does not support configured channel
> Could not select hw_mode and channel. (-3)
> wlan0: Unable to setup interface.
> hostapd_free_hapd_data: Interface wlan0 wasn't started
>
> Does it mean that ath10k does not support configured channel ???? The reason I want to do it by command "iw" because it has more options than hostapd (iw wlan0 set freq <control freq> [20|40|80|80+80|160] [<center freq 1>] [<center freq 2>] )

Removing the channel from hostapd.conf implies channel=0. And it
obviously is not a valid channel when ACS is disabled. All the options
that iw has can be set in hostapd.conf as well.

> I had another problem with setting a cannal that employs DFS (for example 52): 
>
> wlan0: interface state COUNTRY_UPDATE->DFS                                      
> wlan0: DFS-CAC-START freq=5260 chan=52 sec_chan=0                               
> wlan0: Unable to setup interface.   
> ADDRCONF(NETDEV_UP): wlan0: link is not ready    
>
> I'm using the firmware-2.bin_10.1.467.2-1 which indicates that supports DFS on the website of ath10k. Is there anyone got the same issue like me?
>

Did you build ath10k with ATH10K_DFS_CERTIFIED enabled?

Matti

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : ath10k: set channel by command "iw" not from hostapd and DFS support of firmware-2.bin_10.1.467.2-1
  2014-05-14  9:32           ` Matti Laakso
@ 2014-05-14 11:56             ` Vu Hai NGUYEN
  2014-05-15  8:02               ` Matti Laakso
  0 siblings, 1 reply; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-05-14 11:56 UTC (permalink / raw)
  To: Matti Laakso, ath10k

>>Did you build ath10k with ATH10K_DFS_CERTIFIED enabled?

Yes I did it, here is my configuration:

<M>   Atheros 802.11ac wireless cards support                                                           
  │ │                                 <M>     Atheros ath10k PCI support                                                                     
  │ │                                   [*]     Atheros ath10k debugging                                                                        
  │ │                                   [*]     Atheros ath10k debugfs support                                                                  
  │ │                                   [*]     Atheros ath10k tracing support                                                                  
  │ │                                   [*]     Atheros DFS support for certified platforms 


NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE

________________________________________
De : ath10k [ath10k-bounces@lists.infradead.org] de la part de Matti Laakso [malaakso@elisanet.fi]
Date d'envoi : mercredi 14 mai 2014 11:32
À : ath10k@lists.infradead.org
Objet : Re: ath10k: set channel by command "iw" not from hostapd and DFS support of firmware-2.bin_10.1.467.2-1

> I am able to run mode access point by using ath10k and hostapd, but I have to set the channel in the configuration file for hostapd (I desactivated ACS when building hostapd)
> If I set channel by the command "iw wlan0 set channel 10 HT20"  and remove the line "channel=10" from the configuration file of hostapd, this error appears when I run hostapd:
>
> ACS was disabled on your build, rebuild hostapd with CONFIG_ACS=y or set channel
> wlan0: IEEE 802.11 Configured channel (0) not found from the channel list of current mode (1) IEEE 802.11g
> wlan0: IEEE 802.11 Hardware does not support configured channel
> Could not select hw_mode and channel. (-3)
> wlan0: Unable to setup interface.
> hostapd_free_hapd_data: Interface wlan0 wasn't started
>
> Does it mean that ath10k does not support configured channel ???? The reason I want to do it by command "iw" because it has more options than hostapd (iw wlan0 set freq <control freq> [20|40|80|80+80|160] [<center freq 1>] [<center freq 2>] )

Removing the channel from hostapd.conf implies channel=0. And it
obviously is not a valid channel when ACS is disabled. All the options
that iw has can be set in hostapd.conf as well.

> I had another problem with setting a cannal that employs DFS (for example 52):
>
> wlan0: interface state COUNTRY_UPDATE->DFS
> wlan0: DFS-CAC-START freq=5260 chan=52 sec_chan=0
> wlan0: Unable to setup interface.
> ADDRCONF(NETDEV_UP): wlan0: link is not ready
>
> I'm using the firmware-2.bin_10.1.467.2-1 which indicates that supports DFS on the website of ath10k. Is there anyone got the same issue like me?
>

Did you build ath10k with ATH10K_DFS_CERTIFIED enabled?

Matti

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k
_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: [PATCH] ath10k: support get/set antenna configurations.
  2014-05-13 21:03           ` Avery Pennarun
@ 2014-05-14 12:28             ` Kalle Valo
  2014-05-15  4:04               ` Yeoh Chun-Yeow
  0 siblings, 1 reply; 134+ messages in thread
From: Kalle Valo @ 2014-05-14 12:28 UTC (permalink / raw)
  To: Avery Pennarun
  Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, Ben Greear, ath10k

Avery Pennarun <apenwarr@gmail.com> writes:

> On Tue, May 13, 2014 at 2:15 PM, Ben Greear <greearb@candelatech.com> wrote:
>> On 05/13/2014 11:10 AM, Kalle Valo wrote:
>>>> --- a/drivers/net/wireless/ath/ath10k/wmi.c
>>>> +++ b/drivers/net/wireless/ath/ath10k/wmi.c
>>>> @@ -2558,6 +2558,8 @@ static int ath10k_wmi_main_cmd_init(struct ath10k *ar)
>>>>      config.ast_skid_limit = __cpu_to_le32(TARGET_AST_SKID_LIMIT);
>>>>      config.tx_chain_mask = __cpu_to_le32(TARGET_TX_CHAIN_MASK);
>>>>      config.rx_chain_mask = __cpu_to_le32(TARGET_RX_CHAIN_MASK);
>>>> +    ar->supp_tx_chainmask = TARGET_TX_CHAIN_MASK;
>>>> +    ar->supp_rx_chainmask = TARGET_RX_CHAIN_MASK;
>>>>      config.rx_timeout_pri_vo = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
>>>>      config.rx_timeout_pri_vi = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
>>>>      config.rx_timeout_pri_be = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
>>>> @@ -2652,6 +2654,9 @@ static int ath10k_wmi_10x_cmd_init(struct ath10k *ar)
>>>>      config.ast_skid_limit = __cpu_to_le32(TARGET_10X_AST_SKID_LIMIT);
>>>>      config.tx_chain_mask = __cpu_to_le32(TARGET_10X_TX_CHAIN_MASK);
>>>>      config.rx_chain_mask = __cpu_to_le32(TARGET_10X_RX_CHAIN_MASK);
>>>> +    /* TODO:  Have to deal with 2x2 chips if/when the come out. */
>>>> +    ar->supp_tx_chainmask = TARGET_10X_TX_CHAIN_MASK;
>>>> +    ar->supp_rx_chainmask = TARGET_10X_RX_CHAIN_MASK;
>>>>      config.rx_timeout_pri_vo = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);
>>>>      config.rx_timeout_pri_vi = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);
>>>>      config.rx_timeout_pri_be = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);
>>>
>>> This initialisation looks out of place as we these variables have
>>> nothing to do with the actual WMI_INIT_CMDID command. And besides, they
>>> would get overwritten every time we start the firmware. Is that on
>>> purpose?
>>>
>>> I think we should find more approriate place, for example
>>> ath10k_mac_register() would be one to look at.
>>
>> It doesn't hurt that they are over-written, but probably it
>> can be done better.
>
> As far as I can see, supp_{tx,rx}_chainmask are effectively constants.
>  So it kind of makes sense to me to initialize them here with a bunch
> of other constants.  cfg_{tx,rx}_chainmask do not seem to be
> initialized ever (so I guess they default to zero, and we don't change
> the antenna mask unless they are set).  I think this looks safe.

The purpose of ath10k_wmi_main_cmd_init() to initiatialise 'struct
wmi_init_cmd' and send it to the firmware, it should not do anything
else. Initialisation of the fields in question do not belong to that
function, that kind of higher level logic should be the responsibility
of mac.c.

My idea here is that wmi.c is implementening WMI as a protocol, and
mac.c then just uses wmi.c as protocol abstraction mac.c. The exception
we have are the WMI event handling and that's just to keep the code
simple.

>> I'm knee deep in other bugs though...maybe Avery has time to
>> address this.
>
> I'll respin the patch with the other suggested changed.  If you guys
> think the supp_{tx,rx}_chainmask stuff should be moved elsewhere, let
> me know where and I can make another one :)

I want to keep the architecture of ath10k clean and that's why I really
would prefer to have this somewhere else than in wmi.c.

BTW, please also CC linux-wireless when submitting ath10k patches. I
have documented the process here:

http://wireless.kernel.org/en/users/Drivers/ath10k/sources#Submitting_patches

-- 
Kalle Valo

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: [PATCH] ath10k: support get/set antenna configurations.
  2014-05-14 12:28             ` Kalle Valo
@ 2014-05-15  4:04               ` Yeoh Chun-Yeow
  2014-05-15  5:47                 ` Avery Pennarun
  2014-05-15  7:11                 ` Kalle Valo
  0 siblings, 2 replies; 134+ messages in thread
From: Yeoh Chun-Yeow @ 2014-05-15  4:04 UTC (permalink / raw)
  To: Kalle Valo
  Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, Ben Greear, ath10k,
	Avery Pennarun

Sorry for all the noise. The patch is indeed working.

I have verified that the number of spatial streams are reduced
accordingly if you reduce the tx chainmask.

----
Chun-Yeow

On Wed, May 14, 2014 at 8:28 PM, Kalle Valo <kvalo@qca.qualcomm.com> wrote:
> Avery Pennarun <apenwarr@gmail.com> writes:
>
>> On Tue, May 13, 2014 at 2:15 PM, Ben Greear <greearb@candelatech.com> wrote:
>>> On 05/13/2014 11:10 AM, Kalle Valo wrote:
>>>>> --- a/drivers/net/wireless/ath/ath10k/wmi.c
>>>>> +++ b/drivers/net/wireless/ath/ath10k/wmi.c
>>>>> @@ -2558,6 +2558,8 @@ static int ath10k_wmi_main_cmd_init(struct ath10k *ar)
>>>>>      config.ast_skid_limit = __cpu_to_le32(TARGET_AST_SKID_LIMIT);
>>>>>      config.tx_chain_mask = __cpu_to_le32(TARGET_TX_CHAIN_MASK);
>>>>>      config.rx_chain_mask = __cpu_to_le32(TARGET_RX_CHAIN_MASK);
>>>>> +    ar->supp_tx_chainmask = TARGET_TX_CHAIN_MASK;
>>>>> +    ar->supp_rx_chainmask = TARGET_RX_CHAIN_MASK;
>>>>>      config.rx_timeout_pri_vo = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
>>>>>      config.rx_timeout_pri_vi = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
>>>>>      config.rx_timeout_pri_be = __cpu_to_le32(TARGET_RX_TIMEOUT_LO_PRI);
>>>>> @@ -2652,6 +2654,9 @@ static int ath10k_wmi_10x_cmd_init(struct ath10k *ar)
>>>>>      config.ast_skid_limit = __cpu_to_le32(TARGET_10X_AST_SKID_LIMIT);
>>>>>      config.tx_chain_mask = __cpu_to_le32(TARGET_10X_TX_CHAIN_MASK);
>>>>>      config.rx_chain_mask = __cpu_to_le32(TARGET_10X_RX_CHAIN_MASK);
>>>>> +    /* TODO:  Have to deal with 2x2 chips if/when the come out. */
>>>>> +    ar->supp_tx_chainmask = TARGET_10X_TX_CHAIN_MASK;
>>>>> +    ar->supp_rx_chainmask = TARGET_10X_RX_CHAIN_MASK;
>>>>>      config.rx_timeout_pri_vo = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);
>>>>>      config.rx_timeout_pri_vi = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);
>>>>>      config.rx_timeout_pri_be = __cpu_to_le32(TARGET_10X_RX_TIMEOUT_LO_PRI);
>>>>
>>>> This initialisation looks out of place as we these variables have
>>>> nothing to do with the actual WMI_INIT_CMDID command. And besides, they
>>>> would get overwritten every time we start the firmware. Is that on
>>>> purpose?
>>>>
>>>> I think we should find more approriate place, for example
>>>> ath10k_mac_register() would be one to look at.
>>>
>>> It doesn't hurt that they are over-written, but probably it
>>> can be done better.
>>
>> As far as I can see, supp_{tx,rx}_chainmask are effectively constants.
>>  So it kind of makes sense to me to initialize them here with a bunch
>> of other constants.  cfg_{tx,rx}_chainmask do not seem to be
>> initialized ever (so I guess they default to zero, and we don't change
>> the antenna mask unless they are set).  I think this looks safe.
>
> The purpose of ath10k_wmi_main_cmd_init() to initiatialise 'struct
> wmi_init_cmd' and send it to the firmware, it should not do anything
> else. Initialisation of the fields in question do not belong to that
> function, that kind of higher level logic should be the responsibility
> of mac.c.
>
> My idea here is that wmi.c is implementening WMI as a protocol, and
> mac.c then just uses wmi.c as protocol abstraction mac.c. The exception
> we have are the WMI event handling and that's just to keep the code
> simple.
>
>>> I'm knee deep in other bugs though...maybe Avery has time to
>>> address this.
>>
>> I'll respin the patch with the other suggested changed.  If you guys
>> think the supp_{tx,rx}_chainmask stuff should be moved elsewhere, let
>> me know where and I can make another one :)
>
> I want to keep the architecture of ath10k clean and that's why I really
> would prefer to have this somewhere else than in wmi.c.
>
> BTW, please also CC linux-wireless when submitting ath10k patches. I
> have documented the process here:
>
> http://wireless.kernel.org/en/users/Drivers/ath10k/sources#Submitting_patches
>
> --
> Kalle Valo
>
> _______________________________________________
> ath10k mailing list
> ath10k@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/ath10k

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: [PATCH] ath10k: support get/set antenna configurations.
  2014-05-15  4:04               ` Yeoh Chun-Yeow
@ 2014-05-15  5:47                 ` Avery Pennarun
  2014-05-15  6:51                   ` Yeoh Chun-Yeow
  2014-05-15  7:11                 ` Kalle Valo
  1 sibling, 1 reply; 134+ messages in thread
From: Avery Pennarun @ 2014-05-15  5:47 UTC (permalink / raw)
  To: Yeoh Chun-Yeow
  Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, Kalle Valo,
	Ben Greear, ath10k

On Thu, May 15, 2014 at 12:04 AM, Yeoh Chun-Yeow <yeohchunyeow@gmail.com> wrote:
> Sorry for all the noise. The patch is indeed working.
>
> I have verified that the number of spatial streams are reduced
> accordingly if you reduce the tx chainmask.

Hi, can you give a hint what you might have been doing wrong during
your test, in order to help others in the future?

Thanks,

Avery

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: [PATCH] ath10k: support get/set antenna configurations.
  2014-05-15  5:47                 ` Avery Pennarun
@ 2014-05-15  6:51                   ` Yeoh Chun-Yeow
  0 siblings, 0 replies; 134+ messages in thread
From: Yeoh Chun-Yeow @ 2014-05-15  6:51 UTC (permalink / raw)
  To: Avery Pennarun
  Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, Kalle Valo,
	Ben Greear, ath10k

It's my own mistake while patching the patch.

Anyway, I can share my test method:

AP: (ath10k)
1. iw phy0 set antenna 1 1 (1 tx chainmask and 1 rx chainmask)
2. Use hostapd to bring up 80MHz AP

STA: (ath10k)
1. ifconfig wlan0
2. iw wlan0 connect SSID
3. echo 0x200 > /sys/module/ath10k_core/parameters/debug_mask
4. Check the "vht_nss", it should be based on your configuration of
antenna, such as vht_nss = 1 for 1 tx chainmask in AP

---
Chun-Yeow

On Thu, May 15, 2014 at 1:47 PM, Avery Pennarun <apenwarr@gmail.com> wrote:
> On Thu, May 15, 2014 at 12:04 AM, Yeoh Chun-Yeow <yeohchunyeow@gmail.com> wrote:
>> Sorry for all the noise. The patch is indeed working.
>>
>> I have verified that the number of spatial streams are reduced
>> accordingly if you reduce the tx chainmask.
>
> Hi, can you give a hint what you might have been doing wrong during
> your test, in order to help others in the future?
>
> Thanks,
>
> Avery

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* ath10k: firmware crash in station mode
  2014-05-13 13:08         ` ath10k: set channel by command "iw" not from hostapd and DFS support of firmware-2.bin_10.1.467.2-1 Vu Hai NGUYEN
  2014-05-14  9:32           ` Matti Laakso
@ 2014-05-15  7:07           ` Vu Hai NGUYEN
  2014-05-15  7:53             ` Janusz Dziedzic
  2014-05-15 10:57             ` Michal Kazior
  1 sibling, 2 replies; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-05-15  7:07 UTC (permalink / raw)
  To: ath10k; +Cc: Patrick CARNEIRO RODRIGUEZ

[-- Attachment #1: Type: text/plain, Size: 4981 bytes --]

I tried to set up station mode using ath10k and wpa_supplicant.
If I used the firmware in branch 10.1 version firmware-2.bin_10.1.467.2-1 (which said that support STA mode but not well tested) , it crashed after associating with the access point:

wlan0: SME: Trying to authenticate with 00:15:61:10:51:de (SSID='actia' freq=2457 MHz) 
wlan0: authenticate with 00:15:61:10:51:de                           
wlan0: send auth to 00:15:61:10:51:de (try 1/3)                                 
wlan0: authenticated                                                            
wlan0: Trying to associate with 00:15:61:10:51:de (SSID='actia' freq=2457 MHz)  
wlan0: associate with 00:15:61:10:51:de (try 1/3)                               
wlan0: RX AssocResp from 00:15:61:10:51:de (capab=0x421 status=0 aid=1)         
wlan0: associated                                                               
ath10k: firmware crashed!                                                       
ath10k: hardware name qca988x hw2.0 version 0x4100016c                          
ath10k: firmware version: 10.1.467.2-1                                          
ath10k: target register Dump Location: 0x00401930                               
ath10k: target Register Dump                                                    
ath10k: [00]: 0x4100016C 0x00000000 0x009A123A 0x00000000                       
ath10k: [04]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [08]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [12]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [16]: 0x00000000 0x00000000 0x00000000 0x009A123A                       
ath10k: [20]: 0x00000000 0x00401930 0x00000000 0x00000000                       
ath10k: [24]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [28]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [32]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [36]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [40]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [44]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [48]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [52]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [56]: 0x00000000 0x00000000 0x00000000 0x00000000                       
br0: received packet on eth0 with own address as source address                 
ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready                              
br0: port 2(wlan0) entering forwarding state                                    
br0: port 2(wlan0) entering forwarding state                                    
wlan0: Associated with 00:15:61:10:51:de                                        
ath10k: failed to put down monitor vdev 1: -11                                  
ath10k: failed to to request monitor vdev 1 stop: -11                           
ath10k: failed to synchronise monitor vdev 1: -110                              
ath10k: failed to stop monitor vdev: -110                                       
ath10k: failed to request wmi monitor vdev 1 removal: -11                       
ath10k: failed to delete monitor vdev: -11                                      
ieee80211 phy0: Hardware restart was requested                                  
ath10k: failed to request monitor vdev 2 creation: -108                         
ath10k: failed to create monitor vdev: -108                                     
ath10k: failed to start monitor (promisc): -108                                 
wlan0: CTRL-EVENT-CONNECTED - Connection to 00:15:61:10:51:de completed [id=0 id_str=]                                                                          
ath10k: device has crashed during init                                          
ath10k: failed to wait for target to init: -70                                  
ath10k: failed to power up target using warm reset: -70                         
ath10k: trying cold reset                                                                                                     

Than I tried another version of firmware from branch 999. (which said that support STA mode) but it worse, the firmware crashed before seeing the access point. (can not associate)
This crashed is because of my system or just only the firmware issue? And is the firmware still continue developping? (There is a debug message of my system in the attached file if any one are interested in)

Btw is there anyone could set a channel (from 52 and more) that employs DFS sucessfully confirm it for me cause I can not do it until now :D
Thank you all of you for the support,

NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE

[-- Attachment #2: debug_mess.txt --]
[-- Type: text/plain, Size: 69141 bytes --]

BootROM 1.08                                                                    
Booting from NAND flash                                                         
High speed PHY - Version: 2.1.2 (COM-PHY-V20)                                   
High speed PHY - Ended Successfully                                             
                                   DDR3 Training Sequence - Ver 4.4.0           
DDR3 Training Sequence - Ended Successfully                                     
Status = MV_OK                                                                  
BootROM: Image checksum verification PASSED                                     
                                                                                
                                                                                
U-Boot 2011.12 (Oct 21 2013 - 09:38:32)0                                        
                                                                                
Board: RD-88F6710                                                               
SoC:   MV6710 A1                                                                
CPU:   Marvell PJ4B v7 UP (Rev 1) LE                                            
       CPU    @ 1200 [MHz]                                                      
       L2     @ 600 [MHz]                                                       
       TClock @ 200 [MHz]                                                       
       DDR    @ 600 [MHz]                                                       
       DDR 16Bit Width, FastPath Memory Access                                  
DRAM:  512 MiB                                                                  
                                                                                
Map:   Code:            0x1fefc000:0x1ff9fe8c                                   
       BSS:             0x1ffefa80                                              
       Stack:           0x1f9fbef8                                              
       Heap:            0x1f9fc000:0x1fefc000                                   
                                                                                
NAND:  NAND device: Manufacturer ID: 0x2c, Chip ID: 0x38 (Micron NAND 1GiB 3,3V 
8-bit)                                                                          
1024 MiB                                                                        
MMC:   MRVL_MMC: 0                                                              
Bad block table found at page 262016, version 0x01                              
Bad block table found at page 261888, version 0x01                              
PEX 0: Root Complex Interface, Detected Link X1, GEN 1.1                        
PEX 0.1(1): Detected No Link.                                                   
FPU not initialized                                                             
USB 0: Host Mode                                                                
USB 1: Host Mode                                                                
Modules/Interfaces Detected:                                                    
       TDM Module                                                               
       SDIO                                                                     
       RGMII1 Switch module                                                     
       PEX0 (Lane 0)                                                            
       PEX1 (Lane 1)                                                            
       SATA1 (Lane 3)                                                           
       SGMII0 Phy module (Lane 2)                                               
Not Marvell PHY id1 ffff id2 ffff                                               
Net:   egiga0, egiga1 [PRIME]                                                   
Hit any key to stop autoboot:  0                                                
                                                                                
NAND read: device 0 offset 0x4800000, size 0x4000000                            
 67108864 bytes read: OK                                                        
## Booting kernel from Legacy Image at 02000000 ...                             
   Image Name:   Linux-3.2.36                                                   
   Created:      2014-05-14  15:21:26 UTC                                       
   Image Type:   ARM Linux Kernel Image (uncompressed)                          
   Data Size:    13024880 Bytes = 12.4 MiB                                      
   Load Address: 00008000                                                       
   Entry Point:  00008000                                                       
   Verifying Checksum ... OK                                                    
   Loading Kernel Image ... OK                                                  
OK                                                                              
                                                                                
Starting kernel ...                                                             
                                                                                
Uncompressing Linux... done, booting the kernel.                                
Linux version 3.2.36 (alberix2@nguyen-actiasodielec) (gcc version 4.6.2 (Linaro 
GCC branch-4.6.2. Marvell GCC 201201-883.01c949de) ) #315 Wed May 14 17:21:17 CE
ST 2014                                                                         
CPU: Marvell PJ4Bv7 Processor [561f5811] revision 1 (ARMv7), cr=10c53c7d        
CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache                 
Machine: Marvell Armada-370                                                     
Using UBoot passing parameters structure                                        
>>>>>>>Tag MAC 00:00:00:00:00:00                                                
>>>>>>>Tag MAC 86:48:25:43:50:00                                                
Memory policy: ECC disabled, Data cache writealloc                              
Built 1 zonelists in Zone order, mobility grouping off.  Total pages: 130048    
Kernel command line: console=ttyS0,115200 panic=1 modeboot=2 vboot=0            
PID hash table entries: 2048 (order: 1, 8192 bytes)                             
Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)                 
Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)                  
Memory: 512MB = 512MB total                                                     
Memory: 497692k/497692k available, 26596k reserved, 0K highmem                  
Virtual kernel memory layout:                                                   
    vector  : 0xffff0000 - 0xffff1000   (   4 kB)                               
    fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)                               
    vmalloc : 0xe0800000 - 0xfa800000   ( 416 MB)                               
    lowmem  : 0xc0000000 - 0xe0000000   ( 512 MB)                               
    pkmap   : 0xbfe00000 - 0xc0000000   (   2 MB)                               
    modules : 0xbf000000 - 0xbfe00000   (  14 MB)                               
      .text : 0xc0008000 - 0xc0772000   (7592 kB)                               
      .init : 0xc0772000 - 0xc10ae000   (9456 kB)                               
      .data : 0xc10ae000 - 0xc112df38   ( 512 kB)                               
       .bss : 0xc112df5c - 0xc11897ac   ( 367 kB)                               
NR_IRQS:256                                                                     
a370_time_init                                                                  
sched_clock: 32 bits at 600MHz, resolution 1ns, wraps every 7158ms              
Calibrating delay loop... 1196.85 BogoMIPS (lpj=5984256)                        
pid_max: default: 32768 minimum: 301                                            
Mount-cache hash table entries: 512                                             
CPU: Testing write buffer coherency: ok                                         
hw perfevents: no hardware support available                                    
devtmpfs: initialized                                                           
xor: measuring software checksum speed                                          
   arm4regs  :  1150.000 MB/sec                                                 
   8regs     :   814.000 MB/sec                                                 
   32regs    :  1144.800 MB/sec                                                 
xor: using function: arm4regs (1150.000 MB/sec)                                 
NET: Registered protocol family 16                                              
L0 cache Enabled                                                                
Speculative Prefetch Disabled                                                   
Aurora L2 Cache Enabled                                                         
Support IO coherency.                                                           
Enable DLB and DRAM write coalescing                                            
                                                                                
CPU Interface                                                                   
-------------                                                                   
SDRAM_CS0 ....base 00000000, size 512MB                                         
SDRAM_CS1 ....disable                                                           
SDRAM_CS2 ....disable                                                           
SDRAM_CS3 ....disable                                                           
DEVICE_CS0 ....base f2000000, size  32MB                                        
DEVICE_CS1 ....no such                                                          
DEVICE_CS2 ....no such                                                          
DEVICE_CS3 ....no such                                                          
PEX0_MEM ....base e0000000, size  32MB                                          
PEX0_IO ....base f1100000, size   1MB                                           
PEX1_MEM ....base e2000000, size  32MB                                          
PEX1_IO ....base f1200000, size   1MB                                           
INTER_REGS ....base d0000000, size   1MB                                        
DMA_UART ....no such                                                            
SPI_CS0 ....base f0000000, size  16MB                                           
SPI_CS1 ....no such                                                             
SPI_CS2 ....no such                                                             
SPI_CS3 ....no such                                                             
SPI_CS4 ....no such                                                             
SPI_CS5 ....no such                                                             
SPI_CS6 ....no such                                                             
SPI_CS7 ....no such                                                             
BOOT_ROM_CS ....no such                                                         
DEV_BOOTCS ....base f5000000, size  16MB                                        
PMU_SCRATCHPAD ....no such                                                      
CRYPT0_ENG ....base c8010000, size  64KB                                        
                                                                                
  Marvell Armada370 Board-- RD-88F6710  Soc: MV6710 A1 LE                       
  LSP version: linux-3.2.y-2013_Q1.0p2                                          
                                                                                
                                                                                
 Detected Tclk 200000000, SysClk 600000000, FabricClk 600000000                 
Marvell USB EHCI Host controller #0: d004d600                                   
Marvell USB EHCI Host controller #1: d004d400                                   
PCI: bus0: Fast back to back transfers disabled                                 
PCI: bus1: Fast back to back transfers enabled                                  
pci 0000:00:00.0: BAR 0: assigned [mem 0xe0000000-0xe01fffff 64bit]             
pci 0000:00:00.0: BAR 0: set to [mem 0xe0000000-0xe01fffff 64bit] (PCI address [
0xe0000000-0xe01fffff])                                                         
pci 0000:00:00.0: BAR 6: assigned [mem 0xe0200000-0xe020ffff pref]              
bio: create slab <bio-0> at 0                                                   
raid6: int32x1    135 MB/s                                                      
raid6: int32x2    210 MB/s                                                      
raid6: int32x4    202 MB/s                                                      
raid6: int32x8    232 MB/s                                                      
raid6: using algorithm int32x8 (232 MB/s)                                       
vgaarb: loaded                                                                  
SCSI subsystem initialized                                                      
usbcore: registered new interface driver usbfs                                  
usbcore: registered new interface driver hub                                    
usbcore: registered new device driver usb                                       
Advanced Linux Sound Architecture Driver Version 1.0.24.                        
Switching to clocksource armada370_clocksource                                  
NET: Registered protocol family 2                                               
IP route cache hash table entries: 4096 (order: 2, 16384 bytes)                 
TCP established hash table entries: 16384 (order: 5, 131072 bytes)              
TCP bind hash table entries: 16384 (order: 4, 65536 bytes)                      
TCP: Hash tables configured (established 16384 bind 16384)                      
TCP reno registered                                                             
UDP hash table entries: 256 (order: 0, 4096 bytes)                              
UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)                         
NET: Registered protocol family 1                                               
RPC: Registered named UNIX socket transport module.                             
RPC: Registered udp transport module.                                           
RPC: Registered tcp transport module.                                           
RPC: Registered tcp NFSv4.1 backchannel transport module.                       
cesadev_init(c077a004)                                                          
mvCesaInit: channels=1, session=640, queue=64                                   
Armada XP hwmon thermal sensor initialized.                                     
Initializing Armada-XP CPU power management  (WFI)                              
squashfs: version 4.0 (2009/01/31) Phillip Lougher                              
JFFS2 version 2.2. (NAND) �© 2001-2006 Red Hat, Inc.                            
SGI XFS with security attributes, large block/inode numbers, no debug enabled   
msgmni has been set to 972                                                      
async_tx: api initialized (async)                                               
io scheduler noop registered                                                    
io scheduler deadline registered                                                
io scheduler cfq registered (default)                                           
Initializing ths8200_init                                                       
Initializing dove_adi9889_init                                                  
mv_xor_shared mv_xor_shared.0: Marvell shared XOR driver                        
mv_xor_shared mv_xor_shared.1: Marvell shared XOR driver                        
mv_xor mv_xor.0: Marvell XOR: ( xor )                                           
mv_xor mv_xor.1: Marvell XOR: ( xor )                                           
mv_xor mv_xor.2: Marvell XOR: ( cpy )                                           
mv_xor mv_xor.3: Marvell XOR: ( fill cpy )                                      
Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled                        
serial8250.0: ttyS0 at MMIO 0xd0012000 (irq = 41) is a 16550A                   
console [ttyS0] enabled                                                         
brd: module loaded                                                              
loop: module loaded                                                             
lkdtm: No crash points registered, enable through debugfs                       
sata_mv sata_mv.0: slots 32 ports 2                                             
scsi0 : sata_mv                                                                 
scsi1 : sata_mv                                                                 
ata1: SATA max UDMA/133 irq 55                                                  
ata2: SATA max UDMA/133 irq 55                                                  
mvSFlashInit ERROR: Unknown SPI flash device!                                   
ERROR: sflash_probe - Failed to initialize the SFlash.                          
armada-nand armada-nand.0: Initialize HAL based NFC in 8bit mode with DMA Disabl
ed using BCH 4bit ECC                                                           
NAND device: Manufacturer ID: 0x2c, Chip ID: 0x38 (Micron NAND 1GiB 3,3V 8-bit) 
Bad block table found at page 262016, version 0x01                              
Bad block table found at page 261888, version 0x01                              
Creating 7 MTD partitions on "armada-nand":                                     
0x000000000000-0x000000400000 : "uboot"                                         
0x000000400000-0x000000800000 : "uboot-env"                                     
0x000000800000-0x000004800000 : "App1"                                          
0x000004800000-0x000008800000 : "App2"                                          
0x000008800000-0x00000c800000 : "nand-config"                                   
0x00000c800000-0x000010800000 : "nand-jdb"                                      
0x000010800000-0x000040000000 : "User"                                          
mv_eth_probe: port_mask=0x2, cpu_mask=0x1                                       
0 - Base 0x00000000 , Size = 0x00000000.                                        
4 - Base 0xf2000000 , Size = 0x00000000.                                        
8 - Base 0xe0000000 , Size = 0x00000000.                                        
9 - Base 0xf1100000 , Size = 0x00000000.                                        
10 - Base 0xe2000000 , Size = 0x00000000.                                       
11 - Base 0xf1200000 , Size = 0x00000000.                                       
12 - Base 0xd0000000 , Size = 0x00000000.                                       
14 - Base 0xf0000000 , Size = 0x00000000.                                       
23 - Base 0xf5000000 , Size = 0x00000000.                                       
25 - Base 0xc8010000 , Size = 0x00000000.                                       
  o 2 Giga ports supported                                                      
  o SKB recycle supported (Enabled)                                             
  o NETA acceleration mode 1                                                    
  o RX Queue support: 8 Queues * 128 Descriptors                                
  o TX Queue support: 8 Queues * 532 Descriptors                                
  o GSO supported                                                               
  o GRO supported                                                               
  o Receive checksum offload supported                                          
  o Transmit checksum offload supported                                         
  o Driver ERROR statistics enabled                                             
  o Switch support enabled                                                      
                                                                                
  o Loading Switch QuarterDeck driver                                           
    o Device ID     : 0x176                                                     
    o No. of Ports  : 7                                                         
    o CPU Port      : 5                                                         
    o Disable disconnected Switch Port #4 and force link down                   
    o Setting Switch Port #5 connected to GMAC port for 1000 Full with FC       
    o Disable disconnected Switch Port #6 and force link down                   
  o Loading network interface(s)                                                
                                                                                
  o Port 1 is connected to Linux netdevice                                      
      o Using default netconfig string from Kconfig for port 1                  
        net_config_str[1]: 0                                                    
  o Working in External Switch mode                                             
Port 1: Link-up, Full-duplex, Speed-100Mbps.                                    
        giga p=1: mtu=1500, mac=d002be64                                        
    o eth0, ifindex = 2, GbE port = 1                                           
                                                                                
e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI                           
e100: Copyright(c) 1999-2006 Intel Corporation                                  
e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI                
e1000: Copyright (c) 1999-2006 Intel Corporation.                               
e1000e: Intel(R) PRO/1000 Network Driver - 1.5.1-k                              
e1000e: Copyright(c) 1999 - 2011 Intel Corporation.                             
sky2: driver version 1.30                                                       
ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver                      
ehci_marvell ehci_marvell.0: Marvell Orion EHCI                                 
ehci_marvell ehci_marvell.0: new USB bus registered, assigned bus number 1      
ehci_marvell ehci_marvell.0: irq 45, io base 0xfbb50100                         
ehci_marvell ehci_marvell.0: USB 2.0 started, EHCI 1.00                         
hub 1-0:1.0: USB hub found                                                      
hub 1-0:1.0: 1 port detected                                                    
ata1: SATA link down (SStatus 0 SControl F300)                                  
ehci_marvell ehci_marvell.1: Marvell Orion EHCI                                 
ehci_marvell ehci_marvell.1: new USB bus registered, assigned bus number 2      
ehci_marvell ehci_marvell.1: irq 46, io base 0xfbb51100                         
ehci_marvell ehci_marvell.1: USB 2.0 started, EHCI 1.00                         
hub 2-0:1.0: USB hub found                                                      
hub 2-0:1.0: 1 port detected                                                    
usbcore: registered new interface driver usblp                                  
Initializing USB Mass Storage driver...                                         
usbcore: registered new interface driver usb-storage                            
USB Mass Storage support registered.                                            
usbcore: registered new interface driver ums-datafab                            
usbcore: registered new interface driver ums-freecom                            
usbcore: registered new interface driver ums-jumpshot                           
usbcore: registered new interface driver ums-sddr09                             
usbcore: registered new interface driver ums-sddr55                             
mousedev: PS/2 mouse device common for all mice                                 
rtc-mv rtc-mv: rtc core: registered rtc-mv as rtc0                              
i2c /dev entries driver                                                         
Linux telephony interface: v1.00                                                
md: linear personality registered for level -1                                  
md: raid0 personality registered for level 0                                    
md: raid1 personality registered for level 1                                    
md: raid10 personality registered for level 10                                  
md: raid6 personality registered for level 6                                    
md: raid5 personality registered for level 5                                    
md: raid4 personality registered for level 4                                    
cpuidle: using governor ladder                                                  
cpuidle: using governor menu                                                    
mmc0: mvsdio driver initialized, lacking card detect (fall back to polling)     
usbcore: registered new interface driver usbhid                                 
usbhid: USB HID core driver                                                     
usb 1-1: new full-speed USB device number 2 using ehci_marvell                  
cs42l51-codec 0-004a: failed to read I2C                                        
ata2: SATA link down (SStatus 0 SControl F300)                                  
ALSA device list:                                                               
  No soundcards found.                                                          
oprofile: no performance counters                                               
oprofile: using timer interrupt.                                                
TCP cubic registered                                                            
NET: Registered protocol family 10                                              
IPv6 over IPv4 tunneling driver                                                 
NET: Registered protocol family 17                                              
8021q: 802.1Q VLAN Support v1.8                                                 
VFP support v0.3: implementor 56 architecture 2 part 20 variant 9 rev 6         
rtc-mv rtc-mv: setting system clock to 2004-06-08 05:57:51 UTC (1086674271)     
Freeing init memory: 9456K                                                      
init_actia                                                                      
usb 1-1: new high-speed USB device number 3 using ehci_marvell                  
Starting mdev...                                                                
Initializing random number generator... done.                                   
Starting network...                                                             
Starting dropbear sshd: generating rsa key... generating dsa key... OK          
Starting NFS statd: touch: /var/lock/subsys/nfslock: No such file or directory  
done                                                                            
Starting NFS services: done                                                     
Starting NFS daemon: rpc.nfsd: Unable to access /proc/fs/nfsd errno 2 (No such f
ile or directory).                                                              
Please try, as root, 'mount -t nfsd nfsd /proc/fs/nfsd' and then restart rpc.nfs
d to correct the problem                                                        
done                                                                            
Starting NFS mountd: Cannot register service: RPC: Unable to receive; errno = Co
nnection refused                                                                
done                                                                            
touch: /var/lock/subsys/nfs: No such file or directory                          
system_actia                                                                    
INIT SODIELEC                                                                   
nfsroot=                                                                        
UBI: attaching mtd4 to ubi0                                                     
UBI: physical eraseblock size:   524288 bytes (512 KiB)                         
UBI: logical eraseblock size:    516096 bytes                                   
UBI: smallest flash I/O unit:    4096                                           
UBI: VID header offset:          4096 (aligned 4096)                            
UBI: data offset:                8192                                           
UBI: max. sequence number:       893                                            
UBI: attached mtd4 to ubi0                                                      
UBI: MTD device name:            "nand-config"                                  
UBI: MTD device size:            64 MiB                                         
UBI: number of good PEBs:        128                                            
UBI: number of bad PEBs:         0                                              
UBI: number of corrupted PEBs:   0                                              
UBI: max. allowed volumes:       128                                            
UBI: wear-leveling threshold:    4096                                           
UBI: number of internal volumes: 1                                              
UBI: number of user volumes:     1                                              
UBI: available PEBs:             105                                            
UBI: total number of reserved PEBs: 23                                          
UBI: number of PEBs reserved for bad PEB handling: 2                            
UBI: max/mean erase counter: 8/6                                                
UBI: image sequence number:  590045203                                          
UBI: background thread "ubi_bgt0d" started, PID 673                             
UBI device number 0, total 128 LEBs (66060288 byUBI: attaching mtd5 to ubi1     
tes, 63.0 MiB), UBI: physical eraseblock size:   524288 bytes (512 KiB)         
available 105 LEUBI: logical eraseblock size:    516096 bytes                   
Bs (54190080 bytUBI: smallest flash I/O unit:    4096                           
es, 51.7 MiB), LUBI: VID header offset:          4096 (aligned 4096)            
EB size 516096 bUBI: data offset:                8192                           
ytes (504.0 KiB)                                                                
UBI: max. sequence number:       936                                            
UBI: attached mtd5 to ubi1                                                      
UBI: MTD device name:            "nand-jdb"                                     
UBI: MTD device size:            64 MiB                                         
UBI: number of good PEBs:        128                                            
UBI: number of bad PEBs:         0                                              
UBI: number of corrupted PEBs:   0                                              
UBI: max. allowed volumes:       128                                            
UBI: wear-leveling threshold:    4096                                           
UBI: number of internal volumes: 1                                              
UBI: number of user volumes:     1                                              
UBI: available PEBs:             105                                            
UBI: total number of reserved PEBs: 23                                          
UBI: number of PEBs reserved for bad PEB handling: 2                            
UBI: max/mean erase counter: 8/7                                                
UBI: image sequence number:  1893155953                                         
UBI: background thread "ubi_bgt1d" started, PID 677                             
UBI device number 1, total 128 LEBs (66060288 byUBI error: ubi_create_volume: vo
lume "config" exists (ID 0)                                                     
tes, 63.0 MiB), UBI error: ubi_create_volume: cannot create volume 1, error -17 
available 105 LEBs (54190080 bytes, 51.7 MiB), LEB size 516096 bUBI error: ubi_c
reate_volume: volume "jdb" exists (ID 0)                                        
ytes (504.0 KiB)UBI error: ubi_create_volume: cannot create volume 1, error -17 
                                                                                
ubimkvol: error!: cannot UBI create volume                                      
          error 17 (File exists)                                                
ubimkvol: error!: cannot UBI create volume                                      
          error 17 (File exists)                                                
Mount file system config                                                        
UBIFS: mounted UBI device 0, volume 0, name "config"                            
UBIFS: file system size:   4644864 bytes (4536 KiB, 4 MiB, 9 LEBs)              
UBIFS: journal size:       3612673 bytes (3528 KiB, 3 MiB, 5 LEBs)              
UBIFS: media format:       w4/r0 (latest is w4/r0)                              
UBIFS: default compressor: lzo                                                  
UBIFS: reserved for root:  219388 bytes (214 KiB)                               
Mount file system jdb                                                           
UBIFS: mounted UBI device 1, volume 0, name "jdb"                               
UBIFS: file system size:   4644864 bytes (4536 KiB, 4 MiB, 9 LEBs)              
UBIFS: journal size:       3612673 bytes (3528 KiB, 3 MiB, 5 LEBs)              
UBIFS: media format:       w4/r0 (latest is w4/r0)                              
UBIFS: default compressor: lzo                                                  
UBIFS: reserved for root:  219388 bytes (214 KiB)                               
mkdir: can't create directory '/tmp/bdd_exploit/': File exists                  
Mount debugfs for ath10k                                                        
Starting vsftpd: OK                                                             
SERVICES= update principal lighttpd                                             
Starting update Debut processus update...                                       
with pid 727                                                                    
Starting principal Debut processus Principal...                                 
PREMIER DEMARRAGE                                                               
Creation semaphore SEMAPHORE_SYNCHRO_PRNCPL_MNTR ok : 0                         
Init semaphore SEMAPHORE_SYNCHRO_PRNCPL_MNTR ok                                 
Creation semaphore SEMAPHORE_BDD_CONFIG_EQPT ok : 32769                         
Init semaphore SEMAPHORE_BDD_CONFIG_EQPT ok                                     
Creation semaphore SEMAPHORE_BDD_EXPLOIT ok : 65538                             
Init semaphore SEMAPHORE_BDD_EXPLOIT ok                                         
Creation semaphore SEMAPHORE_BDD_PASSWORD ok : 98307                            
Init semaphore SEMAPHORE_BDD_PASSWORD ok                                        
Creation semaphore SEMAPHORE_BDD_JDB ok : 131076                                
Init semaphore SEMAPHORE_BDD_JDB ok                                             
Creation semaphore SEMAPHORE_BDD_CONSOLE_HTTP ok : 163845                       
Init semaphore SEMAPHORE_BDD_CONSOLE_HTTP ok                                    
Creation semaphore SEMAPHORE_BDD_FTP_CONFIG ok : 196614                         
Init semaphore SEMAPHORE_BDD_FTP_CONFIG ok                                      
Creation semaphore SEMAPHORE_BDD_DEBUGLOG ok : 229383                           
Init semaphore SEMAPHORE_BDD_DEBUGLOG ok                                        
Creation semaphore SEMAPHORE_BDD_DEBUGINI ok : 262152                           
Init semaphore SEMAPHORE_BDD_DEBUGINI ok                                        
Creation semaphore SEMAPHORE_BDD_CIP_MONITOR ok : 294921                        
Init semaphore SEMAPHORE_BDD_CIP_MONITOR ok                                     
Creation semaphore SEMAPHORE_BDD_CIP_SNMPD ok : 327690                          
Init semaphore SEMAPHORE_BDD_CIP_SNMPD ok                                       
Creation semaphore SEMAPHORE_BDD_CIP_FIFOTRAP ok : 360459                       
Init semaphore SEMAPHORE_BDD_CIP_FIFOTRAP ok                                    
Creation semaphore SEMAPHORE_BDD_CIP_STATUSTRAP ok : 393228                     
Init semaphore SEMAPHORE_BDD_CIP_STATUSTRAP ok                                  
Creation semaphore SEMAPHORE_BDD_CIP_FIFOJDB ok : 425997                        
Init semaphore SEMAPHORE_BDD_CIP_FIFOJDB ok                                     
Creation semaphore SEMAPHORE_BDD_CIP_JDB ok : 458766                            
Init semaphore SEMAPHORE_BDD_CIP_JDB ok                                         
Creation semaphore SEMAPHORE_BDD_STATUT_TRAP ok : 491535                        
Init semaphore SEMAPHORE_BDD_STATUT_TRAP ok                                     
Creation semaphore SEMAPHORE_BDD_SYSTEMEVENT ok : 524304                        
Init semaphore SEMAPHORE_BDD_SYSTEMEVENT ok                                     
Creation semaphore SEMAPHORE_BDD_ENVIRONMT ok : 557073                          
Init semaphore SEMAPHORE_BDD_ENVIRONMT ok                                       
Creation semaphore SEMAPHORE_BDD_LIST_FREQ ok : 589842                          
Init semaphore SEMAPHORE_BDD_LIST_FREQ ok                                       
Uninstall_Monitor                                                               
killall: monitor: no process killed                                             
Uninstall_Jdb                                                                   
killall: jdb: no process killed                                                 
Fri Jan  1 00:00:00 UTC 2010                                                    
                                                                                
InitBDD_Environmt ...                                                           
************************************************                                
* InitBDD_Environmt:                                                            
*                       env.ini (STATUT=1 CHK=751)                              
*                       env.sav (STATUT=1 CHK=751)                              
************************************************                                
u16GetCountryID: 250                                                            
                                                                                
InitBDD_StatutJdb ...                                                           
************************************************                                
* InitBDD_StatutJdb: RESULTAT TEST STATUTJDB                                    
*                       BASE(STATUT=1 CHK=2064)                                 
*                       BACKUP(STATUT=1 CHK=2064)                               
************************************************                                
InitBDD_StatutJdb: nb_evt_lus=100 dans /mnt/flash-jdb/jdbpart3.log              
with pid 732                                                                    
Starting lighttpd InitBDD_StatutJdb: nb_evt_lus=100 dans /mnt/flash-jdb/jdbpart4
.log                                                                            
InitBDD_StatutJdb: nb_evt_lus=100 dans /mnt/flash-jdb/jdbpart5.log              
InitBDD_StatutJdb: nb_evt_lus=100 dans /mnt/flash-jdb/jdbpart6.log              
InitBDD_StatutJdb: nb_evt_lus=100 dans /mnt/flash-jdb/jdbpart7.log              
InitBDD_StatutJdb: nb_evt_lus=100 dans /mnt/flash-jdb/jdbpart8.log              
InitBDD_StatutJdb: nb_evt_lus=100 dans /mnt/flash-jdb/jdbpart9.log              
InitBDD_StatutJdb: nb_evt_lus=100 dans /mnt/flash-jdb/jdbpart0.log              
InitBDD_StatutJdb: nb_evt_lus=100 dans /mnt/flash-jdb/jdbpart1.log              
InitBDD_StatutJdb: Lecture dernier fichier jdbpart=1 / 10                       
InitBDD_StatutJdb: Lecture dernier fichier jdbcur=1 / 10                        
InitBDD_StatutJdb: nb_evt_lus=10 dans /mnt/flash-jdb/jdbpart2.log               
************************************************                                
* InitBDD_StatutJdb: RESULTAT TEST JDB => OK                                    
************************************************                                
InitBDD_StatutJdb: Pour information nbevt_jdbpart_encours=10 , nb_total_evt=910 
                                                                                
ExecuteStartConfig ...                                                          
************************************************                                
* ExecuteStartConfig: RESULTAT CONFIG idx=IDXCFG_ADMIN                          
*                       BASE(STATUT=1 CHK=42900)                                
*                       BACKUP(STATUT=1 CHK=42900)                              
************************************************                                
************************************************                                
* ExecuteStartConfig: RESULTAT CONFIG idx=IDXCFG_CONSTRUCTEUR                   
*                       BASE(STATUT=1 CHK=14799)                                
*                       BACKUP(STATUT=1 CHK=14799)                              
************************************************                                
************************************************                                
* ExecuteStartConfig: RESULTAT CONFIG idx=IDXCFG_SNMP                           
*                       BASE(STATUT=1 CHK=38147)                                
*                       BACKUP(STATUT=1 CHK=38147)                              
************************************************                                
************************************************                                
* ExecuteStartConfig: RESULTAT CONFIG idx=IDXCFG_GENERAL                        
*                       BASE(STATUT=1 CHK=52297)                                
*                       BACKUP(STATUT=1 CHK=52297)                              
************************************************                                
************************************************                                
* ExecuteStartConfig: RESULTAT CONFIG idx=IDXCFG_WIFI                           
*                       BASE(STATUT=1 CHK=64909)                                
*                       BACKUP(STATUT=1 CHK=64909)                              
************************************************                                
************************************************                                
* ExecuteStartConfig: RESULTAT CONFIG idx=IDXCFG_ROUTING                        
*                       BASE(STATUT=1 CHK=32731)                                
*                       BACKUP(STATUT=1 CHK=32731)                              
************************************************                                
************************************************                                
* ExecuteStartConfig: RESULTAT CONFIG idx=IDXCFG_NAT                            
*                       BASE(STATUT=1 CHK=15102)                                
*                       BACKUP(STATUT=1 CHK=15102)                              
************************************************                                
************************************************                                
* ExecuteStartConfig: RESULTAT CONFIG idx=IDXCFG_MULTICAST                      
*                       BASE(STATUT=1 CHK=37564)                                
*             Install_ZoneTime                                                  
TIME ZONE = UTC                                                                 
Fri Jan  1 00:00:00 UTC 2010                                                    
Install_Http                                                                    
u8CreationFichierIndexHtml OK                                                   
Install_General                                                                 
Install_Systemlog                                                               
Install_RadioModem                                                              
pool #1: pkt_size=1536, buf_size=1632 - 2048 of 2048 buffers added              
Port 0: Link-down                                                               
eth0: link up                                                                   
Port 1: Link-up, Full-duplex, Speed-100Mbps.                                    
Port 2: Link-down                                                               
Port 3: Link-down                                                               
Port -1: Link-down                                                              
eth0: started                                                                   
**************************************************************************      
***************************MODE_NETWLoading modules backported from Linux versio
n v3.15-rc1-0-gc9eaa44                                                          
ORK_BRIDGE******Backport generated by backports.git v3.15-rc1-1-0-g2a25483      
**********************                                                          
**************************************************************************      
cfg80211: Calling CRDA to update world regulatory domain                        
cfg80211: World regulatory domain updated:                                      
cfg80211:  DFS Master region: unset                                             
cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (
dfs_cac_time)                                                                   
cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A) 
cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A) 
cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm), (N/A) 
cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz), (300 mBi, 2000 mBm), (N/A) 
cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (300 mBi, 2000 mBm), (N/A) 
cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)    
ath10k_pci 0000:00:00.0: BAR 0: assigned [mem 0xe0000000-0xe01fffff 64bit]      
ath10k_pci 0000:00:00.0: BAR 0: set to [mem 0xe0000000-0xe01fffff 64bit] (PCI ad
dress [0xe0000000-0xe01fffff])                                                  
ath10k: pci irq legacy irq_mode 0 reset_mode 0                                  
                                                                                
Welcome to Wi-Links                                                             
Wi-Links login: ath10k: qca988x hw2.0 (0x4100016c, 0x043202ff) fw 10.1.467.2-1 a
pi 2 htt 2.1                                                                    
cfg80211: Calling CRDA for country: FR                                          
cfg80211: Regulatory domain changed to country: FR                              
cfg80211:  DFS Master region: ETSI                                              
cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (
dfs_cac_time)                                                                   
cfg80211:   (2402000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A) 
cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz), (300 mBi, 2000 mBm), (N/A) 
cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz), (300 mBi, 2000 mBm), (0 s) 
cfg80211:   (5490000 KHz - 5710000 KHz @ 80000 KHz), (300 mBi, 2700 mBm), (0 s) 
cfg80211:   (57240000 KHz - 65880000 KHz @ 2160000 KHz), (300 mBi, 4000 mBm), (N
/A)                                                                             
ADDRCONF(NETDEV_UP): wlan0: link is not ready                                   
ath10k: peer-unmap-event: unknown peer id 2                                     
Install_Wifi                                                                    
WlanN_Get_ListFrequency                                                         
Install_FrequenceWifi                                                           
Install_TxPowerWifi                                                             
ADDRCONF(NETDEV_UP): wlan0: link is not ready                                   
Install_TxPowerWifi                                                             
Install_AdvWifi                                                                 
ath10k: peer-unmap-event: unknown peer id 2                                     
ADDRCONF(NETDEV_UP): wlan0: link is not ready                                   
Install_TxPowerWifi                                                             
ifconfig: SIOCSIFFLAGS: Cannot assign requested address                         
eth0: stopped                                                                   
Install_NetworkBridge                                                           
Install_NetworkBridge: Zero IP the interfaces (shut down)                       
ath10k: peer-unmap-event: unknown peer id 2                                     
Install_NetworkBridge: Zero IP the interfaces (up)                              
Port 0: Link-down                                                               
eth0: link up                                                                   
Port 1: Link-up, Full-duplex, Speed-100Mbps.                                    
Port 2: Link-down                                                               
Port 3: Link-down                                                               
Port -1: Link-down                                                              
eth0: started                                                                   
ADDRCONF(NETDEV_UP): wlan0: link is not ready                                   
Install_NetworkBridge: Create the bridge interface                              
Install_NetworkBridge: Add interface eth0 to the bridge                         
mv_eth_tool_get_settings is not supported on eth0                               
device eth0 entered promiscuous mode                                            
Install_NetworkBridge: Add interface wlan0 to the bridge                        
device wlan0 entered promiscuous mode                                           
Install_TxPowerWifi                                                             
Install_NetworkBridge: setup IP static                                          
br0: port 1(eth0) entering forwarding state                                     
br0: port 1(eth0) entering forwarding state                                     
MODE_IP_STATIQUE: ifconfig br0 192.93.121.63 netmask 255.255.255.0 down         
Install_MulticastBridge                                                         
Install_RouteForMulticast                                                       
Install_Hostname                                                                
Install_SecuriteWifi                                                            
cp: can't stat '/mnt/flash-config/certificats/*': No such file or directory     
Install_WpaSupplicant                                                           
Install_RulesForPolicyRouting                                                   
Successfully initialized wpa_supplicant                                         
rfkill: Cannot open RFKILL control device                                       
ip: RTNETLINK answers: Operation not supported                                  
ip: dump terminated                                                             
ExecReconfiguration_Multicast                                                   
Install_Time                                                                    
Install_Monitor                                                                 
Install_Snmp                                                                    
Debut processus Monitor...                                                      
Monitor: Lecture bdd cip ...                                                    
Monitor: Lecture bdd config ...                                                 
Monitor: Lecture bdd exploit ...                                                
Monitor: Lecture bdd evenement (exp) ...                                        
loc_s32_pid (snmpd) = -1                                                        
Install_Snmp: snmpd -C -c /etc/snmp/snmpd.conf                                  
Install_Jdb                                                                     
sh: snmpd: not found                                                            
Debut processus jdb...                                                          
Jdb: Lecture bdd cip ...                                                        
Jdb: Lecture bdd JDB ...                                                        
Jdb: Pour information rd=3 / wr=2 / nbevt_jdbpart_encours=10 / nb_total_evt=910 
Initialisation terminee                                                         
wlan0: CTRL-EVENT-SCAN-STARTED                                                  
Debut processus gestconf_sftp...                                                
wlan0: SME: Tryiwlan0: authenticate with 00:15:61:10:51:de                      
ng to authenticate with 00:15:61:10:51:de (SSID='actia' freq=2457 MHz)          
wlan0: send auth to 00:15:61:10:51:de (try 1/3)                                 
wlan0: authenticated                                                            
wlan0: Trying to associate with 00:15:61:10:51:de (SSID='actia' freq=2457 MHz)  
wlan0: associate with 00:15:61:10:51:de (try 1/3)                               
wlan0: RX AssocResp from 00:15:61:10:51:de (capab=0x421 status=0 aid=1)         
wlan0: associated                                                               
ath10k: firmware crashed!                                                       
ath10k: hardware name qca988x hw2.0 version 0x4100016c                          
ath10k: firmware version: 10.1.467.2-1                                          
ath10k: target register Dump Location: 0x00401930                               
ath10k: target Register Dump                                                    
ath10k: [00]: 0x4100016C 0x00000000 0x009A123A 0x00000000                       
ath10k: [04]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [08]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [12]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [16]: 0x00000000 0x00000000 0x00000000 0x009A123A                       
ath10k: [20]: 0x00000000 0x00401930 0x00000000 0x00000000                       
ath10k: [24]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [28]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [32]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [36]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [40]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [44]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [48]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [52]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [56]: 0x00000000 0x00000000 0x00000000 0x00000000                       
br0: received packet on eth0 with own address as source address                 
ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready                              
br0: port 2(wlan0) entering forwarding state                                    
br0: port 2(wlan0) entering forwarding state                                    
wlan0: Associated with 00:15:61:10:51:de                                        
ath10k: failed to put down monitor vdev 1: -11                                  
ath10k: failed to to request monitor vdev 1 stop: -11                           
ath10k: failed to synchronise monitor vdev 1: -110                              
ath10k: failed to stop monitor vdev: -110                                       
ath10k: failed to request wmi monitor vdev 1 removal: -11                       
ath10k: failed to delete monitor vdev: -11                                      
ieee80211 phy0: Hardware restart was requested                                  
ath10k: failed to request monitor vdev 2 creation: -108                         
ath10k: failed to create monitor vdev: -108                                     
ath10k: failed to start monitor (promisc): -108                                 
wlan0: CTRL-EVENT-CONNECTED - Connection to 00:15:61:10:51:de completed [id=0 id
_str=]                                                                          
ath10k: device has crashed during init                                          
ath10k: failed to wait for target to init: -70                                  
ath10k: failed to power up target using warm reset: -70                         
ath10k: trying cold reset                                                       
------------[ cut here ]------------                                            
WARNING: at /home/alberix2/Desktop/Wilinks_ath10k/ACCESS_POINT_APPLI/Source/Driv
er_ath10k/backports-3.15-rc1-1/drivers/net/wireless/ath/ath10k/mac.c:881 ath10k_
vdev_stop+0x80/0xc4 [ath10k_core]()                                             
Modules linked in: arc4 ath10k_pci(O) ath10k_core(O) ath(O) mac80211(O) cfg80211
(O) compat(O) ubifs ubi                                                         
Backtrace:                                                                      
[<c0011938>] (dump_backtrace+0x0/0x118) from [<c050205c>] (dump_stack+0x18/0x20)
 r6:bf19075e r5:00000371 r4:00000000 r3:c10b87ac                                
[<c0502044>] (dump_stack+0x0/0x20) from [<c0066c38>] (warn_slowpath_common+0x54/
0x70)                                                                           
[<c0066be4>] (warn_slowpath_common+0x0/0x70) from [<c0066c78>] (warn_slowpath_nu
ll+0x24/0x2c)                                                                   
 r8:d29b8a3c r7:c0ffd440 r6:d29b8a3c r5:c0ffd440 r4:00000000                    
r3:00000009                                                                     
[<c0066c54>] (warn_slowpath_null+0x0/0x2c) from [<bf180e1c>] (ath10k_vdev_stop+0
x80/0xc4 [ath10k_core])                                                         
[<bf180d9c>] (ath10k_vdev_stop+0x0/0xc4 [ath10k_core]) from [<bf181e90>] (ath10k
_sta_state+0x1a4/0x3c8 [ath10k_core])                                           
 r6:00000000 r5:c0ffd440 r4:d29b8940 r3:bf196cf0                                
[<bf181cec>] (ath10k_sta_state+0x0/0x3c8 [ath10k_core]) from [<bf0d87fc>] (__sta
_info_destroy_part2+0x17c/0x280 [mac80211])                                     
[<bf0d8680>] (__sta_info_destroy_part2+0x0/0x280 [mac80211]) from [<bf0d8a20>] (
__sta_info_flush+0x120/0x150 [mac80211])                                        
[<bf0d8900>] (__sta_info_flush+0x0/0x150 [mac80211]) from [<bf1133a0>] (ieee8021
1_set_disassoc+0x128/0x240 [mac80211])                                          
[<bf113278>] (ieee80211_set_disassoc+0x0/0x240 [mac80211]) from [<bf113618>] (ie
ee80211_sta_connection_lost.isra.14+0x30/0x48 [mac80211])                       
[<bf1135e8>] (ieee80211_sta_connection_lost.isra.14+0x0/0x48 [mac80211]) from [<
bf115f38>] (ieee80211_sta_work+0xd70/0xdd0 [mac80211])                          
 r5:00040000 r4:d29b83c0                                                        
[<bf1151c8>] (ieee80211_sta_work+0x0/0xdd0 [mac80211]) from [<bf0e4178>] (ieee80
211_iface_work+0x278/0x2a4 [mac80211])                                          
[<bf0e3f00>] (ieee80211_iface_work+0x0/0x2a4 [mac80211]) from [<c007e560>] (proc
ess_one_work+0x234/0x3e0)                                                       
[<c007e32c>] (process_one_work+0x0/0x3e0) from [<c007f0bc>] (worker_thread+0x1b0
/0x2b4)                                                                         
[<c007ef0c>] (worker_thread+0x0/0x2b4) from [<c0082b74>] (kthread+0x90/0x98)    
[<c0082ae4>] (kthread+0x0/0x98) from [<c0069a10>] (do_exit+0x0/0x604)           
 r6:c0069a10 r5:c0082ae4 r4:d0057ed8                                            
---[ end trace fdbfc9954be1d027 ]---                                            
wlan0: CTRL-EVENT-DISCONNECTED bssid=00:15:61:10:51:de reason=4 locally_generate
d=1                                                                             
ath10k: device successfully recovered                                           
cfg80211: Calling CRDA for country: FR                                          
CalculEvents_STAbr0: port 2(wlan0) entering forwarding state                    
 MAC AP NULLE                                                                   
cfg80211: Calling CRDA to update world regulatory domain                        
cfg80211: World regulatory domain updated:                                      
cfg80211:  DFS Master region: unset                                             
cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (
dfs_cac_time)                                                                   
cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A) 
cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A) 
cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm), (N/A) 
cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz), (300 mBi, 2000 mBm), (N/A) 
cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (300 mBi, 2000 mBm), (N/A) 
cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)    
wlan0: CTRL-EVENT-SCAN-STARTED                                                  
wlan0: SME: Tryiwlan0: authenticate with 00:15:61:10:51:de                      
ng to authenticate with 00:15:61:10:51:de (SSID='actia' freq=2457 MHz)          
wlan0: send auth to 00:15:61:10:51:de (try 1/3)                                 
wlan0: authenticated                                                            
wlan0: Trying to associate with 00:15:61:10:51:de (SSID='actia' freq=2457 MHz)  
wlan0: associate with 00:15:61:10:51:de (try 1/3)                               
wlan0: RX AssocResp from 00:15:61:10:51:de (capab=0x421 status=0 aid=1)         
br0: received packet on eth0 with own address as source address                 
wlan0: associated                                                               
ath10k: firmware crashed!                                                       
ath10k: hardware name qca988x hw2.0 version 0x4100016c                          
ath10k: firmware version: 10.1.467.2-1                                          
ath10k: target register Dump Location: 0x00401930                               
ath10k: target Register Dump                                                    
ath10k: [00]: 0x4100016C 0x00000000 0x009A123A 0x00000000                       
ath10k: [04]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [08]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [12]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [16]: 0x00000000 0x00000000 0x00000000 0x009A123A                       
ath10k: [20]: 0x00000000 0x00401930 0x00000000 0x00000000                       
ath10k: [24]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [28]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [32]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [36]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [40]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [44]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [48]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [52]: 0x00000000 0x00000000 0x00000000 0x00000000                       
ath10k: [56]: 0x00000000 0x00000000 0x00000000 0x00000000                       
br0: port 2(wlan0) entering forwarding state                                    
br0: port 2(wlan0) entering forwarding state                                    
cfg80211: Calling CRDA for country: FR                                          
wlan0: Associated with 00:15:61:10:51:de                                        
ath10k: failed to put down monitor vdev 1: -11                                  
ath10k: failed to to request monitor vdev 1 stop: -11                           
ath10k: failed to synchronise monitor vdev 1: -110                              
ath10k: failed to stop monitor vdev: -110                                       
ath10k: failed to request wmi monitor vdev 1 removal: -11                       
ath10k: failed to delete monitor vdev: -11                                      
ieee80211 phy0: Hardware restart was requested                                  
wlan0: CTRL-EVENath10k: failed to delete peer 00:15:61:10:51:de for vdev 0: -108
T-CONNECTED - Coath10k: failed to stop WMI vdev 0: -108                         
nnection to 00:1------------[ cut here ]------------                            
5:61:10:51:de coWARNING: at /home/alberix2/Desktop/Wilinks_ath10k/ACCESS_POINT_A
PPLI/Source/Driver_ath10k/backports-3.15-rc1-1/net/mac80211/sta_info.c:901 __sta
_info_destroy_part2+0x1f4/0x280 [mac80211]()                                    
mpleted [id=0 idModules linked in:_str=]                                        
 arc4 ath10k_pci(O) ath10k_core(O) ath(O) mac80211(O) cfg80211(O) compat(O) ubif
s ubi                                                                           
Backtrace:                                                                      
[<c0011938>] (dump_backtrace+0x0/0x118) from [<c050205c>] (dump_stack+0x18/0x20)
 r6:bf12f79e r5:00000385 r4:00000000 r3:c10b87ac                                
[<c0502044>] (dump_stack+0x0/0x20) from [<c0066c38>] (warn_slowpath_common+0x54/
0x70)                                                                           
[<c0066be4>] (warn_slowpath_common+0x0/0x70) from [<c0066c78>] (warn_slowpath_nu
ll+0x24/0x2c)                                                                   
 r8:d29b83c0 r7:c0ffcc80 r6:d29b83c0 r5:bf13b0f0 r4:c0e47800                    
r3:00000009                                                                     
[<c0066c54>] (warn_slowpath_null+0x0/0x2c) from [<bf0d8874>] (__sta_info_destroy
_part2+0x1f4/0x280 [mac80211])                                                  
[<bf0d8680>] (__sta_info_destroy_part2+0x0/0x280 [mac80211]) from [<bf0d8a20>] (
__sta_info_flush+0x120/0x150 [mac80211])                                        
[<bf0d8900>] (__sta_info_flush+0x0/0x150 [mac80211]) from [<bf1133a0>] (ieee8021
1_set_disassoc+0x128/0x240 [mac80211])                                          
[<bf113278>] (ieee80211_set_disassoc+0x0/0x240 [mac80211]) from [<bf113618>] (ie
ee80211_sta_connection_lost.isra.14+0x30/0x48 [mac80211])                       
[<bf1135e8>] (ieee80211_sta_connection_lost.isra.14+0x0/0x48 [mac80211]) from [<
bf115f38>] (ieee80211_sta_work+0xd70/0xdd0 [mac80211])                          
 r5:00040000 r4:d29b83c0                                                        
[<bf1151c8>] (ieee80211_sta_work+0x0/0xdd0 [mac80211]) from [<bf0e4178>] (ieee80
211_iface_work+0x278/0x2a4 [mac80211])                                          
[<bf0e3f00>] (ieee80211_iface_work+0x0/0x2a4 [mac80211]) from [<c007e560>] (proc
ess_one_work+0x234/0x3e0)                                                       
[<c007e32c>] (process_one_work+0x0/0x3e0) from [<c007f0bc>] (worker_thread+0x1b0
/0x2b4)                                                                         
[<c007ef0c>] (worker_thread+0x0/0x2b4) from [<c0082b74>] (kthread+0x90/0x98)    
[<c0082ae4>] (kthread+0x0/0x98) from [<c0069a10>] (do_exit+0x0/0x604)           
 r6:c0069a10 r5:c0082ae4 r4:d0033ed8                                            
---[ end trace fdbfc9954be1d028 ]---        

[-- Attachment #3: Type: text/plain, Size: 146 bytes --]

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: [PATCH] ath10k: support get/set antenna configurations.
  2014-05-15  4:04               ` Yeoh Chun-Yeow
  2014-05-15  5:47                 ` Avery Pennarun
@ 2014-05-15  7:11                 ` Kalle Valo
  1 sibling, 0 replies; 134+ messages in thread
From: Kalle Valo @ 2014-05-15  7:11 UTC (permalink / raw)
  To: Yeoh Chun-Yeow
  Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, Ben Greear, ath10k,
	Avery Pennarun

Yeoh Chun-Yeow <yeohchunyeow@gmail.com> writes:

> Sorry for all the noise. The patch is indeed working.
>
> I have verified that the number of spatial streams are reduced
> accordingly if you reduce the tx chainmask.

Nice! Thanks for testing this, it always good to hear from other users
(than the original patch author) if a new feature is working or not.

-- 
Kalle Valo

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: ath10k: firmware crash in station mode
  2014-05-15  7:07           ` ath10k: firmware crash in station mode Vu Hai NGUYEN
@ 2014-05-15  7:53             ` Janusz Dziedzic
  2014-05-15 10:57             ` Michal Kazior
  1 sibling, 0 replies; 134+ messages in thread
From: Janusz Dziedzic @ 2014-05-15  7:53 UTC (permalink / raw)
  To: Vu Hai NGUYEN; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k

On 15 May 2014 09:07, Vu Hai NGUYEN <vh.nguyen@actiasodielec.fr> wrote:
> I tried to set up station mode using ath10k and wpa_supplicant.
> If I used the firmware in branch 10.1 version firmware-2.bin_10.1.467.2-1 (which said that support STA mode but not well tested) , it crashed after associating with the access point:
>
> wlan0: SME: Trying to authenticate with 00:15:61:10:51:de (SSID='actia' freq=2457 MHz)
> wlan0: authenticate with 00:15:61:10:51:de
> wlan0: send auth to 00:15:61:10:51:de (try 1/3)
> wlan0: authenticated
> wlan0: Trying to associate with 00:15:61:10:51:de (SSID='actia' freq=2457 MHz)
> wlan0: associate with 00:15:61:10:51:de (try 1/3)
> wlan0: RX AssocResp from 00:15:61:10:51:de (capab=0x421 status=0 aid=1)
> wlan0: associated
> ath10k: firmware crashed!
> ath10k: hardware name qca988x hw2.0 version 0x4100016c
> ath10k: firmware version: 10.1.467.2-1
> ath10k: target register Dump Location: 0x00401930
> ath10k: target Register Dump
> ath10k: [00]: 0x4100016C 0x00000000 0x009A123A 0x00000000
> ath10k: [04]: 0x00000000 0x00000000 0x00000000 0x00000000
> ath10k: [08]: 0x00000000 0x00000000 0x00000000 0x00000000
> ath10k: [12]: 0x00000000 0x00000000 0x00000000 0x00000000
> ath10k: [16]: 0x00000000 0x00000000 0x00000000 0x009A123A
> ath10k: [20]: 0x00000000 0x00401930 0x00000000 0x00000000
> ath10k: [24]: 0x00000000 0x00000000 0x00000000 0x00000000
> ath10k: [28]: 0x00000000 0x00000000 0x00000000 0x00000000
> ath10k: [32]: 0x00000000 0x00000000 0x00000000 0x00000000
> ath10k: [36]: 0x00000000 0x00000000 0x00000000 0x00000000
> ath10k: [40]: 0x00000000 0x00000000 0x00000000 0x00000000
> ath10k: [44]: 0x00000000 0x00000000 0x00000000 0x00000000
> ath10k: [48]: 0x00000000 0x00000000 0x00000000 0x00000000
> ath10k: [52]: 0x00000000 0x00000000 0x00000000 0x00000000
> ath10k: [56]: 0x00000000 0x00000000 0x00000000 0x00000000
> br0: received packet on eth0 with own address as source address
> ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
> br0: port 2(wlan0) entering forwarding state
> br0: port 2(wlan0) entering forwarding state
> wlan0: Associated with 00:15:61:10:51:de
> ath10k: failed to put down monitor vdev 1: -11
> ath10k: failed to to request monitor vdev 1 stop: -11
> ath10k: failed to synchronise monitor vdev 1: -110
> ath10k: failed to stop monitor vdev: -110
> ath10k: failed to request wmi monitor vdev 1 removal: -11
> ath10k: failed to delete monitor vdev: -11
> ieee80211 phy0: Hardware restart was requested
> ath10k: failed to request monitor vdev 2 creation: -108
> ath10k: failed to create monitor vdev: -108
> ath10k: failed to start monitor (promisc): -108
> wlan0: CTRL-EVENT-CONNECTED - Connection to 00:15:61:10:51:de completed [id=0 id_str=]
> ath10k: device has crashed during init
> ath10k: failed to wait for target to init: -70
> ath10k: failed to power up target using warm reset: -70
> ath10k: trying cold reset
>
> Than I tried another version of firmware from branch 999. (which said that support STA mode) but it worse, the firmware crashed before seeing the access point. (can not associate)
> This crashed is because of my system or just only the firmware issue? And is the firmware still continue developping? (There is a debug message of my system in the attached file if any one are interested in)
>
> Btw is there anyone could set a channel (from 52 and more) that employs DFS sucessfully confirm it for me cause I can not do it until now :D
What kind of error you see?

BTW, what is your system configuration, is that PC or some other board
(openwrt ...). What kernel version are you using? Did you change/hack
ath.ko regdb?
If that is PC I would recommend to use ath10k kernel from github.

BR
Janusz

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : ath10k: set channel by command "iw" not from hostapd and DFS support of firmware-2.bin_10.1.467.2-1
  2014-05-14 11:56             ` RE : " Vu Hai NGUYEN
@ 2014-05-15  8:02               ` Matti Laakso
  2014-05-15 10:41                 ` RE : " Vu Hai NGUYEN
  0 siblings, 1 reply; 134+ messages in thread
From: Matti Laakso @ 2014-05-15  8:02 UTC (permalink / raw)
  To: ath10k

> From: vh.nguyen@actiasodielec.fr
> To: malaakso@elisanet.fi; ath10k@lists.infradead.org
> Date: Wed, 14 May 2014 13:56:29 +0200
> Subject: RE : ath10k: set channel by command "iw" not from hostapd and DFS support of firmware-2.bin_10.1.467.2-1
> 
>>>Did you build ath10k with ATH10K_DFS_CERTIFIED enabled?
> 
> Yes I did it, here is my configuration:
> 
> <M>   Atheros 802.11ac wireless cards support                                                           
>   │ │                                 <M>     Atheros ath10k PCI support                                                                     
>   │ │                                   [*]     Atheros ath10k debugging                                                                        
>   │ │                                   [*]     Atheros ath10k debugfs support                                                                  
>   │ │                                   [*]     Atheros ath10k tracing support                                                                  
>   │ │                                   [*]     Atheros DFS support for certified platforms 
> 
> 

How
 old is your hostapd build? Do you have country code, ieee80211d, and 
ieee80211hset in hostapd.conf? I've been running ath10k in AP mode on 
DFS-channels since february (10.1-branch firmware, VHT80).


> NGUYEN Vu Hai
> Acita-Sodielec
> Route de Mayres - B.P. 9
> 12100 St GEORGES DE LUZENCON
> FRANCE
> 
> ________________________________________
> De : ath10k [ath10k-bounces@lists.infradead.org] de la part de Matti Laakso [malaakso@elisanet.fi]
> Date d'envoi : mercredi 14 mai 2014 11:32
> À : ath10k@lists.infradead.org
> Objet : Re: ath10k: set channel by command "iw" not from hostapd and DFS support of firmware-2.bin_10.1.467.2-1
> 
>> I am able to run mode access point by using ath10k and hostapd, but I have to set the channel in the configuration file for hostapd (I desactivated ACS when building hostapd)
>> If I set channel by the command "iw wlan0 set channel 10 HT20"  and remove the line "channel=10" from the configuration file of hostapd, this error appears when I run hostapd:
>>
>> ACS was disabled on your build, rebuild hostapd with CONFIG_ACS=y or set channel
>> wlan0: IEEE 802.11 Configured channel (0) not found from the channel list of current mode (1) IEEE 802.11g
>> wlan0: IEEE 802.11 Hardware does not support configured channel
>> Could not select hw_mode and channel. (-3)
>> wlan0: Unable to setup interface.
>> hostapd_free_hapd_data: Interface wlan0 wasn't started
>>
>> Does it mean that ath10k does not support configured channel ???? The reason I want to do it by command "iw" because it has more options than hostapd (iw wlan0 set freq <control freq> [20|40|80|80+80|160] [<center freq 1>] [<center freq 2>] )
> 
> Removing the channel from hostapd.conf implies channel=0. And it
> obviously is not a valid channel when ACS is disabled. All the options
> that iw has can be set in hostapd.conf as well.
> 
>> I had another problem with setting a cannal that employs DFS (for example 52):
>>
>> wlan0: interface state COUNTRY_UPDATE->DFS
>> wlan0: DFS-CAC-START freq=5260 chan=52 sec_chan=0
>> wlan0: Unable to setup interface.
>> ADDRCONF(NETDEV_UP): wlan0: link is not ready
>>
>> I'm using the firmware-2.bin_10.1.467.2-1 which indicates that supports DFS on the website of ath10k. Is there anyone got the same issue like me?
>>
> 
> Did you build ath10k with ATH10K_DFS_CERTIFIED enabled?
> 
> Matti
> 
> _______________________________________________
> ath10k mailing list
> ath10k@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/ath10k
 		 	   		  
_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : RE : ath10k: set channel by command "iw" not from hostapd and DFS support of firmware-2.bin_10.1.467.2-1
  2014-05-15  8:02               ` Matti Laakso
@ 2014-05-15 10:41                 ` Vu Hai NGUYEN
  2014-05-15 11:11                   ` Janusz Dziedzic
  0 siblings, 1 reply; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-05-15 10:41 UTC (permalink / raw)
  To: Matti Laakso, ath10k; +Cc: Patrick CARNEIRO RODRIGUEZ, janusz.dziedzic

>> Yes I did it, here is my configuration:
>>
>> <M>   Atheros 802.11ac wireless cards support
>>   │ │                                 <M>     Atheros ath10k PCI support
>>   │ │                                   [*]     Atheros ath10k debugging
>>   │ │                                   [*]     Atheros ath10k debugfs support
>>   │ │                                   [*]     Atheros ath10k tracing support
>>   │ │                                   [*]     Atheros DFS support for certified platforms

>How old is your hostapd build? Do you have country code, ieee80211d, and
>ieee80211hset in hostapd.conf? I've been running ath10k in AP mode on
>DFS-channels since february (10.1-branch firmware, VHT80).

I'm using the version 2.1 of hostapd, my hostapd.conf alreay included:

country_code=FR
ieee80211d=1
ieee80211h=1

But I thought that I found the problem might be because I didn't get the dfs_cac_time for DFS. I'm using the regulatory database of cfg80211 and in the file  "regdb.c" (which is generated automatically from the database in net/wireless/db.txt) and I always get the dfs_cac_time = 0. For example the in file "regulatory.h" there is a define of REG_RULE_EXT (start, end, bw, gain, eirp, dfs_cac, reg_flags) and in file "regdb.c" I got this line: REG_RULE_EXT(5250, 5330, 80, 0, 20, 0, NL80211_RRF_DFS | 0) and that means my dfs_cac = 0. I'm stucking in how to pass the value for this parameter. 


 NGUYEN Vu Hai
 Acita-Sodielec
 Route de Mayres - B.P. 9
 12100 St GEORGES DE LUZENCON
 FRANCE


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: ath10k: firmware crash in station mode
  2014-05-15  7:07           ` ath10k: firmware crash in station mode Vu Hai NGUYEN
  2014-05-15  7:53             ` Janusz Dziedzic
@ 2014-05-15 10:57             ` Michal Kazior
  2014-05-15 13:27               ` RE : " Vu Hai NGUYEN
  1 sibling, 1 reply; 134+ messages in thread
From: Michal Kazior @ 2014-05-15 10:57 UTC (permalink / raw)
  To: Vu Hai NGUYEN; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k

On 15 May 2014 09:07, Vu Hai NGUYEN <vh.nguyen@actiasodielec.fr> wrote:
> I tried to set up station mode using ath10k and wpa_supplicant.
> If I used the firmware in branch 10.1 version firmware-2.bin_10.1.467.2-1 (which said that support STA mode but not well tested) , it crashed after associating with the access point:
>
> wlan0: SME: Trying to authenticate with 00:15:61:10:51:de (SSID='actia' freq=2457 MHz)
> wlan0: authenticate with 00:15:61:10:51:de
> wlan0: send auth to 00:15:61:10:51:de (try 1/3)
> wlan0: authenticated
> wlan0: Trying to associate with 00:15:61:10:51:de (SSID='actia' freq=2457 MHz)
> wlan0: associate with 00:15:61:10:51:de (try 1/3)
> wlan0: RX AssocResp from 00:15:61:10:51:de (capab=0x421 status=0 aid=1)
> wlan0: associated
> ath10k: firmware crashed!
> ath10k: hardware name qca988x hw2.0 version 0x4100016c
> ath10k: firmware version: 10.1.467.2-1
> ath10k: target register Dump Location: 0x00401930
> ath10k: target Register Dump
> ath10k: [00]: 0x4100016C 0x00000000 0x009A123A 0x00000000
> ath10k: [04]: 0x00000000 0x00000000 0x00000000 0x00000000
> ath10k: [08]: 0x00000000 0x00000000 0x00000000 0x00000000
> ath10k: [12]: 0x00000000 0x00000000 0x00000000 0x00000000
> ath10k: [16]: 0x00000000 0x00000000 0x00000000 0x009A123A
> ath10k: [20]: 0x00000000 0x00401930 0x00000000 0x00000000
> ath10k: [24]: 0x00000000 0x00000000 0x00000000 0x00000000
> ath10k: [28]: 0x00000000 0x00000000 0x00000000 0x00000000
> ath10k: [32]: 0x00000000 0x00000000 0x00000000 0x00000000
> ath10k: [36]: 0x00000000 0x00000000 0x00000000 0x00000000
> ath10k: [40]: 0x00000000 0x00000000 0x00000000 0x00000000
> ath10k: [44]: 0x00000000 0x00000000 0x00000000 0x00000000
> ath10k: [48]: 0x00000000 0x00000000 0x00000000 0x00000000
> ath10k: [52]: 0x00000000 0x00000000 0x00000000 0x00000000
> ath10k: [56]: 0x00000000 0x00000000 0x00000000 0x00000000
[...]

This is NULL dereference in firmware. I suspect it's an incomplete
driver-firmware setup (i.e. some commands weren't issued or were
invalid).

Can you enable debug logs ( echo 0xffffff3f | sudo tee
/sys/module/ath10k_core/parameters/debug_mask ) before you try to
associate and post logs, please? I'd like to see command sequence sent
to firmware before the crash happens.


> Than I tried another version of firmware from branch 999. (which said that support STA mode) but it worse, the firmware crashed before seeing the access point. (can not associate)

Can you post the crash logs (as noted above) when you try the 999
branch too, please? It seems 999 crashes sooner than 10.1. It might be
helpful to see the different crash points.


> This crashed is because of my system or just only the firmware issue? And is the firmware still continue developping? (There is a debug message of my system in the attached file if any one are interested in)

I have no idea what version of kernel you're using. Perhaps you broke
your source tree when merging/rebasing/cherry-picking/backporting?
What's your git head commit?

I can associate ath10k with both firmware branches without a problem.


> Btw is there anyone could set a channel (from 52 and more) that employs DFS sucessfully confirm it for me cause I can not do it until now :D
> Thank you all of you for the support,

Yes, this works (or at least it should). It might be tricky to get it
right for someone who's not familiar with regulatory shenanigans in
some cases.

Recently there was a bug introduced that broke DFS (see linux-wireless
mailing list; it's in the process of being fixed), but since you
haven't provided any information what your kernel tree is I can't tell
if that's the actual problem or not.


Michał

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : ath10k: set channel by command "iw" not from hostapd and DFS support of firmware-2.bin_10.1.467.2-1
  2014-05-15 10:41                 ` RE : " Vu Hai NGUYEN
@ 2014-05-15 11:11                   ` Janusz Dziedzic
  2014-05-15 13:36                     ` RE : " Vu Hai NGUYEN
  0 siblings, 1 reply; 134+ messages in thread
From: Janusz Dziedzic @ 2014-05-15 11:11 UTC (permalink / raw)
  To: Vu Hai NGUYEN; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k, Matti Laakso

On 15 May 2014 12:41, Vu Hai NGUYEN <vh.nguyen@actiasodielec.fr> wrote:
>>> Yes I did it, here is my configuration:
>>>
>>> <M>   Atheros 802.11ac wireless cards support
>>>   │ │                                 <M>     Atheros ath10k PCI support
>>>   │ │                                   [*]     Atheros ath10k debugging
>>>   │ │                                   [*]     Atheros ath10k debugfs support
>>>   │ │                                   [*]     Atheros ath10k tracing support
>>>   │ │                                   [*]     Atheros DFS support for certified platforms
>
>>How old is your hostapd build? Do you have country code, ieee80211d, and
>>ieee80211hset in hostapd.conf? I've been running ath10k in AP mode on
>>DFS-channels since february (10.1-branch firmware, VHT80).
>
> I'm using the version 2.1 of hostapd, my hostapd.conf alreay included:
>
> country_code=FR
> ieee80211d=1
> ieee80211h=1
>
> But I thought that I found the problem might be because I didn't get the dfs_cac_time for DFS. I'm using the regulatory database of cfg80211 and in the file  "regdb.c" (which is generated automatically from the database in net/wireless/db.txt) and I always get the dfs_cac_time = 0. For example the in file "regulatory.h" there is a define of REG_RULE_EXT (start, end, bw, gain, eirp, dfs_cac, reg_flags) and in file "regdb.c" I got this line: REG_RULE_EXT(5250, 5330, 80, 0, 20, 0, NL80211_RRF_DFS | 0) and that means my dfs_cac = 0. I'm stucking in how to pass the value for this parameter.
>
Nope, CAC time is not required to start CAC (in case cac == 0 kernel
will use default value 60s).
What error you have EBUSY or EINVAL?
What system (PC kernel, wireless ...) configuration?

BR
Janusz

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : ath10k: firmware crash in station mode
  2014-05-15 10:57             ` Michal Kazior
@ 2014-05-15 13:27               ` Vu Hai NGUYEN
  2014-05-19  6:59                 ` Michal Kazior
  2014-05-23 14:55                 ` TR " Vu Hai NGUYEN
  0 siblings, 2 replies; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-05-15 13:27 UTC (permalink / raw)
  To: Michal Kazior; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k

[-- Attachment #1: Type: text/plain, Size: 2267 bytes --]

>This is NULL dereference in firmware. I suspect it's an incomplete
>driver-firmware setup (i.e. some commands weren't issued or were
>invalid).

>Can you enable debug logs ( echo 0xffffff3f | sudo tee /sys/module/ath10k_core/parameters/debug_mask ) before you try to
>associate and post logs, please? I'd like to see command sequence sent
>to firmware before the crash happens.

I enable directly the debug_mask when I load the module "modprobe ath10k_core.ko debug_mask=0x0xffffff3f" (I thought it is the same thing like what you do, right?).
You can found de debug mess in the attached file (debug_10-1.txt). (line 3007: wlan0: associated and then in line 3008: ath10k: firmware crashed!)

>Can you post the crash logs (as noted above) when you try the 999
>branch too, please? It seems 999 crashes sooner than 10.1. It might be
>helpful to see the different crash points.

Yes it crashed sooner. There are no wlan0: associated in the debug message. (attached file: debug_999.txt).

>I have no idea what version of kernel you're using. Perhaps you broke
>your source tree when merging/rebasing/cherry-picking/backporting?
>What's your git head commit?

>I can associate ath10k with both firmware branches without a problem.

Actually I'm compiling ath10k from backports version 3.15 for linux kernel 3.2.36 (provided for my chipset Marvell Armada 370). And I replace the folder /driver/net/wireless/ath from the one of master branch of ath10k (I can not see the information from debug file "fw_stats"  with the version ath10k of backport). I also applied the patch for get/set antennas too. 

>Yes, this works (or at least it should). It might be tricky to get it
>right for someone who's not familiar with regulatory shenanigans in
>some cases.

>Recently there was a bug introduced that broke DFS (see linux-wireless
>mailing list; it's in the process of being fixed), but since you
>haven't provided any information what your kernel tree is I can't tell
>if that's the actual problem or not.

My kernel tree is 3.2.36 (sorry if I don't get what you mean). Please feel free to ask me more information if you need.

NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE




Michał

[-- Attachment #2: debug_10-1.txt --]
[-- Type: text/plain, Size: 121955 bytes --]

ath10k: htt target version 2.1
ath10k: pci tx item 0 paddr 0x12fd4460 len 48 n_items 1
ath10k: wmi pdev set param 30 value 1
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c0e60 len 20 n_items 1
ath10k: wmi pdev set param 10 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a41e60
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fd4260 len 20 n_items 1
ath10k: wmi pdev set param 1 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2daf180
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c0e60 len 20 n_items 1
ath10k: wmi pdev set param 2 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e669c0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fd4260 len 20 n_items 1
ath10k: wmi pdev set param 31 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2daf180
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c0e60 len 20 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e66c00
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac channel [0/32] freq 2412 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [1/32] freq 2417 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [2/32] freq 2422 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [3/32] freq 2427 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [4/32] freq 2432 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [5/32] freq 2437 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [6/32] freq 2442 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [7/32] freq 2447 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [8/32] freq 2452 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [9/32] freq 2457 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [10/32] freq 2462 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [11/32] freq 2467 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [12/32] freq 2472 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [13/32] freq 5180 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [14/32] freq 5200 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [15/32] freq 5220 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [16/32] freq 5240 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [17/32] freq 5260 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [18/32] freq 5280 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [19/32] freq 5300 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [20/32] freq 5320 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [21/32] freq 5500 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [22/32] freq 5520 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [23/32] freq 5540 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [24/32] freq 5560 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [25/32] freq 5580 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [26/32] freq 5600 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [27/32] freq 5620 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [28/32] freq 5640 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [29/32] freq 5660 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [30/32] freq 5680 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [31/32] freq 5700 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12e01860 len 784 n_items 1
ath10k: wmi pdev regdomain rd 37 rd2g 37 rd5g 37 ctl2g 30 ctl5g 30 dfs_region 0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e66cc0
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c0e60 len 36 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2daf180
ath10k: mac vdev create 0 (add interface) type 2 subtype 0
ath10k: WMI vdev create: id 0 type 2 subtype 0 macaddr 04:f0:21:0e:38:be
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009c0e60 len 32 n_items 1
ath10k: wmi vdev id 0x0 set param 31 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2daf180
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12fd4260 len 24 n_items 1
ath10k: vdev param 0 not supported by firmware
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e66d80
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fd4260 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 1 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e66d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c0e60 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 2 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e66e40
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fd4260 len 24 n_items 1
ath10k: wmi vdev id 0x0 set param 1 value -1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e66d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c0e60 len 24 n_items 1
ath10k: wmi vdev id 0x0 set param 2 value -1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e66f00
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fd4260 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e66d80
ath10k: mac vdev 0 cts_prot 0
ath10k: wmi vdev id 0x0 set param 43 value 0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12fd4260 len 24 n_items 1
ath10k: mac vdev 0 slot_time 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e66d80
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: wmi vdev id 0x0 set param 7 value 1
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fd4260 len 24 n_items 1
ath10k: mac vdev 0 preamble 1n
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e51160
ath10k: wmi vdev id 0x0 set param 8 value 1
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12fd4260 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e51160
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: wmi pdev set wmm params
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fd4260 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e51220
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c0e60 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e510a0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fd4260 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e51220
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c0e60 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e512e0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fd4260 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e51220
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c0e60 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e513a0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fd4260 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e51220
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c0e60 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e51460
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fd4260 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e51220
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c0e60 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e51520
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fd4260 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e51220
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c0e60 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e515e0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac config channel 2412MHz flags 0x1a0 radar 0
ath10k: mac config power 20
ath10k: wmi pdev set param 3 value 40
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009c0e60 len 20 n_items 1
ath10k: wmi pdev set param 4 value 40
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e516a0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12fd4260 len 20 n_items 1
ath10k: mac vdev 0 psmode disable
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e51220
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: wmi set powersave id 0x0 mode 0
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fd4260 len 20 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e51760
ADDRCONF(NETDEV_UP): wlan0: link is not ready
mv_eth_tool_get_settings is not supported on eth0
device eth0 entered promiscuous mode
device wlan0 entered promiscuous mode
ath10k: mac monitor refs: promisc 1 monitor 0 cac 0
ath10k: WMI vdev create: id 1 type 4 subtype 0 macaddr 04:f0:21:0e:38:be
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12fd4860 len 32 n_items 1
ath10k: mac monitor vdev 1 created
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2daf600
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: wmi vdev start id 0x1 flags: 0x0, freq 2412, mode 1, ch_flags: 0x1, max_power: 40
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fd4860 len 140 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e51820
ath10k: htc ep 2 got 1 credits (total 2)
ath10k: htc rx completion ep 2 skb d2a41da0
ath10k: WMI_VDEV_START_RESP_EVENTID
ath10k: wmi mgmt vdev up id 0x1 assoc id 0 bssid 04:f0:21:0e:38:be
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12cefa60 len 28 n_items 1
ath10k: mac monitor vdev 1 started
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a41da0
ath10k: mac monitor started
br0: port 1(eth0) entering forwarding state
br0: port 1(eth0) entering forwarding state
ath10k: pci hif send complete check
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb d2e66a80
ath10k: htc rx completion ep 1 skb d2e518e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e519a0
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2a40680 len 16  rate_idx 0 vht_nss 0 freq 2412 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e51a60
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2a41ce0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a41ce0 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2412 band 0 snr -60, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e51b20
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e51be0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e51ca0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e51d60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e51e20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e51ee0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c080
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c140
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c200
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c2c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c380
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c440
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c500
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c5c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c680
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c740
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c800
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c8c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c980
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7ca40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7cb00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7cbc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7cc80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7cd40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7ce00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7cec0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a660e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a661a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66260
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66320
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a663e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a664a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66560
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66620
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a666e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a667a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66860
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66920
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a669e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66aa0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66b60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66c20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66ce0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66da0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66e60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66f20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a510c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf9c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf0c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf6c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf3c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf300
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdfb40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdfc00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdfcc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdfe40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdff00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdfd80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdfa80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51f00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51e40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51d80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51cc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51c00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51b40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51a80
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a519c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a516c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a513c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e660c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e66180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e66540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e66480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e663c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e66300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e66240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e66780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e666c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e66600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e54840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e54240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e54300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e54900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e54480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e54540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e543c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e54180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e54600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e546c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e54780
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e540c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9f0e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9f1a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9f260
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9f320
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9f3e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9f4a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9f560
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9f620
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9f6e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9f7a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9f860
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9f920
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9f9e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9faa0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9fb60
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9fc20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9fce0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9fda0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9fe60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9ff20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f730c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f73180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f73f00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f73e40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f73d80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f73cc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f73c00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f73b40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f73a80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f739c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f73900
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f73840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f73780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f736c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f73600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f73540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f73480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f733c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f73300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f73240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8a0c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8a180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8af00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8ae40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8ad80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8acc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8ac00
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8ab40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8aa80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8a9c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8a900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8a840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8a780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8a6c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8a600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8a540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8a480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8a3c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8a300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8a240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5080
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5140
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5200
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb52c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5380
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5440
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5500
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb55c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5680
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5740
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5800
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb58c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5980
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5a40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5b00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5bc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5c80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5d40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5e00
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5ec0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78ec0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78e00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78d40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78c80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78bc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78b00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78a40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78980
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c788c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78800
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78740
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78680
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c785c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78500
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78440
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78380
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c782c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78200
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78140
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78080
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e56ee0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e56e20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e56d60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e56ca0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e56be0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e56b20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e56a60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e569a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e568e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e56820
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e56760
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e566a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e565e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e56520
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e56460
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e563a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e562e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e56220
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e56160
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e560a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4ff00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4fe40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4fd80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4fcc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4fc00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4fb40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4fa80
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4f9c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4f900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4f840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4f780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4f6c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4f600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4f540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4f480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4f3c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4f300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4f240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4f180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4f0c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e49f20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e49e60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e49da0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e49ce0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e49c20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e49b60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e49aa0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e499e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e49920
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e49860
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e497a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e496e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e49620
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e49560
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e494a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e493e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e49320
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e49260
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e491a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e490e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43ec0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43e00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43d40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43c80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43bc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43b00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43a40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43980
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e438c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43800
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43740
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43680
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e435c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43500
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43440
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43380
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e432c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43200
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43140
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43080
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7dee0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7de20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7dd60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7dca0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7dbe0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7db20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7da60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d9a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d8e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d820
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d760
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d6a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d5e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d520
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d460
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d3a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d2e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d220
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d160
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d0a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a75f00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a75e40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a75d80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a75cc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a75c00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a75b40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a75a80
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a759c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a75900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a75840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a75780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a756c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a75600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a75540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a75480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a753c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a75300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a75240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a75180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a750c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a70f20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a70e60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a70da0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a70ce0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a70c20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a70b60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a70aa0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a709e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a70920
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a70860
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a707a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a706e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a70620
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a70560
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a704a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a703e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a70320
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a70260
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a701a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a700e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6aec0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6ae00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6ad40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6ac80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6abc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6ab00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6aa40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6a980
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6a8c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6a800
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6a740
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6a680
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6a5c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6a500
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6a440
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6a380
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6a2c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6a200
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6a140
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6a080
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a63ee0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a63e20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a63d60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a63ca0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a63be0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a63b20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a63a60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a639a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a638e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a63820
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a63760
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a636a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a635e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a63520
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a63460
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a633a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a632e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a63220
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a63160
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a630a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5df00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5de40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5dd80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5dcc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5dc00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5db40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5da80
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5d9c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5d900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5d840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5d780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5d6c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5d600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5d540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5d480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5d3c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5d300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5d240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5d180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5d0c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3cf20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3ce60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3cda0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3cce0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3cc20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3cb60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3caa0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3c9e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3c920
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3c860
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3c7a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3c6e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3c620
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3c560
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3c4a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3c3e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3c320
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3c260
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3c1a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3c0e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54ec0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54e00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54d40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54c80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54bc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54b00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54a40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54980
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a548c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54800
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54740
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54680
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a545c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54500
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54440
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54380
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a542c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54200
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54140
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54080
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4dee0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4de20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4dd60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4dca0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4dbe0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4db20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4da60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4d9a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4d8e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4d820
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4d760
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4d6a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4d5e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4d520
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4d460
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4d3a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: wmi start scan
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12fd4060 len 196 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a4d5e0
ath10k: htc ep 2 got 1 credits (total 1)
ath10k: htc rx completion ep 2 skb d2a41c20
ath10k: WMI_SCAN_EVENTID
ath10k: scan event type 1 reason 3 freq 2412 req_id 40961 scan_id 40960 vdev_id 0
ath10k: SCAN_EVENT_STARTED
ath10k: htc rx completion ep 2 skb d2a41b60
ath10k: WMI_SCAN_EVENTID
ath10k: scan event type 4 reason 3 freq 2412 req_id 40961 scan_id 40960 vdev_id 0
ath10k: SCAN_EVENT_BSS_CHANNEL
ath10k: htc rx completion ep 2 skb d2a41aa0
ath10k: chan info err_code 0 freq 2412 cmd_flags 1 noise_floor -100 rx_clear_count 1360002 cycle_count 19361316
ath10k: htc rx completion ep 2 skb d2a419e0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a419e0 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2412 band 0 snr -40, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4d2e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a41920
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a41920 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2412 band 0 snr -40, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4d220
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4d160
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2a41860
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a41860 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2412 band 0 snr -43, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a417a0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a417a0 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2412 band 0 snr -43, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4d0a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a47f00
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htc rx completion ep 2 skb d2a416e0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a416e0 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2412 band 0 snr -71, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a47e40
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a41620
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a41620 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2412 band 0 snr -59, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a47d80
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a41560
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a41560 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2412 band 0 snr -59, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a47cc0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a414a0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a414a0 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2412 band 0 snr -72, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a47c00
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a47b40
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2deaa40 len 10  rate_idx 0 vht_nss 0 freq 2412 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a47a80
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2dea980 len 16  rate_idx 0 vht_nss 0 freq 2412 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a479c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htc rx completion ep 2 skb d2a413e0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a413e0 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2412 band 0 snr -59, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a47900
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a47840
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a47780
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2dea680 len 16  rate_idx 0 vht_nss 0 freq 2412 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a476c0
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2dea5c0 len 16  rate_idx 0 vht_nss 0 freq 2412 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a47600
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a47540
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2a41320
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a41320 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2412 band 0 snr -59, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a47480
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a473c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a47300
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a47240
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a47180
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a40740
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e66840
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2a41260
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a41260 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2412 band 0 snr -60, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2daf780
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htc ep 2 got 1 credits (total 2)
ath10k: htc rx completion ep 2 skb d2a411a0
ath10k: wmi event debug mesg len 12
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2daf240
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a41e60
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e669c0
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2a410e0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a410e0 len 104 ftype 00 stype 40
ath10k: event mgmt rx freq 2412 band 0 snr -51, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e66c00
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htc rx completion ep 2 skb d2a40ec0
ath10k: WMI_SCAN_EVENTID
ath10k: scan event type 8 reason 3 freq 2457 req_id 40961 scan_id 40960 vdev_id 0
ath10k: SCAN_EVENT_FOREIGN_CHANNEL
ath10k: htc rx completion ep 2 skb d2a40e00
ath10k: chan info err_code 0 freq 2457 cmd_flags 0 noise_floor 0 rx_clear_count 5061573 cycle_count 88374723
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e66cc0
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d28979a0 len 16  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: htc rx completion ep 2 skb d2a40d40
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a40d40 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -14, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2daf180
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e66e40
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2a40c80
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a40c80 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -14, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a40bc0
ath10k: WMI_SCAN_EVENTID
ath10k: scan event type 4 reason 3 freq 2457 req_id 40961 scan_id 40960 vdev_id 0
ath10k: SCAN_EVENT_BSS_CHANNEL
ath10k: htc rx completion ep 2 skb d2a40b00
ath10k: chan info err_code 0 freq 2457 cmd_flags 1 noise_floor -102 rx_clear_count 5508592 cycle_count 92425077
ath10k: htc rx completion ep 2 skb d2a40a40
ath10k: WMI_SCAN_EVENTID
ath10k: scan event type 2 reason 0 freq 2457 req_id 40961 scan_id 40960 vdev_id 0
ath10k: SCAN_EVENT_COMPLETED
ath10k: SCAN_REASON_COMPLETED
wlan0: authenticate with 00:15:61:10:51:de
ath10k: mac config channel 2457MHz flags 0x190 radar 0
ath10k: mac config channel to 2457MHz (cf1 2447MHz cf2 0MHz width 40)
ath10k: wmi mgmt vdev down id 0x1
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009c0660 len 16 n_items 1
ath10k: wmi vdev stop id 0x1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a40c80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12cefe60 len 16 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a40d40
ath10k: htc ep 2 got 1 credits (total 1)
ath10k: htc rx completion ep 2 skb d2a40980
ath10k: WMI_VDEV_STOPPED_EVENTID
ath10k: mac monitor vdev 1 stopped
ath10k: mac monitor refs: promisc 1 monitor 0 cac 0
ath10k: wmi vdev start id 0x1 flags: 0x0, freq 2457, mode 7, ch_flags: 0x7, max_power: 40
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12cefe60 len 140 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a40980
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc rx completion ep 2 skb d2a408c0
ath10k: WMI_VDEV_START_RESP_EVENTID
ath10k: wmi mgmt vdev up id 0x1 assoc id 0 bssid 04:f0:21:0e:38:be
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12cefe60 len 28 n_items 1
ath10k: mac monitor vdev 1 started
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a408c0
ath10k: mac config power 16
ath10k: wmi pdev set param 3 value 32
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12cefe60 len 20 n_items 1
ath10k: wmi pdev set param 4 value 32
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a408c0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009c0660 len 20 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a40c80
ath10k: wmi vdev id 0x0 set param 3 value 100
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c0660 len 24 n_items 1
ath10k: mac vdev 0 beacon_interval 100
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a40c80
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac vdev 0 create peer 00:15:61:10:51:de
ath10k: wmi peer create vdev_id 0 peer_addr 00:15:61:10:51:de
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009c0660 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e51160
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e510a0
ath10k: htt rx, msg_type: 0x3
ath10k: htt peer map vdev 0 peer 00:15:61:10:51:de id 287
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e512e0
ath10k: htt rx, msg_type: 0x3
ath10k: htt peer map vdev 0 peer 00:15:61:10:51:de id 367
ath10k: mac vdev 0 start 00:15:61:10:51:de
ath10k: mac vdev 0 start center_freq 2457 phymode 11ng-ht40
ath10k: wmi vdev start id 0x0 flags: 0x0, freq 2457, mode 7, ch_flags: 0x7, max_power: 40
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12cefe60 len 140 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e512e0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e51460
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2a40800
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a40800 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -19, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e51520
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2daf540
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2daf540 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -21, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e515e0
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2daf300
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2daf300 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -19, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a41f20
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a41f20 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -54, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e51220
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2e51760
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2e51760 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -20, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2daf600
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e66b40
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2dbaf20
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2dbaf20 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -48, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a4d5e0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a4d5e0 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -48, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2daf0c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a40680
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a470c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e51820
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e516a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2daf3c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2daf6c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2daf480
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e66a80
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a40500
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a41da0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a40440
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e51be0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c380
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f38ca0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c2c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f38d60
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a41c20
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a41c20 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -48, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c200
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f38e20
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c140
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a41b60
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a41b60 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -20, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f38ee0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c980
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f386a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htc rx completion ep 2 skb d2fa5f20
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2fa5f20 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -47, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c8c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f38760
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c800
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2fa5620
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2fa5620 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -19, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f38820
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c740
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2fa54a0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2fa54a0 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -52, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f388e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a28180
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a28180 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -19, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a660e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f380a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7cec0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f38160
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7ce00
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f38220
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7cd40
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f382e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7cc80
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f383a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7cbc0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a54140
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a54140 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -20, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f38460
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7cb00
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f38520
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2fa5260
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2fa5260 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -52, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7ca40
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f385e0
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2deac80
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2deac80 len 104 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -71, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66ce0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f223c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66c20
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f22480
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66b60
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f22540
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66aa0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f22600
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a669e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f226c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66920
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f22780
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66860
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2deabc0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2deabc0 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -20, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f22840
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a667a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2dea8c0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2dea8c0 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -20, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f22900
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf300
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2a542c0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a542c0 len 104 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -63, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c09306e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf180
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a280c0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a280c0 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -19, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c09307a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf240
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0930860
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2dd3d60 len 60  rate_idx 3 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: htc rx completion ep 2 skb d2897d60
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2897d60 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -20, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf780
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2dead40
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2dead40 len 104 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -62, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0930920
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf3c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c09309e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2897a60
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2897a60 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -20, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf480
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0930aa0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a40ec0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a40ec0 len 104 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -60, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf540
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0930b60
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf600
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d28979a0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d28979a0 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -19, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0930c20
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51a80
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a54080
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a54080 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -19, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c098f980
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51b40
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2897820
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2897820 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -20, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c098fa40
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2a40bc0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a40bc0 len 104 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -78, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a40b00
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a40b00 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -18, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51c00
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a40d40
ath10k: WMI_VDEV_START_RESP_EVENTID
wlan0: send auth to 00:15:61:10:51:de (try 1/3)
ath10k: wmi mgmt tx skb d2a40b00 len 56 ftype 00 stype b0
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009c0060 len 68 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a40b00
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c098fb00
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2e66f00
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2e66f00 len 32 ftype 00 stype b0
ath10k: event mgmt rx freq 2457 band 0 snr -19, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51cc0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
wlan0: authenticated
wlan0: associate with 00:15:61:10:51:de (try 1/3)
ath10k: wmi mgmt tx skb d2dd32e0 len 156 ftype 00 stype 00
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12cef860 len 168 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2dd32e0
ath10k: htc ep 2 got 1 credits (total 1)
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51d80
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c098fc80
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc ep 2 got 1 credits (total 2)
ath10k: htc rx completion ep 2 skb d2a41860
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a41860 len 176 ftype 00 stype 10
ath10k: event mgmt rx freq 2457 band 0 snr -19, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51e40
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
wlan0: RX AssocResp from 00:15:61:10:51:de (capab=0x421 status=0 aid=1)
ath10k: wmi pdev set wmm params
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12ae8e60 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2dd3160
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c0060 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a40bc0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12ae8e60 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2dd3160
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c0060 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c098fd40
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12ae8e60 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2dd3160
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12ae8e60 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2dd3160
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: wmi pdev set wmm params
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12ae8e60 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c098fe00
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12cef260 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cd0d80
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12ae8e60 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c098fe00
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12cef260 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 192
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cdfa80
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12ae8e60 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c098fe00
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 1
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12ae8e60 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c098fe00
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac vdev 0 dtim_period 1
ath10k: wmi vdev id 0x0 set param 13 value 1
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12ae8e60 len 24 n_items 1
ath10k: mac vdev 0 slot_time 2
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e663c0
ath10k: wmi vdev id 0x0 set param 7 value 2
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12ae8e60 len 24 n_items 1
ath10k: mac vdev 0 preamble 2n
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e663c0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: wmi vdev id 0x0 set param 8 value 2
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12ae8e60 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0f17ca0
ath10k: mac ht peer 00:15:61:10:51:de mcs cnt 8 nss 1
ath10k: mac peer 00:15:61:10:51:de phymode 11ng-ht40
ath10k: wmi peer assoc vdev 0 addr 00:15:61:10:51:de (new)
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12a05860 len 368 n_items 1
ath10k: wmi vdev 0 peer 0x00:15:61:10:51:de set param 1 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0f17ca0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12ae8e60 len 32 n_items 1
ath10k: mac vdev 0 up (associated) bssid 00:15:61:10:51:de aid 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c098fec0
ath10k: wmi mgmt vdev up id 0x0 assoc id 1 bssid 00:15:61:10:51:de
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12ae8e60 len 28 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c098fec0
ath10k: htt tx alloc msdu_id 0
ath10k: htt tx flags0 37 flags1 25600 len 30 id 0 frags_paddr 12b28000, msdu_paddr 12ae8e74 vdev 0 tid 16
ath10k: pci tx item 0 paddr 0x12b28010 len 24 n_items 2
ath10k: pci tx item 1 paddr 0x12ae8e74 len 32 n_items 2
wlan0: associated
ath10k: firmware crashed!
ath10k: hardware name qca988x hw2.0 version 0x4100016c
ath10k: firmware version: 10.1.467.2-1
ath10k: target register Dump Location: 0x00401930
ath10k: target Register Dump
ath10k: [00]: 0x4100016C 0x00000000 0x009A123A 0x00000000
ath10k: [04]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [08]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [12]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [16]: 0x00000000 0x00000000 0x00000000 0x009A123A
ath10k: [20]: 0x00000000 0x00401930 0x00000000 0x00000000
ath10k: [24]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [28]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [32]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [36]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [40]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [44]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [48]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [52]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [56]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: mac monitor refs: promisc 1 monitor 0 cac 0
ath10k: mac monitor refs: promisc 0 monitor 0 cac 0
ath10k: wmi mgmt vdev down id 0x1
ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
br0: port 2(wlan0) entering forwarding state
br0: port 2(wlan0) entering forwarding state
cfg80211: Calling CRDA for country: FR
ath10k: failed to put down monitor vdev 1: -11
ath10k: wmi vdev stop id 0x1
ath10k: failed to to request monitor vdev 1 stop: -11
eth0: no IPv6 routers present
br0: no IPv6 routers present

[-- Attachment #3: debug_999.txt --]
[-- Type: text/plain, Size: 107428 bytes --]

ath10k: htt target version 2.1
ath10k: pci tx item 0 paddr 0x009c4860 len 48 n_items 1
ath10k: wmi pdev set param 34 value 1
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7860 len 20 n_items 1
ath10k: wmi pdev set param 10 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c7df20
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7060 len 20 n_items 1
ath10k: wmi pdev set param 1 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39480
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7860 len 20 n_items 1
ath10k: wmi pdev set param 2 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cf1b40
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7060 len 20 n_items 1
ath10k: wmi pdev set param 35 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39480
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7860 len 20 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39240
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac channel [0/32] freq 2412 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [1/32] freq 2417 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [2/32] freq 2422 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [3/32] freq 2427 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [4/32] freq 2432 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [5/32] freq 2437 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [6/32] freq 2442 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [7/32] freq 2447 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [8/32] freq 2452 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [9/32] freq 2457 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [10/32] freq 2462 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [11/32] freq 2467 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [12/32] freq 2472 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [13/32] freq 5180 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [14/32] freq 5200 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [15/32] freq 5220 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [16/32] freq 5240 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [17/32] freq 5260 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [18/32] freq 5280 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [19/32] freq 5300 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [20/32] freq 5320 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [21/32] freq 5500 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [22/32] freq 5520 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [23/32] freq 5540 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [24/32] freq 5560 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [25/32] freq 5580 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [26/32] freq 5600 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [27/32] freq 5620 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [28/32] freq 5640 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [29/32] freq 5660 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [30/32] freq 5680 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [31/32] freq 5700 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12dd4060 len 784 n_items 1
ath10k: wmi pdev regdomain rd 37 rd2g 37 rd5g 37 ctl2g 30 ctl5g 30
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cf1cc0
ath10k: pci tx item 0 paddr 0x12be7860 len 32 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39480
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac vdev create 0 (add interface) type 2 subtype 0
ath10k: WMI vdev create: id 0 type 2 subtype 0 macaddr 00:03:07:12:34:56
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7860 len 32 n_items 1
ath10k: wmi vdev id 0x0 set param 33 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cf1d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7060 len 24 n_items 1
ath10k: wmi vdev id 0x0 set param 48 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cf1cc0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7860 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cf1d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7060 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 1 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cf1e40
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7860 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 2 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cf1d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7060 len 24 n_items 1
ath10k: wmi vdev id 0x0 set param 1 value -1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cf1f00
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7860 len 24 n_items 1
ath10k: wmi vdev id 0x0 set param 2 value -1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cf1d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7060 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cdc0a0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac vdev 0 cts_prot 0
ath10k: wmi vdev id 0x0 set param 44 value 0
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7060 len 24 n_items 1
ath10k: mac vdev 0 slot_time 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cdc160
ath10k: wmi vdev id 0x0 set param 7 value 1
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7060 len 24 n_items 1
ath10k: mac vdev 0 preamble 1n
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cdc160
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: wmi vdev id 0x0 set param 8 value 1
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7060 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cdc220
ath10k: wmi pdev set wmm params
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7060 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cdc220
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7860 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cf1d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7060 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cdc2e0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7860 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cf1d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7060 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cdc3a0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7860 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cf1d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7060 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cdc460
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7860 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cf1d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7060 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cdc520
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7860 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cf1d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7060 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cdc5e0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7860 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cf1d80
ath10k: mac config channel 2412MHz flags 0x1a0 radar 0
ath10k: mac config power 20
ath10k: wmi pdev set param 3 value 40
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7860 len 20 n_items 1
ath10k: wmi pdev set param 4 value 40
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cf1d80
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7060 len 20 n_items 1
ath10k: mac vdev 0 psmode disable
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cdc6a0
ath10k: wmi set powersave id 0x0 mode 0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7060 len 20 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cdc6a0
ath10k: htc ep 2 got 2 credits (total 2)
ADDRCONF(NETDEV_UP): wlan0: link is not ready
eth0: stopped
ath10k: mac vdev 0 delete (remove interface)
ath10k: WMI vdev delete id 0
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7060 len 16 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c830c0
ath10k: mac monitor refs: promisc 0 monitor 0 cac 0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7060 len 16 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c830c0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: boot suspend complete
ath10k: boot hif stop
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb d2cf19c0
ath10k: boot warm reset
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x00001000
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x00000000
ath10k: boot target reset state: 0x00000800
ath10k: boot warm reset complete
ath10k: boot hif power down
ath10k: boot warm reset
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x00000000
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x00000000
ath10k: boot target reset state: 0x00000800
ath10k: boot warm reset complete
Port 0: Link-down
eth0: link up
Port 1: Link-up, Full-duplex, Speed-100Mbps.
Port 2: Link-down
Port 3: Link-down
Port -1: Link-down
eth0: started
ath10k: boot hif power up
ath10k: boot warm reset
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x00000000
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x00000000
ath10k: boot target reset state: 0x00000800
ath10k: boot warm reset complete
ath10k: boot init ce src ring id 0 entries 16 base_addr c0f5d000
ath10k: boot ce dest ring id 1 entries 512 base_addr c0f5a000
ath10k: boot ce dest ring id 2 entries 32 base_addr d285f000
ath10k: boot init ce src ring id 3 entries 32 base_addr d285a000
ath10k: boot init ce src ring id 4 entries 4096 base_addr d2970000
ath10k: boot init ce src ring id 7 entries 2 base_addr d297f000
ath10k: boot ce dest ring id 7 entries 2 base_addr d297e000
ath10k: boot waiting target to initialise
ath10k: boot target indicator 0
ath10k: boot target indicator 0
ath10k: boot target indicator 0
ath10k: boot target indicator 2
ath10k: boot target initialised
ath10k: bmi start
ath10k: bmi write address 0x400800 length 4
ath10k: bmi read address 0x400810 length 4
ath10k: bmi write address 0x400810 length 4
ath10k: bmi write address 0x400844 length 4
ath10k: bmi write address 0x400904 length 4
ath10k: bmi read address 0x4008ac length 4
ath10k: boot push board extended data addr 0x0
ath10k: bmi read address 0x400854 length 4
ath10k: bmi write address 0x401cc0 length 2116
ath10k: bmi write address 0x400858 length 4
ath10k: boot upload otp to 0x1234 len 5402
ath10k: bmi fast download address 0x1234 buffer 0xe212e038 length 5402
ath10k: bmi lz stream start address 0x1234
ath10k: bmi lz data buffer 0xe212e038 length 5400
ath10k: bmi lz data buffer 0xd2b59d3c length 4
ath10k: bmi lz stream start address 0x0
ath10k: bmi execute address 0x1234 param 0x0
ath10k: bmi execute result 0x0
ath10k: boot otp execute result 0
ath10k: bmi fast download address 0x1234 buffer 0xe212f55c length 249093
ath10k: bmi lz stream start address 0x1234
ath10k: bmi lz data buffer 0xe212f55c length 249092
ath10k: bmi lz data buffer 0xd2b59d3c length 4
ath10k: bmi lz stream start address 0x0
ath10k: bmi write address 0x400814 length 4
ath10k: pci hif set callbacks
ath10k: pci hif get default pipe
ath10k: pci hif map service
ath10k: bmi done
ath10k: boot hif start
ath10k: Target ready! transmit resources: 2 size:1792
ath10k: pci hif map service
ath10k: boot htc service 'Control' ul pipe 0 dl pipe 1 eid 0 ready
ath10k: boot htc ep 0 ul polled 0 dl polled 0
ath10k: boot htc service 'Control' eid 0 TX flow control disabled
ath10k: boot htc service HTT Data does not allocate target credits
ath10k: ath10k_htc_build_tx_ctrl_skb: skb d2a39840
ath10k: pci tx item 0 paddr 0x12b5a06c len 16 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 0 skb d2a39840
ath10k: HTC Service HTT Data connect response: status: 0x0, assigned ep: 0x1
ath10k: pci hif map service
ath10k: boot htc service 'HTT Data' ul pipe 4 dl pipe 1 eid 1 ready
ath10k: boot htc ep 1 ul polled 1 dl polled 0
ath10k: boot htc service 'HTT Data' eid 1 TX flow control disabled
ath10k: htt tx max num pending tx 1424
ath10k: htt rx ring size 1024 fill_level 1000
ath10k: ath10k_htc_build_tx_ctrl_skb: skb d2c01780
ath10k: pci tx item 0 paddr 0x129a246c len 16 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 0 skb d2c01780
ath10k: HTC Service WMI connect response: status: 0x0, assigned ep: 0x2
ath10k: pci hif map service
ath10k: boot htc service 'WMI' ul pipe 3 dl pipe 2 eid 2 ready
ath10k: boot htc ep 2 ul polled 0 dl polled 0
ath10k: ath10k_htc_build_tx_ctrl_skb: skb d2a399c0
ath10k: HTC is using TX credit flow control
ath10k: pci tx item 0 paddr 0x129a206c len 20 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 0 skb d2a399c0
ath10k: htc rx completion ep 2 skb d2d0b0c0
ath10k: wmi event service ready sw_ver 0x01000000 sw_ver1 0x0000027c abi_ver 3 phy_cap 0x00000003 ht_cap 0x0000085b vht_cap 0x338001b2 vht_supp_msc 0x0000fffa sys_cap_info 0x00000000 mem_reqs 0 num_rf_chains 2
ath10k: boot wmi ready
ath10k: firmware 999.999.0.636 booted
ath10k: wmi init
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7c60 len 148 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c01180
ath10k: htc rx completion ep 2 skb d2d05f20
ath10k: wmi event ready sw_version 16777216 abi_version 3 mac_addr 00:03:07:12:34:56 status 0 skb->len 20 ev-sz 20
ath10k: pci tx item 0 paddr 0x12be7460 len 12 n_items 1
ath10k: pci hif send complete check
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb d2d05f20
ath10k: htc rx completion ep 1 skb d2a39a80
ath10k: htt rx, msg_type: 0x0
ath10k: htt target version 2.1
ath10k: pci tx item 0 paddr 0x12be7460 len 48 n_items 1
ath10k: wmi pdev set param 34 value 1
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7660 len 20 n_items 1
ath10k: wmi pdev set param 10 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2d05f20
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009c4460 len 20 n_items 1
ath10k: wmi pdev set param 1 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c0de60
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7660 len 20 n_items 1
ath10k: wmi pdev set param 2 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39b40
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009c4460 len 20 n_items 1
ath10k: wmi pdev set param 35 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c0de60
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7660 len 20 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39c00
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac channel [0/32] freq 2412 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [1/32] freq 2417 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [2/32] freq 2422 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [3/32] freq 2427 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [4/32] freq 2432 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [5/32] freq 2437 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [6/32] freq 2442 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [7/32] freq 2447 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [8/32] freq 2452 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [9/32] freq 2457 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [10/32] freq 2462 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [11/32] freq 2467 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [12/32] freq 2472 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [13/32] freq 5180 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [14/32] freq 5200 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [15/32] freq 5220 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [16/32] freq 5240 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [17/32] freq 5260 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [18/32] freq 5280 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [19/32] freq 5300 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [20/32] freq 5320 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [21/32] freq 5500 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [22/32] freq 5520 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [23/32] freq 5540 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [24/32] freq 5560 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [25/32] freq 5580 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [26/32] freq 5600 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [27/32] freq 5620 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [28/32] freq 5640 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [29/32] freq 5660 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [30/32] freq 5680 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [31/32] freq 5700 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12dd4860 len 784 n_items 1
ath10k: wmi pdev regdomain rd 37 rd2g 37 rd5g 37 ctl2g 30 ctl5g 30
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39cc0
ath10k: pci tx item 0 paddr 0x12be7660 len 32 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c0de60
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac vdev create 0 (add interface) type 2 subtype 0
ath10k: WMI vdev create: id 0 type 2 subtype 0 macaddr 00:03:07:12:34:56
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7660 len 32 n_items 1
ath10k: wmi vdev id 0x0 set param 33 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c4460 len 24 n_items 1
ath10k: wmi vdev id 0x0 set param 48 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39cc0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7660 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c4460 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 1 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39e40
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7660 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 2 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c4460 len 24 n_items 1
ath10k: wmi vdev id 0x0 set param 1 value -1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39f00
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7660 len 24 n_items 1
ath10k: wmi vdev id 0x0 set param 2 value -1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c4460 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a240a0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac vdev 0 cts_prot 0
ath10k: wmi vdev id 0x0 set param 44 value 0
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009c4460 len 24 n_items 1
ath10k: mac vdev 0 slot_time 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a24160
ath10k: wmi vdev id 0x0 set param 7 value 1
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c4460 len 24 n_items 1
ath10k: mac vdev 0 preamble 1n
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a24160
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: wmi vdev id 0x0 set param 8 value 1
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009c4460 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a24220
ath10k: wmi pdev set wmm params
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c4460 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a24220
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7660 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c4460 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a242e0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7660 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c4460 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a243a0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7660 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c4460 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a24460
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7660 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c4460 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a24520
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7660 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c4460 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a245e0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7660 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39d80
ath10k: mac config channel 2412MHz flags 0x1a0 radar 0
ath10k: mac config power 20
ath10k: wmi pdev set param 3 value 40
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7660 len 20 n_items 1
ath10k: wmi pdev set param 4 value 40
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39d80
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009c4460 len 20 n_items 1
ath10k: mac vdev 0 psmode disable
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a246a0
ath10k: wmi set powersave id 0x0 mode 0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c4460 len 20 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a246a0
ath10k: htc ep 2 got 2 credits (total 2)
ADDRCONF(NETDEV_UP): wlan0: link is not ready
mv_eth_tool_get_settings is not supported on eth0
device eth0 entered promiscuous mode
device wlan0 entered promiscuous mode
ath10k: mac monitor refs: promisc 1 monitor 0 cac 0
ath10k: WMI vdev create: id 1 type 4 subtype 0 macaddr 00:03:07:12:34:56
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009a0260 len 32 n_items 1
ath10k: mac monitor vdev 1 created
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c016c0
ath10k: wmi vdev start id 0x1 flags: 0x0, freq 2412, mode 1, ch_flags: 0x1, max_power: 40
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009a0260 len 140 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c016c0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc rx completion ep 2 skb d2d05e60
ath10k: WMI_VDEV_START_RESP_EVENTID
ath10k: wmi mgmt vdev up id 0x1 assoc id 0 bssid 00:03:07:12:34:56
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12c1c860 len 28 n_items 1
ath10k: mac monitor vdev 1 started
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c0dce0
ath10k: mac monitor started
br0: port 1(eth0) entering forwarding state
br0: port 1(eth0) entering forwarding state
ath10k: pci hif send complete check
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb d2a39a80
ath10k: htc rx completion ep 1 skb d2a249a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24a60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24b20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24be0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24ca0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24d60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24e20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24ee0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f080
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f140
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f200
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f2c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f380
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f440
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f500
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f5c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f680
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f740
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f800
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f8c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f980
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0fa40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0fb00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0fbc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0fc80
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0fd40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0fe00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0fec0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d390e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d391a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d39260
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d39320
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d393e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d394a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d39560
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d39620
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d396e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d397a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d39860
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d39920
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d399e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d39aa0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d39b60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d39c20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d39ce0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d39da0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d39e60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d39f20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d240c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d24180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9c0c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9c180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9cf00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9ce40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9cd80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9ccc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9cc00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9cb40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9ca80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9c9c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9c900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9c840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9c780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9c6c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9c600
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9c540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9c480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9c3c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9c300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9c240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d24f00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d24e40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d24d80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d24cc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d24c00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d24b40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d24a80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d249c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d24900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d24840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d24780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d246c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d24600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d24540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d24480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d243c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d24300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d24240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a39300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a393c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a39180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a390c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a396c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a39780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a39540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a39240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a39480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a39600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e59780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e59840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e59900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e59300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e59240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e59180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e590c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e596c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e59540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e593c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e59480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e59600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7080
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7140
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7200
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc72c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7380
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7440
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7500
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc75c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7680
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7740
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7800
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc78c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7980
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7a40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7b00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7bc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7c80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7d40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7e00
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7ec0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb10e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb11a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb1260
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb1320
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb13e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb14a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb1560
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb1620
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb16e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb17a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb1860
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb1920
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb19e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb1aa0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb1b60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb1c20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb1ce0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb1da0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb1e60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb1f20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc6760
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc66a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc68e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc69a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc6a60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc6b20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc6be0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc6ca0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc6d60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc6e20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc6ee0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc60a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc6160
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc6220
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc62e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc63a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc6460
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc6520
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc65e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc6820
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a850e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a851a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a85260
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a85320
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a853e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a854a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a85560
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a85620
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a856e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a857a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a85860
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a85920
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a859e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a85aa0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a85b60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a85c20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a85ce0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a85f20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a85e60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a85da0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20ec0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20e00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20d40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20c80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20bc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20b00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20a40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20980
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a208c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20800
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20740
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20680
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a205c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20500
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20440
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20380
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a202c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20200
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20140
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20080
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1aee0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1ae20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1ad60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1aca0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1abe0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1ab20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1aa60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1a9a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1a8e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1a820
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1a760
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1a6a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1a5e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1a520
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1a460
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1a3a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1a2e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1a220
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1a160
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1a0a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a14f00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a14e40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a14d80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a14cc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a14c00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a14b40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a14a80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a149c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a14900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a14840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a14780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a146c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a14600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a14540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a14480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a143c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a14300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a14240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a14180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a140c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0cf20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0ce60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0cda0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0cce0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0cc20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0cb60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0caa0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0c9e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0c920
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0c860
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0c7a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0c6e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0c620
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0c560
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0c4a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0c3e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0c320
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0c260
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0c1a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0c0e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06ec0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06e00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06d40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06c80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06bc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06b00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06a40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06980
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a068c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06800
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06740
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06680
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a065c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06500
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06440
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06380
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a062c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06200
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06140
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06080
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a01ee0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a01e20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a01d60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a01ca0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a01be0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a01b20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a01a60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a019a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a018e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a01820
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a01760
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a016a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a015e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a01520
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a01460
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a013a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a012e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a01220
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a01160
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a010a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3bf00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3be40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3bd80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3bcc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3bc00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3bb40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3ba80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3b9c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3b900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3b840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3b780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3b6c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3b600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3b540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3b480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3b3c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3b300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3b240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3b180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3b0c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d34f20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d34e60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d34da0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d34ce0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d34c20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d34b60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d34aa0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d349e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d34920
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d34860
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d347a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d346e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d34620
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d34560
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d344a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d343e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d34320
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d34260
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d341a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d340e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2eec0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2ee00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2ed40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2ec80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2ebc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2eb00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2ea40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2e980
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2e8c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2e800
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2e740
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2e680
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2e5c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2e500
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2e440
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2e380
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2e2c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2e200
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2e140
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2e080
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e25ee0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e25e20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e25d60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e25ca0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e25be0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e25b20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e25a60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e259a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e258e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e25820
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e25760
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e256a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e255e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e25520
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e25460
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e253a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e252e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e25220
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e25160
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e250a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d25f00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d25e40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d25d80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d25cc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d25c00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d25b40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d25a80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d259c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d25900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d25840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d25780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d256c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d25600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d25540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d25480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d253c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d25300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d25240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d25180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d250c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1ef20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1ee60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1eda0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1ece0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1ec20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1eb60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1eaa0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1e9e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1e920
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1e860
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1e7a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1e6e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1e620
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1e560
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1e4a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1e3e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1e320
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1e260
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1e1a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1e0e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18ec0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18e00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18d40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18c80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18bc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18b00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18a40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18980
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d188c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18800
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18740
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18680
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d185c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18500
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18440
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18380
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d182c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18200
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18140
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18080
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d12ee0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d12e20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d12d60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d12ca0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d12be0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d12b20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d12a60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d129a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d128e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d12820
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d12760
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d126a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d125e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d12520
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d12460
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d123a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d122e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d12220
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d12160
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d120a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0bf00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0be40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0bd80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0bcc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0bc00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0bb40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0ba80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0b9c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0b900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0b840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0b780
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0b6c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0b600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0b540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0b480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0b3c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0b300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0b240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0b180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d04740
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a39840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c01780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c01240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d05f20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a39b40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a39c00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c0de60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a39cc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a39e40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a39f00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a240a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24160
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24220
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a242e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a243a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24460
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24520
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a245e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a39d80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a246a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c01600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c01480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a39a80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c0dda0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0b0c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c013c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c01180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c010c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c0df20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24760
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f080
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d04140
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24ee0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d04200
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24e20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d042c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24d60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d04380
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24ca0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d04440
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24be0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d04500
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24b20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d045c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24a60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d04680
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0fc80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d460
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0fbc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d520
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0fb00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d5e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: wmi start scan
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7460 len 200 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d28526e0
ath10k: htc ep 2 got 1 credits (total 1)
ath10k: htc rx completion ep 2 skb d2d05da0
ath10k: WMI_SCAN_EVENTID
ath10k: scan event type 1 reason 4 freq 2412 req_id 40961 scan_id 40960 vdev_id 0
ath10k: SCAN_EVENT_STARTED
ath10k: htc rx completion ep 2 skb d2d05ce0
ath10k: WMI_SCAN_EVENTID
ath10k: scan event type 4 reason 4 freq 2412 req_id 40961 scan_id 40960 vdev_id 0
ath10k: SCAN_EVENT_BSS_CHANNEL
ath10k: htc rx completion ep 2 skb d2d05c20
ath10k: chan info err_code 0 freq 2412 cmd_flags 1 noise_floor -113 rx_clear_count 889630 cycle_count 18258489
ath10k: htc rx completion ep 2 skb d2d05b60
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2d05b60 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2412 band 0 snr -82, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0fa40
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d6a0
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2d05aa0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2d05aa0 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2412 band 0 snr -83, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f980
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2d059e0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2d059e0 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2412 band 0 snr -86, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d760
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2d05920
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2d05920 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2412 band 0 snr -86, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f8c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d820
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f800
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d8e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htc rx completion ep 2 skb d2d05860
ath10k: wmi event debug mesg len 36
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f740
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: firmware crashed!
ath10k: hardware name qca988x hw2.0 version 0x4100016c
ath10k: firmware version: 999.999.0.636
ath10k: target register Dump Location: 0x0040AC14
ath10k: target Register Dump
ath10k: [00]: 0x4100016C 0x00000000 0x009C4521 0x00000000
ath10k: [04]: 0x009C4521 0x00060330 0x00000019 0x00955A00
ath10k: [08]: 0x00008CC1 0x00000000 0x0040CC94 0x00000020
ath10k: [12]: 0x00000000 0x00000000 0x00958360 0x0095836B
ath10k: [16]: 0x809A0978 0x0040AD94 0x00439304 0x0040D074
ath10k: [20]: 0x0000FFFF 0x00000000 0x00431524 0x00000000
ath10k: [24]: 0x809A0978 0x0040AD94 0x00439304 0x0233079E
ath10k: [28]: 0x809AD1A2 0x0040ADE4 0x00439304 0x0043F68C
ath10k: [32]: 0x809B5DA3 0x00000000 0x000000FE 0x004440FC
ath10k: [36]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [40]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [44]: 0x00439BB8 0x00000000 0x00000000 0x00400000
ath10k: [48]: 0x809AE0B4 0x0040AE04 0x00400000 0x0043F68C
ath10k: [52]: 0x00000001 0x00000000 0x004231F0 0x00400000
ath10k: [56]: 0x809AE17E 0x0040AE44 0x0040FE6C 0x0040D310
ath10k: mac monitor refs: promisc 1 monitor 0 cac 0
ath10k: mac monitor refs: promisc 0 monitor 0 cac 0
ath10k: wmi mgmt vdev down id 0x1
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12c1cc60 len 16 n_items 1
ath10k: wmi vdev stop id 0x1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2bfb620
ath10k: failed to to request monitor vdev 1 stop: -11
ath10k: failed to synchronise monitor vdev 1: -110
ath10k: mac monitor vdev 1 stopped
ath10k: failed to stop monitor vdev: -110
ath10k: WMI vdev delete id 1
eth0: no IPv6 routers present
br0: no IPv6 routers present

[-- Attachment #4: Type: text/plain, Size: 146 bytes --]

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : RE : RE : ath10k: set channel by command "iw" not from hostapd and DFS support of firmware-2.bin_10.1.467.2-1
  2014-05-15 11:11                   ` Janusz Dziedzic
@ 2014-05-15 13:36                     ` Vu Hai NGUYEN
  2014-05-15 16:08                       ` Vu Hai NGUYEN
  0 siblings, 1 reply; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-05-15 13:36 UTC (permalink / raw)
  To: Janusz Dziedzic; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k, Matti Laakso

>Nope, CAC time is not required to start CAC (in case cac == 0 kernel
>will use default value 60s).
>What error you have EBUSY or EINVAL?
>What system (PC kernel, wireless ...) configuration?

Sorry I don't know how to detect if the error is EBUSY or EINVAL, Can you give me a more detail please? :D . I just get this debug message:

wlan0: interface state COUNTRY_UPDATE->DFS                                     
wlan0: DFS-CAC-START freq=5260 chan=52 sec_chan=0                              
wlan0: Unable to setup interface.  
ADDRCONF(NETDEV_UP): wlan0: link is not ready    

My PC kernel is 3.2.36 (provided from Marvell for Marvell ARMADA 370 chipset). I built ath10k from backport v-3.15 and using folder driver/net/wireless/ath from the master branch of ath10k. 
Here is the configuration in my hostapd.conf:

interface=wlan0
driver=nl80211
bridge=br0
country_code=FR
ieee80211d=1
ieee80211h=1
hw_mode=a
ieee80211n=1
ht_capab=[HT40+][SHORT-GI-20][SHORT-GI-40][SMPS-STATIC][TX-STBC][RX-STBC1][MAX-AMSDU-7935][DSSS_CCK-40]
channel=52
rts_threshold=2347
beacon_int=100
wmm_enabled=1

NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE
_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : RE : RE : ath10k: set channel by command "iw" not from hostapd and DFS support of firmware-2.bin_10.1.467.2-1
  2014-05-15 13:36                     ` RE : " Vu Hai NGUYEN
@ 2014-05-15 16:08                       ` Vu Hai NGUYEN
  2014-05-16  6:52                         ` Janusz Dziedzic
  0 siblings, 1 reply; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-05-15 16:08 UTC (permalink / raw)
  To: Vu Hai NGUYEN, Janusz Dziedzic
  Cc: Patrick CARNEIRO RODRIGUEZ, ath10k, Matti Laakso




>Nope, CAC time is not required to start CAC (in case cac == 0 kernel
>will use default value 60s).
>What error you have EBUSY or EINVAL?
>What system (PC kernel, wireless ...) configuration?

Ah I run hostapd with debug option and got a mess that told me:
nl80211: Failed to start radar detection, device or resource busy => I guess this is EBUSY.

NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE
_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : ath10k: set channel by command "iw" not from hostapd and DFS support of firmware-2.bin_10.1.467.2-1
  2014-05-15 16:08                       ` Vu Hai NGUYEN
@ 2014-05-16  6:52                         ` Janusz Dziedzic
  2014-05-16  7:01                           ` RE : " Vu Hai NGUYEN
  0 siblings, 1 reply; 134+ messages in thread
From: Janusz Dziedzic @ 2014-05-16  6:52 UTC (permalink / raw)
  To: Vu Hai NGUYEN; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k, Matti Laakso

On 15 May 2014 18:08, Vu Hai NGUYEN <vh.nguyen@actiasodielec.fr> wrote:
>
>
>
>>Nope, CAC time is not required to start CAC (in case cac == 0 kernel
>>will use default value 60s).
>>What error you have EBUSY or EINVAL?
>>What system (PC kernel, wireless ...) configuration?
>
> Ah I run hostapd with debug option and got a mess that told me:
> nl80211: Failed to start radar detection, device or resource busy => I guess this is EBUSY.
>

OK then. EBUSY you get when you don't have correct combination (DFS
combination is not present).
Which suggest for some reason your configuration didn't activate
CONFIG_ATH10K_DFS_CERTIFIED.
Check iw list, you shuld see:
radar detect widths: { 20 MHz (no HT), 20 MHz, 40 MHz, 80 MHz }


BR
Janusz

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : RE : RE : RE : ath10k: set channel by command "iw" not from hostapd and DFS support of firmware-2.bin_10.1.467.2-1
  2014-05-16  6:52                         ` Janusz Dziedzic
@ 2014-05-16  7:01                           ` Vu Hai NGUYEN
  2014-05-16  7:35                             ` Janusz Dziedzic
  2014-05-16  7:41                             ` Matti Laakso
  0 siblings, 2 replies; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-05-16  7:01 UTC (permalink / raw)
  To: Janusz Dziedzic; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k, Matti Laakso

>OK then. EBUSY you get when you don't have correct combination (DFS
>combination is not present).
>Which suggest for some reason your configuration didn't activate
>CONFIG_ATH10K_DFS_CERTIFIED.
>Check iw list, you shuld see:
>radar detect widths: { 20 MHz (no HT), 20 MHz, 40 MHz, 80 MHz }

Yes I already did it, here is my configuration:

<M>   Atheros 802.11ac wireless cards support
   │ │                                 <M>     Atheros ath10k PCI support
   │ │                                   [*]     Atheros ath10k debugging
   │ │                                   [*]     Atheros ath10k debugfs support
   │ │                                   [*]     Atheros ath10k tracing support
   │ │                                   [*]     Atheros DFS support for certified platforms

But when I check "iw list" I don't see the line like you said. But is this normal? :

Frequencies:
			* 5180 MHz [36] (20.0 dBm)
			* 5200 MHz [40] (20.0 dBm)
			* 5220 MHz [44] (20.0 dBm)
			* 5240 MHz [48] (20.0 dBm)
			* 5260 MHz [52] (20.0 dBm) (no IR, radar detection)
			  DFS state: usable (for 51683 sec)
			* 5280 MHz [56] (20.0 dBm) (no IR, radar detection)
			  DFS state: usable (for 51683 sec)
			* 5300 MHz [60] (20.0 dBm) (no IR, radar detection)
			  DFS state: usable (for 51683 sec)
			* 5320 MHz [64] (20.0 dBm) (no IR, radar detection)
			  DFS state: usable (for 51683 sec)
			* 5500 MHz [100] (27.0 dBm) (no IR, radar detection)
			  DFS state: usable (for 51683 sec)
			* 5520 MHz [104] (27.0 dBm) (no IR, radar detection)
			  DFS state: usable (for 51683 sec)
			* 5540 MHz [108] (27.0 dBm) (no IR, radar detection)
			  DFS state: usable (for 51683 sec)
			* 5560 MHz [112] (27.0 dBm) (no IR, radar detection)
			  DFS state: usable (for 51683 sec)
			* 5580 MHz [116] (27.0 dBm) (no IR, radar detection)
			  DFS state: usable (for 51683 sec)
			* 5600 MHz [120] (27.0 dBm) (no IR, radar detection)
			  DFS state: usable (for 51683 sec)
			* 5620 MHz [124] (27.0 dBm) (no IR, radar detection)
			  DFS state: usable (for 51683 sec)
			* 5640 MHz [128] (27.0 dBm) (no IR, radar detection)
			  DFS state: usable (for 51683 sec)
			* 5660 MHz [132] (27.0 dBm) (no IR, radar detection)
			  DFS state: usable (for 51683 sec)
			* 5680 MHz [136] (27.0 dBm) (no IR, radar detection)
			  DFS state: usable (for 51683 sec)
			* 5700 MHz [140] (27.0 dBm) (no IR, radar detection)
			  DFS state: usable (for 51683 sec)
			* 5745 MHz [149] (disabled)
			* 5765 MHz [153] (disabled)
			* 5785 MHz [157] (disabled)
			* 5805 MHz [161] (disabled)
			* 5825 MHz [165] (disabled)


NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE
_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : RE : ath10k: set channel by command "iw" not from hostapd and DFS support of firmware-2.bin_10.1.467.2-1
  2014-05-16  7:01                           ` RE : " Vu Hai NGUYEN
@ 2014-05-16  7:35                             ` Janusz Dziedzic
  2014-05-16  7:46                               ` Bartosz Markowski
  2014-05-16 13:00                               ` RE : RE : RE : RE : " Kalle Valo
  2014-05-16  7:41                             ` Matti Laakso
  1 sibling, 2 replies; 134+ messages in thread
From: Janusz Dziedzic @ 2014-05-16  7:35 UTC (permalink / raw)
  To: Vu Hai NGUYEN; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k, Matti Laakso

On 16 May 2014 09:01, Vu Hai NGUYEN <vh.nguyen@actiasodielec.fr> wrote:
>>OK then. EBUSY you get when you don't have correct combination (DFS
>>combination is not present).
>>Which suggest for some reason your configuration didn't activate
>>CONFIG_ATH10K_DFS_CERTIFIED.
>>Check iw list, you shuld see:
>>radar detect widths: { 20 MHz (no HT), 20 MHz, 40 MHz, 80 MHz }
>
> Yes I already did it, here is my configuration:
>
> <M>   Atheros 802.11ac wireless cards support
>    │ │                                 <M>     Atheros ath10k PCI support
>    │ │                                   [*]     Atheros ath10k debugging
>    │ │                                   [*]     Atheros ath10k debugfs support
>    │ │                                   [*]     Atheros ath10k tracing support
>    │ │                                   [*]     Atheros DFS support for certified platforms
>
> But when I check "iw list" I don't see the line like you said. But is this normal? :
>
Seems CONFIG_ATH10K_DFS_CERTIFIED is not set.
You can simply check this during compilation adding eg. to mac.c
#ifndef CONFIG_ATH10K_DFS_CERTIFIED
#error DFS_NOT_SET
#endif

I am not sure but could be if you kernel is old and didn't have this
option (which is available in backports) then will  be not set.
@Bartosz didn't we have same problem, do you remember how this was solved?

BR
Janusz

> Frequencies:
>                         * 5180 MHz [36] (20.0 dBm)
>                         * 5200 MHz [40] (20.0 dBm)
>                         * 5220 MHz [44] (20.0 dBm)
>                         * 5240 MHz [48] (20.0 dBm)
>                         * 5260 MHz [52] (20.0 dBm) (no IR, radar detection)
>                           DFS state: usable (for 51683 sec)
>                         * 5280 MHz [56] (20.0 dBm) (no IR, radar detection)
>                           DFS state: usable (for 51683 sec)
>                         * 5300 MHz [60] (20.0 dBm) (no IR, radar detection)
>                           DFS state: usable (for 51683 sec)
>                         * 5320 MHz [64] (20.0 dBm) (no IR, radar detection)
>                           DFS state: usable (for 51683 sec)
>                         * 5500 MHz [100] (27.0 dBm) (no IR, radar detection)
>                           DFS state: usable (for 51683 sec)
>                         * 5520 MHz [104] (27.0 dBm) (no IR, radar detection)
>                           DFS state: usable (for 51683 sec)
>                         * 5540 MHz [108] (27.0 dBm) (no IR, radar detection)
>                           DFS state: usable (for 51683 sec)
>                         * 5560 MHz [112] (27.0 dBm) (no IR, radar detection)
>                           DFS state: usable (for 51683 sec)
>                         * 5580 MHz [116] (27.0 dBm) (no IR, radar detection)
>                           DFS state: usable (for 51683 sec)
>                         * 5600 MHz [120] (27.0 dBm) (no IR, radar detection)
>                           DFS state: usable (for 51683 sec)
>                         * 5620 MHz [124] (27.0 dBm) (no IR, radar detection)
>                           DFS state: usable (for 51683 sec)
>                         * 5640 MHz [128] (27.0 dBm) (no IR, radar detection)
>                           DFS state: usable (for 51683 sec)
>                         * 5660 MHz [132] (27.0 dBm) (no IR, radar detection)
>                           DFS state: usable (for 51683 sec)
>                         * 5680 MHz [136] (27.0 dBm) (no IR, radar detection)
>                           DFS state: usable (for 51683 sec)
>                         * 5700 MHz [140] (27.0 dBm) (no IR, radar detection)
>                           DFS state: usable (for 51683 sec)
>                         * 5745 MHz [149] (disabled)
>                         * 5765 MHz [153] (disabled)
>                         * 5785 MHz [157] (disabled)
>                         * 5805 MHz [161] (disabled)
>                         * 5825 MHz [165] (disabled)
>
>
> NGUYEN Vu Hai
> Acita-Sodielec
> Route de Mayres - B.P. 9
> 12100 St GEORGES DE LUZENCON
> FRANCE

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : RE : ath10k: set channel by command "iw" not from hostapd and DFS support of firmware-2.bin_10.1.467.2-1
  2014-05-16  7:01                           ` RE : " Vu Hai NGUYEN
  2014-05-16  7:35                             ` Janusz Dziedzic
@ 2014-05-16  7:41                             ` Matti Laakso
  1 sibling, 0 replies; 134+ messages in thread
From: Matti Laakso @ 2014-05-16  7:41 UTC (permalink / raw)
  To: Vu Hai NGUYEN, Janusz Dziedzic; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k

On 16.05.2014 09:01, Vu Hai NGUYEN wrote:
>> OK then. EBUSY you get when you don't have correct combination (DFS
>> combination is not present).
>> Which suggest for some reason your configuration didn't activate
>> CONFIG_ATH10K_DFS_CERTIFIED.
>> Check iw list, you shuld see:
>> radar detect widths: { 20 MHz (no HT), 20 MHz, 40 MHz, 80 MHz }
> Yes I already did it, here is my configuration:
>
> <M>   Atheros 802.11ac wireless cards support
>    │ │                                 <M>     Atheros ath10k PCI support
>    │ │                                   [*]     Atheros ath10k debugging
>    │ │                                   [*]     Atheros ath10k debugfs support
>    │ │                                   [*]     Atheros ath10k tracing support
>    │ │                                   [*]     Atheros DFS support for certified platforms
>

You also get EBUSY with the non-AP firmware (regardless of
ATH10K_DFS_CERTIFIED). Have you double checked from dmesg that the
correct firmware is indeed loaded?

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : RE : ath10k: set channel by command "iw" not from hostapd and DFS support of firmware-2.bin_10.1.467.2-1
  2014-05-16  7:35                             ` Janusz Dziedzic
@ 2014-05-16  7:46                               ` Bartosz Markowski
  2014-05-16  8:03                                 ` RE : " Vu Hai NGUYEN
  2014-05-16 13:00                               ` RE : RE : RE : RE : " Kalle Valo
  1 sibling, 1 reply; 134+ messages in thread
From: Bartosz Markowski @ 2014-05-16  7:46 UTC (permalink / raw)
  To: Janusz Dziedzic
  Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, ath10k, Matti Laakso

On 16 May 2014 09:35, Janusz Dziedzic <janusz.dziedzic@tieto.com> wrote:
> On 16 May 2014 09:01, Vu Hai NGUYEN <vh.nguyen@actiasodielec.fr> wrote:

> Seems CONFIG_ATH10K_DFS_CERTIFIED is not set.
> You can simply check this during compilation adding eg. to mac.c
> #ifndef CONFIG_ATH10K_DFS_CERTIFIED
> #error DFS_NOT_SET
> #endif
>
> I am not sure but could be if you kernel is old and didn't have this
> option (which is available in backports) then will  be not set.
> @Bartosz didn't we have same problem, do you remember how this was solved?

I assume you are using backports, right? I think I hit something
similar when I was compiling my own backports package (under openwrt).
The backports were generated from ath.git. I think the root cause for
me those days was outdated .local-symbols file from the backports and
lack of 'ATH10K_DFS_CERTIFIED=' there (I 'mixed' the original
comapt-wireless from openwrt and my own backports). But I have no idea
if you are facing something similar, since I do not know your build
setup..

-- 
Bartosz

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : RE : RE : RE : RE : ath10k: set channel by command "iw" not from hostapd and DFS support of firmware-2.bin_10.1.467.2-1
  2014-05-16  7:46                               ` Bartosz Markowski
@ 2014-05-16  8:03                                 ` Vu Hai NGUYEN
  2014-05-16  8:13                                   ` Bartosz Markowski
  0 siblings, 1 reply; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-05-16  8:03 UTC (permalink / raw)
  To: Bartosz Markowski, Janusz Dziedzic
  Cc: Patrick CARNEIRO RODRIGUEZ, ath10k, Matti Laakso

>> Seems CONFIG_ATH10K_DFS_CERTIFIED is not set.
>> You can simply check this during compilation adding eg. to mac.c
>> #ifndef CONFIG_ATH10K_DFS_CERTIFIED
>> #error DFS_NOT_SET
>> #endif

I'm quite sure that CONFIG_ATH10K_DFS_CERTIFIED is enabled because the 3 debug file dfs_block_radar_events, dfs_simulate_radar, dfs_stats is
only created if CONFIG_ATH10K_DFS_CERTIFIED=y ? And I had these 3 files in my folder debug fs but "dfs_stats" show "DFS not enabled"

>> I am not sure but could be if you kernel is old and didn't have this
>> option (which is available in backports) then will  be not set.
>> @Bartosz didn't we have same problem, do you remember how this was solved?

>I assume you are using backports, right? I think I hit something
>similar when I was compiling my own backports package (under openwrt).
>The backports were generated from ath.git. I think the root cause for
>me those days was outdated .local-symbols file from the backports and
>lack of 'ATH10K_DFS_CERTIFIED=' there (I 'mixed' the original
>comapt-wireless from openwrt and my own backports). But I have no idea
>if you are facing something similar, since I do not know your build setup..

Yes I'm using backport v3.15 (latest) to build ath10k for my kernel 3.2.36 (provided by Marvell for my Marvell Armada 370 chipset).
I also download the folder ath from ath10k master branch (I got problem with seeing information of fw_stats from the version ath10k in backport).
Any suggestion? Please feel free to ask me more information if you need :D


NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE



_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : RE : RE : ath10k: set channel by command "iw" not from hostapd and DFS support of firmware-2.bin_10.1.467.2-1
  2014-05-16  8:03                                 ` RE : " Vu Hai NGUYEN
@ 2014-05-16  8:13                                   ` Bartosz Markowski
  2014-05-16  9:41                                     ` RE : " Vu Hai NGUYEN
  0 siblings, 1 reply; 134+ messages in thread
From: Bartosz Markowski @ 2014-05-16  8:13 UTC (permalink / raw)
  To: Vu Hai NGUYEN
  Cc: Janusz Dziedzic, Patrick CARNEIRO RODRIGUEZ, ath10k, Matti Laakso

On 16 May 2014 10:03, Vu Hai NGUYEN <vh.nguyen@actiasodielec.fr> wrote:
>>> Seems CONFIG_ATH10K_DFS_CERTIFIED is not set.
>>> You can simply check this during compilation adding eg. to mac.c
>>> #ifndef CONFIG_ATH10K_DFS_CERTIFIED
>>> #error DFS_NOT_SET
>>> #endif
>
> I'm quite sure that CONFIG_ATH10K_DFS_CERTIFIED is enabled because the 3 debug file dfs_block_radar_events, dfs_simulate_radar, dfs_stats is
> only created if CONFIG_ATH10K_DFS_CERTIFIED=y ? And I had these 3 files in my folder debug fs but "dfs_stats" show "DFS not enabled"
>
>>> I am not sure but could be if you kernel is old and didn't have this
>>> option (which is available in backports) then will  be not set.
>>> @Bartosz didn't we have same problem, do you remember how this was solved?
>
>>I assume you are using backports, right? I think I hit something
>>similar when I was compiling my own backports package (under openwrt).
>>The backports were generated from ath.git. I think the root cause for
>>me those days was outdated .local-symbols file from the backports and
>>lack of 'ATH10K_DFS_CERTIFIED=' there (I 'mixed' the original
>>comapt-wireless from openwrt and my own backports). But I have no idea
>>if you are facing something similar, since I do not know your build setup..
>
> Yes I'm using backport v3.15 (latest) to build ath10k for my kernel 3.2.36 (provided by Marvell for my Marvell Armada 370 chipset).
> I also download the folder ath from ath10k master branch (I got problem with seeing information of fw_stats from the version ath10k in backport).
> Any suggestion? Please feel free to ask me more information if you need :D

Did you just replace it under your backports folder? Maybe you still
have CONFIG_ATH10K_DFS_CERTIFIED instead of
CPTCFG_ATH10K_DFS_CERTIFIED there?

-- 
Bartosz

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : RE : RE : RE : RE : RE : ath10k: set channel by command "iw" not from hostapd and DFS support of firmware-2.bin_10.1.467.2-1
  2014-05-16  8:13                                   ` Bartosz Markowski
@ 2014-05-16  9:41                                     ` Vu Hai NGUYEN
  2014-05-16 11:39                                       ` Janusz Dziedzic
  0 siblings, 1 reply; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-05-16  9:41 UTC (permalink / raw)
  To: Bartosz Markowski; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k

[-- Attachment #1: Type: text/plain, Size: 4469 bytes --]

>> Yes I'm using backport v3.15 (latest) to build ath10k for my kernel 3.2.36 (provided by Marvell for my Marvell Armada 370 chipset).
>> I also download the folder ath from ath10k master branch (I got problem with seeing information of fw_stats from the version ath10k in backport).
>> Any suggestion? Please feel free to ask me more information if you need :D

>Did you just replace it under your backports folder? Maybe you still
>have CONFIG_ATH10K_DFS_CERTIFIED instead of
>CPTCFG_ATH10K_DFS_CERTIFIED there?

Oh yes thank you, I did it for other define (DEBUG, DEBUGFS, ..)  and CONFIG_ATH10K_DFS_CERTIFIED in the file debug.c (that's why I had 3 debug files of DFS) but I did not do it in 2 files wmi.c and mac.c
Now I don't get the error like before but this warning appear:

ath10k: wmi mgmt vdev up id 0x1 assoc id 0 bssid 04:f0:21:0e:38:be              
ath10k: mac monitor vdev 1 started                                              
ath10k: mac monitor started                                                     
------------[ cut here ]------------                                            
WARNING: at /home/alberix2/Desktop/Wilinks_ath10k/ACCESS_POINT_APPLI/Source/Driv
er_ath10k/backports-3.15-rc1-1/net/wireless/nl80211.c:5824 nl80211_start_radar_d
etection+0xf8/0x16c [cfg80211]()                                                
Modules linked in: ath10k_pci(O) ath10k_core(O) ath(O) mac80211(O) cfg80211(O) c
ompat(O) arc4 ubifs ubi [last unloaded: compat]                                 
Backtrace:                                                                      
[<c0011938>] (dump_backtrace+0x0/0x118) from [<c050205c>] (dump_stack+0x18/0x20)
 r6:bf64b61f r5:000016c0 r4:00000000 r3:c10bc7ac                                
[<c0502044>] (dump_stack+0x0/0x20) from [<c0066c38>] (warn_slowpath_common+0x54/
0x70)                                                                           
[<c0066be4>] (warn_slowpath_common+0x0/0x70) from [<c0066c78>] (warn_slowpath_nu
ll+0x24/0x2c)                                                                   
 r8:00000000 r7:00000000 r6:d2e88000 r5:d27a8000 r4:d2e883c8                    
r3:00000009                                                                     
[<c0066c54>] (warn_slowpath_null+0x0/0x2c) from [<bf60fadc>] (nl80211_start_rada
r_detection+0xf8/0x16c [cfg80211])                                              
[<bf60f9e4>] (nl80211_start_radar_detection+0x0/0x16c [cfg80211]) from [<c045348
8>] (genl_rcv_msg+0x1b4/0x1f4)                                                  
[<c04532d4>] (genl_rcv_msg+0x0/0x1f4) from [<c0452904>] (netlink_rcv_skb+0x58/0x
b8)                                                                             
[<c04528ac>] (netlink_rcv_skb+0x0/0xb8) from [<c04532c4>] (genl_rcv+0x20/0x30)  
 r6:d318fe00 r5:d29afb00 r4:d29afb00 r3:c04532a4                                
[<c04532a4>] (genl_rcv+0x0/0x30) from [<c04522d0>] (netlink_unicast+0x224/0x2c4)
 r4:d0074400 r3:c04532a4                                                        
[<c04520ac>] (netlink_unicast+0x0/0x2c4) from [<c04526a4>] (netlink_sendmsg+0x29
0/0x320)                                                                        
[<c0452414>] (netlink_sendmsg+0x0/0x320) from [<c0428eac>] (sock_sendmsg+0x98/0x
b4)                                                                             
[<c0428e14>] (sock_sendmsg+0x0/0xb4) from [<c0429150>] (__sys_sendmsg+0x1d0/0x26
c)                                                                              
 r4:d2b9bf64                                                                    
[<c0428f80>] (__sys_sendmsg+0x0/0x26c) from [<c042ab30>] (sys_sendmsg+0x44/0x68)
[<c042aaec>] (sys_sendmsg+0x0/0x68) from [<c000ddc0>] (ret_fast_syscall+0x0/0x30
)                                                                               
 r6:00134870 r5:4008f9f0 r4:00136660                                            
---[ end trace 4c6338919fa0b3d6 ]---       

My iw dev show : channel 52 (5260 MHz), width: 20 MHz, center1: 5260 MHz  but I can not connect my station to the access point (seems it does not work yet cause the file "dfs_stats" still show "DFS not enabled" . I had a debug msg with debug mask = 0x432 for ath10k in the attached file if someone are interested in. 

Thanks,
NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE



[-- Attachment #2: debug_mess.txt --]
[-- Type: text/plain, Size: 33466 bytes --]

ath10k: boot suspend complete                                                   
ath10k: boot hif stop                                                           
ath10k: boot warm reset                                                         
ath10k: boot host cpu intr cause: 0x00000000                                    
ath10k: boot target cpu intr cause: 0x00001000                                  
ath10k: boot host cpu intr cause: 0x00000000                                    
ath10k: boot target cpu intr cause: 0x00000000                                  
ath10k: boot target reset state: 0x00000804                                     
ath10k: boot warm reset complete                                                
ath10k: boot hif power down                                                     
ath10k: boot warm reset                                                         
ath10k: boot host cpu intr cause: 0x00000000                                    
ath10k: boot target cpu intr cause: 0x00000000                                  
ath10k: boot host cpu intr cause: 0x00000000                                    
ath10k: boot target cpu intr cause: 0x00000000                                  
ath10k: boot target reset state: 0x00000800                                     
ath10k: boot warm reset complete                                                
br0: port 2(wlan0) entering disabled state                                      
ath10k: boot hif power up                                                       
ath10k: boot warm reset                                                         
ath10k: boot host cpu intr cause: 0x00000000                                    
ath10k: boot target cpu intr cause: 0x00000000                                  
ath10k: boot host cpu intr cause: 0x00000000                                    
ath10k: boot target cpu intr cause: 0x00000000                                  
ath10k: boot target reset state: 0x00000800                                     
ath10k: boot warm reset complete                                                
ath10k: boot init ce src ring id 0 entries 16 base_addr d2d61000                
ath10k: boot ce dest ring id 1 entries 512 base_addr d2e5a000                   
ath10k: boot ce dest ring id 2 entries 32 base_addr c0928000                    
ath10k: boot init ce src ring id 3 entries 32 base_addr d2bbf000                
ath10k: boot init ce src ring id 4 entries 4096 base_addr d26e0000              
ath10k: boot init ce src ring id 7 entries 2 base_addr d26ef000                 
ath10k: boot ce dest ring id 7 entries 2 base_addr d26ee000                     
ath10k: boot waiting target to initialise                                       
ath10k: boot target indicator 0                                                 
ath10k: boot target indicator 0                                                 
ath10k: boot target indicator 0                                                 
ath10k: boot target indicator 2                                                 
ath10k: boot target initialised                                                 
ath10k: bmi start                                                               
ath10k: bmi write address 0x400800 length 4                                     
ath10k: bmi read address 0x400810 length 4                                      
ath10k: bmi write address 0x400810 length 4                                     
ath10k: bmi write address 0x400844 length 4                                     
ath10k: bmi write address 0x400904 length 4                                     
ath10k: bmi read address 0x4008ac length 4                                      
ath10k: boot push board extended data addr 0x0                                  
ath10k: bmi read address 0x400854 length 4                                      
ath10k: bmi write address 0x401cc0 length 2116                                  
ath10k: bmi write address 0x400858 length 4                                     
ath10k: boot upload otp to 0x1234 len 6917                                      
ath10k: bmi fast download address 0x1234 buffer 0xe1ad7034 length 6917          
ath10k: bmi lz stream start address 0x1234                                      
ath10k: bmi lz data buffer 0xe1ad7034 length 6916                               
ath10k: bmi lz data buffer 0xd2b9bd3c length 4                                  
ath10k: bmi lz stream start address 0x0                                         
ath10k: bmi execute address 0x1234 param 0x0                                    
ath10k: bmi execute result 0x0                                                  
ath10k: boot otp execute result 0                                               
ath10k: bmi fast download address 0x1234 buffer 0xe1ad8b44 length 190250        
ath10k: bmi lz stream start address 0x1234                                      
ath10k: bmi lz data buffer 0xe1ad8b44 length 190248                             
ath10k: bmi lz data buffer 0xd2b9bd3c length 4                                  
ath10k: bmi lz stream start address 0x0                                         
ath10k: bmi write address 0x400814 length 4                                     
ath10k: bmi done                                                                
ath10k: boot hif start                                                          
ath10k: boot htc service 'Control' ul pipe 0 dl pipe 1 eid 0 ready              
ath10k: boot htc ep 0 ul polled 0 dl polled 0                                   
ath10k: boot htc service 'Control' eid 0 TX flow control disabled               
ath10k: boot htc service HTT Data does not allocate target credits              
ath10k: boot htc service 'HTT Data' ul pipe 4 dl pipe 1 eid 1 ready             
ath10k: boot htc ep 1 ul polled 1 dl polled 0                                   
ath10k: boot htc service 'HTT Data' eid 1 TX flow control disabled              
ath10k: htt tx max num pending tx 1424                                          
ath10k: htt rx ring size 1024 fill_level 1000                                   
ath10k: boot htc service 'WMI' ul pipe 3 dl pipe 2 eid 2 ready                  
ath10k: boot htc ep 2 ul polled 0 dl polled 0                                   
ath10k: firmware has requested 1 memory chunks                                  
ath10k: wmi mem_req_id 1 num_units 0 num_unit_info 2 unit size 404 actual units 
145                                                                             
ath10k: wmi event service ready sw_ver 0x4100270f abi_ver 1 phy_cap 0x00000003 h
t_cap 0x0000085b vht_cap 0x338001b2 vht_supp_msc 0x0000ffea sys_cap_info 0x00000
000 mem_reqs 1 num_rf_chains 3                                                  
ath10k: boot wmi ready                                                          
ath10k: firmware 10.1.467.2-1 booted                                            
ath10k: wmi sending 1 memory chunks info.                                       
ath10k: wmi chunk 0 len 58580 requested, addr 0x12e20000                        
ath10k: wmi init 10x                                                            
ath10k: wmi event debug print 'P 145 V 16 T 443'                                
ath10k: wmi event ready sw_version 1090529039 abi_version 1 mac_addr 04:f0:21:0e
:38:be status 0 skb->len 20 ev-sz 20                                            
ath10k: htt target version 2.1                                                  
ath10k: wmi pdev set param 30 value 1                                           
ath10k: wmi pdev set param 10 value 1                                           
ath10k: wmi pdev set param 1 value 1                                            
ath10k: wmi pdev set param 2 value 1                                            
ath10k: wmi pdev set param 31 value 0                                           
ath10k: mac channel [0/32] freq 2412 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [1/32] freq 2417 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [2/32] freq 2422 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [3/32] freq 2427 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [4/32] freq 2432 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [5/32] freq 2437 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [6/32] freq 2442 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [7/32] freq 2447 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [8/32] freq 2452 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [9/32] freq 2457 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [10/32] freq 2462 maxpower 40 regpower 40 antenna 0 mode 1  
ath10k: mac channel [11/32] freq 2467 maxpower 40 regpower 40 antenna 0 mode 1  
ath10k: mac channel [12/32] freq 2472 maxpower 40 regpower 40 antenna 0 mode 1  
ath10k: mac channel [13/32] freq 5180 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [14/32] freq 5200 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [15/32] freq 5220 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [16/32] freq 5240 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [17/32] freq 5260 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [18/32] freq 5280 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [19/32] freq 5300 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [20/32] freq 5320 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [21/32] freq 5500 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [22/32] freq 5520 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [23/32] freq 5540 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [24/32] freq 5560 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [25/32] freq 5580 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [26/32] freq 5600 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [27/32] freq 5620 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [28/32] freq 5640 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [29/32] freq 5660 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [30/32] freq 5680 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [31/32] freq 5700 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: wmi pdev regdomain rd 37 rd2g 37 rd5g 37 ctl2g 30 ctl5g 30 dfs_region 0 
ath10k: mac vdev create 0 (add interface) type 1 subtype 0                      
ath10k: WMI vdev create: id 0 type 1 subtype 0 macaddr 04:f0:21:0e:38:be        
ath10k: wmi vdev id 0x0 set param 31 value 0                                    
ath10k: vdev param 0 not supported by firmware                                  
ath10k: wmi peer create vdev_id 0 peer_addr 04:f0:21:0e:38:be                   
ath10k: wmi pdev set param 13 value 50                                          
ath10k: wmi vdev id 0x0 set param 38 value 3747                                 
ath10k: wmi vdev id 0x0 set param 39 value 3895                                 
ath10k: wmi vdev id 0x0 set param 40 value 3900                                 
ath10k: wmi vdev id 0x0 set param 1 value -1                                    
ath10k: wmi vdev id 0x0 set param 2 value -1                                    
ath10k: mac vdev 0 cts_prot 0                                                   
ath10k: wmi vdev id 0x0 set param 43 value 0                                    
ath10k: mac vdev 0 slot_time 1                                                  
ath10k: wmi vdev id 0x0 set param 7 value 1                                     
ath10k: mac vdev 0 preamble 1n                                                  
ath10k: wmi vdev id 0x0 set param 8 value 1                                     
ath10k: wmi pdev set wmm params                                                 
ath10k: wmi pdev set wmm params                                                 
ath10k: wmi pdev set wmm params                                                 
ath10k: wmi pdev set wmm params                                                 
ath10k: mac config channel 2412MHz flags 0x1a0 radar 0                          
ath10k: mac config power 20                                                     
ath10k: wmi pdev set param 3 value 40                                           
ath10k: wmi pdev set param 4 value 40                                           
ath10k: mac monitor refs: promisc 1 monitor 0 cac 0                             
ath10k: WMI vdev create: id 1 type 4 subtype 0 macaddr 04:f0:21:0e:38:be        
ath10k: mac monitor vdev 1 created                                              
ath10k: wmi vdev start id 0x1 flags: 0x0, freq 2412, mode 1, ch_flags: 0x1, max_
power: 40                                                                       
ADDRCONF(NETDEV_UP): wlan0: link is not ready                                   
ath10k: WMI_VDEV_START_RESP_EVENTID                                             
ath10k: wmi mgmt vdev up id 0x1 assoc id 0 bssid 04:f0:21:0e:38:be              
ath10k: mac monitor vdev 1 started                                              
ath10k: mac monitor started                                                     
ath10k: mac monitor refs: promisc 0 monitor 0 cac 0                             
ath10k: wmi mgmt vdev down id 0x1                                               
ath10k: wmi vdev stop id 0x1                                                    
ath10k: WMI_VDEV_STOPPED_EVENTID                                                
ath10k: mac monitor vdev 1 stopped                                              
ath10k: WMI vdev delete id 1                                                    
ath10k: mac monitor vdev 1 deleted                                              
ath10k: mac monitor stopped                                                     
ath10k: wmi peer delete vdev_id 0 peer_addr 04:f0:21:0e:38:be                   
ath10k: mac vdev 0 delete (remove interface)                                    
ath10k: WMI vdev delete id 0                                                    
ath10k: mac monitor refs: promisc 0 monitor 0 cac 0                             
ath10k: boot suspend complete                                                   
ath10k: boot hif stop                                                           
ath10k: boot warm reset                                                         
ath10k: boot host cpu intr cause: 0x00000000                                    
ath10k: boot target cpu intr cause: 0x00001000                                  
ath10k: boot host cpu intr cause: 0x00000000                                    
ath10k: boot target cpu intr cause: 0x00000000                                  
ath10k: boot target reset state: 0x00000804                                     
ath10k: boot warm reset complete                                                
ath10k: boot hif power down                                                     
ath10k: boot warm reset                                                         
ath10k: boot host cpu intr cause: 0x00000000                                    
ath10k: boot target cpu intr cause: 0x00000000                                  
ath10k: boot host cpu intr cause: 0x00000000                                    
ath10k: boot target cpu intr cause: 0x00000000                                  
ath10k: boot target reset state: 0x00000800                                     
ath10k: boot warm reset complete                                                
br0: port 2(wlan0) entering disabled state                                      
ath10k: boot hif power up                                                       
ath10k: boot warm reset                                                         
ath10k: boot host cpu intr cause: 0x00000000                                    
ath10k: boot target cpu intr cause: 0x00000000                                  
ath10k: boot host cpu intr cause: 0x00000000                                    
ath10k: boot target cpu intr cause: 0x00000000                                  
ath10k: boot target reset state: 0x00000800                                     
ath10k: boot warm reset complete                                                
ath10k: boot init ce src ring id 0 entries 16 base_addr d2d61000                
ath10k: boot ce dest ring id 1 entries 512 base_addr d2e5a000                   
ath10k: boot ce dest ring id 2 entries 32 base_addr c0928000                    
ath10k: boot init ce src ring id 3 entries 32 base_addr d2bbf000                
ath10k: boot init ce src ring id 4 entries 4096 base_addr d26e0000              
ath10k: boot init ce src ring id 7 entries 2 base_addr d26ef000                 
ath10k: boot ce dest ring id 7 entries 2 base_addr d26ee000                     
ath10k: boot waiting target to initialise                                       
ath10k: boot target indicator 0                                                 
ath10k: boot target indicator 0                                                 
ath10k: boot target indicator 0                                                 
ath10k: boot target indicator 2                                                 
ath10k: boot target initialised                                                 
ath10k: bmi start                                                               
ath10k: bmi write address 0x400800 length 4                                     
ath10k: bmi read address 0x400810 length 4                                      
ath10k: bmi write address 0x400810 length 4                                     
ath10k: bmi write address 0x400844 length 4                                     
ath10k: bmi write address 0x400904 length 4                                     
ath10k: bmi read address 0x4008ac length 4                                      
ath10k: boot push board extended data addr 0x0                                  
ath10k: bmi read address 0x400854 length 4                                      
ath10k: bmi write address 0x401cc0 length 2116                                  
ath10k: bmi write address 0x400858 length 4                                     
ath10k: boot upload otp to 0x1234 len 6917                                      
ath10k: bmi fast download address 0x1234 buffer 0xe1ad7034 length 6917          
ath10k: bmi lz stream start address 0x1234                                      
ath10k: bmi lz data buffer 0xe1ad7034 length 6916                               
ath10k: bmi lz data buffer 0xd2b9bd3c length 4                                  
ath10k: bmi lz stream start address 0x0                                         
ath10k: bmi execute address 0x1234 param 0x0                                    
ath10k: bmi execute result 0x0                                                  
ath10k: boot otp execute result 0                                               
ath10k: bmi fast download address 0x1234 buffer 0xe1ad8b44 length 190250        
ath10k: bmi lz stream start address 0x1234                                      
ath10k: bmi lz data buffer 0xe1ad8b44 length 190248                             
ath10k: bmi lz data buffer 0xd2b9bd3c length 4                                  
ath10k: bmi lz stream start address 0x0                                         
ath10k: bmi write address 0x400814 length 4                                     
ath10k: bmi done                                                                
ath10k: boot hif start                                                          
ath10k: boot htc service 'Control' ul pipe 0 dl pipe 1 eid 0 ready              
ath10k: boot htc ep 0 ul polled 0 dl polled 0                                   
ath10k: boot htc service 'Control' eid 0 TX flow control disabled               
ath10k: boot htc service HTT Data does not allocate target credits              
ath10k: boot htc service 'HTT Data' ul pipe 4 dl pipe 1 eid 1 ready             
ath10k: boot htc ep 1 ul polled 1 dl polled 0                                   
ath10k: boot htc service 'HTT Data' eid 1 TX flow control disabled              
ath10k: htt tx max num pending tx 1424                                          
ath10k: htt rx ring size 1024 fill_level 1000                                   
ath10k: boot htc service 'WMI' ul pipe 3 dl pipe 2 eid 2 ready                  
ath10k: boot htc ep 2 ul polled 0 dl polled 0                                   
ath10k: firmware has requested 1 memory chunks                                  
ath10k: wmi mem_req_id 1 num_units 0 num_unit_info 2 unit size 404 actual units 
145                                                                             
ath10k: wmi event service ready sw_ver 0x4100270f abi_ver 1 phy_cap 0x00000003 h
t_cap 0x0000085b vht_cap 0x338001b2 vht_supp_msc 0x0000ffea sys_cap_info 0x00000
000 mem_reqs 1 num_rf_chains 3                                                  
ath10k: boot wmi ready                                                          
ath10k: firmware 10.1.467.2-1 booted                                            
ath10k: wmi sending 1 memory chunks info.                                       
ath10k: wmi chunk 0 len 58580 requested, addr 0x129e0000                        
ath10k: wmi init 10x                                                            
ath10k: wmi event debug print 'P 145 V 16 T 443'                                
ath10k: wmi event ready sw_version 1090529039 abi_version 1 mac_addr 04:f0:21:0e
:38:be status 0 skb->len 20 ev-sz 20                                            
ath10k: htt target version 2.1                                                  
ath10k: wmi pdev set param 30 value 1                                           
ath10k: wmi pdev set param 10 value 1                                           
ath10k: wmi pdev set param 1 value 1                                            
ath10k: wmi pdev set param 2 value 1                                            
ath10k: wmi pdev set param 31 value 0                                           
ath10k: mac channel [0/32] freq 2412 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [1/32] freq 2417 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [2/32] freq 2422 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [3/32] freq 2427 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [4/32] freq 2432 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [5/32] freq 2437 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [6/32] freq 2442 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [7/32] freq 2447 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [8/32] freq 2452 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [9/32] freq 2457 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [10/32] freq 2462 maxpower 40 regpower 40 antenna 0 mode 1  
ath10k: mac channel [11/32] freq 2467 maxpower 40 regpower 40 antenna 0 mode 1  
ath10k: mac channel [12/32] freq 2472 maxpower 40 regpower 40 antenna 0 mode 1  
ath10k: mac channel [13/32] freq 5180 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [14/32] freq 5200 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [15/32] freq 5220 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [16/32] freq 5240 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [17/32] freq 5260 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [18/32] freq 5280 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [19/32] freq 5300 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [20/32] freq 5320 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [21/32] freq 5500 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [22/32] freq 5520 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [23/32] freq 5540 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [24/32] freq 5560 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [25/32] freq 5580 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [26/32] freq 5600 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [27/32] freq 5620 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [28/32] freq 5640 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [29/32] freq 5660 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [30/32] freq 5680 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [31/32] freq 5700 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: wmi pdev regdomain rd 37 rd2g 37 rd5g 37 ctl2g 30 ctl5g 30 dfs_region 0 
ath10k: mac config channel 2412MHz flags 0x1a0 radar 0                          
ath10k: mac config power 20                                                     
ath10k: wmi pdev set param 3 value 40                                           
ath10k: wmi pdev set param 4 value 40                                           
ath10k: mac vdev create 0 (add interface) type 1 subtype 0                      
ath10k: WMI vdev create: id 0 type 1 subtype 0 macaddr 04:f0:21:0e:38:be        
ath10k: wmi vdev id 0x0 set param 31 value 0                                    
ath10k: vdev param 0 not supported by firmware                                  
ath10k: wmi peer create vdev_id 0 peer_addr 04:f0:21:0e:38:be                   
ath10k: wmi pdev set param 13 value 50                                          
ath10k: wmi vdev id 0x0 set param 38 value 3747                                 
ath10k: wmi vdev id 0x0 set param 39 value 3895                                 
ath10k: wmi vdev id 0x0 set param 40 value 3900                                 
ath10k: wmi vdev id 0x0 set param 1 value -1                                    
ath10k: wmi vdev id 0x0 set param 2 value -1                                    
ath10k: mac vdev 0 cts_prot 0                                                   
ath10k: wmi vdev id 0x0 set param 43 value 0                                    
ath10k: mac vdev 0 slot_time 1                                                  
ath10k: wmi vdev id 0x0 set param 7 value 1                                     
ath10k: mac vdev 0 preamble 1n                                                  
ath10k: wmi vdev id 0x0 set param 8 value 1                                     
ath10k: wmi pdev set wmm params                                                 
ath10k: wmi pdev set wmm params                                                 
ath10k: wmi pdev set wmm params                                                 
ath10k: wmi pdev set wmm params                                                 
ath10k: mac monitor refs: promisc 1 monitor 0 cac 0                             
ath10k: WMI vdev create: id 1 type 4 subtype 0 macaddr 04:f0:21:0e:38:be        
ath10k: mac monitor vdev 1 created                                              
ath10k: wmi vdev start id 0x1 flags: 0x0, freq 2412, mode 1, ch_flags: 0x1, max_
power: 40                                                                       
ADDRCONF(NETDEV_UP): wlan0: link is not ready                                   
ath10k: WMI_VDEV_START_RESP_EVENTID                                             
ath10k: wmi mgmt vdev up id 0x1 assoc id 0 bssid 04:f0:21:0e:38:be              
ath10k: mac monitor vdev 1 started                                              
ath10k: mac monitor started                                                     
------------[ cut here ]------------                                            
WARNING: at /home/alberix2/Desktop/Wilinks_ath10k/ACCESS_POINT_APPLI/Source/Driv
er_ath10k/backports-3.15-rc1-1/net/wireless/nl80211.c:5824 nl80211_start_radar_d
etection+0xf8/0x16c [cfg80211]()                                                
Modules linked in: ath10k_pci(O) ath10k_core(O) ath(O) mac80211(O) cfg80211(O) c
ompat(O) arc4 ubifs ubi [last unloaded: compat]                                 
Backtrace:                                                                      
[<c0011938>] (dump_backtrace+0x0/0x118) from [<c050205c>] (dump_stack+0x18/0x20)
 r6:bf64b61f r5:000016c0 r4:00000000 r3:c10bc7ac                                
[<c0502044>] (dump_stack+0x0/0x20) from [<c0066c38>] (warn_slowpath_common+0x54/
0x70)                                                                           
[<c0066be4>] (warn_slowpath_common+0x0/0x70) from [<c0066c78>] (warn_slowpath_nu
ll+0x24/0x2c)                                                                   
 r8:00000000 r7:00000000 r6:d2e88000 r5:d27a8000 r4:d2e883c8                    
r3:00000009                                                                     
[<c0066c54>] (warn_slowpath_null+0x0/0x2c) from [<bf60fadc>] (nl80211_start_rada
r_detection+0xf8/0x16c [cfg80211])                                              
[<bf60f9e4>] (nl80211_start_radar_detection+0x0/0x16c [cfg80211]) from [<c045348
8>] (genl_rcv_msg+0x1b4/0x1f4)                                                  
[<c04532d4>] (genl_rcv_msg+0x0/0x1f4) from [<c0452904>] (netlink_rcv_skb+0x58/0x
b8)                                                                             
[<c04528ac>] (netlink_rcv_skb+0x0/0xb8) from [<c04532c4>] (genl_rcv+0x20/0x30)  
 r6:d318fe00 r5:d29afb00 r4:d29afb00 r3:c04532a4                                
[<c04532a4>] (genl_rcv+0x0/0x30) from [<c04522d0>] (netlink_unicast+0x224/0x2c4)
 r4:d0074400 r3:c04532a4                                                        
[<c04520ac>] (netlink_unicast+0x0/0x2c4) from [<c04526a4>] (netlink_sendmsg+0x29
0/0x320)                                                                        
[<c0452414>] (netlink_sendmsg+0x0/0x320) from [<c0428eac>] (sock_sendmsg+0x98/0x
b4)                                                                             
[<c0428e14>] (sock_sendmsg+0x0/0xb4) from [<c0429150>] (__sys_sendmsg+0x1d0/0x26
c)                                                                              
 r4:d2b9bf64                                                                    
[<c0428f80>] (__sys_sendmsg+0x0/0x26c) from [<c042ab30>] (sys_sendmsg+0x44/0x68)
[<c042aaec>] (sys_sendmsg+0x0/0x68) from [<c000ddc0>] (ret_fast_syscall+0x0/0x30
)                                                                               
 r6:00134870 r5:4008f9f0 r4:00136660                                            
---[ end trace 4c6338919fa0b3d6 ]---                                            
ath10k: mac config channel 5260MHz flags 0x10a radar 1                          
ath10k: mac monitor refs: promisc 1 monitor 0 cac 1                             
ath10k: mac monitor already started                                             
ath10k: mac cac start monitor vdev 1                                            
ath10k: mac config channel to 5260MHz (cf1 5260MHz cf2 0MHz width 20)           
ath10k: wmi mgmt vdev down id 0x1                                               
ath10k: wmi vdev stop id 0x1                                                    
ath10k: WMI_VDEV_STOPPED_EVENTID                                                
ath10k: mac monitor vdev 1 stopped                                              
ath10k: mac monitor refs: promisc 1 monitor 0 cac 1                             
ath10k: wmi vdev start id 0x1 flags: 0x0, freq 5260, mode 4, ch_flags: 0x404, ma
x_power: 40                                                                     
ath10k: WMI_VDEV_START_RESP_EVENTID                                             
ath10k: wmi mgmt vdev up id 0x1 assoc id 0 bssid 04:f0:21:0e:38:be              
ath10k: mac monitor vdev 1 started                                              
ath10k: mac config power 15                                                     
ath10k: wmi pdev set param 3 value 30                                           
ath10k: wmi pdev set param 4 value 30                                           
ath10k: wmi event debug mesg len 12                                             
eth0: no IPv6 routers present                                                   
br0: no IPv6 routers present                                                    
ath10k: mac config channel 5260MHz flags 0x10a radar 0                          
ath10k: mac monitor refs: promisc 1 monitor 0 cac 0                             
ath10k: mac monitor will be stopped later                                       
ath10k: mac cac finished                                                        
ath10k: mac config channel to 5260MHz (cf1 5260MHz cf2 0MHz width 20 (noht))    
ath10k: wmi mgmt vdev down id 0x1                                               
ath10k: wmi vdev stop id 0x1                                                    
ath10k: WMI_VDEV_STOPPED_EVENTID                                                
ath10k: mac monitor vdev 1 stopped                                              
ath10k: mac monitor refs: promisc 1 monitor 0 cac 0                             
ath10k: wmi vdev start id 0x1 flags: 0x0, freq 5260, mode 0, ch_flags: 0x400, ma
x_power: 40 

[-- Attachment #3: Type: text/plain, Size: 146 bytes --]

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : RE : RE : RE : ath10k: set channel by command "iw" not from hostapd and DFS support of firmware-2.bin_10.1.467.2-1
  2014-05-16  9:41                                     ` RE : " Vu Hai NGUYEN
@ 2014-05-16 11:39                                       ` Janusz Dziedzic
  2014-05-16 11:50                                         ` Janusz Dziedzic
  0 siblings, 1 reply; 134+ messages in thread
From: Janusz Dziedzic @ 2014-05-16 11:39 UTC (permalink / raw)
  To: Vu Hai NGUYEN; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k, Bartosz Markowski

On 16 May 2014 11:41, Vu Hai NGUYEN <vh.nguyen@actiasodielec.fr> wrote:
>>> Yes I'm using backport v3.15 (latest) to build ath10k for my kernel 3.2.36 (provided by Marvell for my Marvell Armada 370 chipset).
>>> I also download the folder ath from ath10k master branch (I got problem with seeing information of fw_stats from the version ath10k in backport).
>>> Any suggestion? Please feel free to ask me more information if you need :D
>
>>Did you just replace it under your backports folder? Maybe you still
>>have CONFIG_ATH10K_DFS_CERTIFIED instead of
>>CPTCFG_ATH10K_DFS_CERTIFIED there?
>
> Oh yes thank you, I did it for other define (DEBUG, DEBUGFS, ..)  and CONFIG_ATH10K_DFS_CERTIFIED in the file debug.c (that's why I had 3 debug files of DFS) but I did not do it in 2 files wmi.c and mac.c
> Now I don't get the error like before but this warning appear:
>
> ath10k: wmi mgmt vdev up id 0x1 assoc id 0 bssid 04:f0:21:0e:38:be
> ath10k: mac monitor vdev 1 started
> ath10k: mac monitor started
> ------------[ cut here ]------------
> WARNING: at /home/alberix2/Desktop/Wilinks_ath10k/ACCESS_POINT_APPLI/Source/Driv
> er_ath10k/backports-3.15-rc1-1/net/wireless/nl80211.c:5824 nl80211_start_radar_d
> etection+0xf8/0x16c [cfg80211]()
> Modules linked in: ath10k_pci(O) ath10k_core(O) ath(O) mac80211(O) cfg80211(O) c
> ompat(O) arc4 ubifs ubi [last unloaded: compat]
> Backtrace:
> [<c0011938>] (dump_backtrace+0x0/0x118) from [<c050205c>] (dump_stack+0x18/0x20)
>  r6:bf64b61f r5:000016c0 r4:00000000 r3:c10bc7ac
> [<c0502044>] (dump_stack+0x0/0x20) from [<c0066c38>] (warn_slowpath_common+0x54/
> 0x70)
> [<c0066be4>] (warn_slowpath_common+0x0/0x70) from [<c0066c78>] (warn_slowpath_nu
> ll+0x24/0x2c)
>  r8:00000000 r7:00000000 r6:d2e88000 r5:d27a8000 r4:d2e883c8
> r3:00000009
> [<c0066c54>] (warn_slowpath_null+0x0/0x2c) from [<bf60fadc>] (nl80211_start_rada
> r_detection+0xf8/0x16c [cfg80211])
> [<bf60f9e4>] (nl80211_start_radar_detection+0x0/0x16c [cfg80211]) from [<c045348
> 8>] (genl_rcv_msg+0x1b4/0x1f4)
> [<c04532d4>] (genl_rcv_msg+0x0/0x1f4) from [<c0452904>] (netlink_rcv_skb+0x58/0x
> b8)
> [<c04528ac>] (netlink_rcv_skb+0x0/0xb8) from [<c04532c4>] (genl_rcv+0x20/0x30)
>  r6:d318fe00 r5:d29afb00 r4:d29afb00 r3:c04532a4
> [<c04532a4>] (genl_rcv+0x0/0x30) from [<c04522d0>] (netlink_unicast+0x224/0x2c4)
>  r4:d0074400 r3:c04532a4
> [<c04520ac>] (netlink_unicast+0x0/0x2c4) from [<c04526a4>] (netlink_sendmsg+0x29
> 0/0x320)
> [<c0452414>] (netlink_sendmsg+0x0/0x320) from [<c0428eac>] (sock_sendmsg+0x98/0x
> b4)
> [<c0428e14>] (sock_sendmsg+0x0/0xb4) from [<c0429150>] (__sys_sendmsg+0x1d0/0x26
> c)
>  r4:d2b9bf64
> [<c0428f80>] (__sys_sendmsg+0x0/0x26c) from [<c042ab30>] (sys_sendmsg+0x44/0x68)
> [<c042aaec>] (sys_sendmsg+0x0/0x68) from [<c000ddc0>] (ret_fast_syscall+0x0/0x30
> )
>  r6:00134870 r5:4008f9f0 r4:00136660
> ---[ end trace 4c6338919fa0b3d6 ]---
Warning is about cac_time = 0 - this is not a problem at all.

>
> My iw dev show : channel 52 (5260 MHz), width: 20 MHz, center1: 5260 MHz  but I can not connect my station to the access point (seems it does not work yet cause the file "dfs_stats" still show "DFS not enabled" . I had a debug msg with debug mask = 0x432 for ath10k in the attached file if someone are interested in.
>
After cac_time you should see beacons in airlogs. Does you station see
this AP in scan results? Does your station support this channel (iw
list on sta side)?

BR
Janusz

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : RE : RE : RE : ath10k: set channel by command "iw" not from hostapd and DFS support of firmware-2.bin_10.1.467.2-1
  2014-05-16 11:39                                       ` Janusz Dziedzic
@ 2014-05-16 11:50                                         ` Janusz Dziedzic
  2014-05-16 13:17                                           ` RE : RE " Vu Hai NGUYEN
  0 siblings, 1 reply; 134+ messages in thread
From: Janusz Dziedzic @ 2014-05-16 11:50 UTC (permalink / raw)
  To: Vu Hai NGUYEN; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k, Bartosz Markowski

On 16 May 2014 13:39, Janusz Dziedzic <janusz.dziedzic@tieto.com> wrote:
> On 16 May 2014 11:41, Vu Hai NGUYEN <vh.nguyen@actiasodielec.fr> wrote:
>>>> Yes I'm using backport v3.15 (latest) to build ath10k for my kernel 3.2.36 (provided by Marvell for my Marvell Armada 370 chipset).
>>>> I also download the folder ath from ath10k master branch (I got problem with seeing information of fw_stats from the version ath10k in backport).
>>>> Any suggestion? Please feel free to ask me more information if you need :D
>>
>>>Did you just replace it under your backports folder? Maybe you still
>>>have CONFIG_ATH10K_DFS_CERTIFIED instead of
>>>CPTCFG_ATH10K_DFS_CERTIFIED there?
>>
>> Oh yes thank you, I did it for other define (DEBUG, DEBUGFS, ..)  and CONFIG_ATH10K_DFS_CERTIFIED in the file debug.c (that's why I had 3 debug files of DFS) but I did not do it in 2 files wmi.c and mac.c
>> Now I don't get the error like before but this warning appear:
>>
>> ath10k: wmi mgmt vdev up id 0x1 assoc id 0 bssid 04:f0:21:0e:38:be
>> ath10k: mac monitor vdev 1 started
>> ath10k: mac monitor started
>> ------------[ cut here ]------------
>> WARNING: at /home/alberix2/Desktop/Wilinks_ath10k/ACCESS_POINT_APPLI/Source/Driv
>> er_ath10k/backports-3.15-rc1-1/net/wireless/nl80211.c:5824 nl80211_start_radar_d
>> etection+0xf8/0x16c [cfg80211]()
>> Modules linked in: ath10k_pci(O) ath10k_core(O) ath(O) mac80211(O) cfg80211(O) c
>> ompat(O) arc4 ubifs ubi [last unloaded: compat]
>> Backtrace:
>> [<c0011938>] (dump_backtrace+0x0/0x118) from [<c050205c>] (dump_stack+0x18/0x20)
>>  r6:bf64b61f r5:000016c0 r4:00000000 r3:c10bc7ac
>> [<c0502044>] (dump_stack+0x0/0x20) from [<c0066c38>] (warn_slowpath_common+0x54/
>> 0x70)
>> [<c0066be4>] (warn_slowpath_common+0x0/0x70) from [<c0066c78>] (warn_slowpath_nu
>> ll+0x24/0x2c)
>>  r8:00000000 r7:00000000 r6:d2e88000 r5:d27a8000 r4:d2e883c8
>> r3:00000009
>> [<c0066c54>] (warn_slowpath_null+0x0/0x2c) from [<bf60fadc>] (nl80211_start_rada
>> r_detection+0xf8/0x16c [cfg80211])
>> [<bf60f9e4>] (nl80211_start_radar_detection+0x0/0x16c [cfg80211]) from [<c045348
>> 8>] (genl_rcv_msg+0x1b4/0x1f4)
>> [<c04532d4>] (genl_rcv_msg+0x0/0x1f4) from [<c0452904>] (netlink_rcv_skb+0x58/0x
>> b8)
>> [<c04528ac>] (netlink_rcv_skb+0x0/0xb8) from [<c04532c4>] (genl_rcv+0x20/0x30)
>>  r6:d318fe00 r5:d29afb00 r4:d29afb00 r3:c04532a4
>> [<c04532a4>] (genl_rcv+0x0/0x30) from [<c04522d0>] (netlink_unicast+0x224/0x2c4)
>>  r4:d0074400 r3:c04532a4
>> [<c04520ac>] (netlink_unicast+0x0/0x2c4) from [<c04526a4>] (netlink_sendmsg+0x29
>> 0/0x320)
>> [<c0452414>] (netlink_sendmsg+0x0/0x320) from [<c0428eac>] (sock_sendmsg+0x98/0x
>> b4)
>> [<c0428e14>] (sock_sendmsg+0x0/0xb4) from [<c0429150>] (__sys_sendmsg+0x1d0/0x26
>> c)
>>  r4:d2b9bf64
>> [<c0428f80>] (__sys_sendmsg+0x0/0x26c) from [<c042ab30>] (sys_sendmsg+0x44/0x68)
>> [<c042aaec>] (sys_sendmsg+0x0/0x68) from [<c000ddc0>] (ret_fast_syscall+0x0/0x30
>> )
>>  r6:00134870 r5:4008f9f0 r4:00136660
>> ---[ end trace 4c6338919fa0b3d6 ]---
> Warning is about cac_time = 0 - this is not a problem at all.
>
>>
>> My iw dev show : channel 52 (5260 MHz), width: 20 MHz, center1: 5260 MHz  but I can not connect my station to the access point (seems it does not work yet cause the file "dfs_stats" still show "DFS not enabled" . I had a debug msg with debug mask = 0x432 for ath10k in the attached file if someone are interested in.
>>
> After cac_time you should see beacons in airlogs. Does you station see
> this AP in scan results? Does your station support this channel (iw
> list on sta side)?

BTW "DFS not enabled" means DFS region you have in regdb is not
supported by patter detector. Probably you don't have DFS region at
all? Add to debug mask ATH10K_DBG_REGULATORY,

> BR
> Janusz

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: [PATCH v3] ath10k: support get/set antenna configurations.
  2014-05-13 21:11       ` [PATCH v3] " Avery Pennarun
  2014-05-14  6:20         ` Yeoh Chun-Yeow
@ 2014-05-16 12:30         ` Kalle Valo
  2014-05-16 13:00           ` Ben Greear
  2014-05-22 16:56         ` Kalle Valo
  2 siblings, 1 reply; 134+ messages in thread
From: Kalle Valo @ 2014-05-16 12:30 UTC (permalink / raw)
  To: Avery Pennarun
  Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, Ben Greear, ath10k

Avery Pennarun <apenwarr@gmail.com> writes:

> From: Ben Greear <greearb@candelatech.com>
>
> Tested with CT firmware, but should work on standard
> firmware as well.
>
> Verified that target's tx/rx chain register is set appropriately,
> and that the tx rate goes down as number of chains
> decrease, but I did not actually try to verify antenna
> ceased to transmit when disabled.
>
> Signed-off-by: Ben Greear <greearb@candelatech.com>
> Signed-off-by: Avery Pennarun <apenwarr@gmail.com>

I now moved ar->supp_*_chainmask initialisation to
ath10k_mac_register(). Ben & Avery, is that for you two?

Full patch here:

https://github.com/kvalo/ath/commit/8230cdc4f434817d3c929292600fc3582e7dd3a8

-- 
Kalle Valo

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: [PATCH v3] ath10k: support get/set antenna configurations.
  2014-05-16 12:30         ` Kalle Valo
@ 2014-05-16 13:00           ` Ben Greear
  0 siblings, 0 replies; 134+ messages in thread
From: Ben Greear @ 2014-05-16 13:00 UTC (permalink / raw)
  To: Kalle Valo, Avery Pennarun
  Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, ath10k



On 05/16/2014 05:30 AM, Kalle Valo wrote:
> Avery Pennarun <apenwarr@gmail.com> writes:
>
>> From: Ben Greear <greearb@candelatech.com>
>>
>> Tested with CT firmware, but should work on standard
>> firmware as well.
>>
>> Verified that target's tx/rx chain register is set appropriately,
>> and that the tx rate goes down as number of chains
>> decrease, but I did not actually try to verify antenna
>> ceased to transmit when disabled.
>>
>> Signed-off-by: Ben Greear <greearb@candelatech.com>
>> Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
>
> I now moved ar->supp_*_chainmask initialisation to
> ath10k_mac_register(). Ben & Avery, is that for you two?
>
> Full patch here:
>
> https://github.com/kvalo/ath/commit/8230cdc4f434817d3c929292600fc3582e7dd3a8

Looks OK to me.

Thanks,
Ben

>

-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : RE : ath10k: set channel by command "iw" not from hostapd and DFS support of firmware-2.bin_10.1.467.2-1
  2014-05-16  7:35                             ` Janusz Dziedzic
  2014-05-16  7:46                               ` Bartosz Markowski
@ 2014-05-16 13:00                               ` Kalle Valo
  2014-05-16 14:03                                 ` Janusz Dziedzic
  1 sibling, 1 reply; 134+ messages in thread
From: Kalle Valo @ 2014-05-16 13:00 UTC (permalink / raw)
  To: Janusz Dziedzic
  Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, ath10k, Matti Laakso

Janusz Dziedzic <janusz.dziedzic@tieto.com> writes:

> Seems CONFIG_ATH10K_DFS_CERTIFIED is not set.
> You can simply check this during compilation adding eg. to mac.c
> #ifndef CONFIG_ATH10K_DFS_CERTIFIED
> #error DFS_NOT_SET
> #endif

This reminds me of a feature I have been thinking. We really should have
an info print of what ath10k kconfig options are enabled in the build.
For example something like this:

ath10k: debug off debugfs on tracing off dfs on

Patches welcome :)

-- 
Kalle Valo

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : RE  ath10k: set channel by command "iw" not from hostapd and DFS support of firmware-2.bin_10.1.467.2-1
  2014-05-16 11:50                                         ` Janusz Dziedzic
@ 2014-05-16 13:17                                           ` Vu Hai NGUYEN
  2014-05-16 17:40                                             ` Janusz Dziedzic
  0 siblings, 1 reply; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-05-16 13:17 UTC (permalink / raw)
  To: Janusz Dziedzic; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k, Bartosz Markowski

>> ath10k: wmi mgmt vdev up id 0x1 assoc id 0 bssid 04:f0:21:0e:38:be
>> ath10k: mac monitor vdev 1 started
>> ath10k: mac monitor started
>> ------------[ cut here ]------------
>> WARNING: at /home/alberix2/Desktop/Wilinks_ath10k/ACCESS_POINT_APPLI/Source/Driv
>> er_ath10k/backports-3.15-rc1-1/net/wireless/nl80211.c:5824 nl80211_start_radar_d
>> etection+0xf8/0x16c [cfg80211]()
>> Modules linked in: ath10k_pci(O) ath10k_core(O) ath(O) mac80211(O) cfg80211(O) c
>> ompat(O) arc4 ubifs ubi [last unloaded: compat]
>> Backtrace:
>> [<c0011938>] (dump_backtrace+0x0/0x118) from [<c050205c>] (dump_stack+0x18/0x20)
>>  r6:bf64b61f r5:000016c0 r4:00000000 r3:c10bc7ac
>> [<c0502044>] (dump_stack+0x0/0x20) from [<c0066c38>] (warn_slowpath_common+0x54/
>> 0x70)
>> [<c0066be4>] (warn_slowpath_common+0x0/0x70) from [<c0066c78>] (warn_slowpath_nu
>> ll+0x24/0x2c)
>>  r8:00000000 r7:00000000 r6:d2e88000 r5:d27a8000 r4:d2e883c8
>> r3:00000009
>> [<c0066c54>] (warn_slowpath_null+0x0/0x2c) from [<bf60fadc>] (nl80211_start_rada
>> r_detection+0xf8/0x16c [cfg80211])
>> [<bf60f9e4>] (nl80211_start_radar_detection+0x0/0x16c [cfg80211]) from [<c045348
>> 8>] (genl_rcv_msg+0x1b4/0x1f4)
>> [<c04532d4>] (genl_rcv_msg+0x0/0x1f4) from [<c0452904>] (netlink_rcv_skb+0x58/0x
>> b8)
>> [<c04528ac>] (netlink_rcv_skb+0x0/0xb8) from [<c04532c4>] (genl_rcv+0x20/0x30)
>>  r6:d318fe00 r5:d29afb00 r4:d29afb00 r3:c04532a4
>> [<c04532a4>] (genl_rcv+0x0/0x30) from [<c04522d0>] (netlink_unicast+0x224/0x2c4)
>>  r4:d0074400 r3:c04532a4
>> [<c04520ac>] (netlink_unicast+0x0/0x2c4) from [<c04526a4>] (netlink_sendmsg+0x29
>> 0/0x320)
>> [<c0452414>] (netlink_sendmsg+0x0/0x320) from [<c0428eac>] (sock_sendmsg+0x98/0x
>> b4)
>> [<c0428e14>] (sock_sendmsg+0x0/0xb4) from [<c0429150>] (__sys_sendmsg+0x1d0/0x26
>> c)
>>  r4:d2b9bf64
>> [<c0428f80>] (__sys_sendmsg+0x0/0x26c) from [<c042ab30>] (sys_sendmsg+0x44/0x68)
>> [<c042aaec>] (sys_sendmsg+0x0/0x68) from [<c000ddc0>] (ret_fast_syscall+0x0/0x30
>> )
>>  r6:00134870 r5:4008f9f0 r4:00136660
>> ---[ end trace 4c6338919fa0b3d6 ]---
> Warning is about cac_time = 0 - this is not a problem at all.

But if it's normal the minimum value send back from driver must be 60s ? I still not find where this data is get from to write to the file /net/wireless/regdb.c

>> My iw dev show : channel 52 (5260 MHz), width: 20 MHz, center1: 5260 MHz  but I can not connect my station to the access point (seems it does not work yet cause the file "dfs_stats" still show "DFS not enabled" . I had a debug msg with debug mask = 0x432 for ath10k in the attached file if someone are interested in.
>>
> After cac_time you should see beacons in airlogs. Does you station see
> this AP in scan results? Does your station support this channel (iw
> list on sta side)?

My Station can see the network but it is not stable (some time it appear in the scan result, then I refresh it gets lost and appears later if I re-scan). And I cannot connect to it.

>BTW "DFS not enabled" means DFS region you have in regdb is not
>supported by patter detector. Probably you don't have DFS region at
>all? Add to debug mask ATH10K_DBG_REGULATORY,

This msg may be interested with you? :D. It shows that my DFS master region is ETSI

ath10k: failed to initialise DFS pattern detector                               
cfg80211: Calling CRDA for country: FR                                          
cfg80211: Regulatory domain changed to country: FR                              
cfg80211:  DFS Master region: ETSI                                              
cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (
dfs_cac_time)                                                                   
cfg80211:   (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)     
cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)     
cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz), (N/A, 2000 mBm), (0 s)     
cfg80211:   (5490000 KHz - 5710000 KHz @ 80000 KHz), (N/A, 2700 mBm), (0 s)     
cfg80211:   (57240000 KHz - 65880000 KHz @ 2160000 KHz), (N/A, 4000 mBm), (N/A)

And you can say anything from this? :

ath10k: mac config channel 5280MHz flags 0x10a radar 1                          
ath10k: mac monitor refs: promisc 1 monitor 0 cac 1                             
ath10k: mac monitor already started                                             
ath10k: mac cac start monitor vdev 1                                            
ath10k: mac config channel to 5280MHz (cf1 5280MHz cf2 0MHz width 20)           
ath10k: wmi mgmt vdev down id 0x1                                               
ath10k: wmi vdev stop id 0x1                                                    
ath10k: WMI_VDEV_STOPPED_EVENTID                                                
ath10k: mac monitor vdev 1 stopped                                              
ath10k: mac monitor refs: promisc 1 monitor 0 cac 1                             
ath10k: wmi vdev start id 0x1 flags: 0x0, freq 5280, mode 4, ch_flags: 0x404, max_power: 40                                                                     
ath10k: WMI_VDEV_START_RESP_EVENTID                                             
ath10k: wmi mgmt vdev up id 0x1 assoc id 0 bssid 04:f0:21:0e:38:be              
ath10k: mac monitor vdev 1 started                                                                                                 

NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE



_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : RE : ath10k: set channel by command "iw" not from hostapd and DFS support of firmware-2.bin_10.1.467.2-1
  2014-05-16 13:00                               ` RE : RE : RE : RE : " Kalle Valo
@ 2014-05-16 14:03                                 ` Janusz Dziedzic
  2014-05-16 14:12                                   ` Kalle Valo
  0 siblings, 1 reply; 134+ messages in thread
From: Janusz Dziedzic @ 2014-05-16 14:03 UTC (permalink / raw)
  To: Kalle Valo
  Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, ath10k, Matti Laakso

On 16 May 2014 15:00, Kalle Valo <kvalo@qca.qualcomm.com> wrote:
> Janusz Dziedzic <janusz.dziedzic@tieto.com> writes:
>
>> Seems CONFIG_ATH10K_DFS_CERTIFIED is not set.
>> You can simply check this during compilation adding eg. to mac.c
>> #ifndef CONFIG_ATH10K_DFS_CERTIFIED
>> #error DFS_NOT_SET
>> #endif
>
> This reminds me of a feature I have been thinking. We really should have
> an info print of what ath10k kconfig options are enabled in the build.
> For example something like this:
>
> ath10k: debug off debugfs on tracing off dfs on
>
> Patches welcome :)

I can add this, but question here is what *.c file should I use -
mac.c looks fine, but still someone can set flags only for some files
and for some files not.

BR
Janusz

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : RE : ath10k: set channel by command "iw" not from hostapd and DFS support of firmware-2.bin_10.1.467.2-1
  2014-05-16 14:03                                 ` Janusz Dziedzic
@ 2014-05-16 14:12                                   ` Kalle Valo
  0 siblings, 0 replies; 134+ messages in thread
From: Kalle Valo @ 2014-05-16 14:12 UTC (permalink / raw)
  To: Janusz Dziedzic
  Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, ath10k, Matti Laakso

Janusz Dziedzic <janusz.dziedzic@tieto.com> writes:

> On 16 May 2014 15:00, Kalle Valo <kvalo@qca.qualcomm.com> wrote:
>> Janusz Dziedzic <janusz.dziedzic@tieto.com> writes:
>>
>>> Seems CONFIG_ATH10K_DFS_CERTIFIED is not set.
>>> You can simply check this during compilation adding eg. to mac.c
>>> #ifndef CONFIG_ATH10K_DFS_CERTIFIED
>>> #error DFS_NOT_SET
>>> #endif
>>
>> This reminds me of a feature I have been thinking. We really should have
>> an info print of what ath10k kconfig options are enabled in the build.
>> For example something like this:
>>
>> ath10k: debug off debugfs on tracing off dfs on
>>
>> Patches welcome :)
>
> I can add this, but question here is what *.c file should I use -
> mac.c looks fine

I think having it after the info message below in core.c is a good place.

	if (!test_bit(ATH10K_FLAG_FIRST_BOOT_DONE, &ar->dev_flags))
		ath10k_info("%s (0x%08x, 0x%08x) fw %s api %d htt %d.%d\n",

> but still someone can set flags only for some files and for some files
> not.

We cannot make this 100% bullet proof. If someone messes around with the
build system and breaks it in the process, then it his/her problem and
there's nothing we can do. We can only assume that the build system
works as specified.

-- 
Kalle Valo

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE ath10k: set channel by command "iw" not from hostapd and DFS support of firmware-2.bin_10.1.467.2-1
  2014-05-16 13:17                                           ` RE : RE " Vu Hai NGUYEN
@ 2014-05-16 17:40                                             ` Janusz Dziedzic
  2014-05-19  9:39                                               ` Vu Hai NGUYEN
  0 siblings, 1 reply; 134+ messages in thread
From: Janusz Dziedzic @ 2014-05-16 17:40 UTC (permalink / raw)
  To: Vu Hai NGUYEN; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k, Bartosz Markowski

On 16 May 2014 15:17, Vu Hai NGUYEN <vh.nguyen@actiasodielec.fr> wrote:
>>> ath10k: wmi mgmt vdev up id 0x1 assoc id 0 bssid 04:f0:21:0e:38:be
>>> ath10k: mac monitor vdev 1 started
>>> ath10k: mac monitor started
>>> ------------[ cut here ]------------
>>> WARNING: at /home/alberix2/Desktop/Wilinks_ath10k/ACCESS_POINT_APPLI/Source/Driv
>>> er_ath10k/backports-3.15-rc1-1/net/wireless/nl80211.c:5824 nl80211_start_radar_d
>>> etection+0xf8/0x16c [cfg80211]()
>>> Modules linked in: ath10k_pci(O) ath10k_core(O) ath(O) mac80211(O) cfg80211(O) c
>>> ompat(O) arc4 ubifs ubi [last unloaded: compat]
>>> Backtrace:
>>> [<c0011938>] (dump_backtrace+0x0/0x118) from [<c050205c>] (dump_stack+0x18/0x20)
>>>  r6:bf64b61f r5:000016c0 r4:00000000 r3:c10bc7ac
>>> [<c0502044>] (dump_stack+0x0/0x20) from [<c0066c38>] (warn_slowpath_common+0x54/
>>> 0x70)
>>> [<c0066be4>] (warn_slowpath_common+0x0/0x70) from [<c0066c78>] (warn_slowpath_nu
>>> ll+0x24/0x2c)
>>>  r8:00000000 r7:00000000 r6:d2e88000 r5:d27a8000 r4:d2e883c8
>>> r3:00000009
>>> [<c0066c54>] (warn_slowpath_null+0x0/0x2c) from [<bf60fadc>] (nl80211_start_rada
>>> r_detection+0xf8/0x16c [cfg80211])
>>> [<bf60f9e4>] (nl80211_start_radar_detection+0x0/0x16c [cfg80211]) from [<c045348
>>> 8>] (genl_rcv_msg+0x1b4/0x1f4)
>>> [<c04532d4>] (genl_rcv_msg+0x0/0x1f4) from [<c0452904>] (netlink_rcv_skb+0x58/0x
>>> b8)
>>> [<c04528ac>] (netlink_rcv_skb+0x0/0xb8) from [<c04532c4>] (genl_rcv+0x20/0x30)
>>>  r6:d318fe00 r5:d29afb00 r4:d29afb00 r3:c04532a4
>>> [<c04532a4>] (genl_rcv+0x0/0x30) from [<c04522d0>] (netlink_unicast+0x224/0x2c4)
>>>  r4:d0074400 r3:c04532a4
>>> [<c04520ac>] (netlink_unicast+0x0/0x2c4) from [<c04526a4>] (netlink_sendmsg+0x29
>>> 0/0x320)
>>> [<c0452414>] (netlink_sendmsg+0x0/0x320) from [<c0428eac>] (sock_sendmsg+0x98/0x
>>> b4)
>>> [<c0428e14>] (sock_sendmsg+0x0/0xb4) from [<c0429150>] (__sys_sendmsg+0x1d0/0x26
>>> c)
>>>  r4:d2b9bf64
>>> [<c0428f80>] (__sys_sendmsg+0x0/0x26c) from [<c042ab30>] (sys_sendmsg+0x44/0x68)
>>> [<c042aaec>] (sys_sendmsg+0x0/0x68) from [<c000ddc0>] (ret_fast_syscall+0x0/0x30
>>> )
>>>  r6:00134870 r5:4008f9f0 r4:00136660
>>> ---[ end trace 4c6338919fa0b3d6 ]---
>> Warning is about cac_time = 0 - this is not a problem at all.
>
> But if it's normal the minimum value send back from driver must be 60s ? I still not find where this data is get from to write to the file /net/wireless/regdb.c
>
>>> My iw dev show : channel 52 (5260 MHz), width: 20 MHz, center1: 5260 MHz  but I can not connect my station to the access point (seems it does not work yet cause the file "dfs_stats" still show "DFS not enabled" . I had a debug msg with debug mask = 0x432 for ath10k in the attached file if someone are interested in.
>>>
>> After cac_time you should see beacons in airlogs. Does you station see
>> this AP in scan results? Does your station support this channel (iw
>> list on sta side)?
>
> My Station can see the network but it is not stable (some time it appear in the scan result, then I refresh it gets lost and appears later if I re-scan). And I cannot connect to it.
>
>>BTW "DFS not enabled" means DFS region you have in regdb is not
>>supported by patter detector. Probably you don't have DFS region at
>>all? Add to debug mask ATH10K_DBG_REGULATORY,
>
> This msg may be interested with you? :D. It shows that my DFS master region is ETSI
>
> ath10k: failed to initialise DFS pattern detector
> cfg80211: Calling CRDA for country: FR
> cfg80211: Regulatory domain changed to country: FR
> cfg80211:  DFS Master region: ETSI
> cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (
> dfs_cac_time)
> cfg80211:   (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
> cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
> cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz), (N/A, 2000 mBm), (0 s)
> cfg80211:   (5490000 KHz - 5710000 KHz @ 80000 KHz), (N/A, 2700 mBm), (0 s)
> cfg80211:   (57240000 KHz - 65880000 KHz @ 2160000 KHz), (N/A, 4000 mBm), (N/A)
>
> And you can say anything from this? :
>
Yes, ath.ko is compiled without CERTIFICATION_ONUS flag;
(probably file compiled but always return NULL during pattern detector init).

BR
Janusz

> ath10k: mac config channel 5280MHz flags 0x10a radar 1
> ath10k: mac monitor refs: promisc 1 monitor 0 cac 1
> ath10k: mac monitor already started
> ath10k: mac cac start monitor vdev 1
> ath10k: mac config channel to 5280MHz (cf1 5280MHz cf2 0MHz width 20)
> ath10k: wmi mgmt vdev down id 0x1
> ath10k: wmi vdev stop id 0x1
> ath10k: WMI_VDEV_STOPPED_EVENTID
> ath10k: mac monitor vdev 1 stopped
> ath10k: mac monitor refs: promisc 1 monitor 0 cac 1
> ath10k: wmi vdev start id 0x1 flags: 0x0, freq 5280, mode 4, ch_flags: 0x404, max_power: 40
> ath10k: WMI_VDEV_START_RESP_EVENTID
> ath10k: wmi mgmt vdev up id 0x1 assoc id 0 bssid 04:f0:21:0e:38:be
> ath10k: mac monitor vdev 1 started
>
> NGUYEN Vu Hai
> Acita-Sodielec
> Route de Mayres - B.P. 9
> 12100 St GEORGES DE LUZENCON
> FRANCE
>
>

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : ath10k: firmware crash in station mode
  2014-05-15 13:27               ` RE : " Vu Hai NGUYEN
@ 2014-05-19  6:59                 ` Michal Kazior
  2014-05-19  9:47                   ` RE : " Vu Hai NGUYEN
  2014-05-23 14:55                 ` TR " Vu Hai NGUYEN
  1 sibling, 1 reply; 134+ messages in thread
From: Michal Kazior @ 2014-05-19  6:59 UTC (permalink / raw)
  To: Vu Hai NGUYEN; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k

On 15 May 2014 15:27, Vu Hai NGUYEN <vh.nguyen@actiasodielec.fr> wrote:
>>This is NULL dereference in firmware. I suspect it's an incomplete
>>driver-firmware setup (i.e. some commands weren't issued or were
>>invalid).
>
>>Can you enable debug logs ( echo 0xffffff3f | sudo tee /sys/module/ath10k_core/parameters/debug_mask ) before you try to
>>associate and post logs, please? I'd like to see command sequence sent
>>to firmware before the crash happens.
>
> I enable directly the debug_mask when I load the module "modprobe ath10k_core.ko debug_mask=0x0xffffff3f" (I thought it is the same thing like what you do, right?).
> You can found de debug mess in the attached file (debug_10-1.txt). (line 3007: wlan0: associated and then in line 3008: ath10k: firmware crashed!)

Yeah. Loading core module with debug_mask pre-set is fine too. I just
tend to tune the debug_mask during runtime myself.

Thanks for capturing the logs!

Apparently 10.1 crashes right after ath10k tries to submit a frame tx command.

The 636 crashes because the interface is in promiscuous mode (it's
either put in a bridge or you have tcpdump running on it?). This won't
work with 636. See mailing list archives. 636 has broken monitor mode
and it crashes often.

Can you please retry with debug_mask=0xffffffff to get full dumps and
see what kind of frame is being sent? I guess it's an ipv6 neighbour
solicitation but the request itself might be malformed for some reason
causing firmware to crash unexpectedly.

Also, can you try the test without making wlan interface promiscuous
(on both firmwares, with debug_mask=0xffffffff) too, please?


>>Can you post the crash logs (as noted above) when you try the 999
>>branch too, please? It seems 999 crashes sooner than 10.1. It might be
>>helpful to see the different crash points.
>
> Yes it crashed sooner. There are no wlan0: associated in the debug message. (attached file: debug_999.txt).
>
>>I have no idea what version of kernel you're using. Perhaps you broke
>>your source tree when merging/rebasing/cherry-picking/backporting?
>>What's your git head commit?
>
>>I can associate ath10k with both firmware branches without a problem.
>
> Actually I'm compiling ath10k from backports version 3.15 for linux kernel 3.2.36 (provided for my chipset Marvell Armada 370). And I replace the folder /driver/net/wireless/ath from the one of master branch of ath10k (I can not see the information from debug file "fw_stats"  with the version ath10k of backport). I also applied the patch for get/set antennas too.

Do I understand correctly that you replace drivers/net/wireless/ath in
the *backports tree* with the drivers/net/wireless/ath found in
github.com/kvalo/ath master branch?

This is a bad idea. I'm not sure how *exactly* you replace the
directory but I hope you're aware backports rename ifdefs in the code
and Makefiles. This means Kconfig flags such as ATH10K_DFS_CERTIFIED
might not compile code you want even if you select them in `make
menuconfig`. This might explain why you're having problems with DFS.

Ideally you should generate backports tree yourself from a given
kernel tree (e.g. kvalo's ath master branch). See
https://backports.wiki.kernel.org/index.php/Documentation/backports/hacking
for more details on this.


>>Yes, this works (or at least it should). It might be tricky to get it
>>right for someone who's not familiar with regulatory shenanigans in
>>some cases.
>
>>Recently there was a bug introduced that broke DFS (see linux-wireless
>>mailing list; it's in the process of being fixed), but since you
>>haven't provided any information what your kernel tree is I can't tell
>>if that's the actual problem or not.
>
> My kernel tree is 3.2.36 (sorry if I don't get what you mean). Please feel free to ask me more information if you need.

I'm not sure if your backports have the offending patch that breaks
DFS or not. If so you might need to cherry-pick it to your backports
tree manually or regenerate backports.

If you use backports 3.15-rc1-1 (as found on
http://drvbp1.linux-foundation.org/~mcgrof/rel-html/backports/) then
there's no DFS bug there unless you tried to replace net/mac80211 and
net/wireless (as you've done with drivers/net/wireless/ath/ ...).

If you generate backports with kvalo/ath master branch then DFS won't
work as it is now (due to the bug I've mentioned earlier). Kalle
doesn't have the patch that deals with it, yet. You'll need to
cherry-pick the following 2 patches before generating backports from
kvalo/ath:

  https://git.kernel.org/cgit/linux/kernel/git/jberg/mac80211-next.git/commit/?id=67ae07a109f3d518085e3b81aa48740e8c5cc3f7
  https://git.kernel.org/cgit/linux/kernel/git/jberg/mac80211-next.git/commit/?id=00ec75fc5a6499d8fdeb6ec9f8f5df68b9291c74


Michał

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : RE  ath10k: set channel by command "iw" not from hostapd and DFS support of firmware-2.bin_10.1.467.2-1
  2014-05-16 17:40                                             ` Janusz Dziedzic
@ 2014-05-19  9:39                                               ` Vu Hai NGUYEN
  2014-05-19 10:42                                                 ` Janusz Dziedzic
  0 siblings, 1 reply; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-05-19  9:39 UTC (permalink / raw)
  To: Janusz Dziedzic; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k, Bartosz Markowski

>> ath10k: failed to initialise DFS pattern detector
>> cfg80211: Calling CRDA for country: FR
>> cfg80211: Regulatory domain changed to country: FR
>> cfg80211:  DFS Master region: ETSI
>> cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (
>> dfs_cac_time)
>> cfg80211:   (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
>> cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
>> cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz), (N/A, 2000 mBm), (0 s)
>>cfg80211:   (5490000 KHz - 5710000 KHz @ 80000 KHz), (N/A, 2700 mBm), (0 s)
>> cfg80211:   (57240000 KHz - 65880000 KHz @ 2160000 KHz), (N/A, 4000 mBm), (N/A)

>Yes, ath.ko is compiled without CERTIFICATION_ONUS flag;
>(probably file compiled but always return NULL during pattern detector init).

Thanks, my mistake cause I replace the folder ath in backports with the one from master branch and I didn't change all of CONFIG_... to CPTCFG, now I got:

ath: country maps to regdmn code: 0x37                                          
ath: Country alpha2 being used: FR                                              
ath: Regpair used: 0x37                                                         
ath10k: dfs region 0x0                                                          
cfg80211: Calling CRDA for country: FR                                          
ath10k: dfs region 0x2                                                          
cfg80211: Regulatory domain changed to country: FR                              
cfg80211:  DFS Master region: ETSI                                              
cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), )
cfg80211:   (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)     
cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)     
cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz), (N/A, 2000 mBm), (0 s)     
cfg80211:   (5490000 KHz - 5710000 KHz @ 80000 KHz), (N/A, 2700 mBm), (0 s)     
cfg80211:   (57240000 KHz - 65880000 KHz @ 2160000 KHz), (N/A, 4000 mBm), (N/A) 

And another different backtrace than before:

------------[ cut here ]------------                                            
WARNING: at /home/alberix2/Desktop/Wilinks_ath10k/ACCESS_POINT_APPLI/Source/Dri)
Modules linked in: ath10k_pci(O) ath10k_core(O) ath(O) mac80211(O) cfg80211(O) ]
Backtrace:                                                                      
[<c0011938>] (dump_backtrace+0x0/0x118) from [<c050205c>] (dump_stack+0x18/0x20)
 r6:bf209143 r5:000016c0 r4:00000000 r3:c10bc7ac                                
[<c0502044>] (dump_stack+0x0/0x20) from [<c0066c38>] (warn_slowpath_common+0x54)
[<c0066be4>] (warn_slowpath_common+0x0/0x70) from [<c0066c78>] (warn_slowpath_n)
 r8:00000000 r7:00000000 r6:d2ef3000 r5:d27fc000 r4:d2ef33c8                    
r3:00000009                                                                     
[<c0066c54>] (warn_slowpath_null+0x0/0x2c) from [<bf1ccadc>] (nl80211_start_rad)
[<bf1cc9e4>] (nl80211_start_radar_detection+0x0/0x16c [cfg80211]) from [<c04534)
[<c04532d4>] (genl_rcv_msg+0x0/0x1f4) from [<c0452904>] (netlink_rcv_skb+0x58/0)
[<c04528ac>] (netlink_rcv_skb+0x0/0xb8) from [<c04532c4>] (genl_rcv+0x20/0x30)  
 r6:c09a2400 r5:d2a52ca0 r4:d2a52ca0 r3:c04532a4                                
[<c04532a4>] (genl_rcv+0x0/0x30) from [<c04522d0>] (netlink_unicast+0x224/0x2c4)
 r4:d0074400 r3:c04532a4                                                        
[<c04520ac>] (netlink_unicast+0x0/0x2c4) from [<c04526a4>] (netlink_sendmsg+0x2)
[<c0452414>] (netlink_sendmsg+0x0/0x320) from [<c0428eac>] (sock_sendmsg+0x98/0)
[<c0428e14>] (sock_sendmsg+0x0/0xb4) from [<c0429150>] (__sys_sendmsg+0x1d0/0x2)
 r4:d2887f64                                                                    
[<c0428f80>] (__sys_sendmsg+0x0/0x26c) from [<c042ab30>] (sys_sendmsg+0x44/0x68)
[<c042aaec>] (sys_sendmsg+0x0/0x68) from [<c000ddc0>] (ret_fast_syscall+0x0/0x3)
 r6:00134870 r5:4010d9f0 r4:00136660                                            
---[ end trace 3dff84bb4058c392 ]---     

My station can see the wifi from ap but it can not connected to it yet. Could the backtrace 
say anything about my problem?

Regards,
NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE





_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : RE : ath10k: firmware crash in station mode
  2014-05-19  6:59                 ` Michal Kazior
@ 2014-05-19  9:47                   ` Vu Hai NGUYEN
  2014-05-19 12:51                     ` Michal Kazior
  0 siblings, 1 reply; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-05-19  9:47 UTC (permalink / raw)
  To: Michal Kazior; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k

[-- Attachment #1: Type: text/plain, Size: 2845 bytes --]

>The 636 crashes because the interface is in promiscuous mode (it's
>either put in a bridge or you have tcpdump running on it?). This won't
>work with 636. See mailing list archives. 636 has broken monitor mode
>and it crashes often.

>Can you please retry with debug_mask=0xffffffff to get full dumps and
>see what kind of frame is being sent? I guess it's an ipv6 neighbour
>solicitation but the request itself might be malformed for some reason
>causing firmware to crash unexpectedly.

>Also, can you try the test without making wlan interface promiscuous
>(on both firmwares, with debug_mask=0xffffffff) too, please?

Yes I used promiscuous to set up my station in bridge mode, the firmware crashed 
but If don't use promiscuous (put my station in router mode), the firmware didn't crash and
I can associate with the access point without problem. 
You can found in the attached file 4 dmesg file (with/without promicuous) for both version of firmware.
(If I set debug mask=0xffffffff there are many lines "htt rx pop" and I can not see all the dmesg, so I 
only set the mask=0xffffff3f).
But I wonder if there will be any progress of the firmware in the future for promiscuous so that I can 
set up bridge mode?  

>Ideally you should generate backports tree yourself from a given
>kernel tree (e.g. kvalo's ath master branch). See
>https://backports.wiki.kernel.org/index.php/Documentation/backports/hacking
>for more details on this.

Thanks, I'll try it.

>I'm not sure if your backports have the offending patch that breaks
>DFS or not. If so you might need to cherry-pick it to your backports
>tree manually or regenerate backports.

>If you use backports 3.15-rc1-1 (as found on
>http://drvbp1.linux-foundation.org/~mcgrof/rel-html/backports/) then
>there's no DFS bug there unless you tried to replace net/mac80211 and
>net/wireless (as you've done with drivers/net/wireless/ath/ ...).

I didn't touch mac80211 and wireless, only the folder ath

>If you generate backports with kvalo/ath master branch then DFS won't
>work as it is now (due to the bug I've mentioned earlier). Kalle
>doesn't have the patch that deals with it, yet. You'll need to
>cherry-pick the following 2 patches before generating backports from kvalo/ath:

 > https://git.kernel.org/cgit/linux/kernel/git/jberg/mac80211-next.git/commit/?id=67ae07a109f3d518085e3b81aa48740e8c5cc3f7
 >https://git.kernel.org/cgit/linux/kernel/git/jberg/mac80211-next.git/commit/?id=00ec75fc5a6499d8fdeb6ec9f8f5df68b9291c74

 I did not get your suggest here, How can I "cherry-pick" thoses 2 patch before generating backports? I think that I sould generate the backport first and then apply these 2 patchs later?

NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE







Michał

[-- Attachment #2: 10-1_no_promiscuous.txt --]
[-- Type: text/plain, Size: 35548 bytes --]

ath10k: boot hif stop
ath10k: boot warm reset
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x00001000
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x00000000
ath10k: boot target reset state: 0x00000804
ath10k: boot warm reset complete
ath10k: boot hif power down
ath10k: boot warm reset
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x00000000
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x00000000
ath10k: boot target reset state: 0x00000800
ath10k: boot warm reset complete
ath10k: boot hif power up
ath10k: boot warm reset
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x00000000
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x00000000
ath10k: boot target reset state: 0x00000800
ath10k: boot warm reset complete
ath10k: boot init ce src ring id 0 entries 16 base_addr d3034000
ath10k: boot ce dest ring id 1 entries 512 base_addr d30f6000
ath10k: boot ce dest ring id 2 entries 32 base_addr d2fca000
ath10k: boot init ce src ring id 3 entries 32 base_addr d2ff2000
ath10k: boot init ce src ring id 4 entries 4096 base_addr d2fd0000
ath10k: boot init ce src ring id 7 entries 2 base_addr d2fdf000
ath10k: boot ce dest ring id 7 entries 2 base_addr d2fde000
ath10k: boot waiting target to initialise
ath10k: boot target indicator 0
ath10k: boot target indicator 0
ath10k: boot target indicator 0
ath10k: boot target indicator 2
ath10k: boot target initialised
ath10k: bmi start
ath10k: bmi write address 0x400800 length 4
ath10k: bmi read address 0x400810 length 4
ath10k: bmi write address 0x400810 length 4
ath10k: bmi write address 0x400844 length 4
ath10k: bmi write address 0x400904 length 4
ath10k: bmi read address 0x4008ac length 4
ath10k: boot push board extended data addr 0x0
ath10k: bmi read address 0x400854 length 4
ath10k: bmi write address 0x401cc0 length 2116
ath10k: bmi write address 0x400858 length 4
ath10k: boot upload otp to 0x1234 len 6917
ath10k: bmi fast download address 0x1234 buffer 0xe23bf034 length 6917
ath10k: bmi lz stream start address 0x1234
ath10k: bmi lz data buffer 0xe23bf034 length 6916
ath10k: bmi lz data buffer 0xd2c39d3c length 4
ath10k: bmi lz stream start address 0x0
ath10k: bmi execute address 0x1234 param 0x0
ath10k: bmi execute result 0x0
ath10k: boot otp execute result 0
ath10k: bmi fast download address 0x1234 buffer 0xe23c0b44 length 190250
ath10k: bmi lz stream start address 0x1234
ath10k: bmi lz data buffer 0xe23c0b44 length 190248
ath10k: bmi lz data buffer 0xd2c39d3c length 4
ath10k: bmi lz stream start address 0x0
ath10k: bmi write address 0x400814 length 4
ath10k: pci hif set callbacks
ath10k: pci hif get default pipe
ath10k: pci hif map service
ath10k: bmi done
ath10k: boot hif start
ath10k: Target ready! transmit resources: 2 size:1792
ath10k: pci hif map service
ath10k: boot htc service 'Control' ul pipe 0 dl pipe 1 eid 0 ready
ath10k: boot htc ep 0 ul polled 0 dl polled 0
ath10k: boot htc service 'Control' eid 0 TX flow control disabled
ath10k: boot htc service HTT Data does not allocate target credits
ath10k: ath10k_htc_build_tx_ctrl_skb: skb d274b800
ath10k: pci tx item 0 paddr 0x126e9c6c len 16 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 0 skb d274b800
ath10k: HTC Service HTT Data connect response: status: 0x0, assigned ep: 0x1
ath10k: pci hif map service
ath10k: boot htc service 'HTT Data' ul pipe 4 dl pipe 1 eid 1 ready
ath10k: boot htc ep 1 ul polled 1 dl polled 0
ath10k: boot htc service 'HTT Data' eid 1 TX flow control disabled
ath10k: htt tx max num pending tx 1424
ath10k: htt rx ring size 1024 fill_level 1000
ath10k: ath10k_htc_build_tx_ctrl_skb: skb d2e36740
ath10k: pci tx item 0 paddr 0x12a88c6c len 16 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 0 skb d2e36740
ath10k: HTC Service WMI connect response: status: 0x0, assigned ep: 0x2
ath10k: pci hif map service
ath10k: boot htc service 'WMI' ul pipe 3 dl pipe 2 eid 2 ready
ath10k: boot htc ep 2 ul polled 0 dl polled 0
ath10k: ath10k_htc_build_tx_ctrl_skb: skb d274b980
ath10k: HTC is using TX credit flow control
ath10k: pci tx item 0 paddr 0x12bfd06c len 20 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 0 skb d274b980
ath10k: htc rx completion ep 2 skb d2704080
ath10k: firmware has requested 1 memory chunks
ath10k: wmi mem_req_id 1 num_units 0 num_unit_info 2 unit size 404 actual units 145
ath10k: wmi event service ready sw_ver 0x4100270f abi_ver 1 phy_cap 0x00000003 ht_cap 0x0000085b vht_cap 0x338001b2 vht_supp_msc 0x0000ffea sys_cap_info 0x00000000 mem_reqs 1 num_rf_chains 3
ath10k: boot wmi ready
ath10k: firmware 10.1.467.2-1 booted
ath10k: wmi sending 1 memory chunks info.
ath10k: wmi chunk 0 len 58580 requested, addr 0x12860000
ath10k: wmi init 10x
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fe0060 len 148 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2704080
ath10k: htc rx completion ep 2 skb d2d48ee0
ath10k: wmi event debug print 'P 145 V 16 T 443'
ath10k: htc rx completion ep 2 skb d2d48e20
ath10k: wmi event ready sw_version 1090529039 abi_version 1 mac_addr 04:f0:21:0e:38:be status 0 skb->len 20 ev-sz 20
ath10k: pci tx item 0 paddr 0x12dc7860 len 12 n_items 1
ath10k: pci hif send complete check
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb d2d48e20
ath10k: htc rx completion ep 1 skb d274b8c0
ath10k: htt rx, msg_type: 0x0
ath10k: htt target version 2.1
ath10k: pci tx item 0 paddr 0x12dc7860 len 48 n_items 1
ath10k: wmi pdev set param 30 value 1
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12dc7a60 len 20 n_items 1
ath10k: wmi pdev set param 10 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2d48e20
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12dc7660 len 20 n_items 1
ath10k: wmi pdev set param 1 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2704080
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12dc7a60 len 20 n_items 1
ath10k: wmi pdev set param 2 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d274ba40
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12dc7660 len 20 n_items 1
ath10k: wmi pdev set param 31 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2704080
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12dc7a60 len 20 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d274bbc0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac channel [0/32] freq 2412 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [1/32] freq 2417 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [2/32] freq 2422 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [3/32] freq 2427 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [4/32] freq 2432 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [5/32] freq 2437 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [6/32] freq 2442 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [7/32] freq 2447 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [8/32] freq 2452 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [9/32] freq 2457 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [10/32] freq 2462 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [11/32] freq 2467 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [12/32] freq 2472 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [13/32] freq 5180 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [14/32] freq 5200 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [15/32] freq 5220 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [16/32] freq 5240 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [17/32] freq 5260 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [18/32] freq 5280 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [19/32] freq 5300 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [20/32] freq 5320 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [21/32] freq 5500 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [22/32] freq 5520 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [23/32] freq 5540 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [24/32] freq 5560 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [25/32] freq 5580 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [26/32] freq 5600 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [27/32] freq 5620 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [28/32] freq 5640 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [29/32] freq 5660 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [30/32] freq 5680 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [31/32] freq 5700 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x00929060 len 784 n_items 1
ath10k: wmi pdev regdomain rd 37 rd2g 37 rd5g 37 ctl2g 30 ctl5g 30 dfs_region 2
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d274bc80
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12dc7a60 len 36 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2704080
ath10k: mac vdev create 0 (add interface) type 2 subtype 0
ath10k: WMI vdev create: id 0 type 2 subtype 0 macaddr 04:f0:21:0e:38:be
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12dc7a60 len 32 n_items 1
ath10k: wmi vdev id 0x0 set param 31 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2704080
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12dc7660 len 24 n_items 1
ath10k: vdev param 0 not supported by firmware
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d274bd40
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12dc7660 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 1 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d274bd40
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12dc7a60 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 2 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d274be00
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12dc7660 len 24 n_items 1
ath10k: wmi vdev id 0x0 set param 1 value -1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d274bd40
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12dc7a60 len 24 n_items 1
ath10k: wmi vdev id 0x0 set param 2 value -1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d274bec0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12dc7660 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d274bd40
ath10k: mac vdev 0 cts_prot 0
ath10k: wmi vdev id 0x0 set param 43 value 0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12dc7660 len 24 n_items 1
ath10k: mac vdev 0 slot_time 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d274bd40
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: wmi vdev id 0x0 set param 7 value 1
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12dc7660 len 24 n_items 1
ath10k: mac vdev 0 preamble 1n
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d290e1a0
ath10k: wmi vdev id 0x0 set param 8 value 1
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12dc7660 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d290e1a0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: wmi pdev set wmm params
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12dc7660 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d290e260
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12dc7a60 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d290e0e0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12dc7660 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d290e260
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12dc7a60 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d290e320
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12dc7660 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d290e260
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12b5d860 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e36500
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: wmi pdev set wmm params
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12b5d860 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d290e4a0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12dc7660 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d290e260
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12b5d860 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d290e4a0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12dc7660 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d290e560
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12b5d860 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d290e4a0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12dc7660 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d290e620
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac config channel 2412MHz flags 0x1a0 radar 0
ath10k: mac config power 20
ath10k: wmi pdev set param 3 value 40
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12dc7660 len 20 n_items 1
ath10k: wmi pdev set param 4 value 40
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d290e6e0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12b5d860 len 20 n_items 1
ath10k: mac vdev 0 psmode disable
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d290e4a0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: wmi set powersave id 0x0 mode 0
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12b5d860 len 20 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d290e7a0
ADDRCONF(NETDEV_UP): wlan0: link is not ready
eth0: stopped
Port 0: Link-down
eth0: link up
Port 1: Link-up, Full-duplex, Speed-100Mbps.
Port 2: Link-down
Port 3: Link-down
Port -1: Link-down
eth0: started
ath10k: wmi start scan
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12dc7a60 len 196 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d286fca0
ath10k: htc ep 2 got 1 credits (total 1)
ath10k: htc rx completion ep 2 skb d2d48d60
ath10k: WMI_SCAN_EVENTID
ath10k: scan event type 1 reason 3 freq 0 req_id 40961 scan_id 40960 vdev_id 0
ath10k: SCAN_EVENT_STARTED
ath10k: htc rx completion ep 2 skb d2d48ca0
ath10k: WMI_SCAN_EVENTID
ath10k: scan event type 4 reason 3 freq 0 req_id 40961 scan_id 40960 vdev_id 0
ath10k: SCAN_EVENT_BSS_CHANNEL
ath10k: htc ep 2 got 1 credits (total 2)
ath10k: htc rx completion ep 2 skb d2d48be0
ath10k: WMI_SCAN_EVENTID
ath10k: scan event type 8 reason 3 freq 2457 req_id 40961 scan_id 40960 vdev_id 0
ath10k: SCAN_EVENT_FOREIGN_CHANNEL
ath10k: htc rx completion ep 2 skb d2d48b20
ath10k: chan info err_code 0 freq 2457 cmd_flags 0 noise_floor 0 rx_clear_count 0 cycle_count 369485
ath10k: htc rx completion ep 2 skb d2d48a60
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2d48a60 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -26, rate_idx 0
ath10k: pci hif send complete check
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb d274b8c0
ath10k: htc rx completion ep 1 skb d290e860
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2d489a0
ath10k: WMI_SCAN_EVENTID
ath10k: scan event type 4 reason 3 freq 2457 req_id 40961 scan_id 40960 vdev_id 0
ath10k: SCAN_EVENT_BSS_CHANNEL
ath10k: htc rx completion ep 2 skb d2d488e0
ath10k: chan info err_code 0 freq 2457 cmd_flags 1 noise_floor -102 rx_clear_count 271185 cycle_count 4419979
ath10k: htc rx completion ep 2 skb d2d48820
ath10k: WMI_SCAN_EVENTID
ath10k: scan event type 2 reason 0 freq 2457 req_id 40961 scan_id 40960 vdev_id 0
ath10k: SCAN_EVENT_COMPLETED
ath10k: SCAN_REASON_COMPLETED
wlan0: authenticate with 00:15:61:10:51:de
ath10k: mac config channel 2457MHz flags 0x190 radar 0
ath10k: mac config channel to 2457MHz (cf1 2457MHz cf2 0MHz width 20)
ath10k: mac monitor refs: promisc 0 monitor 0 cac 0
ath10k: mac config power 17
ath10k: wmi pdev set param 3 value 34
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12dc7660 len 20 n_items 1
ath10k: wmi pdev set param 4 value 34
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2d48a60
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12fe0260 len 20 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e36440
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: wmi vdev id 0x0 set param 3 value 100
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fe0260 len 24 n_items 1
ath10k: mac vdev 0 beacon_interval 100
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d290e920
ath10k: mac vdev 0 create peer 00:15:61:10:51:de
ath10k: wmi peer create vdev_id 0 peer_addr 00:15:61:10:51:de
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12fe0260 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d290e920
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d290e9e0
ath10k: htt rx, msg_type: 0x3
ath10k: htt peer map vdev 0 peer 00:15:61:10:51:de id 287
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d290eaa0
ath10k: htt rx, msg_type: 0x3
ath10k: htt peer map vdev 0 peer 00:15:61:10:51:de id 367
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac vdev 0 start 00:15:61:10:51:de
ath10k: mac vdev 0 start center_freq 2457 phymode 11ng-ht20
ath10k: wmi vdev start id 0x0 flags: 0x0, freq 2457, mode 5, ch_flags: 0x5, max_power: 40
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12dc7660 len 140 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d290eb60
ath10k: htc ep 2 got 1 credits (total 2)
ath10k: htc rx completion ep 2 skb d2d48760
ath10k: WMI_VDEV_START_RESP_EVENTID
wlan0: send auth to 00:15:61:10:51:de (try 1/3)
ath10k: wmi mgmt tx skb d2d48820 len 56 ftype 00 stype b0
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12b5d860 len 68 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2d48820
ath10k: htc rx completion ep 2 skb d2d486a0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2d486a0 len 32 ftype 00 stype b0
ath10k: event mgmt rx freq 2457 band 0 snr -33, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d290ec20
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
wlan0: authenticated
wlan0: associate with 00:15:61:10:51:de (try 1/3)
ath10k: wmi mgmt tx skb d2d48760 len 160 ftype 00 stype 00
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12b5d260 len 172 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2d48760
ath10k: htc ep 2 got 1 credits (total 1)
ath10k: htc ep 2 got 1 credits (total 2)
ath10k: htc rx completion ep 2 skb d2d485e0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2d485e0 len 176 ftype 00 stype 10
ath10k: event mgmt rx freq 2457 band 0 snr -34, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d290eda0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
wlan0: RX AssocResp from 00:15:61:10:51:de (capab=0x421 status=0 aid=1)
ath10k: wmi pdev set wmm params
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12b5d860 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a2b600
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12dc7260 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e36080
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12b5d860 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a2b600
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12dc7260 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e36080
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12b5d860 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a2b600
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12dc7260 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d290ef20
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12b5d860 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a2b600
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12dc7260 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d29a90c0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12b5d860 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a2b600
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12dc7260 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 192
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d29a9180
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12b5d860 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a2b600
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12dc7260 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d29a9240
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac vdev 0 slot_time 2
ath10k: wmi vdev id 0x0 set param 7 value 2
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12dc7260 len 24 n_items 1
ath10k: mac vdev 0 preamble 2n
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d29a9300
ath10k: wmi vdev id 0x0 set param 8 value 2
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12dc7260 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d29a9300
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac ht peer 00:15:61:10:51:de mcs cnt 8 nss 1
ath10k: mac peer 00:15:61:10:51:de phymode 11ng-ht20
ath10k: wmi peer assoc vdev 0 addr 00:15:61:10:51:de (new)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12a3b860 len 368 n_items 1
ath10k: wmi vdev 0 peer 0x00:15:61:10:51:de set param 1 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d29a93c0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12dc7260 len 32 n_items 1
ath10k: mac vdev 0 up (associated) bssid 00:15:61:10:51:de aid 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a2b600
ath10k: wmi mgmt vdev up id 0x0 assoc id 1 bssid 00:15:61:10:51:de
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12dc7260 len 28 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a2b600
wlan0: associated
ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
cfg80211: Calling CRDA for country: FR
ath10k: dfs region 0x2
ath10k: mac channel [0/32] freq 2412 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [1/32] freq 2417 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [2/32] freq 2422 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [3/32] freq 2427 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [4/32] freq 2432 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [5/32] freq 2437 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [6/32] freq 2442 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [7/32] freq 2447 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [8/32] freq 2452 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [9/32] freq 2457 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [10/32] freq 2462 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [11/32] freq 2467 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [12/32] freq 2472 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [13/32] freq 5180 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [14/32] freq 5200 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [15/32] freq 5220 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [16/32] freq 5240 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [17/32] freq 5260 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [18/32] freq 5280 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [19/32] freq 5300 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [20/32] freq 5320 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [21/32] freq 5500 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [22/32] freq 5520 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [23/32] freq 5540 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [24/32] freq 5560 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [25/32] freq 5580 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [26/32] freq 5600 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [27/32] freq 5620 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [28/32] freq 5640 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [29/32] freq 5660 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [30/32] freq 5680 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [31/32] freq 5700 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12ad5860 len 784 n_items 1
ath10k: wmi pdev regdomain rd 37 rd2g 37 rd5g 37 ctl2g 30 ctl5g 30 dfs_region 2
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d29a9480
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12dc7c60 len 36 n_items 1
cfg80211: Regulatory domain changed to country: FR
ath10k: htt tx alloc msdu_id 0
ath10k: htt tx flags0 37 flags1 25600 len 108 id 0 frags_paddr 127c3000, msdu_paddr 12839030 vdev 0 tid 16
ath10k: pci tx item 0 paddr 0x127c3010 len 24 n_items 2
ath10k: pci tx item 1 paddr 0x12839030 len 52 n_items 2
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a2b600
cfg80211:  DFS Master region: ETSI
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29a9600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29a96c0
ath10k: htt rx, msg_type: 0x7
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29a9780
ath10k: htt rx, msg_type: 0x1
ath10k: htt tx completion num_msdus 1
ath10k: htt tx completion msdu_id 0 discard 0 no_ack 0
ath10k: htt tx free msdu_id 0
ath10k: htt rx mgmt ctrl
ath10k: rx skb d2a2b480 len 108  rate_idx 3 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
cfg80211:   (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz), (N/A, 2000 mBm), (0 s)
cfg80211:   (5490000 KHz - 5710000 KHz @ 80000 KHz), (N/A, 2700 mBm), (0 s)
cfg80211:   (57240000 KHz - 65880000 KHz @ 2160000 KHz), (N/A, 4000 mBm), (N/A)
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29a9840
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2d48520
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2d48520 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -34, rate_idx 0
ath10k: htt rx mgmt ctrl
wlan0: Limiting TX power to 30 (30 - 0) dBm as advertised by 00:15:61:10:51:de
ath10k: mac vdev 0 dtim_period 1
ath10k: wmi vdev id 0x0 set param 13 value 1
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12dc7c60 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d29a96c0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htt tx alloc msdu_id 0
ath10k: htt tx flags0 37 flags1 25600 len 96 id 0 frags_paddr 127c3000, msdu_paddr 12dc7c30 vdev 0 tid 16
ath10k: pci tx item 0 paddr 0x127c3010 len 24 n_items 2
ath10k: pci tx item 1 paddr 0x12dc7c30 len 52 n_items 2
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29a99c0
ath10k: htt rx, msg_type: 0x7
ath10k: htt tx completion num_msdus 1
ath10k: htt tx completion msdu_id 0 discard 0 no_ack 0
ath10k: htt tx free msdu_id 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29a9a80
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2a2b300 len 96  rate_idx 3 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: htc rx completion ep 2 skb d2d48460
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2d48460 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -33, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29a9b40
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2d483a0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2d483a0 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -33, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29a9c00
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29a9cc0
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2d482e0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2d482e0 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -33, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29a9d80
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2747f20 len 60  rate_idx 3 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: htc rx completion ep 2 skb d2d48220
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2d48220 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -33, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29a9e40
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2d48160
ath10k: wmi event debug mesg len 108
ath10k: htc rx completion ep 2 skb d2d480a0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2d480a0 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -32, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29a9f00
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a2bf00
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a2bf00 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -34, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d27340a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2734160
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2a2be40
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a2be40 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -33, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a2bd80
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a2bd80 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -33, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2734220
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl

[-- Attachment #3: 10-1_promiscuous.txt --]
[-- Type: text/plain, Size: 76267 bytes --]

ath10k: boot hif stop
ath10k: boot warm reset
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x2000c04a
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x2000000a
ath10k: boot target reset state: 0x00000800
ath10k: boot warm reset complete
ath10k: force cleanup msdu_id 0
ath10k: htt tx completion msdu_id 0 discard 1 no_ack 0
ath10k: htt tx free msdu_id 0
ath10k: force cleanup msdu_id 1
ath10k: htt tx completion msdu_id 1 discard 1 no_ack 0
ath10k: htt tx free msdu_id 1
ath10k: boot hif power down
ath10k: boot warm reset
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x2000000a
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x2000000a
ath10k: boot target reset state: 0x00000800
ath10k: boot warm reset complete
ieee80211 phy0: Hardware restart was requested
ath10k: mac vdev 0 peer delete 00:15:61:10:51:de (sta gone)
ath10k: wmi peer delete vdev_id 0 peer_addr 00:15:61:10:51:de
ath10k: failed to delete peer 00:15:61:10:51:de for vdev 0: -108
ath10k: mac vdev 0 stop (disassociated
ath10k: wmi vdev stop id 0x0
ath10k: failed to stop WMI vdev 0: -108
ath10k: mac vdev 0 down
ath10k: wmi mgmt vdev down id 0x0
ath10k: mac vdev 0 cts_prot 0
ath10k: wmi vdev id 0x0 set param 43 value 0
ath10k: failed to recalculate rts/cts prot for vdev 0: -108
ath10k: mac vdev 0 slot_time 1
ath10k: wmi vdev id 0x0 set param 7 value 1
ath10k: failed to set erp slot for vdev 0: -108
ath10k: mac vdev 0 preamble 1n
ath10k: wmi vdev id 0x0 set param 8 value 1
ath10k: failed to set preamble for vdev 0: -108
ath10k: wmi pdev set wmm params
ath10k: failed to set wmm params: -108
ath10k: wmi pdev set wmm params
ath10k: failed to set wmm params: -108
ath10k: wmi pdev set wmm params
ath10k: failed to set wmm params: -108
ath10k: wmi pdev set wmm params
ath10k: mac config channel 2457MHz flags 0x190 radar 0
ath10k: mac config channel to 2457MHz (cf1 2457MHz cf2 0MHz width 20 (noht))
ath10k: mac monitor refs: promisc 0 monitor 0 cac 0
ath10k: mac config power 20
ath10k: wmi pdev set param 3 value 40
ath10k: wmi pdev set param 4 value 40
ath10k: dfs region 0x2
cfg80211: Regulatory domain changed to country: FR
cfg80211:  DFS Master region: ETSI
cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
cfg80211:   (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz), (N/A, 2000 mBm), (0 s)
cfg80211:   (5490000 KHz - 5710000 KHz @ 80000 KHz), (N/A, 2700 mBm), (0 s)
cfg80211:   (57240000 KHz - 65880000 KHz @ 2160000 KHz), (N/A, 4000 mBm), (N/A)
ath10k: boot hif power up
ath10k: boot warm reset
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x2000000a
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x2000000a
ath10k: boot target reset state: 0x00000800
ath10k: boot warm reset complete
ath10k: boot init ce src ring id 0 entries 16 base_addr d2857000
ath10k: boot ce dest ring id 1 entries 512 base_addr d2854000
ath10k: boot ce dest ring id 2 entries 32 base_addr c0ed6000
ath10k: boot init ce src ring id 3 entries 32 base_addr c0f84000
ath10k: boot init ce src ring id 4 entries 4096 base_addr d2970000
ath10k: boot init ce src ring id 7 entries 2 base_addr d297f000
ath10k: boot ce dest ring id 7 entries 2 base_addr d297e000
ath10k: boot waiting target to initialise
ath10k: boot target indicator 1
ath10k: failed to wait for target to init: -70
ath10k: boot warm reset
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x2000000a
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x2000000a
ath10k: boot target reset state: 0x00000800
ath10k: boot warm reset complete
ath10k: boot cold reset
ath10k: boot cold reset complete
ath10k: boot init ce src ring id 0 entries 16 base_addr d2857000
ath10k: boot ce dest ring id 1 entries 512 base_addr d2854000
ath10k: boot ce dest ring id 2 entries 32 base_addr c0ed6000
ath10k: boot init ce src ring id 3 entries 32 base_addr c0f84000
ath10k: boot init ce src ring id 4 entries 4096 base_addr d2970000
ath10k: boot init ce src ring id 7 entries 2 base_addr d297f000
ath10k: boot ce dest ring id 7 entries 2 base_addr d297e000
ath10k: boot waiting target to initialise
ath10k: boot target indicator 0
ath10k: boot target indicator 2
ath10k: boot target initialised
ath10k: bmi start
ath10k: bmi write address 0x400800 length 4
ath10k: bmi read address 0x400810 length 4
ath10k: bmi write address 0x400810 length 4
ath10k: bmi write address 0x400844 length 4
ath10k: bmi write address 0x400904 length 4
ath10k: bmi read address 0x4008ac length 4
ath10k: boot push board extended data addr 0x0
ath10k: bmi read address 0x400854 length 4
ath10k: bmi write address 0x401cc0 length 2116
ath10k: bmi write address 0x400858 length 4
ath10k: boot upload otp to 0x1234 len 6917
ath10k: bmi fast download address 0x1234 buffer 0xe212f034 length 6917
ath10k: bmi lz stream start address 0x1234
ath10k: bmi lz data buffer 0xe212f034 length 6916
ath10k: bmi lz data buffer 0xd2a29e6c length 4
ath10k: bmi lz stream start address 0x0
ath10k: bmi execute address 0x1234 param 0x0
ath10k: bmi execute result 0x0
ath10k: boot otp execute result 0
ath10k: bmi fast download address 0x1234 buffer 0xe2130b44 length 190250
ath10k: bmi lz stream start address 0x1234
ath10k: bmi lz data buffer 0xe2130b44 length 190248
ath10k: bmi lz data buffer 0xd2a29e6c length 4
ath10k: bmi lz stream start address 0x0
ath10k: bmi write address 0x400814 length 4
ath10k: pci hif set callbacks
ath10k: pci hif get default pipe
ath10k: pci hif map service
ath10k: bmi done
ath10k: boot hif start
ath10k: Target ready! transmit resources: 2 size:1792
ath10k: pci hif map service
ath10k: boot htc service 'Control' ul pipe 0 dl pipe 1 eid 0 ready
ath10k: boot htc ep 0 ul polled 0 dl polled 0
ath10k: boot htc service 'Control' eid 0 TX flow control disabled
ath10k: boot htc service HTT Data does not allocate target credits
ath10k: ath10k_htc_build_tx_ctrl_skb: skb c0f7fd60
ath10k: pci tx item 0 paddr 0x12cfa46c len 16 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 0 skb c0f7fd60
ath10k: HTC Service HTT Data connect response: status: 0x0, assigned ep: 0x1
ath10k: pci hif map service
ath10k: boot htc service 'HTT Data' ul pipe 4 dl pipe 1 eid 1 ready
ath10k: boot htc ep 1 ul polled 1 dl polled 0
ath10k: boot htc service 'HTT Data' eid 1 TX flow control disabled
ath10k: htt tx max num pending tx 1424
ath10k: htt rx ring size 1024 fill_level 1000
ath10k: ath10k_htc_build_tx_ctrl_skb: skb d2f978c0
ath10k: pci tx item 0 paddr 0x12cfa86c len 16 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 0 skb d2f978c0
ath10k: HTC Service WMI connect response: status: 0x0, assigned ep: 0x2
ath10k: pci hif map service
ath10k: boot htc service 'WMI' ul pipe 3 dl pipe 2 eid 2 ready
ath10k: boot htc ep 2 ul polled 0 dl polled 0
ath10k: ath10k_htc_build_tx_ctrl_skb: skb d2c945c0
ath10k: HTC is using TX credit flow control
ath10k: pci tx item 0 paddr 0x12cfac6c len 20 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 0 skb d2c945c0
ath10k: htc rx completion ep 2 skb c0997200
ath10k: firmware has requested 1 memory chunks
ath10k: wmi mem_req_id 1 num_units 0 num_unit_info 2 unit size 404 actual units 145
ath10k: wmi event service ready sw_ver 0x4100270f abi_ver 1 phy_cap 0x00000003 ht_cap 0x0000085b vht_cap 0x338001b2 vht_supp_msc 0x0000ffea sys_cap_info 0x00000000 mem_reqs 1 num_rf_chains 3
ath10k: boot wmi ready
ath10k: firmware 10.1.467.2-1 booted
ath10k: wmi sending 1 memory chunks info.
ath10k: wmi chunk 0 len 58580 requested, addr 0x129d0000
ath10k: wmi init 10x
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12e55a60 len 148 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0997200
ath10k: htc rx completion ep 2 skb c0997140
ath10k: wmi event debug print 'P 145 V 16 T 443'
ath10k: htc rx completion ep 2 skb c0997080
ath10k: wmi event ready sw_version 1090529039 abi_version 1 mac_addr 04:f0:21:0e:38:be status 0 skb->len 20 ev-sz 20
ath10k: pci tx item 0 paddr 0x12c15c60 len 12 n_items 1
ath10k: pci hif send complete check
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb c0997080
ath10k: htc rx completion ep 1 skb d2f81300
ath10k: htt rx, msg_type: 0x0
ath10k: htt target version 2.1
ath10k: pci tx item 0 paddr 0x12c15c60 len 48 n_items 1
ath10k: wmi pdev set param 30 value 1
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12c15860 len 20 n_items 1
ath10k: wmi pdev set param 10 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0997080
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fff060 len 20 n_items 1
ath10k: wmi pdev set param 1 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f972c0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12c15860 len 20 n_items 1
ath10k: wmi pdev set param 2 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0f7fa60
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fff060 len 20 n_items 1
ath10k: wmi pdev set param 31 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f972c0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12c15860 len 20 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0f7fe20
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac channel [0/32] freq 2412 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [1/32] freq 2417 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [2/32] freq 2422 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [3/32] freq 2427 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [4/32] freq 2432 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [5/32] freq 2437 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [6/32] freq 2442 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [7/32] freq 2447 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [8/32] freq 2452 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [9/32] freq 2457 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [10/32] freq 2462 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [11/32] freq 2467 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [12/32] freq 2472 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [13/32] freq 5180 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [14/32] freq 5200 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [15/32] freq 5220 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [16/32] freq 5240 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [17/32] freq 5260 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [18/32] freq 5280 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [19/32] freq 5300 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [20/32] freq 5320 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [21/32] freq 5500 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [22/32] freq 5520 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [23/32] freq 5540 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [24/32] freq 5560 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [25/32] freq 5580 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [26/32] freq 5600 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [27/32] freq 5620 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [28/32] freq 5640 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [29/32] freq 5660 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [30/32] freq 5680 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [31/32] freq 5700 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12c13060 len 784 n_items 1
ath10k: wmi pdev regdomain rd 37 rd2g 37 rd5g 37 ctl2g 30 ctl5g 30 dfs_region 2
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f81cc0
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12c15860 len 36 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f972c0
ath10k: mac vdev create 0 (add interface) type 2 subtype 0
ath10k: WMI vdev create: id 0 type 2 subtype 0 macaddr 04:f0:21:0e:38:be
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12c15860 len 32 n_items 1
ath10k: wmi vdev id 0x0 set param 31 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f972c0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12fff060 len 24 n_items 1
ath10k: vdev param 0 not supported by firmware
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f81d80
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fff060 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 1 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f81d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12c15860 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 2 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f81840
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fff060 len 24 n_items 1
ath10k: wmi vdev id 0x0 set param 1 value -1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f81d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12c15860 len 24 n_items 1
ath10k: wmi vdev id 0x0 set param 2 value -1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2feab20
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fff060 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f81d80
ath10k: wmi pdev set wmm params
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12fff060 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f81d80
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12c15860 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f816c0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12fff060 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f813c0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12c15860 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f816c0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12fff060 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f81240
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12c15860 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f816c0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12fff060 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f81180
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12c15860 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f816c0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12fff060 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f81f00
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12c15860 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f816c0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12fff060 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f81e40
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12c15860 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f816c0
ath10k: mac config channel 2457MHz flags 0x190 radar 0
ath10k: mac config power 20
ath10k: wmi pdev set param 3 value 40
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12c15860 len 20 n_items 1
ath10k: wmi pdev set param 4 value 40
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f816c0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fff060 len 20 n_items 1
ath10k: mac vdev 0 psmode disable
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f819c0
ath10k: wmi set powersave id 0x0 mode 0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12fff060 len 20 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f819c0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac monitor refs: promisc 1 monitor 0 cac 0
ath10k: WMI vdev create: id 1 type 4 subtype 0 macaddr 04:f0:21:0e:38:be
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fff060 len 32 n_items 1
ath10k: mac monitor vdev 1 created
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f81780
ath10k: wmi vdev start id 0x1 flags: 0x0, freq 2457, mode 1, ch_flags: 0x1, max_power: 40
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12fff060 len 140 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f81780
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc rx completion ep 2 skb c088fee0
ath10k: WMI_VDEV_START_RESP_EVENTID
ath10k: wmi mgmt vdev up id 0x1 assoc id 0 bssid 04:f0:21:0e:38:be
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12e55060 len 28 n_items 1
ath10k: mac monitor vdev 1 started
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0997200
ath10k: mac monitor started
ath10k: wmi vdev id 0x0 set param 3 value 100
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12e55060 len 24 n_items 1
ath10k: mac vdev 0 beacon_interval 100
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0997200
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac vdev 0 cts_prot 0
ath10k: wmi vdev id 0x0 set param 43 value 0
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12e55060 len 24 n_items 1
ath10k: mac vdev 0 slot_time 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f81540
ath10k: wmi vdev id 0x0 set param 7 value 1
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12e55060 len 24 n_items 1
ath10k: mac vdev 0 preamble 1n
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f81540
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: wmi vdev id 0x0 set param 8 value 1
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12e55060 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f810c0
ath10k: device successfully recovered
br0: port 2(wlan0) entering forwarding state
cfg80211: Calling CRDA to update world regulatory domain
ath10k: dfs region 0x0
ath10k: mac channel [0/32] freq 2412 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [1/32] freq 2417 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [2/32] freq 2422 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [3/32] freq 2427 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [4/32] freq 2432 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [5/32] freq 2437 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [6/32] freq 2442 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [7/32] freq 2447 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [8/32] freq 2452 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [9/32] freq 2457 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [10/32] freq 2462 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [11/32] freq 2467 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [12/32] freq 2472 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [13/32] freq 5180 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [14/32] freq 5200 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [15/32] freq 5220 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [16/32] freq 5240 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [17/32] freq 5260 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [18/32] freq 5280 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [19/32] freq 5300 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [20/32] freq 5320 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [21/32] freq 5500 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [22/32] freq 5520 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [23/32] freq 5540 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [24/32] freq 5560 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [25/32] freq 5580 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [26/32] freq 5600 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [27/32] freq 5620 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [28/32] freq 5640 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [29/32] freq 5660 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [30/32] freq 5680 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [31/32] freq 5700 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x00e2d860 len 784 n_items 1
ath10k: wmi pdev regdomain rd 37 rd2g 37 rd5g 37 ctl2g 30 ctl5g 30 dfs_region 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2feaa60
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fff260 len 36 n_items 1
cfg80211: World regulatory domain updated:
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d289b320
cfg80211:  DFS Master region: unset
cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm), (N/A)
cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz), (300 mBi, 2000 mBm), (N/A)
cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (300 mBi, 2000 mBm), (N/A)
cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)
ath10k: wmi start scan
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12fff260 len 196 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f81c00
ath10k: htc ep 2 got 1 credits (total 1)
ath10k: htc rx completion ep 2 skb c088fe20
ath10k: WMI_SCAN_EVENTID
ath10k: scan event type 1 reason 3 freq 2457 req_id 40961 scan_id 40960 vdev_id 0
ath10k: SCAN_EVENT_STARTED
ath10k: htc rx completion ep 2 skb c088fd60
ath10k: WMI_SCAN_EVENTID
ath10k: scan event type 4 reason 3 freq 2457 req_id 40961 scan_id 40960 vdev_id 0
ath10k: SCAN_EVENT_BSS_CHANNEL
ath10k: htc rx completion ep 2 skb c088fca0
ath10k: chan info err_code 0 freq 2457 cmd_flags 1 noise_floor -102 rx_clear_count 429930 cycle_count 7760664
ath10k: pci hif send complete check
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb d2f81300
ath10k: htc rx completion ep 1 skb d2f81b40
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb c088fbe0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb c088fbe0 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -25, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f81a80
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb c088fb20
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb c088fb20 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -26, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2aabec0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f333e0
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb c088fa60
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb c088fa60 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -25, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f33620
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htc ep 2 got 1 credits (total 2)
ath10k: htc rx completion ep 2 skb c088f9a0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb c088f9a0 len 72 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -82, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f33aa0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb c088f8e0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb c088f8e0 len 88 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -84, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f334a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb c088f820
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb c088f820 len 72 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -81, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f33560
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a92680
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a92140
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb c088f760
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb c088f760 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -25, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a925c0
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb c088f6a0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb c088f6a0 len 104 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -66, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a92500
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2f180c0 len 16  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a92740
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2d55f20 len 10  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: htc rx completion ep 2 skb c088f5e0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb c088f5e0 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -25, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a92a40
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a92bc0
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2d55da0 len 16  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a92080
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2d55ce0 len 10  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: htc rx completion ep 2 skb c088f520
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb c088f520 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -25, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a92380
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a92200
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2d55b60 len 10  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a922c0
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2d55aa0 len 60  rate_idx 3 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a92b00
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb c088f460
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb c088f460 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -24, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a92c80
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb c088f3a0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb c088f3a0 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -68, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a92d40
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb c088f2e0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb c088f2e0 len 104 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -66, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a92e00
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a92800
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2d556e0 len 16  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a92ec0
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2d55620 len 10  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: htc rx completion ep 2 skb c088f220
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb c088f220 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -25, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a92440
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e529a0
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2d554a0 len 10  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: htc rx completion ep 2 skb c088f160
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb c088f160 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -69, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e52a60
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e52b20
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e52be0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htc rx completion ep 2 skb c088f0a0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb c088f0a0 len 104 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -66, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e52e20
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f0ee60
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2d550e0 len 16  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29cf2c0
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2f1fec0 len 10  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c86b60
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2f1fe00 len 16  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c86920
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2f1fd40 len 10  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: htc rx completion ep 2 skb d2f18f00
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2f18f00 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -25, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c869e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c86aa0
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2f1fbc0 len 16  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c86da0
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2f1fb00 len 16  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c86ce0
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2f1fa40 len 10  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: htc rx completion ep 2 skb d2f18e40
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2f18e40 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -26, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c86e60
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c86c20
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2f1f8c0 len 10  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: htc rx completion ep 2 skb d2f18d80
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2f18d80 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -46, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c86860
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2f18cc0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2f18cc0 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -24, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3c840
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2f18c00
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2f18c00 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -45, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3c900
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3ce40
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2f1f5c0 len 16  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3cf00
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2f1f500 len 10  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: htc rx completion ep 2 skb d2f18b40
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2f18b40 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -24, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3c780
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3c6c0
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2f1f380 len 10  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: htc rx completion ep 2 skb d2f18a80
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2f18a80 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -46, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3c600
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3c180
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2f1f200 len 16  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3c300
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2f1f140 len 10  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: htc rx completion ep 2 skb d2f189c0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2f189c0 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -24, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3c0c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3c240
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb c0f8fee0 len 10  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: htc rx completion ep 2 skb d2c945c0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2c945c0 len 104 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -69, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3c480
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3ccc0
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2f97440
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2f97440 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -46, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3cd80
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb c0f8fca0 len 16  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3c9c0
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb c0f8fbe0 len 10  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: htc rx completion ep 2 skb c0997140
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb c0997140 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -26, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3ca80
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3cb40
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb c0f8fa60 len 10  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3cc00
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2f81900
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2f81900 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -49, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3c3c0
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb c0f8f8e0 len 16  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3c540
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb c0f8f820 len 16  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e5d0c0
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb c0f8f760 len 10  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: htc rx completion ep 2 skb d2f81c00
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2f81c00 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -25, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e5d540
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e5d3c0
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb c0f8f5e0 len 10  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: htc rx completion ep 2 skb c088fe20
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb c088fe20 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -25, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e5d480
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb c088fd60
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb c088fd60 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -49, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e5d600
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e5d780
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb c0f8f3a0 len 16  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e5d6c0
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb c0f8f2e0 len 10  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e5d840
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb c0f8f220 len 16  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e5d900
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb c0f8f160 len 10  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: htc rx completion ep 2 skb d2f81300
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2f81300 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -24, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e5d300
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e5d240
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2c6ff00 len 10  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e5d180
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f053a0
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d289b320
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d289b320 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -25, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2f81480
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2f81480 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -25, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f05e20
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2f186c0
ath10k: WMI_SCAN_EVENTID
ath10k: scan event type 8 reason 3 freq 2457 req_id 40961 scan_id 40960 vdev_id 0
ath10k: SCAN_EVENT_FOREIGN_CHANNEL
ath10k: htc rx completion ep 2 skb d2f18780
ath10k: chan info err_code 0 freq 2457 cmd_flags 0 noise_floor 0 rx_clear_count 7466860 cycle_count 88022253
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f050a0
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2c6fc00 len 16  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: htc rx completion ep 2 skb d2f18840
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2f18840 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -25, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f05ee0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb c0e3b0e0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb c0e3b0e0 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -25, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f055e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2f18600
ath10k: WMI_SCAN_EVENTID
ath10k: scan event type 4 reason 3 freq 2457 req_id 40961 scan_id 40960 vdev_id 0
ath10k: SCAN_EVENT_BSS_CHANNEL
ath10k: htc rx completion ep 2 skb d2d55f20
ath10k: chan info err_code 0 freq 2457 cmd_flags 1 noise_floor -102 rx_clear_count 7915242 cycle_count 92424408
ath10k: htc rx completion ep 2 skb d2d55ce0
ath10k: WMI_SCAN_EVENTID
ath10k: scan event type 2 reason 0 freq 2457 req_id 40961 scan_id 40960 vdev_id 0
ath10k: SCAN_EVENT_COMPLETED
ath10k: SCAN_REASON_COMPLETED
wlan0: authenticate with 00:15:61:10:51:de
ath10k: mac config channel 2457MHz flags 0x190 radar 0
ath10k: mac config channel to 2457MHz (cf1 2457MHz cf2 0MHz width 20)
ath10k: wmi mgmt vdev down id 0x1
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12c15c60 len 16 n_items 1
ath10k: wmi vdev stop id 0x1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0e3b0e0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12e55e60 len 16 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f18840
ath10k: htc ep 2 got 1 credits (total 1)
ath10k: htc rx completion ep 2 skb d2d559e0
ath10k: WMI_VDEV_STOPPED_EVENTID
ath10k: mac monitor vdev 1 stopped
ath10k: mac monitor refs: promisc 1 monitor 0 cac 0
ath10k: wmi vdev start id 0x1 flags: 0x0, freq 2457, mode 5, ch_flags: 0x5, max_power: 40
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12e55e60 len 140 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d289b320
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc rx completion ep 2 skb d2eb1ee0
ath10k: WMI_VDEV_START_RESP_EVENTID
ath10k: wmi mgmt vdev up id 0x1 assoc id 0 bssid 04:f0:21:0e:38:be
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12e55e60 len 28 n_items 1
ath10k: mac monitor vdev 1 started
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2eb1ee0
ath10k: mac config power 17
ath10k: wmi pdev set param 3 value 34
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12e55e60 len 20 n_items 1
ath10k: wmi pdev set param 4 value 34
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2eb1ee0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12c15c60 len 20 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c088fe20
ath10k: wmi vdev id 0x0 set param 3 value 100
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12c15c60 len 24 n_items 1
ath10k: mac vdev 0 beacon_interval 100
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c088fe20
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac vdev 0 create peer 00:15:61:10:51:de
ath10k: wmi peer create vdev_id 0 peer_addr 00:15:61:10:51:de
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12c15c60 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f059a0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f05a60
ath10k: htt rx, msg_type: 0x3
ath10k: htt peer map vdev 0 peer 00:15:61:10:51:de id 287
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f05460
ath10k: htt rx, msg_type: 0x3
ath10k: htt peer map vdev 0 peer 00:15:61:10:51:de id 367
ath10k: mac vdev 0 start 00:15:61:10:51:de
ath10k: mac vdev 0 start center_freq 2457 phymode 11ng-ht20
ath10k: wmi vdev start id 0x0 flags: 0x0, freq 2457, mode 5, ch_flags: 0x5, max_power: 40
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12e55e60 len 140 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f05460
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0ed9820
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2f18300
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2f18300 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -33, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2d55620
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2d55620 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -34, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a49d40
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b146c0
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2f97800
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2f97800 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -34, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b14600
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2d55320
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2d55320 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -77, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2d55260
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2d55260 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -76, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b14480
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2f1fbc0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2f1fbc0 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -33, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b14300
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2f97140
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2f97140 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -58, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b14240
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b140c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htc rx completion ep 2 skb d2f97740
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2f97740 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -49, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b14b40
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b14c00
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b14e40
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2f1fc80
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2f1fc80 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -34, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b14900
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b14540
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b14780
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2f1f500
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2f1f500 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -52, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b14a80
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f7fee0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f7fb20
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f7f5e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f7f520
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2f1f800
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2f1f800 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -32, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f7f460
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f7f3a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f7f2e0
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2f1f140
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2f1f140 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -51, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f7f220
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f7f160
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb c0f8fee0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb c0f8fee0 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -33, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f7f0a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f7fbe0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2f1fd40
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2f1fd40 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -32, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f7f9a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb c0f8fbe0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb c0f8fbe0 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -52, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f7f8e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f7f820
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f7f760
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2f1f740
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2f1f740 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -33, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d289bb60
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d289b7a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2f97200
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2f97200 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -56, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d289bf20
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d289bda0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d289bc20
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb c0f8f760
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb c0f8f760 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -33, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d289baa0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d289b9e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d289b860
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb c0f8f520
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb c0f8f520 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -55, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d289b6e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d289b620
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2f97440
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2f97440 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -31, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d289b3e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d289b260
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb c0f8f2e0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb c0f8f2e0 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -32, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d289b1a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d289b4a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d289bce0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d289b920
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d289b560
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d289be60
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d289b0e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f05be0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f05d60
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f05760
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f058e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f05820
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2f18240
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2f18240 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -33, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f05160
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2f1f380
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2f1f380 len 72 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -91, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2f186c0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2f186c0 len 88 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -89, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f056a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f05ca0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f05220
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a92980
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a928c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e242e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e24460
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f0ec20
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f0ece0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f0e4a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f0e560
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f0e6e0
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2c6fc00
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2c6fc00 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -31, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2eb1d60
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2eb1d60 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -33, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f0e620
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f0eda0
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2f573a0 len 60  rate_idx 3 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f0e260
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2c6fd80
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2c6fd80 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -32, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2f18600
ath10k: WMI_VDEV_START_RESP_EVENTID
wlan0: send auth to 00:15:61:10:51:de (try 1/3)
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f0e920
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f0e0e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: wmi mgmt tx skb d2c6fd80 len 56 ftype 00 stype b0
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x0098ba60 len 68 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c6fd80
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f0e9e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f0e320
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f0e860
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f0e1a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f0e3e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f0ef20
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f0e7a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2fea0a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2feaee0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2fead60
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2c6ff00
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2c6ff00 len 32 ftype 00 stype b0
ath10k: event mgmt rx freq 2457 band 0 snr -32, rate_idx 0
ath10k: htt rx mgmt ctrl
wlan0: authenticated
wlan0: associate with 00:15:61:10:51:de (try 1/3)
ath10k: wmi mgmt tx skb d2f97800 len 160 ftype 00 stype 00
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12fff460 len 172 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f97800
ath10k: htc ep 2 got 1 credits (total 1)
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2fea8e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2fea820
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2fea6a0
ath10k: htt rx, msg_type: 0x1
ath10k: htc ep 2 got 1 credits (total 2)
ath10k: htc rx completion ep 2 skb d2f18840
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2f18840 len 176 ftype 00 stype 10
ath10k: event mgmt rx freq 2457 band 0 snr -32, rate_idx 0
ath10k: htt rx mgmt ctrl
wlan0: RX AssocResp from 00:15:61:10:51:de (capab=0x421 status=0 aid=1)
ath10k: wmi pdev set wmm params
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12c15660 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c106a6c0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12e55a60 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f18240
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12c15660 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c106a6c0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12e55a60 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fea460
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12c15660 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c106a6c0
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12c15660 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c6fc00
ath10k: wmi pdev set wmm params
ath10k: htc rx completion ep 2 skb d2f05520
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2f05520 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -33, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2fea220
ath10k: htt rx, msg_type: 0x1
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htt rx mgmt ctrl
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12c15660 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c6fc00
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12c15860 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c106a600
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12c15660 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c6fc00
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12c15860 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 192
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2feaca0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12c15660 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c6fc00
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12c15860 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2feae20
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac vdev 0 dtim_period 1
ath10k: wmi vdev id 0x0 set param 13 value 1
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12c15860 len 24 n_items 1
ath10k: mac vdev 0 slot_time 2
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fea760
ath10k: wmi vdev id 0x0 set param 7 value 2
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12c15860 len 24 n_items 1
ath10k: mac vdev 0 preamble 2n
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fea760
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: wmi vdev id 0x0 set param 8 value 2
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12c15860 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fea520
ath10k: mac ht peer 00:15:61:10:51:de mcs cnt 8 nss 1
ath10k: mac peer 00:15:61:10:51:de phymode 11ng-ht20
ath10k: wmi peer assoc vdev 0 addr 00:15:61:10:51:de (new)
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12bb6c60 len 368 n_items 1
ath10k: wmi vdev 0 peer 0x00:15:61:10:51:de set param 1 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fea520
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12c15860 len 32 n_items 1
ath10k: mac vdev 0 up (associated) bssid 00:15:61:10:51:de aid 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c6fc00
ath10k: wmi mgmt vdev up id 0x0 assoc id 1 bssid 00:15:61:10:51:de
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12c15860 len 28 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c6fc00
ath10k: htt tx alloc msdu_id 0
ath10k: htt tx flags0 37 flags1 25600 len 30 id 0 frags_paddr 00f62000, msdu_paddr 12c15874 vdev 0 tid 16
ath10k: pci tx item 0 paddr 0x00f62010 len 24 n_items 2
ath10k: pci tx item 1 paddr 0x12c15874 len 32 n_items 2
wlan0: associated
ath10k: firmware crashed!
ath10k: hardware name qca988x hw2.0 version 0x4100016c
ath10k: firmware version: 10.1.467.2-1
ath10k: target register Dump Location: 0x00401930
ath10k: target Register Dump
ath10k: [00]: 0x4100016C 0x00000000 0x009A123A 0x00000000
ath10k: [04]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [08]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [12]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [16]: 0x00000000 0x00000000 0x00000000 0x009A123A
ath10k: [20]: 0x00000000 0x00401930 0x00000000 0x00000000
ath10k: [24]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [28]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [32]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [36]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [40]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [44]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [48]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [52]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [56]: 0x00000000 0x00000000 0x00000000 0x00000000
wlan0: Limiting TX power to 30 (30 - 0) dBm as advertised by 00:15:61:10:51:de
ath10k: mac monitor refs: promisc 1 monitor 0 cac 0
ath10k: mac monitor refs: promisc 0 monitor 0 cac 0
ath10k: wmi mgmt vdev down id 0x1
br0: port 2(wlan0) entering forwarding state
br0: port 2(wlan0) entering forwarding state
cfg80211: Calling CRDA for country: FR
ath10k: htt tx alloc msdu_id 1
ath10k: htt tx flags0 37 flags1 25600 len 24 id 1 frags_paddr 00f62028, msdu_paddr 12e55074 vdev 0 tid 16
ath10k: pci tx item 0 paddr 0x00f62038 len 24 n_items 2
ath10k: pci tx item 1 paddr 0x12e55074 len 24 n_items 2
net_ratelimit: 7 callbacks suppressed
ath10k: failed to put down monitor vdev 1: -11
ath10k: wmi vdev stop id 0x1
ath10k: failed to to request monitor vdev 1 stop: -11
ath10k: failed to synchronise monitor vdev 1: -110
ath10k: mac monitor vdev 1 stopped
ath10k: failed to stop monitor vdev: -110
ath10k: WMI vdev delete id 1
ath10k: failed to request wmi monitor vdev 1 removal: -11
ath10k: failed to delete monitor vdev: -11
ath10k: mac monitor stopped

[-- Attachment #4: 999_no_promiscuous.txt --]
[-- Type: text/plain, Size: 49464 bytes --]

ath10k: boot suspend complete
ath10k: boot hif stop
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb d2aa5a40
ath10k: boot warm reset
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x00001000
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x00000000
ath10k: boot target reset state: 0x00000800
ath10k: boot warm reset complete
ath10k: boot hif power down
ath10k: boot warm reset
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x00000000
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x00000000
ath10k: boot target reset state: 0x00000800
ath10k: boot warm reset complete
ath10k: boot hif power up
ath10k: boot warm reset
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x00000000
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x00000000
ath10k: boot target reset state: 0x00000800
ath10k: boot warm reset complete
ath10k: boot init ce src ring id 0 entries 16 base_addr d2d0f000
ath10k: boot ce dest ring id 1 entries 512 base_addr d2ef4000
ath10k: boot ce dest ring id 2 entries 32 base_addr d2d2e000
ath10k: boot init ce src ring id 3 entries 32 base_addr c0f0e000
ath10k: boot init ce src ring id 4 entries 4096 base_addr d2b30000
ath10k: boot init ce src ring id 7 entries 2 base_addr d2b3f000
ath10k: boot ce dest ring id 7 entries 2 base_addr d2b3e000
ath10k: boot waiting target to initialise
ath10k: boot target indicator 0
ath10k: boot target indicator 0
ath10k: boot target indicator 0
ath10k: boot target indicator 2
ath10k: boot target initialised
ath10k: bmi start
ath10k: bmi write address 0x400800 length 4
ath10k: bmi read address 0x400810 length 4
ath10k: bmi write address 0x400810 length 4
ath10k: bmi write address 0x400844 length 4
ath10k: bmi write address 0x400904 length 4
ath10k: bmi read address 0x4008ac length 4
ath10k: boot push board extended data addr 0x0
ath10k: bmi read address 0x400854 length 4
ath10k: bmi write address 0x401cc0 length 2116
ath10k: bmi write address 0x400858 length 4
ath10k: boot upload otp to 0x1234 len 5402
ath10k: bmi fast download address 0x1234 buffer 0xe08a8038 length 5402
ath10k: bmi lz stream start address 0x1234
ath10k: bmi lz data buffer 0xe08a8038 length 5400
ath10k: bmi lz data buffer 0xc0fefd3c length 4
ath10k: bmi lz stream start address 0x0
ath10k: bmi execute address 0x1234 param 0x0
ath10k: bmi execute result 0x0
ath10k: boot otp execute result 0
ath10k: bmi fast download address 0x1234 buffer 0xe08a955c length 249093
ath10k: bmi lz stream start address 0x1234
ath10k: bmi lz data buffer 0xe08a955c length 249092
ath10k: bmi lz data buffer 0xc0fefd3c length 4
ath10k: bmi lz stream start address 0x0
ath10k: bmi write address 0x400814 length 4
ath10k: pci hif set callbacks
ath10k: pci hif get default pipe
ath10k: pci hif map service
ath10k: bmi done
ath10k: boot hif start
ath10k: Target ready! transmit resources: 2 size:1792
ath10k: pci hif map service
ath10k: boot htc service 'Control' ul pipe 0 dl pipe 1 eid 0 ready
ath10k: boot htc ep 0 ul polled 0 dl polled 0
ath10k: boot htc service 'Control' eid 0 TX flow control disabled
ath10k: boot htc service HTT Data does not allocate target credits
ath10k: ath10k_htc_build_tx_ctrl_skb: skb d2fc4800
ath10k: pci tx item 0 paddr 0x1296686c len 16 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 0 skb d2fc4800
ath10k: HTC Service HTT Data connect response: status: 0x0, assigned ep: 0x1
ath10k: pci hif map service
ath10k: boot htc service 'HTT Data' ul pipe 4 dl pipe 1 eid 1 ready
ath10k: boot htc ep 1 ul polled 1 dl polled 0
ath10k: boot htc service 'HTT Data' eid 1 TX flow control disabled
ath10k: htt tx max num pending tx 1424
ath10k: htt rx ring size 1024 fill_level 1000
ath10k: ath10k_htc_build_tx_ctrl_skb: skb d2d7e740
ath10k: pci tx item 0 paddr 0x1288e46c len 16 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 0 skb d2d7e740
ath10k: HTC Service WMI connect response: status: 0x0, assigned ep: 0x2
ath10k: pci hif map service
ath10k: boot htc service 'WMI' ul pipe 3 dl pipe 2 eid 2 ready
ath10k: boot htc ep 2 ul polled 0 dl polled 0
ath10k: ath10k_htc_build_tx_ctrl_skb: skb d2fc48c0
ath10k: HTC is using TX credit flow control
ath10k: pci tx item 0 paddr 0x12d7486c len 20 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 0 skb d2fc48c0
ath10k: htc rx completion ep 2 skb c0ff1080
ath10k: wmi event service ready sw_ver 0x01000000 sw_ver1 0x0000027c abi_ver 3 phy_cap 0x00000003 ht_cap 0x0000085b vht_cap 0x338001b2 vht_supp_msc 0x0000fffa sys_cap_info 0x00000000 mem_reqs 0 num_rf_chains 2
ath10k: boot wmi ready
ath10k: firmware 999.999.0.636 booted
ath10k: wmi init
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009a4060 len 148 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0ff1080
ath10k: htc rx completion ep 2 skb d29dcee0
ath10k: wmi event ready sw_version 16777216 abi_version 3 mac_addr 00:03:07:12:34:56 status 0 skb->len 20 ev-sz 20
ath10k: pci tx item 0 paddr 0x1297c460 len 12 n_items 1
ath10k: pci hif send complete check
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb d29dcee0
ath10k: htc rx completion ep 1 skb d2fc4980
ath10k: htt rx, msg_type: 0x0
ath10k: htt target version 2.1
ath10k: pci tx item 0 paddr 0x1297c460 len 48 n_items 1
ath10k: wmi pdev set param 34 value 1
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12ebb660 len 20 n_items 1
ath10k: wmi pdev set param 10 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d29dcee0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009a4060 len 20 n_items 1
ath10k: wmi pdev set param 1 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2d7e440
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12ebb660 len 20 n_items 1
ath10k: wmi pdev set param 2 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fc4b00
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009a4060 len 20 n_items 1
ath10k: wmi pdev set param 35 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2d7e440
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12ebb660 len 20 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fc4bc0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac channel [0/32] freq 2412 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [1/32] freq 2417 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [2/32] freq 2422 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [3/32] freq 2427 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [4/32] freq 2432 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [5/32] freq 2437 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [6/32] freq 2442 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [7/32] freq 2447 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [8/32] freq 2452 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [9/32] freq 2457 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [10/32] freq 2462 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [11/32] freq 2467 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [12/32] freq 2472 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [13/32] freq 5180 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [14/32] freq 5200 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [15/32] freq 5220 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [16/32] freq 5240 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [17/32] freq 5260 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [18/32] freq 5280 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [19/32] freq 5300 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [20/32] freq 5320 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [21/32] freq 5500 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [22/32] freq 5520 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [23/32] freq 5540 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [24/32] freq 5560 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [25/32] freq 5580 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [26/32] freq 5600 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [27/32] freq 5620 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [28/32] freq 5640 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [29/32] freq 5660 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [30/32] freq 5680 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [31/32] freq 5700 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x00eed860 len 784 n_items 1
ath10k: wmi pdev regdomain rd 37 rd2g 37 rd5g 37 ctl2g 30 ctl5g 30
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fc4c80
ath10k: pci tx item 0 paddr 0x12ebb660 len 32 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2d7e440
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac vdev create 0 (add interface) type 2 subtype 0
ath10k: WMI vdev create: id 0 type 2 subtype 0 macaddr 00:03:07:12:34:56
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12ebb660 len 32 n_items 1
ath10k: wmi vdev id 0x0 set param 33 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fc4d40
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009a4060 len 24 n_items 1
ath10k: wmi vdev id 0x0 set param 48 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fc4c80
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12ebb660 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fc4d40
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x0085d260 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 1 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2d7e380
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12ebb660 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 2 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fc4d40
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x0085d260 len 24 n_items 1
ath10k: wmi vdev id 0x0 set param 1 value -1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fc4ec0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12ebb660 len 24 n_items 1
ath10k: wmi vdev id 0x0 set param 2 value -1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fc4d40
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x0085d260 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0f5b0e0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac vdev 0 cts_prot 0
ath10k: wmi vdev id 0x0 set param 44 value 0
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x0085d260 len 24 n_items 1
ath10k: mac vdev 0 slot_time 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0f5b1a0
ath10k: wmi vdev id 0x0 set param 7 value 1
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x0085d260 len 24 n_items 1
ath10k: mac vdev 0 preamble 1n
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0f5b1a0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: wmi vdev id 0x0 set param 8 value 1
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x0085d260 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0f5b260
ath10k: wmi pdev set wmm params
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x0085d260 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0f5b260
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12ebb660 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fc4d40
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x0085d260 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0f5b320
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12ebb660 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fc4d40
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x0085d260 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0f5b3e0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12ebb660 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fc4d40
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x0085d260 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0f5b4a0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12ebb660 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fc4d40
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x0085d260 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0f5b560
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12ebb660 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fc4d40
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x0085d260 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0f5b620
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12ebb660 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fc4d40
ath10k: mac config channel 2412MHz flags 0x1a0 radar 0
ath10k: mac config power 20
ath10k: wmi pdev set param 3 value 40
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12ebb660 len 20 n_items 1
ath10k: wmi pdev set param 4 value 40
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fc4d40
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x0085d260 len 20 n_items 1
ath10k: mac vdev 0 psmode disable
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0f5b620
ath10k: wmi set powersave id 0x0 mode 0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x0085d260 len 20 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0f5b620
ath10k: htc ep 2 got 2 credits (total 2)
ADDRCONF(NETDEV_UP): wlan0: link is not ready
eth0: stopped
Port 0: Link-down
eth0: link up
Port 1: Link-up, Full-duplex, Speed-100Mbps.
Port 2: Link-down
Port 3: Link-down
Port -1: Link-down
eth0: started
ath10k: wmi start scan
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x1297c260 len 200 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a2ad60
ath10k: htc rx completion ep 2 skb d29dce20
ath10k: WMI_SCAN_EVENTID
ath10k: scan event type 1 reason 4 freq 0 req_id 40961 scan_id 40960 vdev_id 0
ath10k: SCAN_EVENT_STARTED
ath10k: htc rx completion ep 2 skb d29dcd60
ath10k: WMI_SCAN_EVENTID
ath10k: scan event type 4 reason 4 freq 0 req_id 40961 scan_id 40960 vdev_id 0
ath10k: SCAN_EVENT_BSS_CHANNEL
ath10k: htc ep 2 got 1 credits (total 2)
ath10k: htc rx completion ep 2 skb d29dcca0
ath10k: WMI_SCAN_EVENTID
ath10k: scan event type 8 reason 4 freq 2457 req_id 40961 scan_id 40960 vdev_id 0
ath10k: SCAN_EVENT_FOREIGN_CHANNEL
ath10k: htc rx completion ep 2 skb d29dcbe0
ath10k: chan info err_code 0 freq 2457 cmd_flags 0 noise_floor 0 rx_clear_count 371468 cycle_count 588224
ath10k: htc rx completion ep 2 skb d29dcb20
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d29dcb20 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -69, rate_idx 0
ath10k: pci hif send complete check
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb d2fc4980
ath10k: htc rx completion ep 1 skb c0f5b920
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d29dca60
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d29dca60 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -68, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f5b9e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d29dc9a0
ath10k: WMI_SCAN_EVENTID
ath10k: scan event type 4 reason 4 freq 2457 req_id 40961 scan_id 40960 vdev_id 0
ath10k: SCAN_EVENT_BSS_CHANNEL
ath10k: htc rx completion ep 2 skb d29dc8e0
ath10k: chan info err_code 0 freq 2457 cmd_flags 1 noise_floor -113 rx_clear_count 887161 cycle_count 4447294
ath10k: htc rx completion ep 2 skb d29dc820
ath10k: WMI_SCAN_EVENTID
ath10k: scan event type 2 reason 0 freq 2457 req_id 40961 scan_id 40960 vdev_id 0
ath10k: SCAN_EVENT_COMPLETED
ath10k: SCAN_REASON_COMPLETED
wlan0: authenticate with 00:15:61:10:51:de
ath10k: mac config channel 2457MHz flags 0x190 radar 0
ath10k: mac config channel to 2457MHz (cf1 2457MHz cf2 0MHz width 20)
ath10k: mac monitor refs: promisc 0 monitor 0 cac 0
ath10k: mac config power 16
ath10k: wmi pdev set param 3 value 32
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009a4860 len 20 n_items 1
ath10k: wmi pdev set param 4 value 32
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d29dca60
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12ebb660 len 20 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d29dcb20
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: wmi vdev id 0x0 set param 3 value 100
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12ebb660 len 24 n_items 1
ath10k: mac vdev 0 beacon_interval 100
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0f5baa0
ath10k: mac vdev 0 create peer 00:15:61:10:51:de
ath10k: wmi peer create vdev_id 0 peer_addr 00:15:61:10:51:de
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12ebb660 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0f5baa0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f5bb60
ath10k: htt rx, msg_type: 0x3
ath10k: htt peer map vdev 0 peer 00:15:61:10:51:de id 31
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f5bc20
ath10k: htt rx, msg_type: 0x3
ath10k: htt peer map vdev 0 peer 00:15:61:10:51:de id 111
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac vdev 0 start 00:15:61:10:51:de
ath10k: mac vdev 0 start center_freq 2457 phymode 11ng-ht20
ath10k: wmi vdev start id 0x0 flags: 0x0, freq 2457, mode 5, ch_flags: 0x5, max_power: 40
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009a4860 len 140 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0f5bce0
ath10k: htc ep 2 got 1 credits (total 2)
ath10k: htc rx completion ep 2 skb d29dc760
ath10k: WMI_VDEV_START_RESP_EVENTID
wlan0: send auth to 00:15:61:10:51:de (try 1/3)
ath10k: htt tx alloc msdu_id 0
ath10k: pci tx item 0 paddr 0x12bf4e60 len 60 n_items 1
ath10k: pci hif send complete check
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb d2d7e200
ath10k: htc rx completion ep 1 skb c0f5bda0
ath10k: htt rx, msg_type: 0xE
ath10k: htt tx completion msdu_id 0 discard 0 no_ack 0
ath10k: htt tx free msdu_id 0
ath10k: htc rx completion ep 2 skb d29dc6a0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d29dc6a0 len 32 ftype 00 stype b0
ath10k: event mgmt rx freq 2457 band 0 snr -63, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f5be60
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
wlan0: authenticated
wlan0: associate with 00:15:61:10:51:de (try 1/3)
ath10k: htt tx alloc msdu_id 0
ath10k: pci tx item 0 paddr 0x1297c260 len 60 n_items 1
ath10k: pci hif send complete check
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb d2a2ae20
ath10k: htc rx completion ep 1 skb c0f5bf20
ath10k: htt rx, msg_type: 0xE
ath10k: htt tx completion msdu_id 0 discard 0 no_ack 0
ath10k: htt tx free msdu_id 0
ath10k: htc rx completion ep 2 skb d29dc5e0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d29dc5e0 len 176 ftype 00 stype 10
ath10k: event mgmt rx freq 2457 band 0 snr -64, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0fd60c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
wlan0: RX AssocResp from 00:15:61:10:51:de (capab=0x421 status=0 aid=1)
ath10k: wmi pdev set wmm params
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009a4060 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2db3540
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x1297c260 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a2ae20
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009a4060 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2db3540
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x1297c260 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0fd6180
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009a4060 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2db3540
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12bf2260 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2db36c0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: wmi pdev set wmm params
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009a4060 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2db3540
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12bf2260 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0fd6300
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009a4060 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2db3540
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12bf2260 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 192
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0fd63c0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009a4060 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2db3540
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12bf2260 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0fd6480
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac vdev 0 dtim_period 1
ath10k: wmi vdev id 0x0 set param 13 value 1
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12bf2260 len 24 n_items 1
ath10k: mac vdev 0 slot_time 2
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0fd6540
ath10k: wmi vdev id 0x0 set param 7 value 2
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12bf2260 len 24 n_items 1
ath10k: mac vdev 0 preamble 2n
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0fd6540
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: wmi vdev id 0x0 set param 8 value 2
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12bf2260 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0fd6600
ath10k: mac ht peer 00:15:61:10:51:de mcs cnt 8 nss 1
ath10k: mac peer 00:15:61:10:51:de phymode 11ng-ht20
ath10k: wmi peer assoc vdev 0 addr 00:15:61:10:51:de (new)
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x00e6bc60 len 368 n_items 1
ath10k: wmi vdev 0 peer 0x00:15:61:10:51:de set param 1 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0fd6600
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12bf2260 len 32 n_items 1
ath10k: mac vdev 0 up (associated) bssid 00:15:61:10:51:de aid 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2db3540
ath10k: wmi mgmt vdev up id 0x0 assoc id 1 bssid 00:15:61:10:51:de
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12bf2260 len 28 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2db3540
wlan0: associated
ath10k: htc ep 2 got 2 credits (total 2)
ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
cfg80211: Calling CRDA for country: FR
ath10k: dfs region 0x2
ath10k: mac channel [0/32] freq 2412 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [1/32] freq 2417 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [2/32] freq 2422 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [3/32] freq 2427 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [4/32] freq 2432 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [5/32] freq 2437 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [6/32] freq 2442 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [7/32] freq 2447 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [8/32] freq 2452 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [9/32] freq 2457 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [10/32] freq 2462 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [11/32] freq 2467 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [12/32] freq 2472 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [13/32] freq 5180 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [14/32] freq 5200 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [15/32] freq 5220 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [16/32] freq 5240 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [17/32] freq 5260 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [18/32] freq 5280 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [19/32] freq 5300 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [20/32] freq 5320 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [21/32] freq 5500 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [22/32] freq 5520 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [23/32] freq 5540 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [24/32] freq 5560 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [25/32] freq 5580 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [26/32] freq 5600 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [27/32] freq 5620 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [28/32] freq 5640 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [29/32] freq 5660 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [30/32] freq 5680 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [31/32] freq 5700 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12d87860 len 784 n_items 1
ath10k: wmi pdev regdomain rd 37 rd2g 37 rd5g 37 ctl2g 30 ctl5g 30
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0fd66c0
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12ed5a60 len 32 n_items 1
cfg80211: Regulatory domain changed to country: FR
ath10k: htt tx alloc msdu_id 0
ath10k: htt tx flags0 37 flags1 25600 len 108 id 0 frags_paddr 128ef000, msdu_paddr 12fc2030 vdev 0 tid 16
ath10k: pci tx item 0 paddr 0x128ef010 len 24 n_items 2
ath10k: pci tx item 1 paddr 0x12fc2030 len 52 n_items 2
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0fd6780
cfg80211:  DFS Master region: ETSI
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0fd6900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0fd69c0
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d29dc520
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d29dc520 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -63, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0fd6a80
ath10k: htt rx, msg_type: 0x7
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0fd6b40
ath10k: htt rx, msg_type: 0x1
ath10k: htt tx completion num_msdus 1
ath10k: htt tx completion msdu_id 0 discard 0 no_ack 0
ath10k: htt tx free msdu_id 0
ath10k: rx skb d2db3300 len 108  rate_idx 3 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
cfg80211:   (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz), (N/A, 2000 mBm), (0 s)
cfg80211:   (5490000 KHz - 5710000 KHz @ 80000 KHz), (N/A, 2700 mBm), (0 s)
cfg80211:   (57240000 KHz - 65880000 KHz @ 2160000 KHz), (N/A, 4000 mBm), (N/A)
wlan0: Limiting TX power to 30 (30 - 0) dBm as advertised by 00:15:61:10:51:de
ath10k: htc rx completion ep 2 skb d29dc460
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d29dc460 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -64, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0fd6c00
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0fd6cc0
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d29dc3a0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d29dc3a0 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -64, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d29dc2e0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d29dc2e0 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -63, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0fd6d80
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d29dc220
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d29dc220 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -63, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0fd6e40
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0fd6f00
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d29dc160
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d29dc160 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -64, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d29dc0a0
ath10k: wmi event debug mesg len 172
ath10k: htc rx completion ep 2 skb d2db3f00
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2db3f00 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -65, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b8d0a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b8d160
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2db3e40
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2db3e40 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -63, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b8d220
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2db3d80
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2db3d80 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -63, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: htt tx alloc msdu_id 0
ath10k: htt tx flags0 37 flags1 25600 len 96 id 0 frags_paddr 128ef000, msdu_paddr 12ed5a30 vdev 0 tid 16
ath10k: pci tx item 0 paddr 0x128ef010 len 24 n_items 2
ath10k: pci tx item 1 paddr 0x12ed5a30 len 52 n_items 2
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b8d2e0
ath10k: htt rx, msg_type: 0x7
ath10k: htt tx completion num_msdus 1
ath10k: htt tx completion msdu_id 0 discard 0 no_ack 0
ath10k: htt tx free msdu_id 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b8d3a0
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2c35b60 len 96  rate_idx 3 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b8d460
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2c35aa0 len 60  rate_idx 3 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b8d520
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2db3cc0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2db3cc0 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -63, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2db3c00
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2db3c00 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -64, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b8d5e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b8d6a0
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2db3b40
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2db3b40 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -63, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b8d760
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2db3a80
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2db3a80 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -64, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b8d820
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2db39c0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2db39c0 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -63, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b8d8e0
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2db3900
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2db3900 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -64, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b8d9a0
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2db3840
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2db3840 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -63, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2fc48c0
ath10k: wmi event debug mesg len 44
ath10k: htc rx completion ep 2 skb d2d7e5c0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2d7e5c0 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -64, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b8da60
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a2ad60
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a2ad60 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -64, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b8db20
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b8dbe0
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d29dce20
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d29dce20 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -64, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: htt tx alloc msdu_id 0
ath10k: htt tx flags0 37 flags1 25600 len 88 id 0 frags_paddr 128ef000, msdu_paddr 1297c430 vdev 0 tid 16
ath10k: pci tx item 0 paddr 0x128ef010 len 24 n_items 2
ath10k: pci tx item 1 paddr 0x1297c430 len 52 n_items 2
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b8dca0
ath10k: htt rx, msg_type: 0x7
ath10k: htt tx completion num_msdus 1
ath10k: htt tx completion msdu_id 0 discard 0 no_ack 0
ath10k: htt tx free msdu_id 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b8dd60
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2c35260 len 88  rate_idx 3 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b8de20
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2c351a0 len 60  rate_idx 3 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b8dee0
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d29dcd60
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d29dcd60 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -63, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d29dcca0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d29dcca0 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -63, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d284f080
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d284f140
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2a2aca0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a2aca0 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -63, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb c0ff1080
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb c0ff1080 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -63, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a50080
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a50140
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2fc4a40
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2fc4a40 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -64, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a50ec0
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d29dc9a0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d29dc9a0 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -63, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a50e00
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d29dc8e0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d29dc8e0 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -63, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a50d40
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb c0f5b7a0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb c0f5b7a0 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -64, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2d7e140
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2d7e140 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -63, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a50c80
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a50bc0
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb c0f5bf20
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb c0f5bf20 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -63, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a50b00
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2ddb800 len 60  rate_idx 3 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: htc rx completion ep 2 skb d2d7e200
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2d7e200 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -63, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a50a40
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2db3300
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2db3300 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -63, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a50980
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a508c0
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d29dca60
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d29dca60 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -64, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d29dc460
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d29dc460 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -64, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a50800
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a50740
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d29dc3a0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d29dc3a0 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -64, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2db30c0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2db30c0 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -63, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a50680
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a505c0
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d29dc220
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d29dc220 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -63, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a50500
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2c35f20
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2c35f20 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -64, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a50440
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2c35e60
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2c35e60 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -63, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a50380
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2ddb080 len 60  rate_idx 3 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: htc rx completion ep 2 skb d2c35da0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2c35da0 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -64, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a502c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d29dc6a0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d29dc6a0 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -63, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a50200
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d284fec0
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d29dc520
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d29dc520 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -63, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d284fe00
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2c359e0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2c359e0 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -63, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d284fd40
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2c35920
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2c35920 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -63, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d284fc80
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2c35860
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2c35860 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -64, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d284fbc0
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2c357a0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2c357a0 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -63, rate_idx 0
ath10k: htt rx mgmt ctrl

[-- Attachment #5: 999_promiscuous.txt --]
[-- Type: text/plain, Size: 73402 bytes --]

ath10k: boot hif stop
ath10k: boot warm reset
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x0000420a
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x0000020a
ath10k: boot target reset state: 0x00000800
ath10k: boot warm reset complete
ath10k: boot hif power down
ath10k: boot warm reset
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x0000020a
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x0000020a
ath10k: boot target reset state: 0x00000800
ath10k: boot warm reset complete
ieee80211 phy0: Hardware restart was requested
ath10k: boot hif power up
ath10k: boot warm reset
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x0000020a
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x0000020a
ath10k: boot target reset state: 0x00000800
ath10k: boot warm reset complete
ath10k: boot init ce src ring id 0 entries 16 base_addr d2ae8000
ath10k: boot ce dest ring id 1 entries 512 base_addr d2fae000
ath10k: boot ce dest ring id 2 entries 32 base_addr d2bc9000
ath10k: boot init ce src ring id 3 entries 32 base_addr d2927000
ath10k: boot init ce src ring id 4 entries 4096 base_addr d29c0000
ath10k: boot init ce src ring id 7 entries 2 base_addr d29cf000
ath10k: boot ce dest ring id 7 entries 2 base_addr d29ce000
ath10k: boot waiting target to initialise
ath10k: boot target indicator 0
ath10k: boot target indicator 0
ath10k: boot target indicator 0
ath10k: boot target indicator 2
ath10k: boot target initialised
ath10k: bmi start
ath10k: bmi write address 0x400800 length 4
ath10k: bmi read address 0x400810 length 4
ath10k: bmi write address 0x400810 length 4
ath10k: bmi write address 0x400844 length 4
ath10k: bmi write address 0x400904 length 4
ath10k: bmi read address 0x4008ac length 4
ath10k: boot push board extended data addr 0x0
ath10k: bmi read address 0x400854 length 4
ath10k: bmi write address 0x401cc0 length 2116
ath10k: bmi write address 0x400858 length 4
ath10k: boot upload otp to 0x1234 len 5402
ath10k: bmi fast download address 0x1234 buffer 0xe26a5038 length 5402
ath10k: bmi lz stream start address 0x1234
ath10k: bmi lz data buffer 0xe26a5038 length 5400
ath10k: bmi lz data buffer 0xd2ec7e6c length 4
ath10k: bmi lz stream start address 0x0
ath10k: bmi execute address 0x1234 param 0x0
ath10k: bmi execute result 0x0
ath10k: boot otp execute result 0
ath10k: bmi fast download address 0x1234 buffer 0xe26a655c length 249093
ath10k: bmi lz stream start address 0x1234
ath10k: bmi lz data buffer 0xe26a655c length 249092
ath10k: bmi lz data buffer 0xd2ec7e6c length 4
ath10k: bmi lz stream start address 0x0
ath10k: bmi write address 0x400814 length 4
ath10k: pci hif set callbacks
ath10k: pci hif get default pipe
ath10k: pci hif map service
ath10k: bmi done
ath10k: boot hif start
ath10k: Target ready! transmit resources: 2 size:1792
ath10k: pci hif map service
ath10k: boot htc service 'Control' ul pipe 0 dl pipe 1 eid 0 ready
ath10k: boot htc ep 0 ul polled 0 dl polled 0
ath10k: boot htc service 'Control' eid 0 TX flow control disabled
ath10k: boot htc service HTT Data does not allocate target credits
ath10k: ath10k_htc_build_tx_ctrl_skb: skb d2f9f3c0
ath10k: pci tx item 0 paddr 0x1280286c len 16 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 0 skb d2f9f3c0
ath10k: HTC Service HTT Data connect response: status: 0x0, assigned ep: 0x1
ath10k: pci hif map service
ath10k: boot htc service 'HTT Data' ul pipe 4 dl pipe 1 eid 1 ready
ath10k: boot htc ep 1 ul polled 1 dl polled 0
ath10k: boot htc service 'HTT Data' eid 1 TX flow control disabled
ath10k: htt tx max num pending tx 1424
ath10k: htt rx ring size 1024 fill_level 1000
ath10k: ath10k_htc_build_tx_ctrl_skb: skb d2a3c780
ath10k: pci tx item 0 paddr 0x12802c6c len 16 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 0 skb d2a3c780
ath10k: HTC Service WMI connect response: status: 0x0, assigned ep: 0x2
ath10k: pci hif map service
ath10k: boot htc service 'WMI' ul pipe 3 dl pipe 2 eid 2 ready
ath10k: boot htc ep 2 ul polled 0 dl polled 0
ath10k: ath10k_htc_build_tx_ctrl_skb: skb d28048e0
ath10k: HTC is using TX credit flow control
ath10k: pci tx item 0 paddr 0x1280306c len 20 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 0 skb d28048e0
ath10k: htc rx completion ep 2 skb d2e4a0c0
ath10k: wmi event service ready sw_ver 0x01000000 sw_ver1 0x0000027c abi_ver 3 phy_cap 0x00000003 ht_cap 0x0000085b vht_cap 0x338001b2 vht_supp_msc 0x0000fffa sys_cap_info 0x00000000 mem_reqs 0 num_rf_chains 2
ath10k: boot wmi ready
ath10k: firmware 999.999.0.636 booted
ath10k: wmi init
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x1297c060 len 148 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e4a0c0
ath10k: htc rx completion ep 2 skb c0f3df20
ath10k: wmi event ready sw_version 16777216 abi_version 3 mac_addr 00:03:07:12:34:56 status 0 skb->len 20 ev-sz 20
ath10k: pci tx item 0 paddr 0x12bf2460 len 12 n_items 1
ath10k: pci hif send complete check
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb c0f3df20
ath10k: htc rx completion ep 1 skb d2f9f900
ath10k: htt rx, msg_type: 0x0
ath10k: htt target version 2.1
ath10k: pci tx item 0 paddr 0x12bf2460 len 48 n_items 1
ath10k: wmi pdev set param 34 value 1
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12bf2e60 len 20 n_items 1
ath10k: wmi pdev set param 10 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0f3df20
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009a4a60 len 20 n_items 1
ath10k: wmi pdev set param 1 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a3c0c0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12bf2e60 len 20 n_items 1
ath10k: wmi pdev set param 2 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f9f840
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009a4a60 len 20 n_items 1
ath10k: wmi pdev set param 35 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a3c0c0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12bf2e60 len 20 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f9f480
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac channel [0/32] freq 2412 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [1/32] freq 2417 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [2/32] freq 2422 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [3/32] freq 2427 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [4/32] freq 2432 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [5/32] freq 2437 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [6/32] freq 2442 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [7/32] freq 2447 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [8/32] freq 2452 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [9/32] freq 2457 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [10/32] freq 2462 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [11/32] freq 2467 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [12/32] freq 2472 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [13/32] freq 5180 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [14/32] freq 5200 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [15/32] freq 5220 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [16/32] freq 5240 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [17/32] freq 5260 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [18/32] freq 5280 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [19/32] freq 5300 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [20/32] freq 5320 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [21/32] freq 5500 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [22/32] freq 5520 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [23/32] freq 5540 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [24/32] freq 5560 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [25/32] freq 5580 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [26/32] freq 5600 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [27/32] freq 5620 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [28/32] freq 5640 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [29/32] freq 5660 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [30/32] freq 5680 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [31/32] freq 5700 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12a02860 len 784 n_items 1
ath10k: wmi pdev regdomain rd 37 rd2g 37 rd5g 37 ctl2g 30 ctl5g 30
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2804820
ath10k: pci tx item 0 paddr 0x12bf2e60 len 32 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a3c0c0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac vdev create 0 (add interface) type 2 subtype 0
ath10k: WMI vdev create: id 0 type 2 subtype 0 macaddr 00:03:07:12:34:56
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12bf2e60 len 32 n_items 1
ath10k: wmi vdev id 0x0 set param 33 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f9f9c0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009a4a60 len 24 n_items 1
ath10k: wmi vdev id 0x0 set param 48 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2804820
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12bf2e60 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f9f9c0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009a4a60 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 1 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f9fa80
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12bf2e60 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 2 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f9f9c0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009a4a60 len 24 n_items 1
ath10k: wmi vdev id 0x0 set param 1 value -1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f9fb40
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12bf2e60 len 24 n_items 1
ath10k: wmi vdev id 0x0 set param 2 value -1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f9f9c0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009a4a60 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f9fc00
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: wmi pdev set wmm params
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009a4a60 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f9fcc0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12bf2e60 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f9f9c0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009a4a60 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f9fcc0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12bf2e60 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f9fd80
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009a4a60 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f9fcc0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12bf2e60 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f9fe40
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009a4a60 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f9fcc0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12bf2e60 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f9ff00
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009a4a60 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f9fcc0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12bf2e60 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d29670a0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009a4a60 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f9fcc0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12bf2e60 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2967160
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac config channel 2412MHz flags 0x1a0 radar 0
ath10k: mac config power 20
ath10k: wmi pdev set param 3 value 40
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12bf2e60 len 20 n_items 1
ath10k: wmi pdev set param 4 value 40
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2967220
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009a4a60 len 20 n_items 1
ath10k: mac vdev 0 psmode disable
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f9fcc0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: wmi set powersave id 0x0 mode 0
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009a4a60 len 20 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d29672e0
ath10k: mac monitor refs: promisc 1 monitor 0 cac 0
ath10k: WMI vdev create: id 1 type 4 subtype 0 macaddr 00:03:07:12:34:56
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009a4a60 len 32 n_items 1
ath10k: mac monitor vdev 1 created
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d29672e0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: wmi vdev start id 0x1 flags: 0x0, freq 2412, mode 1, ch_flags: 0x1, max_power: 40
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009a4a60 len 140 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d29672e0
ath10k: htc ep 2 got 1 credits (total 2)
ath10k: htc rx completion ep 2 skb c0f3de60
ath10k: WMI_VDEV_START_RESP_EVENTID
ath10k: wmi mgmt vdev up id 0x1 assoc id 0 bssid 00:03:07:12:34:56
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x1297c060 len 28 n_items 1
ath10k: mac monitor vdev 1 started
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e4a0c0
ath10k: mac monitor started
ath10k: wmi vdev id 0x0 set param 3 value 0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x1297c060 len 24 n_items 1
ath10k: mac vdev 0 beacon_interval 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e4a0c0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac vdev 0 cts_prot 0
ath10k: wmi vdev id 0x0 set param 44 value 0
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x1297c060 len 24 n_items 1
ath10k: mac vdev 0 slot_time 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2967460
ath10k: wmi vdev id 0x0 set param 7 value 1
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x1297c060 len 24 n_items 1
ath10k: mac vdev 0 preamble 1n
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2967460
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: wmi vdev id 0x0 set param 8 value 1
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x1297c060 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2967520
ath10k: device successfully recovered
ath10k: pci hif send complete check
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb d2f9f900
ath10k: htc rx completion ep 1 skb d29675e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29676a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2967760
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2967820
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29678e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29679a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2967a60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2967b20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2967be0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2967ca0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2967d60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2967e20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2967ee0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7e320
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7e3e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7e4a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7e560
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7e620
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7e6e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7e7a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7e860
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7e920
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b888e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b886a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b88160
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b885e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b88460
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b883a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b882e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b88220
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b880a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8b820
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8b760
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8b6a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8b5e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8b520
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8b460
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8b3a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8b2e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8b220
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8b160
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8b0a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2db01a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2db00e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2db07a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2db0860
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d64300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d643c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d64480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d4e200
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d64f00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d640c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d64180
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d64240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2db0920
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2db09e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2db0aa0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2db0b60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2db0c20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2db0ce0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2db0da0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2db0e60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2db0f20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2db06e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2db0620
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2db0560
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2db04a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2db03e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2db0320
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2db0260
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b88ca0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b88be0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b88b20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b88a60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b889a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b88760
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b88820
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b88520
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b88d60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b88e20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2b88ee0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e5d180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e5d0c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e5d3c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e5d840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e5d6c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e5d600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e5d900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e5d300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e5d780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e5d540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e5d480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e5d240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f9f0c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f9f180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f9f240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f9f600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f9f540
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f9f300
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f9f780
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f9f6c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8b8e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8b9a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8ba60
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8bb20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8bbe0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8bca0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8bd60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8be20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8bee0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d4e500
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d4e5c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d4e680
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d4e740
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d4e800
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d4e8c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d4e980
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d4ea40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d4eb00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d4ebc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d4ec80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d4ed40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d4ee00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d4eec0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d4e080
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d4e140
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d4e440
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d4e380
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d4e2c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7e9e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7eaa0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7eb60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7ec20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7ece0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7eda0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7ee60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7ef20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7e260
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7e1a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7e0e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2804760
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d28046a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d28045e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2804520
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2804460
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d28043a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d28042e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2804220
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2804160
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d28040a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2804b20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2804be0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2804ca0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2804d60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2804e20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2804ee0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2804a60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d64540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d64600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d646c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d64780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d64840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d64900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d649c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d64a80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d64b40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d64c00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d64cc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d64d80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d64e40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5bee0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5b520
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5b460
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5b3a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5b2e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5b220
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5b160
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5b0a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5be20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5bd60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5bca0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5bbe0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5bb20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5ba60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5b9a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5b8e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5b820
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5b760
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5b6a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5b5e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f40ec0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f40e00
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f40d40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f40c80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f40bc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f40b00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f40a40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f40980
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f408c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f40800
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f40740
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f40680
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f405c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f40500
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f40440
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f40380
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f402c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f40200
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f40140
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f40080
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d293dee0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d293de20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d293dd60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d293dca0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d293dbe0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d293db20
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d293da60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d293d9a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d293d8e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d293d820
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d293d760
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d293d6a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d293d5e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d293d520
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d293d460
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d293d3a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d293d2e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d293d220
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d293d160
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d293d0a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2845f00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2845e40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2845d80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2845cc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2845c00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2845b40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2845a80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d28459c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2845900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2845840
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2845780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d28456c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2845600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2845540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2845480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d28453c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2845300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2845240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2845180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d28450c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0eecf20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0eece60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0eecda0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0eecce0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0eecc20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0eecb60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0eecaa0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0eec9e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0eec920
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0eec860
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0eec7a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0eec6e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0eec620
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0eec560
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0eec4a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0eec3e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0eec320
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0eec260
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0eec1a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0eec0e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f0ec0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f0e00
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f0d40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f0c80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f0bc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f0b00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f0a40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f0980
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f08c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f0800
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f0740
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f0680
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f05c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f0500
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f0440
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f0380
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f02c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f0200
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f0140
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f0080
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f80ee0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f80e20
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f80d60
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f80ca0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f80be0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f80b20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f80a60
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f809a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f808e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f80820
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f80760
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f806a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f805e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f80520
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f80460
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f803a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f802e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f80220
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f80160
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f800a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f5f00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f5e40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f5d80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f5cc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f5c00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f5b40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f5a80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f59c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f5900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f5840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f5780
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f56c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f5600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f5540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f5480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f53c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f5300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f5240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f5180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29f50c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f32f20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f32e60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f32da0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f32ce0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f32c20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f32b60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f32aa0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f329e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f32920
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f32860
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f327a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f326e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f32620
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f32560
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f324a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f323e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f32320
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f32260
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f321a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0f320e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29d8ec0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29d8e00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29d8d40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29d8c80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29d8bc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29d8b00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29d8a40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29d8980
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29d88c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29d8800
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29d8740
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29d8680
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29d85c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29d8500
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29d8440
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29d8380
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29d82c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29d8200
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29d8140
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d29d8080
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d93ee0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d93e20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d93d60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d93ca0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d93be0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d93b20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d93a60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d939a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d938e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d93820
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d93760
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d936a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d935e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d93520
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d93460
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d933a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d932e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d93220
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d93160
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d930a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a98f00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a98e40
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a98d80
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb c0f3dda0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb c0f3dda0 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2412 band 0 snr -82, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a98cc0
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb c0f3dce0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb c0f3dce0 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2412 band 0 snr -82, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a98c00
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a98b40
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb c0f3dc20
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb c0f3dc20 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2412 band 0 snr -88, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb c0f3db60
ath10k: wmi event debug mesg len 36
ath10k: firmware crashed!
ath10k: hardware name qca988x hw2.0 version 0x4100016c
ath10k: firmware version: 999.999.0.636
ath10k: target register Dump Location: 0x0040AC14
ath10k: target Register Dump
ath10k: [00]: 0x4100016C 0x00000000 0x009C4521 0x00000000
ath10k: [04]: 0x009C4521 0x00060330 0x00000019 0x00955A00
ath10k: [08]: 0x000691F0 0x00000000 0x0040CC94 0x00000020
ath10k: [12]: 0x00000000 0x00000000 0x00958360 0x0095836B
ath10k: [16]: 0x809A0978 0x0040AD94 0x00439304 0x0040D074
ath10k: [20]: 0x0000FFFF 0x00000000 0x0041F6EC 0x00000000
ath10k: [24]: 0x809A0978 0x0040AD94 0x00439304 0x1A47C2E4
ath10k: [28]: 0x809AD1A2 0x0040ADE4 0x00439304 0x0043F68C
ath10k: [32]: 0x809B01DA 0x00000000 0x00410110 0x0041937C
ath10k: [36]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [40]: 0x00000000 0x00000000 0x000000F7 0x00412700
ath10k: [44]: 0x00439BB8 0x00000000 0x00000000 0x00400000
ath10k: [48]: 0x809AE0B4 0x0040AE04 0x00400000 0x0043F68C
ath10k: [52]: 0x00000001 0x00000000 0x004231F0 0x00400000
ath10k: [56]: 0x809AE17E 0x0040AE44 0x0040FE6C 0x0040D310
ath10k: mac monitor refs: promisc 1 monitor 0 cac 0
ath10k: mac monitor refs: promisc 0 monitor 0 cac 0
ath10k: wmi mgmt vdev down id 0x1
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12bf2460 len 16 n_items 1
ath10k: wmi vdev stop id 0x1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0f3dc20
ath10k: failed to to request monitor vdev 1 stop: -11

[-- Attachment #6: Type: text/plain, Size: 146 bytes --]

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE ath10k: set channel by command "iw" not from hostapd and DFS support of firmware-2.bin_10.1.467.2-1
  2014-05-19  9:39                                               ` Vu Hai NGUYEN
@ 2014-05-19 10:42                                                 ` Janusz Dziedzic
  0 siblings, 0 replies; 134+ messages in thread
From: Janusz Dziedzic @ 2014-05-19 10:42 UTC (permalink / raw)
  To: Vu Hai NGUYEN; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k, Bartosz Markowski

On 19 May 2014 11:39, Vu Hai NGUYEN <vh.nguyen@actiasodielec.fr> wrote:
>>> ath10k: failed to initialise DFS pattern detector
>>> cfg80211: Calling CRDA for country: FR
>>> cfg80211: Regulatory domain changed to country: FR
>>> cfg80211:  DFS Master region: ETSI
>>> cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (
>>> dfs_cac_time)
>>> cfg80211:   (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
>>> cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
>>> cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz), (N/A, 2000 mBm), (0 s)
>>>cfg80211:   (5490000 KHz - 5710000 KHz @ 80000 KHz), (N/A, 2700 mBm), (0 s)
>>> cfg80211:   (57240000 KHz - 65880000 KHz @ 2160000 KHz), (N/A, 4000 mBm), (N/A)
>
>>Yes, ath.ko is compiled without CERTIFICATION_ONUS flag;
>>(probably file compiled but always return NULL during pattern detector init).
>
> Thanks, my mistake cause I replace the folder ath in backports with the one from master branch and I didn't change all of CONFIG_... to CPTCFG, now I got:
>
> ath: country maps to regdmn code: 0x37
> ath: Country alpha2 being used: FR
> ath: Regpair used: 0x37
> ath10k: dfs region 0x0
> cfg80211: Calling CRDA for country: FR
> ath10k: dfs region 0x2
> cfg80211: Regulatory domain changed to country: FR
> cfg80211:  DFS Master region: ETSI
> cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), )
> cfg80211:   (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
> cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
> cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz), (N/A, 2000 mBm), (0 s)
> cfg80211:   (5490000 KHz - 5710000 KHz @ 80000 KHz), (N/A, 2700 mBm), (0 s)
> cfg80211:   (57240000 KHz - 65880000 KHz @ 2160000 KHz), (N/A, 4000 mBm), (N/A)
>
> And another different backtrace than before:
>
> ------------[ cut here ]------------
> WARNING: at /home/alberix2/Desktop/Wilinks_ath10k/ACCESS_POINT_APPLI/Source/Dri)
> Modules linked in: ath10k_pci(O) ath10k_core(O) ath(O) mac80211(O) cfg80211(O) ]
> Backtrace:
> [<c0011938>] (dump_backtrace+0x0/0x118) from [<c050205c>] (dump_stack+0x18/0x20)
>  r6:bf209143 r5:000016c0 r4:00000000 r3:c10bc7ac
> [<c0502044>] (dump_stack+0x0/0x20) from [<c0066c38>] (warn_slowpath_common+0x54)
> [<c0066be4>] (warn_slowpath_common+0x0/0x70) from [<c0066c78>] (warn_slowpath_n)
>  r8:00000000 r7:00000000 r6:d2ef3000 r5:d27fc000 r4:d2ef33c8
> r3:00000009
> [<c0066c54>] (warn_slowpath_null+0x0/0x2c) from [<bf1ccadc>] (nl80211_start_rad)
> [<bf1cc9e4>] (nl80211_start_radar_detection+0x0/0x16c [cfg80211]) from [<c04534)
> [<c04532d4>] (genl_rcv_msg+0x0/0x1f4) from [<c0452904>] (netlink_rcv_skb+0x58/0)
> [<c04528ac>] (netlink_rcv_skb+0x0/0xb8) from [<c04532c4>] (genl_rcv+0x20/0x30)
>  r6:c09a2400 r5:d2a52ca0 r4:d2a52ca0 r3:c04532a4
> [<c04532a4>] (genl_rcv+0x0/0x30) from [<c04522d0>] (netlink_unicast+0x224/0x2c4)
>  r4:d0074400 r3:c04532a4
> [<c04520ac>] (netlink_unicast+0x0/0x2c4) from [<c04526a4>] (netlink_sendmsg+0x2)
> [<c0452414>] (netlink_sendmsg+0x0/0x320) from [<c0428eac>] (sock_sendmsg+0x98/0)
> [<c0428e14>] (sock_sendmsg+0x0/0xb4) from [<c0429150>] (__sys_sendmsg+0x1d0/0x2)
>  r4:d2887f64
> [<c0428f80>] (__sys_sendmsg+0x0/0x26c) from [<c042ab30>] (sys_sendmsg+0x44/0x68)
> [<c042aaec>] (sys_sendmsg+0x0/0x68) from [<c000ddc0>] (ret_fast_syscall+0x0/0x3)
>  r6:00134870 r5:4010d9f0 r4:00136660
> ---[ end trace 3dff84bb4058c392 ]---
>
> My station can see the wifi from ap but it can not connected to it yet. Could the backtrace
> say anything about my problem?
>
What file and line there is? Seems you cut the Warning message? If
CAC=0 then this is not a problem.

BTW, I am not sure this will work correctly if you will get "some"
backport and exchange only ath10k sources.
cfg80211/mac80211 could be incompatible with driver in such case.
Michal suggest to generate own backport form ath10k.git - this for
sure will work fine. In any other cases, while you will mix sources,
will be very hard to track your problems.

BR
Janusz

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : ath10k: firmware crash in station mode
  2014-05-19  9:47                   ` RE : " Vu Hai NGUYEN
@ 2014-05-19 12:51                     ` Michal Kazior
  2014-05-20  6:44                       ` ath10k: firmware crash in station mode & problem DFS Vu Hai NGUYEN
  2014-05-23  9:15                       ` RE : RE : ath10k: firmware crash in station mode Yeoh Chun-Yeow
  0 siblings, 2 replies; 134+ messages in thread
From: Michal Kazior @ 2014-05-19 12:51 UTC (permalink / raw)
  To: Vu Hai NGUYEN; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k

On 19 May 2014 11:47, Vu Hai NGUYEN <vh.nguyen@actiasodielec.fr> wrote:
>>The 636 crashes because the interface is in promiscuous mode (it's
>>either put in a bridge or you have tcpdump running on it?). This won't
>>work with 636. See mailing list archives. 636 has broken monitor mode
>>and it crashes often.
>
>>Can you please retry with debug_mask=0xffffffff to get full dumps and
>>see what kind of frame is being sent? I guess it's an ipv6 neighbour
>>solicitation but the request itself might be malformed for some reason
>>causing firmware to crash unexpectedly.

Actually I'm able to reproduce this locally. The frame is a NullFunc
frame. However from what I'm seeing firmware 10.1 crashes in response
to wmi vdev up command. There's no firmware crash if I associate
before adding then wlan interface to a bridge though. Perhaps there's
something ath10k is doing but shouldn't or should be but isn't - I
have no idea what that could be now.

I'm a bit surprised since I thought this worked with 10.1. I think
I've even had tested 4addr this way before so there's a chance this is
a regression in ath10k.

Thanks for the logs anyway. I was able to reproduce this quickly since
it narrowed my search for the crash trigger.


>>Also, can you try the test without making wlan interface promiscuous
>>(on both firmwares, with debug_mask=0xffffffff) too, please?
>
> Yes I used promiscuous to set up my station in bridge mode, the firmware crashed
> but If don't use promiscuous (put my station in router mode), the firmware didn't crash and
> I can associate with the access point without problem.
> You can found in the attached file 4 dmesg file (with/without promicuous) for both version of firmware.
> (If I set debug mask=0xffffffff there are many lines "htt rx pop" and I can not see all the dmesg, so I
> only set the mask=0xffffff3f).

> But I wonder if there will be any progress of the firmware in the future for promiscuous so that I can
> set up bridge mode?

Beats me. You should ask QCA about the future of ath10k firmware.


>>If you generate backports with kvalo/ath master branch then DFS won't
>>work as it is now (due to the bug I've mentioned earlier). Kalle
>>doesn't have the patch that deals with it, yet. You'll need to
>>cherry-pick the following 2 patches before generating backports from kvalo/ath:
>
>  > https://git.kernel.org/cgit/linux/kernel/git/jberg/mac80211-next.git/commit/?id=67ae07a109f3d518085e3b81aa48740e8c5cc3f7
>  >https://git.kernel.org/cgit/linux/kernel/git/jberg/mac80211-next.git/commit/?id=00ec75fc5a6499d8fdeb6ec9f8f5df68b9291c74
>
>  I did not get your suggest here, How can I "cherry-pick" thoses 2 patch before generating backports? I think that I sould generate the backport first and then apply these 2 patchs later?

You should probably get yourself familiar with git
(http://git-scm.com/book/en/Getting-Started-Git-Basics,
http://think-like-a-git.net/sections/rebase-from-the-ground-up/cherry-picking-explained.html).

Patching a generated backports tree is a mess. Generally you should
apply fixes to your source kernel tree that your backports are being
derived from.


Michał

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* ath10k: firmware crash in station mode & problem DFS
  2014-05-19 12:51                     ` Michal Kazior
@ 2014-05-20  6:44                       ` Vu Hai NGUYEN
  2014-05-20  8:15                         ` RE : " Vu Hai NGUYEN
  2014-05-23  9:15                       ` RE : RE : ath10k: firmware crash in station mode Yeoh Chun-Yeow
  1 sibling, 1 reply; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-05-20  6:44 UTC (permalink / raw)
  To: Michal Kazior, janusz.dziedzic; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k

[-- Attachment #1: Type: text/plain, Size: 6718 bytes --]

>> But I wonder if there will be any progress of the firmware in the future for promiscuous so that I can
>> set up bridge mode?

>Beats me. You should ask QCA about the future of ath10k firmware.

LOL, sorry I thought that the firmware is developped by our group too. So the driver should adapt to the firmware then?

>If you generate backports with kvalo/ath master branch then DFS won't
>work as it is now (due to the bug I've mentioned earlier). Kalle
>doesn't have the patch that deals with it, yet. You'll need to
>cherry-pick the following 2 patches before generating backports from kvalo/ath:
> https://git.kernel.org/cgit/linux/kernel/git/jberg/mac80211-next.git/commit/?id=67ae07a109f3d518085e3b81aa48740e8c5cc3f7
>https://git.kernel.org/cgit/linux/kernel/git/jberg/mac80211-next.git/commit/?id=00ec75fc5a6499d8fdeb6ec9f8f5df68b9291c74

>BTW, I am not sure this will work correctly if you will get "some"
>backport and exchange only ath10k sources.
>cfg80211/mac80211 could be incompatible with driver in such case.
>Michal suggest to generate own backport form ath10k.git - this for
>sure will work fine. In any other cases, while you will mix sources,
>will be very hard to track your problems.

I follow the instruction on this page http://wireless.kernel.org/en/users/Drivers/ath10k/backports#Compiling_custom_ath10k_backports to generate my own backport from master branch of ath10k. I also cherry-pick the 2 patches that you gave me. Then I see these 2 new options below cfg80211 certification onus in "make menuconfig" :
[*]   cfg80211 certification onus                                                                       
  │ │                                   [*]     cfg80211 regulatory support for cellular base station hints                                     
  │ │                                   [*]     cfg80211 support for NO_IR relaxation 

I don't get the backtrace like before anymore, thing seems to work (Now I also get the cac_time=60, before it was 0) :

ADDRCONF(NETDEV_UP): wlan0: link is not ready                                   
wlan0: interface state UNINITIALIZED->COUNTRY_UPDATE                            
wlan0: interface state COUNTRY_UPDATE->DFS                                      
wlan0: DFS-CAC-START freq=5260 chan=52 sec_chan=0, width=0, seg0=0, seg1=0, cac_time=60s        
ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready                              
br0: port 2(wlan0) entering forwarding state   

The out put of iw dev show me: 
                ssid ath10k 
                type AP                                                         
                channel 52 (5260 MHz), width: 20 MHz, center1: 5260 MHz

But still, I can not connect another station to my access point and I have no idea why. I don't see any warning or error from the output of dmesg (attached file). 
If I put my device into station mode in a canal DFS (for expl: 52) and set another device as an access point, my device can connect without any problem but it can not function
as AP mode in a canal that employs DFS. (It can work in the others canal and other station can connect to it normally).

I tried to return to the origin version of backport 3.15 and it's worse. First I don't get the 2 options below cfg80211 certification onus,
then I got the same backtrace msg like before:

wlan0: interface------------[ cut here ]------------                            
 state UNINITIALWARNING: at /home/alberix2/Desktop/Wilinks_ath10k/ACCESS_POINT_A
PPLI/Source/Driver_ath10k/backports-3.15-rc1-1/net/wireless/nl80211.c:5824 nl802
11_start_radar_detection+0xf8/0x16c [cfg80211]()                                
IZED->COUNTRY_UPModules linked in:DATE                                          
wlan0: int ath10k_pci(O)erface state COU ath10k_core(O)NTRY_UPDATE->DFS ath(O)  
wlan0: DFS-CAC mac80211(O)-START freq=5260 cfg80211(O) chan=52 sec_cha compat(O)
n=0, width=0, se arc4g0=0, seg1=0, ca ubifsc_time=0s                            
 ubi [last unloaded: compat]                                                    
Backtrace:                                                                      
[<c0011938>] (dump_backtrace+0x0/0x118) from [<c050205c>] (dump_stack+0x18/0x20)
 r6:bf36be48 r5:000016c0 r4:00000000 r3:c10bc7ac                                
[<c0502044>] (dump_stack+0x0/0x20) from [<c0066c38>] (warn_slowpath_common+0x54/
0x70)                                                                           
[<c0066be4>] (warn_slowpath_common+0x0/0x70) from [<c0066c78>] (warn_slowpath_nu
ll+0x24/0x2c)                                                                   
 r8:00000000 r7:00000000 r6:c0ed2000 r5:d2ddc000 r4:c0ed23c8                    
r3:00000009                                                                     
[<c0066c54>] (warn_slowpath_null+0x0/0x2c) from [<bf32fdac>] (nl80211_start_rada
r_detection+0xf8/0x16c [cfg80211])                                              
[<bf32fcb4>] (nl80211_start_radar_detection+0x0/0x16c [cfg80211]) from [<c045348
8>] (genl_rcv_msg+0x1b4/0x1f4)                                                  
[<c04532d4>] (genl_rcv_msg+0x0/0x1f4) from [<c0452904>] (netlink_rcv_skb+0x58/0x
b8)                                                                             
[<c04528ac>] (netlink_rcv_skb+0x0/0xb8) from [<c04532c4>] (genl_rcv+0x20/0x30)  
 r6:d2a8f000 r5:d2b762e0 r4:d2b762e0 r3:c04532a4                                
[<c04532a4>] (genl_rcv+0x0/0x30) from [<c04522d0>] (netlink_unicast+0x224/0x2c4)
 r4:d0074400 r3:c04532a4                                                        
[<c04520ac>] (netlink_unicast+0x0/0x2c4) from [<c04526a4>] (netlink_sendmsg+0x29
0/0x320)                                                                        
[<c0452414>] (netlink_sendmsg+0x0/0x320) from [<c0428eac>] (sock_sendmsg+0x98/0x
b4)                                                                             
[<c0428e14>] (sock_sendmsg+0x0/0xb4) from [<c0429150>] (__sys_sendmsg+0x1d0/0x26
c)                                                                              
 r4:d2843f64                                                                    
[<c0428f80>] (__sys_sendmsg+0x0/0x26c) from [<c042ab30>] (sys_sendmsg+0x44/0x68)
[<c042aaec>] (sys_sendmsg+0x0/0x68) from [<c000ddc0>] (ret_fast_syscall+0x0/0x30
)                                                                               
 r6:00134870 r5:4007b9f0 r4:00136660                                            
---[ end trace 29f0f32871a48aa3 ]---


NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE




[-- Attachment #2: dmsg.txt --]
[-- Type: text/plain, Size: 19494 bytes --]

ath10k: boot hif power down                                                     
ath10k: boot warm reset                                                         
ath10k: boot host cpu intr cause: 0x00000000                                    
ath10k: boot target cpu intr cause: 0x00000000                                  
ath10k: boot host cpu intr cause: 0x00000000                                    
ath10k: boot target cpu intr cause: 0x00000000                                  
ath10k: boot target reset state: 0x00000800                                     
ath10k: boot warm reset complete                                                
br0: port 2(wlan0) entering disabled state                                      
ath10k: boot hif power up                                                       
ath10k: boot warm reset                                                         
ath10k: boot host cpu intr cause: 0x00000000                                    
ath10k: boot target cpu intr cause: 0x00000000                                  
ath10k: boot host cpu intr cause: 0x00000000                                    
ath10k: boot target cpu intr cause: 0x00000000                                  
ath10k: boot target reset state: 0x00000800                                     
ath10k: boot warm reset complete                                                
ath10k: boot init ce src ring id 0 entries 16 base_addr d2899000                
ath10k: boot ce dest ring id 1 entries 512 base_addr c0f8a000                   
ath10k: boot ce dest ring id 2 entries 32 base_addr d2870000                    
ath10k: boot init ce src ring id 3 entries 32 base_addr d286c000                
ath10k: boot init ce src ring id 4 entries 4096 base_addr d2880000              
ath10k: boot init ce src ring id 7 entries 2 base_addr d288f000                 
ath10k: boot ce dest ring id 7 entries 2 base_addr d288e000                     
ath10k: boot waiting target to initialise                                       
ath10k: boot target indicator 0                                                 
ath10k: boot target indicator 0                                                 
ath10k: boot target indicator 0                                                 
ath10k: boot target indicator 2                                                 
ath10k: boot target initialised                                                 
ath10k: bmi start                                                               
ath10k: bmi write address 0x400800 length 4                                     
ath10k: bmi read address 0x400810 length 4                                      
ath10k: bmi write address 0x400810 length 4                                     
ath10k: bmi write address 0x400844 length 4                                     
ath10k: bmi write address 0x400904 length 4                                     
ath10k: bmi read address 0x4008ac length 4                                      
ath10k: boot push board extended data addr 0x0                                  
ath10k: bmi read address 0x400854 length 4                                      
ath10k: bmi write address 0x401cc0 length 2116                                  
ath10k: bmi write address 0x400858 length 4                                     
ath10k: boot upload otp to 0x1234 len 6917                                      
ath10k: bmi fast download address 0x1234 buffer 0xe2133034 length 6917          
ath10k: bmi lz stream start address 0x1234                                      
ath10k: bmi lz data buffer 0xe2133034 length 6916                               
ath10k: bmi lz data buffer 0xd2f9fd3c length 4                                  
ath10k: bmi lz stream start address 0x0                                         
ath10k: bmi execute address 0x1234 param 0x0                                    
ath10k: bmi execute result 0x0                                                  
ath10k: boot otp execute result 0                                               
ath10k: bmi fast download address 0x1234 buffer 0xe2134b44 length 190250        
ath10k: bmi lz stream start address 0x1234                                      
ath10k: bmi lz data buffer 0xe2134b44 length 190248                             
ath10k: bmi lz data buffer 0xd2f9fd3c length 4                                  
ath10k: bmi lz stream start address 0x0                                         
ath10k: bmi write address 0x400814 length 4                                     
ath10k: bmi done                                                                
ath10k: htt tx max num pending tx 1424                                          
ath10k: htt rx ring size 1024 fill_level 1000                                   
ath10k: boot hif start                                                          
ath10k: boot htc service 'Control' ul pipe 0 dl pipe 1 eid 0 ready              
ath10k: boot htc ep 0 ul polled 0 dl polled 0                                   
ath10k: boot htc service 'Control' eid 0 TX flow control disabled               
ath10k: boot htc service HTT Data does not allocate target credits              
ath10k: boot htc service 'HTT Data' ul pipe 4 dl pipe 1 eid 1 ready             
ath10k: boot htc ep 1 ul polled 1 dl polled 0                                   
ath10k: boot htc service 'HTT Data' eid 1 TX flow control disabled              
ath10k: boot htc service 'WMI' ul pipe 3 dl pipe 2 eid 2 ready                  
ath10k: boot htc ep 2 ul polled 0 dl polled 0                                   
ath10k: firmware has requested 1 memory chunks                                  
ath10k: wmi mem_req_id 1 num_units 0 num_unit_info 2 unit size 404 actual units 
145                                                                             
ath10k: wmi event service ready sw_ver 0x4100270f abi_ver 1 phy_cap 0x00000003 h
t_cap 0x0000085b vht_cap 0x338001b2 vht_supp_msc 0x0000ffea sys_cap_info 0x00000
000 mem_reqs 1 num_rf_chains 3                                                  
ath10k: firmware 10.1.467.2-1 booted                                            
ath10k: wmi sending 1 memory chunks info.                                       
ath10k: wmi chunk 0 len 58580 requested, addr 0x12aa0000                        
ath10k: wmi init 10x                                                            
ath10k: wmi event debug print 'P 145 V 16 T 443'                                
ath10k: wmi event ready sw_version 1090529039 abi_version 1 mac_addr 04:f0:21:0e
:38:be status 0 skb->len 20 ev-sz 20                                            
ath10k: htt target version 2.1                                                  
ath10k: wmi pdev set param 30 value 1                                           
ath10k: wmi pdev set param 10 value 1                                           
ath10k: wmi pdev set param 1 value 1                                            
ath10k: wmi pdev set param 2 value 1                                            
ath10k: wmi pdev set param 31 value 0                                           
ath10k: mac channel [0/28] freq 2412 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [1/28] freq 2417 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [2/28] freq 2422 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [3/28] freq 2427 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [4/28] freq 2432 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [5/28] freq 2437 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [6/28] freq 2442 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [7/28] freq 2447 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [8/28] freq 2452 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [9/28] freq 2457 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [10/28] freq 2462 maxpower 40 regpower 40 antenna 0 mode 1  
ath10k: mac channel [11/28] freq 2467 maxpower 40 regpower 40 antenna 0 mode 1  
ath10k: mac channel [12/28] freq 5180 maxpower 34 regpower 40 antenna 0 mode 0  
ath10k: mac channel [13/28] freq 5200 maxpower 34 regpower 40 antenna 0 mode 0  
ath10k: mac channel [14/28] freq 5220 maxpower 34 regpower 40 antenna 0 mode 0  
ath10k: mac channel [15/28] freq 5240 maxpower 34 regpower 40 antenna 0 mode 0  
ath10k: mac channel [16/28] freq 5260 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [17/28] freq 5280 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [18/28] freq 5300 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [19/28] freq 5320 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [20/28] freq 5500 maxpower 48 regpower 54 antenna 0 mode 0  
ath10k: mac channel [21/28] freq 5520 maxpower 48 regpower 54 antenna 0 mode 0  
ath10k: mac channel [22/28] freq 5540 maxpower 48 regpower 54 antenna 0 mode 0  
ath10k: mac channel [23/28] freq 5560 maxpower 48 regpower 54 antenna 0 mode 0  
ath10k: mac channel [24/28] freq 5580 maxpower 48 regpower 54 antenna 0 mode 0  
ath10k: mac channel [25/28] freq 5660 maxpower 48 regpower 54 antenna 0 mode 0  
ath10k: mac channel [26/28] freq 5680 maxpower 48 regpower 54 antenna 0 mode 0  
ath10k: mac channel [27/28] freq 5700 maxpower 48 regpower 54 antenna 0 mode 0  
ath10k: wmi pdev regdomain rd 3a rd2g 3a rd5g 3a ctl2g 10 ctl5g 10 dfs_region 2 
ath10k: mac vdev create 0 (add interface) type 1 subtype 0                      
ath10k: WMI vdev create: id 0 type 1 subtype 0 macaddr 04:f0:21:0e:38:be        
ath10k: wmi vdev id 0x0 set param 31 value 0                                    
ath10k: vdev param 0 not supported by firmware                                  
ath10k: wmi peer create vdev_id 0 peer_addr 04:f0:21:0e:38:be                   
ath10k: wmi pdev set param 13 value 50                                          
ath10k: wmi vdev id 0x0 set param 38 value 3747                                 
ath10k: wmi vdev id 0x0 set param 39 value 3895                                 
ath10k: wmi vdev id 0x0 set param 40 value 3900                                 
ath10k: wmi vdev id 0x0 set param 1 value -1                                    
ath10k: wmi vdev id 0x0 set param 2 value -1                                    
ath10k: mac vdev 0 cts_prot 0                                                   
ath10k: wmi vdev id 0x0 set param 43 value 0                                    
ath10k: mac vdev 0 slot_time 1                                                  
ath10k: wmi vdev id 0x0 set param 7 value 1                                     
ath10k: mac vdev 0 preamble 1n                                                  
ath10k: wmi vdev id 0x0 set param 8 value 1                                     
ath10k: wmi pdev set wmm params                                                 
ath10k: wmi pdev set wmm params                                                 
ath10k: wmi pdev set wmm params                                                 
ath10k: wmi pdev set wmm params                                                 
ath10k: mac config channel 2412MHz flags 0x1a0 radar 0                          
ath10k: mac config power 20                                                     
ath10k: wmi pdev set param 3 value 40                                           
ath10k: wmi pdev set param 4 value 40                                           
ath10k: mac monitor refs: promisc 1 monitor 0 cac 0                             
ath10k: WMI vdev create: id 1 type 4 subtype 0 macaddr 04:f0:21:0e:38:be        
ath10k: mac monitor vdev 1 created                                              
ath10k: wmi vdev start id 0x1 flags: 0x0, freq 2412, mode 1, ch_flags: 0x1, max_
power: 40                                                                       
ADDRCONF(NETDEV_UP): wlan0: link is not ready                                   
ath10k: WMI_VDEV_START_RESP_EVENTID                                             
ath10k: wmi mgmt vdev up id 0x1 assoc id 0 bssid 04:f0:21:0e:38:be              
ath10k: mac monitor vdev 1 started                                              
ath10k: mac monitor started                                                     
cfg80211: phy0: device specific dfs_region (FCC) disagrees with cfg80211's centr
al dfs_region (ETSI)                                                            
ath10k: mac config channel 5260MHz flags 0x10a radar 1                          
ath10k: mac monitor refs: promisc 1 monitor 0 cac 1                             
ath10k: mac monitor already started                                             
ath10k: mac cac start monitor vdev 1                                            
ath10k: mac config channel to 5260MHz (cf1 5260MHz cf2 0MHz width 20)           
ath10k: wmi mgmt vdev down id 0x1                                               
ath10k: wmi vdev stop id 0x1                                                    
ath10k: WMI_VDEV_STOPPED_EVENTID                                                
ath10k: mac monitor vdev 1 stopped                                              
ath10k: mac monitor refs: promisc 1 monitor 0 cac 1                             
ath10k: wmi vdev start id 0x1 flags: 0x0, freq 5260, mode 4, ch_flags: 0x404, ma
x_power: 40                                                                     
ath10k: WMI_VDEV_START_RESP_EVENTID                                             
ath10k: wmi mgmt vdev up id 0x1 assoc id 0 bssid 04:f0:21:0e:38:be              
ath10k: mac monitor vdev 1 started                                              
ath10k: mac config power 14                                                     
ath10k: wmi pdev set param 3 value 28                                           
ath10k: wmi pdev set param 4 value 28                                           
ath10k: wmi event debug mesg len 12                                             
eth0: no IPv6 routers present                                                   
br0: no IPv6 routers present                                                    
ath10k: mac config channel 5260MHz flags 0x10a radar 0                          
ath10k: mac monitor refs: promisc 1 monitor 0 cac 0                             
ath10k: mac monitor will be stopped later                                       
ath10k: mac cac finished                                                        
ath10k: mac config channel to 5260MHz (cf1 5260MHz cf2 0MHz width 20 (noht))    
ath10k: wmi mgmt vdev down id 0x1                                               
ath10k: wmi vdev stop id 0x1                                                    
ath10k: WMI_VDEV_STOPPED_EVENTID                                                
ath10k: mac monitor vdev 1 stopped                                              
ath10k: mac monitor refs: promisc 1 monitor 0 cac 0                             
ath10k: wmi vdev start id 0x1 flags: 0x0, freq 5260, mode 0, ch_flags: 0x400, ma
x_power: 40                                                                     
ath10k: WMI_VDEV_START_RESP_EVENTID                                             
ath10k: wmi mgmt vdev up id 0x1 assoc id 0 bssid 04:f0:21:0e:38:be              
ath10k: mac monitor vdev 1 started                                              
ath10k: mac config power 20                                                     
ath10k: wmi pdev set param 3 value 40                                           
ath10k: wmi pdev set param 4 value 40                                           
ath10k: mac vdev 0 rts threshold -1                                             
ath10k: wmi vdev id 0x0 set param 1 value -1                                    
ath10k: mac config channel 5260MHz flags 0x10a radar 1                          
ath10k: mac monitor refs: promisc 1 monitor 0 cac 1                             
ath10k: mac monitor already started                                             
ath10k: mac cac start monitor vdev 1                                            
ath10k: mac config channel to 5260MHz (cf1 5260MHz cf2 0MHz width 20)           
ath10k: wmi mgmt vdev down id 0x1                                               
ath10k: wmi vdev stop id 0x1                                                    
ath10k: WMI_VDEV_STOPPED_EVENTID                                                
ath10k: mac monitor vdev 1 stopped                                              
ath10k: mac monitor refs: promisc 1 monitor 0 cac 1                             
ath10k: wmi vdev start id 0x1 flags: 0x0, freq 5260, mode 4, ch_flags: 0x404, ma
x_power: 40                                                                     
ath10k: WMI_VDEV_START_RESP_EVENTID                                             
ath10k: wmi mgmt vdev up id 0x1 assoc id 0 bssid 04:f0:21:0e:38:be              
ath10k: mac monitor vdev 1 started                                              
ath10k: mac config power 14                                                     
ath10k: wmi pdev set param 3 value 28                                           
ath10k: wmi pdev set param 4 value 28                                           
ath10k: wmi vdev id 0x0 set param 3 value 100                                   
ath10k: mac vdev 0 beacon_interval 100                                          
ath10k: vdev 0 set beacon tx mode to staggered                                  
ath10k: wmi pdev set param 7 value 0                                            
ath10k: mac vdev 0 start center_freq 5260 phymode 11na-ht20                     
ath10k: wmi vdev start id 0x0 flags: 0x0, freq 5260, mode 4, ch_flags: 0x404, ma
x_power: 40                                                                     
ath10k: WMI_VDEV_START_RESP_EVENTID                                             
ath10k: mac monitor refs: promisc 1 monitor 0 cac 0                             
ath10k: mac monitor will be stopped later                                       
ath10k: mac cac finished                                                        
ath10k: wmi mgmt vdev up id 0x0 assoc id 0 bssid 04:f0:21:0e:38:be              
ath10k: mac vdev 0 up                                                           
ath10k: WMI_TBTTOFFSET_UPDATE_EVENTID                                           
ath10k: mac vdev 0 cts_prot 0                                                   
ath10k: wmi vdev id 0x0 set param 43 value 0                                    
ath10k: mac vdev 0 slot_time 2                                                  
ath10k: wmi vdev id 0x0 set param 7 value 2                                     
ath10k: mac vdev 0 preamble 1n                                                  
ath10k: wmi vdev id 0x0 set param 8 value 1                                     
ath10k: wmi pdev set wmm params                                                 
ath10k: wmi pdev set wmm params                                                 
ath10k: wmi pdev set wmm params                                                 
ath10k: wmi pdev set wmm params                                                 
ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready                              
br0: port 2(wlan0) entering forwarding state                                    
br0: port 2(wlan0) entering forwarding state                                    
wlan0: no IPv6 routers present                       

[-- Attachment #3: Type: text/plain, Size: 146 bytes --]

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : ath10k: firmware crash in station mode & problem DFS
  2014-05-20  6:44                       ` ath10k: firmware crash in station mode & problem DFS Vu Hai NGUYEN
@ 2014-05-20  8:15                         ` Vu Hai NGUYEN
  2014-05-20 17:59                           ` Janusz Dziedzic
  0 siblings, 1 reply; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-05-20  8:15 UTC (permalink / raw)
  To: Vu Hai NGUYEN, Michal Kazior, janusz.dziedzic
  Cc: Patrick CARNEIRO RODRIGUEZ, ath10k

I put my program on another device (same hardware as my actual device), 1 in AP using DFS canal and another in station mode.
I got this message in station:
wlan0: CTRL-EVENT-SCAN-STARTED                                                  
wlan0: SME: Trying to authenticate with 04:f0:21:0e:38:be (SSID='ath10k' freq=52wlan0: direct probe to 
04:f0:21:0e:38:be (try 1/3) 60 MHz)                
wlan0: authenticate with 04:f0:21:0e:38:be                                                               
wlan0: direct probe to 04:f0:21:0e:38:be (try 2/3)                              
wlan0: direct probe to 04:f0:21:0e:38:be (try 3/3)                              
wlan0: authentication with 04:f0:21:0e:38:be timed out                          
wlan0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="ath10k" auth_failures=1 duration=10                                           

So the problem relied on authentication timed out, I wonder which parameter in the DFS mode can create a problem to establish  the connection?

NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE

________________________________________
De : ath10k [ath10k-bounces@lists.infradead.org] de la part de Vu Hai NGUYEN [vh.nguyen@actiasodielec.fr]
Date d'envoi : mardi 20 mai 2014 08:44
À : Michal Kazior; janusz.dziedzic@tieto.com
Cc : Patrick CARNEIRO RODRIGUEZ; janusz.dziedzic@tieto.com; ath10k@lists.infradead.org
Objet : ath10k: firmware crash in station mode & problem DFS

>> But I wonder if there will be any progress of the firmware in the future for promiscuous so that I can
>> set up bridge mode?

>Beats me. You should ask QCA about the future of ath10k firmware.

LOL, sorry I thought that the firmware is developped by our group too. So the driver should adapt to the firmware then?

>If you generate backports with kvalo/ath master branch then DFS won't
>work as it is now (due to the bug I've mentioned earlier). Kalle
>doesn't have the patch that deals with it, yet. You'll need to
>cherry-pick the following 2 patches before generating backports from kvalo/ath:
> https://git.kernel.org/cgit/linux/kernel/git/jberg/mac80211-next.git/commit/?id=67ae07a109f3d518085e3b81aa48740e8c5cc3f7
>https://git.kernel.org/cgit/linux/kernel/git/jberg/mac80211-next.git/commit/?id=00ec75fc5a6499d8fdeb6ec9f8f5df68b9291c74

>BTW, I am not sure this will work correctly if you will get "some"
>backport and exchange only ath10k sources.
>cfg80211/mac80211 could be incompatible with driver in such case.
>Michal suggest to generate own backport form ath10k.git - this for
>sure will work fine. In any other cases, while you will mix sources,
>will be very hard to track your problems.

I follow the instruction on this page http://wireless.kernel.org/en/users/Drivers/ath10k/backports#Compiling_custom_ath10k_backports to generate my own backport from master branch of ath10k. I also cherry-pick the 2 patches that you gave me. Then I see these 2 new options below cfg80211 certification onus in "make menuconfig" :
[*]   cfg80211 certification onus
  │ │                                   [*]     cfg80211 regulatory support for cellular base station hints
  │ │                                   [*]     cfg80211 support for NO_IR relaxation

I don't get the backtrace like before anymore, thing seems to work (Now I also get the cac_time=60, before it was 0) :

ADDRCONF(NETDEV_UP): wlan0: link is not ready
wlan0: interface state UNINITIALIZED->COUNTRY_UPDATE
wlan0: interface state COUNTRY_UPDATE->DFS
wlan0: DFS-CAC-START freq=5260 chan=52 sec_chan=0, width=0, seg0=0, seg1=0, cac_time=60s
ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
br0: port 2(wlan0) entering forwarding state

The out put of iw dev show me:
                ssid ath10k
                type AP
                channel 52 (5260 MHz), width: 20 MHz, center1: 5260 MHz

But still, I can not connect another station to my access point and I have no idea why. I don't see any warning or error from the output of dmesg (attached file).
If I put my device into station mode in a canal DFS (for expl: 52) and set another device as an access point, my device can connect without any problem but it can not function
as AP mode in a canal that employs DFS. (It can work in the others canal and other station can connect to it normally).

I tried to return to the origin version of backport 3.15 and it's worse. First I don't get the 2 options below cfg80211 certification onus,
then I got the same backtrace msg like before:

wlan0: interface------------[ cut here ]------------
 state UNINITIALWARNING: at /home/alberix2/Desktop/Wilinks_ath10k/ACCESS_POINT_A
PPLI/Source/Driver_ath10k/backports-3.15-rc1-1/net/wireless/nl80211.c:5824 nl802
11_start_radar_detection+0xf8/0x16c [cfg80211]()
IZED->COUNTRY_UPModules linked in:DATE
wlan0: int ath10k_pci(O)erface state COU ath10k_core(O)NTRY_UPDATE->DFS ath(O)
wlan0: DFS-CAC mac80211(O)-START freq=5260 cfg80211(O) chan=52 sec_cha compat(O)
n=0, width=0, se arc4g0=0, seg1=0, ca ubifsc_time=0s
 ubi [last unloaded: compat]
Backtrace:
[<c0011938>] (dump_backtrace+0x0/0x118) from [<c050205c>] (dump_stack+0x18/0x20)
 r6:bf36be48 r5:000016c0 r4:00000000 r3:c10bc7ac
[<c0502044>] (dump_stack+0x0/0x20) from [<c0066c38>] (warn_slowpath_common+0x54/
0x70)
[<c0066be4>] (warn_slowpath_common+0x0/0x70) from [<c0066c78>] (warn_slowpath_nu
ll+0x24/0x2c)
 r8:00000000 r7:00000000 r6:c0ed2000 r5:d2ddc000 r4:c0ed23c8
r3:00000009
[<c0066c54>] (warn_slowpath_null+0x0/0x2c) from [<bf32fdac>] (nl80211_start_rada
r_detection+0xf8/0x16c [cfg80211])
[<bf32fcb4>] (nl80211_start_radar_detection+0x0/0x16c [cfg80211]) from [<c045348
8>] (genl_rcv_msg+0x1b4/0x1f4)
[<c04532d4>] (genl_rcv_msg+0x0/0x1f4) from [<c0452904>] (netlink_rcv_skb+0x58/0x
b8)
[<c04528ac>] (netlink_rcv_skb+0x0/0xb8) from [<c04532c4>] (genl_rcv+0x20/0x30)
 r6:d2a8f000 r5:d2b762e0 r4:d2b762e0 r3:c04532a4
[<c04532a4>] (genl_rcv+0x0/0x30) from [<c04522d0>] (netlink_unicast+0x224/0x2c4)
 r4:d0074400 r3:c04532a4
[<c04520ac>] (netlink_unicast+0x0/0x2c4) from [<c04526a4>] (netlink_sendmsg+0x29
0/0x320)
[<c0452414>] (netlink_sendmsg+0x0/0x320) from [<c0428eac>] (sock_sendmsg+0x98/0x
b4)
[<c0428e14>] (sock_sendmsg+0x0/0xb4) from [<c0429150>] (__sys_sendmsg+0x1d0/0x26
c)
 r4:d2843f64
[<c0428f80>] (__sys_sendmsg+0x0/0x26c) from [<c042ab30>] (sys_sendmsg+0x44/0x68)
[<c042aaec>] (sys_sendmsg+0x0/0x68) from [<c000ddc0>] (ret_fast_syscall+0x0/0x30
)
 r6:00134870 r5:4007b9f0 r4:00136660
---[ end trace 29f0f32871a48aa3 ]---


NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE



_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : ath10k: firmware crash in station mode & problem DFS
  2014-05-20  8:15                         ` RE : " Vu Hai NGUYEN
@ 2014-05-20 17:59                           ` Janusz Dziedzic
  2014-05-21  9:43                             ` RE : " Vu Hai NGUYEN
  0 siblings, 1 reply; 134+ messages in thread
From: Janusz Dziedzic @ 2014-05-20 17:59 UTC (permalink / raw)
  To: Vu Hai NGUYEN; +Cc: Patrick CARNEIRO RODRIGUEZ, Michal Kazior, ath10k

On 20 May 2014 10:15, Vu Hai NGUYEN <vh.nguyen@actiasodielec.fr> wrote:
> I put my program on another device (same hardware as my actual device), 1 in AP using DFS canal and another in station mode.
> I got this message in station:
> wlan0: CTRL-EVENT-SCAN-STARTED
> wlan0: SME: Trying to authenticate with 04:f0:21:0e:38:be (SSID='ath10k' freq=52wlan0: direct probe to
> 04:f0:21:0e:38:be (try 1/3) 60 MHz)
> wlan0: authenticate with 04:f0:21:0e:38:be
> wlan0: direct probe to 04:f0:21:0e:38:be (try 2/3)
> wlan0: direct probe to 04:f0:21:0e:38:be (try 3/3)
> wlan0: authentication with 04:f0:21:0e:38:be timed out
> wlan0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="ath10k" auth_failures=1 duration=10
>
> So the problem relied on authentication timed out, I wonder which parameter in the DFS mode can create a problem to establish  the connection?
>
Best if you can use 3rd device as a sniffer and capture airlogs.
Could you also send hostapd logs (captured with with -ddt)?
We will see if hostapd get this direct probe requests

BR
Janusz

>
>>> But I wonder if there will be any progress of the firmware in the future for promiscuous so that I can
>>> set up bridge mode?
>
>>Beats me. You should ask QCA about the future of ath10k firmware.
>
> LOL, sorry I thought that the firmware is developped by our group too. So the driver should adapt to the firmware then?
>
>>If you generate backports with kvalo/ath master branch then DFS won't
>>work as it is now (due to the bug I've mentioned earlier). Kalle
>>doesn't have the patch that deals with it, yet. You'll need to
>>cherry-pick the following 2 patches before generating backports from kvalo/ath:
>> https://git.kernel.org/cgit/linux/kernel/git/jberg/mac80211-next.git/commit/?id=67ae07a109f3d518085e3b81aa48740e8c5cc3f7
>>https://git.kernel.org/cgit/linux/kernel/git/jberg/mac80211-next.git/commit/?id=00ec75fc5a6499d8fdeb6ec9f8f5df68b9291c74
>
>>BTW, I am not sure this will work correctly if you will get "some"
>>backport and exchange only ath10k sources.
>>cfg80211/mac80211 could be incompatible with driver in such case.
>>Michal suggest to generate own backport form ath10k.git - this for
>>sure will work fine. In any other cases, while you will mix sources,
>>will be very hard to track your problems.
>
> I follow the instruction on this page http://wireless.kernel.org/en/users/Drivers/ath10k/backports#Compiling_custom_ath10k_backports to generate my own backport from master branch of ath10k. I also cherry-pick the 2 patches that you gave me. Then I see these 2 new options below cfg80211 certification onus in "make menuconfig" :
> [*]   cfg80211 certification onus
>   │ │                                   [*]     cfg80211 regulatory support for cellular base station hints
>   │ │                                   [*]     cfg80211 support for NO_IR relaxation
>
> I don't get the backtrace like before anymore, thing seems to work (Now I also get the cac_time=60, before it was 0) :
>
> ADDRCONF(NETDEV_UP): wlan0: link is not ready
> wlan0: interface state UNINITIALIZED->COUNTRY_UPDATE
> wlan0: interface state COUNTRY_UPDATE->DFS
> wlan0: DFS-CAC-START freq=5260 chan=52 sec_chan=0, width=0, seg0=0, seg1=0, cac_time=60s
> ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
> br0: port 2(wlan0) entering forwarding state
>
> The out put of iw dev show me:
>                 ssid ath10k
>                 type AP
>                 channel 52 (5260 MHz), width: 20 MHz, center1: 5260 MHz
>
> But still, I can not connect another station to my access point and I have no idea why. I don't see any warning or error from the output of dmesg (attached file).
> If I put my device into station mode in a canal DFS (for expl: 52) and set another device as an access point, my device can connect without any problem but it can not function
> as AP mode in a canal that employs DFS. (It can work in the others canal and other station can connect to it normally).
>
> I tried to return to the origin version of backport 3.15 and it's worse. First I don't get the 2 options below cfg80211 certification onus,
> then I got the same backtrace msg like before:
>
> wlan0: interface------------[ cut here ]------------
>  state UNINITIALWARNING: at /home/alberix2/Desktop/Wilinks_ath10k/ACCESS_POINT_A
> PPLI/Source/Driver_ath10k/backports-3.15-rc1-1/net/wireless/nl80211.c:5824 nl802
> 11_start_radar_detection+0xf8/0x16c [cfg80211]()
> IZED->COUNTRY_UPModules linked in:DATE
> wlan0: int ath10k_pci(O)erface state COU ath10k_core(O)NTRY_UPDATE->DFS ath(O)
> wlan0: DFS-CAC mac80211(O)-START freq=5260 cfg80211(O) chan=52 sec_cha compat(O)
> n=0, width=0, se arc4g0=0, seg1=0, ca ubifsc_time=0s
>  ubi [last unloaded: compat]
> Backtrace:
> [<c0011938>] (dump_backtrace+0x0/0x118) from [<c050205c>] (dump_stack+0x18/0x20)
>  r6:bf36be48 r5:000016c0 r4:00000000 r3:c10bc7ac
> [<c0502044>] (dump_stack+0x0/0x20) from [<c0066c38>] (warn_slowpath_common+0x54/
> 0x70)
> [<c0066be4>] (warn_slowpath_common+0x0/0x70) from [<c0066c78>] (warn_slowpath_nu
> ll+0x24/0x2c)
>  r8:00000000 r7:00000000 r6:c0ed2000 r5:d2ddc000 r4:c0ed23c8
> r3:00000009
> [<c0066c54>] (warn_slowpath_null+0x0/0x2c) from [<bf32fdac>] (nl80211_start_rada
> r_detection+0xf8/0x16c [cfg80211])
> [<bf32fcb4>] (nl80211_start_radar_detection+0x0/0x16c [cfg80211]) from [<c045348
> 8>] (genl_rcv_msg+0x1b4/0x1f4)
> [<c04532d4>] (genl_rcv_msg+0x0/0x1f4) from [<c0452904>] (netlink_rcv_skb+0x58/0x
> b8)
> [<c04528ac>] (netlink_rcv_skb+0x0/0xb8) from [<c04532c4>] (genl_rcv+0x20/0x30)
>  r6:d2a8f000 r5:d2b762e0 r4:d2b762e0 r3:c04532a4
> [<c04532a4>] (genl_rcv+0x0/0x30) from [<c04522d0>] (netlink_unicast+0x224/0x2c4)
>  r4:d0074400 r3:c04532a4
> [<c04520ac>] (netlink_unicast+0x0/0x2c4) from [<c04526a4>] (netlink_sendmsg+0x29
> 0/0x320)
> [<c0452414>] (netlink_sendmsg+0x0/0x320) from [<c0428eac>] (sock_sendmsg+0x98/0x
> b4)
> [<c0428e14>] (sock_sendmsg+0x0/0xb4) from [<c0429150>] (__sys_sendmsg+0x1d0/0x26
> c)
>  r4:d2843f64
> [<c0428f80>] (__sys_sendmsg+0x0/0x26c) from [<c042ab30>] (sys_sendmsg+0x44/0x68)
> [<c042aaec>] (sys_sendmsg+0x0/0x68) from [<c000ddc0>] (ret_fast_syscall+0x0/0x30
> )
>  r6:00134870 r5:4007b9f0 r4:00136660
> ---[ end trace 29f0f32871a48aa3 ]---
>
>
> NGUYEN Vu Hai
> Acita-Sodielec
> Route de Mayres - B.P. 9
> 12100 St GEORGES DE LUZENCON
> FRANCE
>
>
>

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-05-20 17:59                           ` Janusz Dziedzic
@ 2014-05-21  9:43                             ` Vu Hai NGUYEN
  2014-05-21 14:03                               ` Janusz Dziedzic
  0 siblings, 1 reply; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-05-21  9:43 UTC (permalink / raw)
  To: Janusz Dziedzic; +Cc: Patrick CARNEIRO RODRIGUEZ, Michal Kazior, ath10k

[-- Attachment #1: Type: text/plain, Size: 460 bytes --]

>Best if you can use 3rd device as a sniffer and capture airlogs.
>Could you also send hostapd logs (captured with with -ddt)?
>We will see if hostapd get this direct probe requests

I thought that hostapd didn't get the probe request as far as what I saw from the logs. (You can find in the attached file the logs for both wpa and hostapd)


Regards, 
NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE



[-- Attachment #2: dbg_host.txt --]
[-- Type: text/plain, Size: 30672 bytes --]

1262304103.977579: random: Trying to read entropy from /dev/random              
1262304103.977823: Configuration file: /etc/hostapd.conf                        
1262304103.979273: ctrl_interface_group=0                                       
1262304103.979333: eapol_version=1                                              
1262304103.980815: rfkill: Cannot open RFKILL control device                    
1262304103.980850: nl80211: RFKILL status not available                         
1262304103.981347: nl80211: Supported cipher 00-0f-ac:1                         
1262304103.981377: nl80211: Supported cipher 00-0f-ac:5                         
1262304103.981390: nl80211: Supported cipher 00-0f-ac:2                         
1262304103.981402: nl80211: Supported cipher 00-0f-ac:4                         
1262304103.981413: nl80211: Supported cipher 00-0f-ac:6                         
1262304103.981629: nl80211: Using driver-based off-channel TX                   
1262304103.981702: nl80211: interface wlan0 in phy phy0                         
1262304103.981789: nl80211: Set mode ifindex 7 iftype 3 (AP)                    
1262304103.981906: nl80211: Failed to set interface 7 to mode 3: -16 (Device or 
resource busy)                                                                  
1262304103.981982: nl80211: Try mode change after setting interface down        
br0: port 2(wlan0) entering disabled state                                      
1262304104.587396: nl80211: Set mode ifindex 7 iftype 3 (AP)                                                
ADDRCONF(NETDEV_UP): wlan0: link is not ready                                   
1262304105.930607: nl80211: Mode change succeeded while interface is down       
1262304105.930676: nl80211: Setup AP(wlan0) - device_ap_sme=0 use_monitor=1     
1262304105.930737: nl80211: Create interface iftype 6 (MONITOR)                 
1262304105.934516: nl80211: New interface mon.wlan0 created: ifindex=9          
1262304105.934566: nl80211: Add own interface ifindex 9                         
1262304105.934590: nl80211: if_indices[16]: 9                                   
1262304105.935219: nl80211: Interface wlan0 is in bridge br0                    
1262304105.935291: nl80211: Add own interface ifindex 8                         
1262304105.935312: nl80211: if_indices[16]: 9 8                                 
1262304105.935323: nl80211: Add own interface ifindex 7                         
1262304105.935336: nl80211: if_indices[16]: 9 8 7                               
1262304105.935424: phy: phy0                                                    
1262304105.935466: BSS count 1, BSSID mask 00:00:00:00:00:00 (0 bits)           
1262304105.935500: wlan0: interface state UNINITIALIZED->COUNTRY_UPDATE         
1262304105.935677: Previous country code FR, new country code FR                
1262304105.936454: nl80211: Regulatory information - country=FR (DFS-ETSI)      
1262304105.936486: nl80211: 2402-2482 @ 40 MHz 20 mBm                           
1262304105.936509: nl80211: 5170-5250 @ 80 MHz 20 mBm                           
1262304105.936526: nl80211: 5250-5330 @ 80 MHz 20 mBm (DFS)                     
1262304105.936542: nl80211: 5490-5710 @ 80 MHz 27 mBm (DFS)                     
1262304105.936558: nl80211: 57240-65880 @ 2160 MHz 40 mBm (no outdoor)          
1262304105.936626: nl80211: Added 802.11b mode based on 802.11g information     
1262304105.936642: Allowed channel: mode=1 chan=1 freq=2412 MHz max_tx_power=20 
dBm                                                                             
1262304105.936669: Allowed channel: mode=1 chan=2 freq=2417 MHz max_tx_power=20 
dBm                                                                             
1262304105.936681: Allowed channel: mode=1 chan=3 freq=2422 MHz max_tx_power=20 
dBm                                                                             
1262304105.936692: Allowed channel: mode=1 chan=4 freq=2427 MHz max_tx_power=20 
dBm                                                                             
1262304105.936704: Allowed channel: mode=1 chan=5 freq=2432 MHz max_tx_power=20 
dBm                                                                             
1262304105.936714: Allowed channel: mode=1 chan=6 freq=2437 MHz max_tx_power=20 
dBm                                                                             
1262304105.936725: Allowed channel: mode=1 chan=7 freq=2442 MHz max_tx_power=20 
dBm                                                                             
1262304105.936736: Allowed channel: mode=1 chan=8 freq=2447 MHz max_tx_power=20 
dBm                                                                             
1262304105.936747: Allowed channel: mode=1 chan=9 freq=2452 MHz max_tx_power=20 
dBm                                                                             
1262304105.936758: Allowed channel: mode=1 chan=10 freq=2457 MHz max_tx_power=20
 dBm                                                                            
1262304105.936769: Allowed channel: mode=1 chan=11 freq=2462 MHz max_tx_power=20
 dBm                                                                            
1262304105.936780: Allowed channel: mode=1 chan=12 freq=2467 MHz max_tx_power=20
 dBm                                                                            
1262304105.936790: Allowed channel: mode=1 chan=13 freq=2472 MHz max_tx_power=20
 dBm                                                                            
1262304105.936802: Allowed channel: mode=2 chan=36 freq=5180 MHz max_tx_power=20
 dBm                                                                            
1262304105.936813: Allowed channel: mode=2 chan=40 freq=5200 MHz max_tx_power=20
 dBm                                                                            
1262304105.936823: Allowed channel: mode=2 chan=44 freq=5220 MHz max_tx_power=20
 dBm                                                                            
1262304105.936834: Allowed channel: mode=2 chan=48 freq=5240 MHz max_tx_power=20
 dBm                                                                            
1262304105.936848: Allowed channel: mode=2 chan=52 freq=5260 MHz max_tx_power=20
 dBm (DFS state = usable)                                                       
1262304105.936861: Allowed channel: mode=2 chan=56 freq=5280 MHz max_tx_power=20
 dBm (DFS state = usable)                                                       
1262304105.936874: Allowed channel: mode=2 chan=60 freq=5300 MHz max_tx_power=20
 dBm (DFS state = usable)                                                       
1262304105.936886: Allowed channel: mode=2 chan=64 freq=5320 MHz max_tx_power=20
 dBm (DFS state = usable)                                                       
1262304105.936899: Allowed channel: mode=2 chan=100 freq=5500 MHz max_tx_power=2
7 dBm (DFS state = usable)                                                      
1262304105.936911: Allowed channel: mode=2 chan=104 freq=5520 MHz max_tx_power=2
7 dBm (DFS state = usable)                                                      
1262304105.936923: Allowed channel: mode=2 chan=108 freq=5540 MHz max_tx_power=2
7 dBm (DFS state = usable)                                                      
1262304105.936936: Allowed channel: mode=2 chan=112 freq=5560 MHz max_tx_power=2
7 dBm (DFS state = usable)                                                      
1262304105.936948: Allowed channel: mode=2 chan=116 freq=5580 MHz max_tx_power=2
7 dBm (DFS state = usable)                                                      
1262304105.936961: Allowed channel: mode=2 chan=120 freq=5600 MHz max_tx_power=2
7 dBm (DFS state = usable)                                                      
1262304105.936973: Allowed channel: mode=2 chan=124 freq=5620 MHz max_tx_power=2
7 dBm (DFS state = usable)                                                      
1262304105.936985: Allowed channel: mode=2 chan=128 freq=5640 MHz max_tx_power=2
7 dBm (DFS state = usable)                                                      
1262304105.936998: Allowed channel: mode=2 chan=132 freq=5660 MHz max_tx_power=2
7 dBm (DFS state = usable)                                                      
1262304106.271080: Allowed channel: mode=2 chan=136 freq=5680 MHz max_tx_power=2
7 dBm (DFS state = usable)                                                      
1262304106.271118: Allowed channel: mode=2 chan=140 freq=5700 MHz max_tx_power=2
7 dBm (DFS state = usable)                                                      
1262304106.271133: Allowed channel: mode=0 chan=1 freq=2412 MHz max_tx_power=20 
dBm                                                                             
1262304106.271146: Allowed channel: mode=0 chan=2 freq=2417 MHz max_tx_power=20 
dBm                                                                             
1262304106.271157: Allowed channel: mode=0 chan=3 freq=2422 MHz max_tx_power=20 
dBm                                                                             
1262304106.271169: Allowed channel: mode=0 chan=4 freq=2427 MHz max_tx_power=20 
dBm                                                                             
1262304106.271180: Allowed channel: mode=0 chan=5 freq=2432 MHz max_tx_power=20 
dBm                                                                             
1262304106.271191: Allowed channel: mode=0 chan=6 freq=2437 MHz max_tx_power=20 
dBm                                                                             
1262304106.271202: Allowed channel: mode=0 chan=7 freq=2442 MHz max_tx_power=20 
dBm                                                                             
1262304106.271212: Allowed channel: mode=0 chan=8 freq=2447 MHz max_tx_power=20 
dBm                                                                             
1262304106.271223: Allowed channel: mode=0 chan=9 freq=2452 MHz max_tx_power=20 
dBm                                                                             
1262304106.271234: Allowed channel: mode=0 chan=10 freq=2457 MHz max_tx_power=20
 dBm                                                                            
1262304106.271245: Allowed channel: mode=0 chan=11 freq=2462 MHz max_tx_power=20
 dBm                                                                            
1262304106.271255: Allowed channel: mode=0 chan=12 freq=2467 MHz max_tx_power=20
 dBm                                                                            
1262304106.271266: Allowed channel: mode=0 chan=13 freq=2472 MHz max_tx_power=20
 dBm                                                                            
1262304106.271298: hw vht capab: 0x338001b2, conf vht capab: 0x0                
1262304106.271320: wlan0: interface state COUNTRY_UPDATE->HT_SCAN               
1262304106.271330: Scan for neighboring BSSes prior to enabling 40 MHz channel  
1262304106.271347: 40 MHz affected channel range: [5250,5290] MHz               
1262304106.271404: wlan0: nl80211: scan request                                 
1262304106.271450: nl80211: Scan frequency 5260 MHz                             
1262304106.271475: nl80211: Scan frequency 5280 MHz                             
1262304106.271829: Scan requested (ret=0) - scan timeout 10 seconds             
1262304106.271882: Interface initialization will be completed in a callback     
1262304106.271900: ctrl_iface not configured!                                   
1262304106.272025: RTM_NEWLINK: ifi_index=7 ifname=wlan0 operstate=2 linkmode=0 
master=8 ifi_flags=0x1002 ()                                                    
1262304106.272112: nl80211: Ignore interface down event since interface wlan0 is
 up                                                                             
1262304106.272138: RTM_NEWLINK: ifi_index=7 ifname=wlan0 master=8 operstate=2 if
i_flags=0x1002 ()                                                               
1262304106.272168: nl80211: Ignore interface down event since interface wlan0 is
 up                                                                             
1262304106.272191: RTM_NEWLINK: ifi_index=7 ifname=wlan0 master=8 operstate=2 if
i_flags=0x1002 ()                                                               
1262304106.272220: nl80211: Ignore interface down event since interface wlan0 is
 up                                                                             
1262304106.272245: RTM_NEWLINK: ifi_index=7 ifname=wlan0 operstate=2 linkmode=0 
master=8 ifi_flags=0x1003 ([UP])                                                
1262304106.272284: RTM_NEWLINK: ifi_index=7 ifname=wlan0 master=8 operstate=2 if
i_flags=0x1003 ([UP])                                                           
1262304106.272322: nl80211: Add ifindex 8 for bridge br0                        
1262304106.272336: nl80211: Add own interface ifindex 8                         
1262304106.272346: nl80211: ifindex 8 already in the list                       
1262304106.272366: RTM_NEWLINK: ifi_index=8 ifname=br0 operstate=6 linkmode=0 if
i_flags=0x11043 ([UP][RUNNING][LOWER_UP])                                       
1262304106.272421: wlan0: Event INTERFACE_STATUS (5) received                   
1262304106.272438: Unknown event 5                                              
1262304106.272459: RTM_NEWLINK: ifi_index=9 ifname=mon.wlan0 operstate=2 linkmod
e=0 ifi_flags=0x1002 ()                                                         
1262304106.272493: nl80211: Ignore interface down event since interface mon.wlan
0 is up                                                                         
1262304106.272518: RTM_NEWLINK: ifi_index=9 ifname=mon.wlan0 operstate=0 linkmod
e=0 ifi_flags=0x11043 ([UP][RUNNING][LOWER_UP])                                 
1262304106.272539: wlan0: Event INTERFACE_STATUS (5) received                   
1262304106.272550: Unknown event 5                                              
1262304106.272571: nl80211: Event message available                             
1262304106.272619: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for
 wlan0                                                                          
1262304106.272640: wlan0: nl80211: Scan trigger                                 
1262304106.272658: wlan0: Event SCAN_STARTED (49) received                      
1262304106.272667: Unknown event 49                                             
1262304106.607459: nl80211: send_mlme - noack=1 freq=0 no_cck=0 offchanok=0 wait
_time=0 fc=0x50 nlmode=3                                                        
1262304106.607495: nl80211: send_mlme -> send_frame                             
1262304106.607505: nl80211: send_frame - Use bss->freq=0                        
1262304106.607514: nl80211: send_frame(freq=0 bss->freq=0) -> send_mntr         
1262304106.607682: random: Got 8/20 bytes from /dev/random                      
1262304106.607750: nl80211: send_mlme - noack=1 freq=0 no_cck=0 offchanok=0 wait
_time=0 fc=0x50 nlmode=3                                                        
1262304106.607769: nl80211: send_mlme -> send_frame                             
1262304106.607778: nl80211: send_frame - Use bss->freq=0                        
1262304106.607788: nl80211: send_frame(freq=0 bss->freq=0) -> send_mntr         
1262304106.607999: wlan0: Event TX_STATUS (18) received                         
1262304106.608130: wlan0: Event TX_STATUS (18) received                         
1262304106.728364: nl80211: send_mlme - noack=1 freq=0 no_cck=0 offchanok=0 wait
_time=0 fc=0x50 nlmode=3                                                        
1262304106.728416: nl80211: send_mlme -> send_frame                             
1262304106.728428: nl80211: send_frame - Use bss->freq=0                        
1262304106.728438: nl80211: send_frame(freq=0 bss->freq=0) -> send_mntr         
1262304106.728658: wlan0: Event TX_STATUS (18) received                         
1262304106.748165: nl80211: send_mlme - noack=1 freq=0 no_cck=0 offchanok=0 wait
_time=0 fc=0x50 nlmode=3                                                        
1262304106.748196: nl80211: send_mlme -> send_frame                             
1262304106.748207: nl80211: send_frame - Use bss->freq=0                        
1262304106.748217: nl80211: send_frame(freq=0 bss->freq=0) -> send_mntr         
1262304106.748400: wlan0: Event TX_STATUS (18) received                         
1262304106.770963: nl80211: send_mlme - noack=1 freq=0 no_cck=0 offchanok=0 wait
_time=0 fc=0x50 nlmode=3                                                        
1262304106.770992: nl80211: send_mlme -> send_frame                             
1262304106.771003: nl80211: send_frame - Use bss->freq=0                        
1262304106.771012: nl80211: send_frame(freq=0 bss->freq=0) -> send_mntr         
1262304106.771186: wlan0: Event TX_STATUS (18) received                         
1262304106.791372: nl80211: send_mlme - noack=1 freq=0 no_cck=0 offchanok=0 wait
_time=0 fc=0x50 nlmode=3                                                        
1262304106.791402: nl80211: send_mlme -> send_frame                             
1262304106.791413: nl80211: send_frame - Use bss->freq=0                        
1262304106.791423: nl80211: send_frame(freq=0 bss->freq=0) -> send_mntr         
1262304106.791604: wlan0: Event TX_STATUS (18) received                         
1262304106.834537: nl80211: send_mlme - noack=1 freq=0 no_cck=0 offchanok=0 wait
_time=0 fc=0x50 nlmode=3                                                        
1262304106.834565: nl80211: send_mlme -> send_frame                             
1262304106.834576: nl80211: send_frame - Use bss->freq=0                        
1262304106.834585: nl80211: send_frame(freq=0 bss->freq=0) -> send_mntr         
1262304106.834760: wlan0: Event TX_STATUS (18) received                         
1262304106.900665: nl80211: send_mlme - noack=1 freq=0 no_cck=0 offchanok=0 wait
_time=0 fc=0x50 nlmode=3                                                        
1262304106.900716: nl80211: send_mlme -> send_frame                             
1262304106.900728: nl80211: send_frame - Use bss->freq=0                        
1262304106.900738: nl80211: send_frame(freq=0 bss->freq=0) -> send_mntr         
1262304106.900969: wlan0: Event TX_STATUS (18) received                         
1262304107.323512: nl80211: Event message available                             
1262304107.323614: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received
 for wlan0                                                                      
1262304107.323643: wlan0: nl80211: New scan results available                   
1262304107.323678: nl80211: Scan included frequencies: 5260 5280                
1262304107.323703: wlan0: Event SCAN_RESULTS (3) received                       
1262304107.323820: nl80211: Received scan results (0 BSSes)                     
1262304107.324056: HT40: control channel: 52  secondary channel: 56             
1262304107.324077: Completing interface initialization                          
1262304107.324088: Mode: IEEE 802.11a  Channel: 52  Frequency: 5260 MHz         
1262304107.324110: DFS 2 channels required radar detection                      
1262304107.324127: DFS all channels available, (SKIP CAC): no                   
1262304107.324137: DFS 0 chans unavailable - choose other channel: no           
1262304107.324148: wlan0: interface state HT_SCAN->DFS                          
1262304107.324157: DFS start CAC on 5260 MHz                                    
1262304107.324188: wlan0: DFS-CAC-START freq=5260 chan=52 sec_chan=1, width=0, s
eg0=0, seg1=0, cac_time=60s                                                     
1262304107.324214: nl80211: Start radar detection (CAC) 5260 MHz (ht_enabled=1, 
vht_enabled=0, bandwidth=40 MHz, cf1=5270 MHz, cf2=0 MHz)                       
1262304143.255752: random: Got 8/12 bytes from /dev/random                      
1262304167.357810: nl80211: Event message available                             
1262304167.357914: nl80211: Drv Event 94 (NL80211_CMD_RADAR_DETECT) received for
 wlan0                                                                          
1262304167.357947: nl80211: DFS event on freq 5260 MHz, ht: 1, offset: 1, width:
 2, cf1: 5270MHz, cf2: 0MHz                                                     
1262304167.357981: wlan0: Event DFS_CAC_FINISHED (45) received                  
1262304167.357993: DFS CAC finished on 5260 MHz                                 
1262304167.358015: wlan0: DFS-CAC-COMPLETED success=1 freq=5260 ht_enabled=1 cha
n_offset=1 chan_width=2 cf1=5270 cf2=0                                          
1262304167.358028: DFS freq: 5260MHz, n_chans: 2                                
1262304167.358038: set_dfs_state 0x300 for 5260 MHz                             
1262304167.358048: set_dfs_state 0x300 for 5280 MHz                             
1262304167.358058: Completing interface initialization                          
1262304167.358068: Mode: IEEE 802.11a  Channel: 52  Frequency: 5260 MHz         
1262304167.358082: DFS 2 channels required radar detection                      
1262304167.358092: DFS all channels available, (SKIP CAC): yes                  
1262304167.358110: nl80211: Set freq 5260 (ht_enabled=1, vht_enabled=0, bandwidt
h=40 MHz, cf1=5270 MHz, cf2=0 MHz)                                              
1262304167.358229: RATE[0] rate=60 flags=0x1                                    
1262304167.358244: RATE[1] rate=90 flags=0x0                                    
1262304167.358254: RATE[2] rate=120 flags=0x1                                   
1262304167.358264: RATE[3] rate=180 flags=0x0                                   
1262304167.358273: RATE[4] rate=240 flags=0x1                                   
1262304167.358281: RATE[5] rate=360 flags=0x0                                   
1262304167.358291: RATE[6] rate=480 flags=0x0                                   
1262304167.358299: RATE[7] rate=540 flags=0x0                                   
1262304167.358426: hostapd_setup_bss(hapd=0x135d20 (wlan0), first=1)            
1262304167.358457: wlan0: Flushing old station entries                          
1262304167.358474: nl80211: flush -> DEL_STATION wlan0 (all)                    
1262304167.358587: wlan0: Deauthenticate all stations                           
1262304167.358608: nl80211: send_mlme - noack=0 freq=0 no_cck=0 offchanok=0 wait
_time=0 fc=0xc0 nlmode=3                                                        
1262304167.358624: nl80211: send_mlme -> send_frame                             
1262304167.358633: nl80211: send_frame - Use bss->freq=5260                     
1262304167.358643: nl80211: send_frame(freq=5260 bss->freq=5260) -> send_mntr   
1262304167.358713: wpa_driver_nl80211_set_key: ifindex=7 (wlan0) alg=0 addr=(nil
) key_idx=0 set_tx=0 seq_len=0 key_len=0                                        
1262304167.358817: wpa_driver_nl80211_set_key: ifindex=7 (wlan0) alg=0 addr=(nil
) key_idx=1 set_tx=0 seq_len=0 key_len=0                                        
1262304167.358895: wpa_driver_nl80211_set_key: ifindex=7 (wlan0) alg=0 addr=(nil
) key_idx=2 set_tx=0 seq_len=0 key_len=0                                        
1262304167.358968: wpa_driver_nl80211_set_key: ifindex=7 (wlan0) alg=0 addr=(nil
) key_idx=3 set_tx=0 seq_len=0 key_len=0                                        
1262304167.359037: Using interface wlan0 with hwaddr 04:f0:21:0e:38:be and ssid 
"ath10k"                                                                        
1262304167.359060: Deriving WPA PSK based on passphrase                         
1262304167.359083: SSID - hexdump_ascii(len=6):                                 
     61 74 68 31 30 6b                                 ath10k                   
1262304167.359139: PSK (ASCII passphrase) - hexdump_ascii(len=13): [REMOVED]    
1262304167.560404: PSK (from passphrase) - hexdump(len=32): [REMOVED]           
1262304167.560627: nl80211: Set beacon (beacon_set=0)                           
1262304167.560651: nl80211: Beacon head - hexdump(len=57): 80 00 00 00 ff ff ff 
ff ff ff 04 f0 21 0e 38 be 04 f0 21 0e 38 be 00 00 00 00 00 00 00 00 00 00 64 00
 01 01 00 06 61 74 68 31 30 6b 01 08 8c 12 98 24 b0 48 60 6c 03 01 34           
1262304167.560728: nl80211: Beacon tail - hexdump(len=103): 07 0a 46 52 20 24 08
 14 64 0b 1b 00 20 01 7f 2d 1a e2 19 1b ff ff ff 00 00 00 00 00 00 00 00 00 01 0
0 00 00 00 00 00 00 00 00 00 3d 16 34 05 00 00 00 00 00 00 00 00 00 00 00 00 00 
00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00
 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00                                
1262304167.560853: nl80211: ifindex=7                                           
1262304167.560863: nl80211: beacon_int=100                                      
1262304167.560872: nl80211: dtim_period=2                                       
1262304167.560882: nl80211: ssid - hexdump_ascii(len=6):                        
     61 74 68 31 30 6b                                 ath10k                   
1262304167.560917: nl80211: hidden SSID not in use                              
1262304167.560927: nl80211: privacy=0                                           
1262304167.560935: nl80211: auth_algs=0x1                                       
1262304167.560945: nl80211: wpa_version=0x0                                     
1262304167.560954: nl80211: key_mgmt_suites=0x2                                 
1262304167.560963: nl80211: pairwise_ciphers=0x1                                
1262304167.560974: nl80211: group_cipher=0x1                                    
1262304167.560984: nl80211: beacon_ies - hexdump(len=10): 7f 08 00 00 00 00 00 0
0 00 40                                                                         
1262304167.561006: nl80211: proberesp_ies - hexdump(len=10): 7f 08 00 00 00 00 0
0 00 00 40                                                                      
1262304167.561028: nl80211: assocresp_ies - hexdump(len=10): 7f 08 00 00 00 00 0
0 00 00 40                                                                      
1262304168.56194ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready              
9: nl80211: Set br0: port 2(wlan0) entering forwarding state                    
wlan0 operstate br0: port 2(wlan0) entering forwarding state                    
0->1 (UP)                                                                       
1262304168.562012: netlink: Operstate: ifindex=7 linkmode=-1 (no change), operst
ate=6 (IF_OPER_UP)                                                              
1262304168.562493: wlan0: interface state DFS->ENABLED                          
1262304168.562541: wlan0: AP-ENABLED                                            
1262304168.562552: wlan0: Setup of interface done.                              
1262304168.579217: RTM_NEWLINK: ifi_index=7 ifname=wlan0 master=8 operstate=6 if
i_flags=0x11043 ([UP][RUNNING][LOWER_UP])                                       
1262304168.579308: nl80211: Add ifindex 8 for bridge br0                        
1262304168.579324: nl80211: Add own interface ifindex 8                         
1262304168.579336: nl80211: ifindex 8 already in the list                       
1262304168.579357: RTM_NEWLINK: ifi_index=7 ifname=wlan0 master=8 operstate=6 if
i_flags=0x11043 ([UP][RUNNING][LOWER_UP])                                       
1262304168.579395: nl80211: Add ifindex 8 for bridge br0                        
1262304168.579409: nl80211: Add own interface ifindex 8                         
1262304168.579419: nl80211: ifindex 8 already in the list                       
1262304168.579437: RTM_NEWLINK: ifi_index=7 ifname=wlan0 master=8 operstate=6 if
i_flags=0x11043 ([UP][RUNNING][LOWER_UP])                                       
1262304168.579474: nl80211: Add ifindex 8 for bridge br0                        
1262304168.579487: nl80211: Add own interface ifindex 8                         
1262304168.579496: nl80211: ifindex 8 already in the list                       
1262304168.579517: RTM_NEWLINK: ifi_index=7 ifname=wlan0 operstate=6 linkmode=0 
master=8 ifi_flags=0x11043 ([UP][RUNNING][LOWER_UP])                            
1262304170.562040: nl80211: send_mlme - noack=1 freq=0 no_cck=0 offchanok=0 wait
_time=0 fc=0x50 nlmode=3                                                        
1262304170.562096: nl80211: send_mlme -> send_frame                             
1262304170.562108: nl80211: send_frame - Use bss->freq=5260                     
1262304170.562119: nl80211: send_frame(freq=5260 bss->freq=5260) -> send_mntr   
1262304179.843299: random: Got 4/4 bytes from /dev/random                       
1262304181.376091: nl80211: send_mlme - noack=1 freq=0 no_cck=0 offchanok=0 wait
_time=0 fc=0x50 nlmode=3                                                        
1262304181.376146: nl80211: send_mlme -> send_frame                             
1262304181.376158: nl80211: send_frame - Use bss->freq=5260                     
1262304181.376169: nl80211: send_frame(freq=5260 bss->freq=5260) -> send_mntr   
1262304186.542126: nl80211: send_mlme - noack=1 freq=0 no_cck=0 offchanok=0 wait
_time=0 fc=0x50 nlmode=3                                                        
1262304186.542181: nl80211: send_mlme -> send_frame                             
1262304186.542194: nl80211: send_frame - Use bss->freq=5260                     
1262304186.542204: nl80211: send_frame(freq=5260 bss->freq=5260) -> send_mntr   
1262304191.712188: nl80211: send_mlme - noack=1 freq=0 no_cck=0 offchanok=0 wait
_time=0 fc=0x50 nlmode=3                                                        
1262304191.712244: nl80211: send_mlme -> send_frame                             
1262304191.712255: nl80211: send_frame - Use bss->freq=5260                     
1262304191.712266: nl80211: send_frame(freq=5260 bss->freq=5260) -> send_mntr   
1262304202.526238: nl80211: send_mlme - noack=1 freq=0 no_cck=0 offchanok=0 wait
_time=0 fc=0x50 nlmode=3                                                        
1262304202.526293: nl80211: send_mlme -> send_frame                             
1262304202.526305: nl80211: send_frame - Use bss->freq=5260                     
1262304202.526315: nl80211: send_frame(freq=5260 bss->freq=5260) -> send_mntr   
1262304207.692228: nl80211: send_mlme - noack=1 freq=0 no_cck=0 offchanok=0 wait
_time=0 fc=0x50 nlmode=3 

[-- Attachment #3: dbg_wpa.txt --]
[-- Type: text/plain, Size: 23188 bytes --]

rfkill: Cannot open RFKILL control device                                       
nl80211: RFKILL status not available                                            
nl80211: Supported cipher 00-0f-ac:1                                            
nl80211: Supported cipher 00-0f-ac:5                                            
nl80211: Supported cipher 00-0f-ac:2                                            
nl80211: Supported cipher 00-0f-ac:4                                            
nl80211: Supported cipher 00-0f-ac:6                                            
nl80211: Using driver-based off-channel TX                                      
nl80211: interface wlan0 in phy phy0                                            
nl80211: Set mode ifindex 18 iftype 2 (STATION)                                 
nl80211: Subscribe to mgmt frames with non-AP handle 0x107298                   
nl80211: Register frame type=0xd0 nl_handle=0x107298 match=06                   
nl80211: Register frame type=0xd0 nl_handle=0x107298 match=0a07                 
nl80211: Register frame type=0xd0 nl_handle=0x107298 match=0a11                 
netlink: Operstate: ifindex=18 linkmode=1 (userspace-control), operstate=5 (IF_O
PER_DORMANT)                                                                    
nl80211: driver param='(null)'                                                  
Add interface wlan0 to a new radio phy0                                         
nl80211: Regulatory information - country=FR (DFS-ETSI)                         
nl80211: 2402-2482 @ 40 MHz 20 mBm                                              
nl80211: 5170-5250 @ 80 MHz 20 mBm                                              
nl80211: 5250-5330 @ 80 MHz 20 mBm                                              
nl80211: 5490-5710 @ 80 MHz 27 mBm                                              
nl80211: 57240-65880 @ 2160 MHz 40 mBm                                          
nl80211: Added 802.11b mode based on 802.11g information                        
wlan0: Own MAC address: 04:f0:21:0e:38:cf                                       
wpa_driver_nl80211_set_key: ifindex=18 (wlan0) alg=0 addr=(nil) key_idx=0 set_tx
=0 seq_len=0 key_len=0                                                          
wpa_driver_nl80211_set_key: ifindex=18 (wlan0) alg=0 addr=(nil) key_idx=1 set_tx
=0 seq_len=0 key_len=0                                                          
wpa_driver_nl80211_set_key: ifindex=18 (wlan0) alg=0 addr=(nil) key_idx=2 set_tx
=0 seq_len=0 key_len=0                                                          
wpa_driver_nl80211_set_key: ifindex=18 (wlan0) alg=0 addr=(nil) key_idx=3 set_tx
=0 seq_len=0 key_len=0                                                          
wlan0: RSN: flushing PMKID list in the driver                                   
nl80211: Flush PMKIDs                                                           
wlan0: Setting scan request: 0.100000 sec                                       
wlan0: WPS: UUID based on MAC address: 28758f80-6f27-5b12-887f-6e162fec796d     
EAPOL: SUPP_PAE entering state DISCONNECTED                                     
EAPOL: Supplicant port status: Unauthorized                                     
nl80211: Skip set_supp_port(unauthorized) while not associated                  
EAPOL: KEY_RX entering state NO_KEY_RECEIVE                                     
EAPOL: SUPP_BE entering state INITIALIZE                                        
EAP: EAP entering state DISABLED                                                
wlan0: Added interface wlan0                                                    
wlan0: State: DISCONNECTED -> DISCONNECTED                                      
nl80211: Set wlan0 operstate 0->0 (DORMANT)                                     
netlink: Operstate: ifindex=18 linkmode=-1 (no change), operstate=5 (IF_OPER_DOR
MANT)                                                                           
random: Got 20/20 bytes from /dev/random                                        
wlan0: State: DISCONNECTED -> SCANNING                                          
wlan0: Startinwlan0: authenticate with 04:f0:21:0e:38:be                        
g AP scan for wildcard SSID                                                     
wlan0: Add radio work 'scan'@0x115b00                                           
wlan0: First radio work itemwlan0: direct probe to 04:f0:21:0e:38:be (try 1/3)  
 in the queue - schedule start immediately                                      
wlan0: Starting radio work 'scan'@0x115b00 after 0.000032 second wait           
wlan0: nl80211: scan request                                                    
nl80211: Scan SSID - hexdump_ascii(len=0): [NULL]                               
nl80211: Scan frequency 5260 MHz                                                
Scan requested (ret=0) - scan timeout 10 seconds                                
nl80211: Event message available                                                
nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0             
wlan0: nl80211: Scan trigger                                                    
wlan0: Event SCAN_STARTED (49) received                                         
wlan0: Own scan request started a scan in 0.000125 seconds                      
wlan0: CTRL-EVENT-SCAN-STARTED                                                  
nl80211: Event message available                                                
nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0         
wlan0: nl80211: New scan results available                                      
nl80211: Scan probed for SSID ''                                                
nl80211: Scan included frequencies: 5260                                        
wlan0: Event SCAN_RESULTS (3) received                                          
wlan0: Scan completed in 0.150196 seconds                                       
nl80211: Received scan results (1 BSSes)                                        
wlan0: BSS: Start scan result update 1                                          
wlan0: BSS: Add new id 0 BSSID 04:f0:21:0e:38:be SSID 'ath10k'                  
BSS: last_scan_res_used=1/32                                                    
wlan0: New scan results available (own=1 ext=0)                                 
wlan0: Radio work 'scan'@0x115b00 done in 0.151337 seconds                      
wlan0: Selecting BSS from priority group 0                                      
wlan0: 0: 04:f0:21:0e:38:be ssid='ath10k' wpa_ie_len=0 rsn_ie_len=0 caps=0x101 l
evel=-16                                                                        
wlan0:    allow in non-WPA/WPA2                                                 
wlan0:    selected BSS 04:f0:21:0e:38:be ssid='ath10k'                          
wlan0: Considering connect request: reassociate: 0  selected: 04:f0:21:0e:38:be 
 bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: SCANNING  ssid
=0x106c38  current_ssid=(nil)                                                   
wlan0: Request association with 04:f0:21:0e:38:be                               
wlan0: Add radio work 'sme-connect'@0x107fc0                                    
wlan0: First radio work item in the queue - schedule start immediately          
wlan0: Starting radio work 'sme-connect'@0x107fc0 after 0.000053 second wait    
wlan0: Automatic auth_alg selection: 0x1                                        
wlan0: WPA: clearing AP WPA IE                                                  
wlan0: WPA: clearing AP RSN IE                                                  
wlan0: WPA: clearing own WPA/RSN IE                                             
wlan0: Cancelling scan request                                                  
wlan0: SME: Trying to authenticate with 04:f0:21:0e:38:be (SSID='ath10k' freq=52
60 MHz)                                                                         
wlan0: State: SCANNING -> AUTHENTICATING                                        
EAPOL: External notification - EAP success=0                                    
EAPOL: External notification - EAP fail=0                                       
EAPOL: External notification - portControl=ForceAuthorized                      
nl80211: Authenticate (ifindex=18)                                              
  * bssid=wlan0: direct probe to 04:f0:21:0e:38:be (try 2/3)                    
04:f0:21:0e:38:be                                                               
  * freq=5260                                                                   
  * SSID - hexdump_ascii(len=6):                                                
     61 74 68 31 30 6b                                 ath10k                   
  * IEs - hexdump(len=0): [NULL]                                                
  * Auth Type 0                                                                 
nl80211: Authentication request send successfully                               
nl80211: Event message available                                                
nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan0              
nl80211: New station 04:f0:21:0e:38:be                                          
wlan0: direct probe to 04:f0:21:0e:38:be (try 3/3)                              
wlan0: authentication with 04:f0:21:0e:38:be timed out                          
nl80211: Event message available                                                
nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan0              
nl80211: Delete station 04:f0:21:0e:38:be                                       
nl80211: Event message available                                                
nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan0             
nl80211: MLME event 37; timeout with 04:f0:21:0e:38:be                          
wlan0: Event AUTH_TIMED_OUT (14) received                                       
wlan0: SME: Authentication timed out                                            
wlan0: Radio work 'sme-connect'@0x107fc0 done in 0.643966 seconds               
Added BSSID 04:f0:21:0e:38:be into blacklist                                    
wlan0: Blacklist count 1 --> request scan in 100 ms                             
wlan0: Setting scan request: 0.100000 sec                                       
wlan0: State: AUTHENTICATING -> DISCONNECTED                                    
nl80211: Set wlan0 operstate 0->0 (DORMANT)                                     
netlink: Operstate: ifindex=18 linkmode=-1 (no change), operstate=5 (IF_OPER_DOR
MANT)                                                                           
EAPOL: External notification - portEnabled=0                                    
EAPOL: External notification - portValid=0                                                          
wlan0: State: DISCONNECTED -> SCANNING                                          
wlan0: Starting AP scan for wildcard SSID                                       
wlan0: Add radio work 'scan'@0x115e00                                           
wlan0: First radio work item in the queue - schedule start immediately          
EAPOL: disable timer tick                                                       
wlan0: Starting radio work 'scan'@0x115e00 after 0.000064 second wait           
wlan0: nl80211: scan request                                                    
nl80211: Scan SSID - hexdump_ascii(len=0): [NULL]                               
nl80211: Scan frequency 5260 MHz                                                
Scan requested (ret=0) - scan timeout 30 seconds                                
nl80211: Event message available                                                
nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0             
wlan0: nl80211: Scan trigger                                                    
wlan0: Event SCAN_STARTED (49) received                                         
wlan0: Own scan request started a scan in 0.000089 seconds                      
wlan0: CTRL-EVENT-SCAN-STARTED                                                  
nl80211: Event mwlan0: authenticate with 04:f0:21:0e:38:be                      
essage available                                                                
nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_REwlan0: direct probe to 04:f0:21:0e
:38:be (try 1/3)                                                                
SULTS) received for wlan0                                                       
wlan0: nl80211: New scan results available                                      
nl80211: Scan probed for SSID ''                                                
nl80211: Scan included frequencies: 5260                                        
wlan0: Event SCAN_RESULTS (3) received                                          
wlan0: Scan completed in 0.150209 seconds                                       
nl80211: Received scan results (1 BSSes)                                        
wlan0: BSS: Start scan result update 2                                          
BSS: last_scan_res_used=1/32                                                    
wlan0: New scan results available (own=1 ext=0)                                 
wlan0: Radio work 'scan'@0x115e00 done in 0.151200 seconds                      
wlan0: Selecting BSS from priority group 0                                      
wlan0: 0: 04:f0:21:0e:38:be ssid='ath10k' wpa_ie_len=0 rsn_ie_len=0 caps=0x101 l
evel=-17                                                                        
wlan0:    skip - blacklisted (count=1 limit=0)                                  
wlan0: No APs found - clear blacklist and try again                             
Removed BSSID 04:f0:21:0e:38:be from blacklist (clear)                          
wlan0: Selecting BSS from priority group 0                                      
wlan0: 0: 04:f0:21:0e:38:be ssid='ath10k' wpa_ie_len=0 rsn_ie_len=0 caps=0x101 l
evel=-17                                                                        
wlan0:    allow in non-WPA/WPA2                                                 
wlan0:    selected BSS 04:f0:21:0e:38:be ssid='ath10k'                          
wlan0: Considering connect request: reassociate: 0  selected: 04:f0:21:0e:38:be 
 bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: SCANNING  ssid
=0x106c38  current_ssid=(nil)                                                   
wlan0: Request association with 04:f0:21:0e:38:be                               
wlan0: Add radio work 'sme-connect'@0x115b00                                    
wlan0: First radio work item in the queue - schedule start immediately          
wlan0: Starting radio work 'sme-connect'@0x115b00 after 0.000048 second wait    
wlan0: Automatic auth_alg selection: 0x1                                        
wlan0: WPA: clearing AP WPA IE                                                  
wlan0: WPA: clearing AP RSN IE                                                  
wlan0: WPA: clearing own WPA/RSN IE                                             
wlan0: Cancelling scan request                                                  
wlan0: SME: Trying to authenticate with 04:f0:21:0e:38:be (SSID='ath10k' freq=52
60 MHz)                                                                         
wlan0: State: SCANNING -> AUTHENTICATING                                        
EAPOL: External notification - EAP success=0                                    
EAPOL: External notification - EAP fail=0                                       
EAPOL: External notification - portControl=ForceAuthorized                      
nl80211: Authenticate (ifindex=18)                                              
  * bssid=04:f0:21:0e:38:be                                                     
  * freq=5260                                                                   
  * SSID - hexdump_ascii(len=6):                                                
     61 74 68 31 30 6b                                 ath10k                   
  * IEs - hexdump(len=0): [NULL]                                                
  * Auth Type 0                                                                 
nl80211: Authentication request send successfully                               
nl80211: Event message available                                                
nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan0              
nl80211: New station 04:f0:21:0e:38:be                                          
wlan0: direct probe to 04:f0:21:0e:38:be (try 2/3)                              
wlan0: direct probe to 04:f0:21:0e:38:be (try 3/3)                              
wlan0: authentication with 04:f0:21:0e:38:be timed out                          
nl80211: Event message available                                                
nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for wlan0              
nl80211: Delete station 04:f0:21:0e:38:be                                       
nl80211: Event message available                                                
nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan0             
nl80211: MLME event 37; timeout with 04:f0:21:0e:38:be                          
wlan0: Event AUTH_TIMED_OUT (14) received                                       
wlan0: SME: Authentication timed out                                            
wlan0: Radio work 'sme-connect'@0x115b00 done in 0.644955 seconds               
Added BSSID 04:f0:21:0e:38:be into blacklist                                    
wlan0: Blacklist count 2 --> request scan in 500 ms                             
wlan0: Setting scan request: 0.500000 sec                                       
wlan0: State: AUTHENTICATING -> DISCONNECTED                                    
nl80211: Set wlan0 operstate 0->0 (DORMANT)                                     
netlink: Operstate: ifindex=18 linkmode=-1 (no change), operstate=5 (IF_OPER_DOR
MANT)                                                                           
EAPOL: External notification - portEnabled=0                                    
EAPOL: External notification - portValid=0                                      
wlan0: State: DISCONNECTED -> SCANNING                                          
wlan0: Starting AP scan for wildcard SSID                                       
wlan0: Add radio work 'scan'@0x115b00                                           
wlan0: First radio work item in the queue - schedule start immediately          
wlan0: Starting radio work 'scan'@0x115b00 after 0.000036 second wait           
wlan0: nl80211: scan request                                                    
nl80211: Scan SSID - hexdump_ascii(len=0): [NULL]                               
nl80211: Scan frequency 5260 MHz                                                
Scan requested (ret=0) - scan timeout 30 seconds                                
nl80211: Event message available                                                
nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0             
wlan0: nl80211: Scan trigger                                                    
wlan0: Event SCAN_STARTED (49) received                                         
wlan0: Own scan request started a scan in 0.000088 seconds                      
wlan0: CTRL-EVENT-SCAN-STARTED                                                  
nl80211: Event mwlan0: authenticate with 04:f0:21:0e:38:be                      
essage available                                                                
nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_REwlan0: direct probe to 04:f0:21:0e
:38:be (try 1/3)                                                                
SULTS) received for wlan0                                                       
wlan0: nl80211: New scan results available                                      
nl80211: Scan probed for SSID ''                                                
nl80211: Scan included frequencies: 5260                                        
wlan0: Event SCAN_RESULTS (3) received                                          
wlan0: Scan completed in 0.150202 seconds                                       
nl80211: Received scan results (1 BSSes)                                        
wlan0: BSS: Start scan result update 3                                          
BSS: last_scan_res_used=1/32                                                    
wlan0: New scan results available (own=1 ext=0)                                 
wlan0: Radio work 'scan'@0x115b00 done in 0.151159 seconds                      
wlan0: Selecting BSS from priority group 0                                      
wlan0: 0: 04:f0:21:0e:38:be ssid='ath10k' wpa_ie_len=0 rsn_ie_len=0 caps=0x101 l
evel=-21                                                                        
wlan0:    skip - blacklisted (count=1 limit=0)                                  
wlan0: No APs found - clear blacklist and try again                             
Removed BSSID 04:f0:21:0e:38:be from blacklist (clear)                          
wlan0: Selecting BSS from priority group 0                                      
wlan0: 0: 04:f0:21:0e:38:be ssid='ath10k' wpa_ie_len=0 rsn_ie_len=0 caps=0x101 l
evel=-21                                                                        
wlan0:    allow in non-WPA/WPA2                                                 
wlan0:    selected BSS 04:f0:21:0e:38:be ssid='ath10k'                          
wlan0: Considering connect request: reassociate: 0  selected: 04:f0:21:0e:38:be 
 bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: SCANNING  ssid
=0x106c38  current_ssid=(nil)                                                   
wlan0: Request association with 04:f0:21:0e:38:be                               
wlan0: Add radio work 'sme-connect'@0x115b00                                    
wlan0: First radio work item in the queue - schedule start immediately          
wlan0: Starting radio work 'sme-connect'@0x115b00 after 0.000047 second wait    
wlan0: Automatic auth_alg selection: 0x1                                        
wlan0: WPA: clearing AP WPA IE                                                  
wlan0: WPA: clearing AP RSN IE                                                  
wlan0: WPA: clearing own WPA/RSN IE                                             
wlan0: Cancelling scan request                                                  
wlan0: SME: Trying to authenticate with 04:f0:21:0e:38:be (SSID='ath10k' freq=52
60 MHz)                                                                         
wlan0: State: SCANNING -> AUTHENTICATING                                        
EAPOL: External notification - EAP success=0                                    
EAPOL: External notification - EAP fail=0                                       
EAPOL: External notification - portControl=ForceAuthorized                      
n

[-- Attachment #4: Type: text/plain, Size: 146 bytes --]

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-05-21  9:43                             ` RE : " Vu Hai NGUYEN
@ 2014-05-21 14:03                               ` Janusz Dziedzic
  2014-05-22  7:54                                 ` RE : " Vu Hai NGUYEN
  0 siblings, 1 reply; 134+ messages in thread
From: Janusz Dziedzic @ 2014-05-21 14:03 UTC (permalink / raw)
  To: Vu Hai NGUYEN; +Cc: Patrick CARNEIRO RODRIGUEZ, Michal Kazior, ath10k

On 21 May 2014 11:43, Vu Hai NGUYEN <vh.nguyen@actiasodielec.fr> wrote:
>>Best if you can use 3rd device as a sniffer and capture airlogs.
>>Could you also send hostapd logs (captured with with -ddt)?
>>We will see if hostapd get this direct probe requests
>
> I thought that hostapd didn't get the probe request as far as what I saw from the logs. (You can find in the attached file the logs for both wpa and hostapd)
>
Thanks for logs,

Seems hostapd try to send probe resp:

1262304186.542126: nl80211: send_mlme - noack=1 freq=0 no_cck=0 offchanok=0 wait
_time=0 fc=0x50 nlmode=3

0x50 - probe resp

I think you will have to check ailogs.

BTW, did you hack somehow ath/regdb.c file? :-)
You can enable WMI logs and check if there is: "mac channel [ ..."
mainly channels list configured. I remember we have similar issue when
hack ath regdb and update channel list wasn't called :)

BR
Janusz


BR
Janusz

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-05-21 14:03                               ` Janusz Dziedzic
@ 2014-05-22  7:54                                 ` Vu Hai NGUYEN
  2014-05-22  8:06                                   ` Vu Hai NGUYEN
  0 siblings, 1 reply; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-05-22  7:54 UTC (permalink / raw)
  To: Janusz Dziedzic; +Cc: Patrick CARNEIRO RODRIGUEZ, Michal Kazior, ath10k

[-- Attachment #1: Type: text/plain, Size: 3696 bytes --]

>Thanks for logs,

>Seems hostapd try to send probe resp:

>1262304186.542126: nl80211: send_mlme - noack=1 freq=0 no_cck=0 offchanok=0 wait
>_time=0 fc=0x50 nlmode=3

>0x50 - probe resp

>I think you will have to check ailogs.

Thanks, I'll try it with wireshark but can you give me the detail that which information that I've to look in the frame? We tried it before but there are a lot of frames
and i'm confused.

>BTW, did you hack somehow ath/regdb.c file? :-)
>You can enable WMI logs and check if there is: "mac channel [ ..."
>mainly channels list configured. I remember we have similar issue when
>hack ath regdb and update channel list wasn't called :)

Yes, I chose "use statically compiled regulatory rules database" when building ath10k and regdb.c is modified by the data from db.txt
My filde db.txt (in the attached file) that I took from the package wireless-regdb-2013.10.1. 
I enable the WMI logs and see the channels like below:

ath10k: mac channel [0/32] freq 2412 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [1/32] freq 2417 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [2/32] freq 2422 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [3/32] freq 2427 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [4/32] freq 2432 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [5/32] freq 2437 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [6/32] freq 2442 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [7/32] freq 2447 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [8/32] freq 2452 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [9/32] freq 2457 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [10/32] freq 2462 maxpower 40 regpower 40 antenna 0 mode 1  
ath10k: mac channel [11/32] freq 2467 maxpower 40 regpower 40 antenna 0 mode 1  
ath10k: mac channel [12/32] freq 2472 maxpower 40 regpower 40 antenna 0 mode 1  
ath10k: mac channel [13/32] freq 5180 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [14/32] freq 5200 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [15/32] freq 5220 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [16/32] freq 5240 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [17/32] freq 5260 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [18/32] freq 5280 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [19/32] freq 5300 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [20/32] freq 5320 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [21/32] freq 5500 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [22/32] freq 5520 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [23/32] freq 5540 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [24/32] freq 5560 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [25/32] freq 5580 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [26/32] freq 5600 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [27/32] freq 5620 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [28/32] freq 5640 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [29/32] freq 5660 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [30/32] freq 5680 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [31/32] freq 5700 maxpower 54 regpower 54 antenna 0 mode 0


NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE


[-- Attachment #2: db.txt --]
[-- Type: text/plain, Size: 23022 bytes --]

# This is the world regulatory domain
country 00:
	(2402 - 2472 @ 40), (3, 20)
	# Channel 12 - 13.
	(2457 - 2482 @ 40), (3, 20), PASSIVE-SCAN, NO-IBSS
	# Channel 14. Only JP enables this and for 802.11b only
	(2474 - 2494 @ 20), (3, 20), PASSIVE-SCAN, NO-IBSS, NO-OFDM
	# Channel 36 - 48
	(5170 - 5250 @ 80), (3, 20), PASSIVE-SCAN, NO-IBSS
	# NB: 5260 MHz - 5700 MHz requies DFS
	# Channel 149 - 165
	(5735 - 5835 @ 80), (3, 20), PASSIVE-SCAN, NO-IBSS
	# IEEE 802.11ad (60GHz), channels 1..3
	(57240 - 63720 @ 2160), (N/A, 0)


country AD:
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country AE:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (3, 17)
	(5250 - 5330 @ 80), (3, 24), DFS
	(5490 - 5710 @ 80), (3, 24), DFS
	(5735 - 5835 @ 80), (3, 30)

country AL:
	(2402 - 2482 @ 20), (N/A, 20)

country AM:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 20), (N/A, 18)
	(5250 - 5330 @ 20), (N/A, 18), DFS

country AN:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (N/A, 20)
	(5250 - 5330 @ 40), (N/A, 20), DFS
	(5490 - 5710 @ 40), (N/A, 27), DFS

country AR:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (3, 17)
	(5250 - 5330 @ 80), (3, 24), DFS
	(5490 - 5710 @ 80), (3, 24), DFS
	(5735 - 5835 @ 80), (3, 30)

country AT: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (N/A, 20)
	(5250 - 5330 @ 80), (N/A, 20), DFS
	(5490 - 5710 @ 80), (N/A, 27), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country AU:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (3, 17)
	(5250 - 5330 @ 80), (3, 24), DFS
	(5490 - 5710 @ 80), (3, 24), DFS
	(5735 - 5835 @ 80), (3, 30)

country AW:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (N/A, 20)
	(5250 - 5330 @ 40), (N/A, 20), DFS
	(5490 - 5710 @ 40), (N/A, 27), DFS

country AZ:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (N/A, 18)
	(5250 - 5330 @ 40), (N/A, 18), DFS

country BA: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (N/A, 20)
	(5250 - 5330 @ 40), (N/A, 20), DFS
	(5490 - 5710 @ 40), (N/A, 27), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country BB:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (3, 23)
	(5250 - 5330 @ 40), (3, 23), DFS
	(5735 - 5835 @ 40), (3, 30)

country BD:
	(2402 - 2482 @ 40), (N/A, 20)

country BE: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (N/A, 20)
	(5250 - 5330 @ 80), (N/A, 20), DFS
	(5490 - 5710 @ 80), (N/A, 27), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country BG: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (N/A, 23)
	(5250 - 5290 @ 40), (N/A, 23), DFS
	(5490 - 5710 @ 40), (N/A, 30), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country BH:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 20), (N/A, 20)
	(5250 - 5330 @ 20), (N/A, 20), DFS
	(5735 - 5835 @ 20), (N/A, 20)

country BL:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (N/A, 18)
	(5250 - 5330 @ 40), (N/A, 18), DFS

country BN:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (N/A, 20)
	(5250 - 5330 @ 40), (N/A, 20), DFS
	(5735 - 5835 @ 40), (N/A, 30)

country BO:
	(2402 - 2482 @ 40), (N/A, 30)
	(5735 - 5835 @ 40), (N/A, 30)

country BR:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (3, 17)
	(5250 - 5330 @ 80), (3, 24), DFS
	(5490 - 5710 @ 80), (3, 24), DFS
	(5735 - 5835 @ 80), (3, 30)

country BY:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (N/A, 20)
	(5250 - 5330 @ 40), (N/A, 20), DFS
	(5490 - 5710 @ 40), (N/A, 27), DFS

country BZ:
	(2402 - 2482 @ 40), (N/A, 30)
	(5735 - 5835 @ 40), (N/A, 30)

country CA:
	(2402 - 2472 @ 40), (3, 27)
	(5170 - 5250 @ 80), (3, 17)
	(5250 - 5330 @ 80), (3, 24), DFS
	(5490 - 5710 @ 80), (3, 24), DFS
	(5735 - 5835 @ 80), (3, 30)

country CH: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (N/A, 20)
	(5250 - 5330 @ 80), (N/A, 20), DFS
	(5490 - 5710 @ 80), (N/A, 27), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country CL:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (N/A, 20)
	(5250 - 5330 @ 40), (N/A, 20), DFS
	(5735 - 5835 @ 40), (N/A, 20)

country CN:
	(2402 - 2482 @ 40), (N/A, 20)
	(5735 - 5835 @ 80), (N/A, 30)
	# 60 gHz band channels 1,4: 28dBm, channels 2,3: 44dBm
	# ref: http://www.miit.gov.cn/n11293472/n11505629/n11506593/n11960250/n11960606/n11960700/n12330791.files/n12330790.pdf
	(57240 - 59400 @ 2160), (N/A, 28)
	(59400 - 63720 @ 2160), (N/A, 44)
	(63720 - 65880 @ 2160), (N/A, 28)

country CO:
	(2402 - 2472 @ 40), (3, 27)
	(5170 - 5250 @ 80), (3, 17)
	(5250 - 5330 @ 80), (3, 24), DFS
	(5490 - 5710 @ 80), (3, 24), DFS
	(5735 - 5835 @ 80), (3, 30)

country CR:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (3, 17)
	(5250 - 5330 @ 80), (3, 24), DFS
	(5490 - 5710 @ 80), (3, 24), DFS
	(5735 - 5835 @ 80), (3, 30)

country CY: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (N/A, 20)
	(5250 - 5330 @ 40), (N/A, 20), DFS
	(5490 - 5710 @ 40), (N/A, 27), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

# Data from http://www.ctu.eu/164/download/VOR/VOR-12-08-2005-34.pdf
# and http://www.ctu.eu/164/download/VOR/VOR-12-05-2007-6-AN.pdf
# Power at 5250 - 5350 MHz and 5470 - 5725 MHz can be doubled if TPC is
# implemented.
country CZ: DFS-ETSI
	(2400 - 2483.5 @ 40), (N/A, 100 mW)
	(5150 - 5250 @ 80), (N/A, 200 mW), NO-OUTDOOR
	(5250 - 5350 @ 80), (N/A, 100 mW), NO-OUTDOOR, DFS
	(5470 - 5725 @ 80), (N/A, 500 mW), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

# Data from "Frequenznutzungsplan" (as published in April 2008), downloaded from
# http://www.bundesnetzagentur.de/cae/servlet/contentblob/38448/publicationFile/2659/Frequenznutzungsplan2008_Id17448pdf.pdf
# For the 5GHz range also see
# http://www.bundesnetzagentur.de/cae/servlet/contentblob/38216/publicationFile/6579/WLAN5GHzVfg7_2010_28042010pdf.pdf
# The values have been reduced by a factor of 2 (3db) for non TPC devices
# (in other words: devices with TPC can use twice the tx power of this table).
# Note that the docs do not require TPC for 5150--5250; the reduction to
# 100mW thus is not strictly required -- however the conservative 100mW
# limit is used here as the non-interference with radar and satellite
# apps relies on the attenuation by the building walls only in the
# absence of DFS; the neighbour countries have 100mW limit here as well.

country DE: DFS-ETSI
	# entries 279004 and 280006
	(2400 - 2483.5 @ 40), (N/A, 100 mW)
	# entry 303005
	(5150 - 5250 @ 80), (N/A, 100 mW), NO-OUTDOOR
	# entries 304002 and 305002
	(5250 - 5350 @ 80), (N/A, 100 mW), NO-OUTDOOR, DFS
	# entries 308002, 309001 and 310003
	(5470 - 5725 @ 80), (N/A, 500 mW), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country DK: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (N/A, 20)
	(5250 - 5330 @ 80), (N/A, 20), DFS
	(5490 - 5710 @ 80), (N/A, 27), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country DO:
	(2402 - 2472 @ 40), (3, 27)
	(5170 - 5250 @ 40), (3, 17)
	(5250 - 5330 @ 40), (3, 23), DFS
	(5735 - 5835 @ 40), (3, 30)

country DZ:
	(2402 - 2482 @ 40), (N/A, 20)

country EC:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (3, 17)
	(5250 - 5330 @ 80), (3, 24), DFS
	(5490 - 5710 @ 80), (3, 24), DFS
	(5735 - 5835 @ 80), (3, 30)

country EE: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (N/A, 20)
	(5250 - 5330 @ 40), (N/A, 20), DFS
	(5490 - 5710 @ 40), (N/A, 27), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country EG:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 20), (N/A, 20)
	(5250 - 5330 @ 20), (N/A, 20), DFS

country ES: DFS-ETSI
	(2400 - 2483.5 @ 40), (N/A, 100 mW)
	(5150 - 5250 @ 80), (N/A, 100 mW), NO-OUTDOOR
	(5250 - 5350 @ 80), (N/A, 100 mW), NO-OUTDOOR, DFS
	(5470 - 5725 @ 80), (N/A, 500 mW), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country FI: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (N/A, 20)
	(5250 - 5330 @ 80), (N/A, 20), DFS
	(5490 - 5710 @ 80), (N/A, 27), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country FR: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (N/A, 20)
	(5250 - 5330 @ 80), (N/A, 20), DFS
	(5490 - 5710 @ 80), (N/A, 27), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country GE:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (N/A, 18)
	(5250 - 5330 @ 40), (N/A, 18), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country GB: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (N/A, 20)
	(5250 - 5330 @ 80), (N/A, 20), DFS
	(5490 - 5710 @ 80), (N/A, 27), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country GD:
	(2402 - 2472 @ 40), (3, 27)
	(5170 - 5250 @ 40), (3, 17)
	(5250 - 5330 @ 40), (3, 20), DFS
	(5490 - 5710 @ 40), (3, 20), DFS
	(5735 - 5835 @ 40), (3, 30)

country GR: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (N/A, 20)
	(5250 - 5330 @ 80), (N/A, 20), DFS
	(5490 - 5710 @ 80), (N/A, 27), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country GL: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 20), (N/A, 20)
	(5250 - 5330 @ 20), (N/A, 20), DFS
	(5490 - 5710 @ 20), (N/A, 27), DFS

country GT:
	(2402 - 2472 @ 40), (3, 27)
	(5170 - 5250 @ 40), (3, 17)
	(5250 - 5330 @ 40), (3, 23), DFS
	(5735 - 5835 @ 40), (3, 30)

country GU:
	(2402 - 2472 @ 40), (3, 27)
	(5170 - 5250 @ 80), (3, 17)
	(5250 - 5330 @ 80), (3, 24), DFS
	(5490 - 5710 @ 80), (3, 24), DFS
	(5735 - 5835 @ 80), (3, 30)

country HN:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (3, 17)
	(5250 - 5330 @ 40), (3, 20), DFS
	(5490 - 5710 @ 40), (3, 20), DFS
	(5735 - 5835 @ 40), (3, 30)

country HK:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (3, 17)
	(5250 - 5330 @ 80), (3, 24), DFS
	(5490 - 5710 @ 80), (3, 24), DFS
	(5735 - 5835 @ 80), (3, 30)

country HR: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (N/A, 20)
	(5250 - 5330 @ 40), (N/A, 20), DFS
	(5490 - 5710 @ 40), (N/A, 27), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country HT:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (N/A, 20)
	(5250 - 5330 @ 40), (N/A, 20), DFS
	(5490 - 5710 @ 40), (N/A, 27), DFS

country HU: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (N/A, 20)
	(5250 - 5330 @ 40), (N/A, 20), DFS
	(5490 - 5710 @ 40), (N/A, 27), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country ID:
	# ref: http://www.postel.go.id/content/ID/regulasi/standardisasi/kepdir/bwa%205,8%20ghz.pdf
	(2402 - 2482 @ 40), (N/A, 20)
	(5735 - 5815 @ 80), (N/A, 20)

country IE: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (N/A, 20)
	(5250 - 5330 @ 80), (N/A, 20), DFS
	(5490 - 5710 @ 80), (N/A, 27), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country IL:
	(2402 - 2482 @ 40), (N/A, 20)
	(5150 - 5250 @ 80), (N/A, 200 mW), NO-OUTDOOR
	(5250 - 5350 @ 80), (N/A, 200 mW), NO-OUTDOOR, DFS

country IN:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (N/A, 20)
	(5250 - 5330 @ 40), (N/A, 20), DFS
	(5735 - 5835 @ 40), (N/A, 20)

country IS: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (N/A, 20)
	(5250 - 5330 @ 40), (N/A, 20), DFS
	(5490 - 5710 @ 40), (N/A, 27), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country IR:
	(2402 - 2482 @ 40), (N/A, 20)
	(5735 - 5835 @ 40), (N/A, 30)

country IT: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (N/A, 20)
	(5250 - 5330 @ 80), (N/A, 20), DFS
	(5490 - 5710 @ 80), (N/A, 27), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country JM:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (3, 17)
	(5250 - 5330 @ 40), (3, 20), DFS
	(5490 - 5710 @ 40), (3, 20), DFS
	(5735 - 5835 @ 40), (3, 30)

country JP:
	(2402 - 2482 @ 40), (N/A, 20)
	(2474 - 2494 @ 20), (N/A, 20), NO-OFDM
	(4910 - 4990 @ 40), (N/A, 23)
	(5030 - 5090 @ 40), (N/A, 23)
	(5170 - 5250 @ 80), (N/A, 20)
	(5250 - 5330 @ 80), (N/A, 20), DFS
	(5490 - 5710 @ 160), (N/A, 23), DFS

country JO:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (N/A, 18)

country KE:
	(2402 - 2482 @ 40), (N/A, 20)
	(5735 - 5835 @ 40), (N/A, 30)

country KH:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (N/A, 20)
	(5250 - 5330 @ 40), (N/A, 20), DFS
	(5490 - 5710 @ 40), (N/A, 27), DFS

country KP:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5330 @ 40), (3, 20)
	(5160 - 5250 @ 40), (3, 20), DFS
	(5490 - 5630 @ 40), (3, 30), DFS
	(5735 - 5815 @ 40), (3, 30)

country KR:
	(2402 - 2482 @ 20), (N/A, 20)
	(5170 - 5250 @ 80), (3, 20)
	(5250 - 5330 @ 80), (3, 20), DFS
	(5490 - 5630 @ 80), (3, 30), DFS
	(5735 - 5815 @ 80), (3, 30)

country KW:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (N/A, 20)
	(5250 - 5330 @ 80), (N/A, 20), DFS

country KZ:
	(2402 - 2482 @ 40), (N/A, 20)

country LB:
	(2402 - 2482 @ 40), (N/A, 20)
	(5735 - 5835 @ 40), (N/A, 30)

country LI: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (N/A, 20)
	(5250 - 5330 @ 40), (N/A, 20), DFS
	(5490 - 5710 @ 40), (N/A, 27), DFS

country LK:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 20), (3, 17)
	(5250 - 5330 @ 20), (3, 20), DFS
	(5490 - 5710 @ 20), (3, 20), DFS
	(5735 - 5835 @ 20), (3, 30)

country LT: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (N/A, 20)
	(5250 - 5330 @ 40), (N/A, 20), DFS
	(5490 - 5710 @ 40), (N/A, 27), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country LU: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (N/A, 20)
	(5250 - 5330 @ 80), (N/A, 20), DFS
	(5490 - 5710 @ 80), (N/A, 27), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country LV: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (N/A, 20)
	(5250 - 5330 @ 40), (N/A, 20), DFS
	(5490 - 5710 @ 40), (N/A, 27), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country MC: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (N/A, 18)
	(5250 - 5330 @ 40), (N/A, 18), DFS

country MA:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (N/A, 23)
	(5735 - 5835 @ 80), (N/A, 23)

country MO:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (3, 23)
	(5250 - 5330 @ 40), (3, 23), DFS
	(5735 - 5835 @ 40), (3, 30)

country MK: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (N/A, 20)
	(5250 - 5330 @ 40), (N/A, 20), DFS
	(5490 - 5710 @ 40), (N/A, 27), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country MT: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (N/A, 20)
	(5250 - 5330 @ 40), (N/A, 20), DFS
	(5490 - 5710 @ 40), (N/A, 27), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country MY:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (N/A, 17)
	(5250 - 5330 @ 80), (N/A, 23), DFS
	(5735 - 5835 @ 80), (N/A, 30)

country MX:
	(2402 - 2472 @ 40), (3, 27)
	(5170 - 5250 @ 80), (3, 17)
	(5250 - 5330 @ 80), (3, 24), DFS
	(5490 - 5710 @ 80), (3, 24), DFS
	(5735 - 5835 @ 80), (3, 30)

country NL: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (N/A, 20), NO-OUTDOOR
	(5250 - 5330 @ 80), (N/A, 20), NO-OUTDOOR, DFS
	(5490 - 5710 @ 80), (N/A, 27), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country NO: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (N/A, 20)
	(5250 - 5330 @ 40), (N/A, 20), DFS
	(5490 - 5710 @ 40), (N/A, 27), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country NP:
	(2402 - 2482 @ 40), (N/A, 20)
	(5735 - 5835 @ 40), (N/A, 30)

country NZ:
	(2402 - 2482 @ 40), (N/A, 30)
	(5170 - 5250 @ 80), (3, 17)
	(5250 - 5330 @ 80), (3, 24), DFS
	(5490 - 5710 @ 80), (3, 24), DFS
	(5735 - 5835 @ 80), (3, 30)

country OM:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (3, 17)
	(5250 - 5330 @ 40), (3, 20), DFS
	(5490 - 5710 @ 40), (3, 20), DFS
	(5735 - 5835 @ 40), (3, 30)

country PA:
	(2402 - 2472 @ 40), (3, 27)
	(5170 - 5250 @ 40), (3, 17)
	(5250 - 5330 @ 40), (3, 23), DFS
	(5735 - 5835 @ 40), (3, 30)

country PE:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (3, 17)
	(5250 - 5330 @ 80), (3, 24), DFS
	(5490 - 5710 @ 80), (3, 24), DFS
	(5735 - 5835 @ 80), (3, 30)

country PG:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (3, 17)
	(5250 - 5330 @ 40), (3, 23), DFS
	(5735 - 5835 @ 40), (3, 30)

country PH:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (3, 17)
	(5250 - 5330 @ 80), (3, 24), DFS
	(5490 - 5710 @ 80), (3, 24), DFS
	(5735 - 5835 @ 80), (3, 30)

country PK:
	(2402 - 2482 @ 40), (N/A, 20)
	(5735 - 5835 @ 40), (N/A, 30)

country PL: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (N/A, 20)
	(5250 - 5330 @ 80), (N/A, 20), DFS
	(5490 - 5710 @ 80), (N/A, 27), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country PT: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (N/A, 20)
	(5250 - 5330 @ 80), (N/A, 20), DFS
	(5490 - 5710 @ 80), (N/A, 27), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country PR:
	(2402 - 2472 @ 40), (3, 27)
	(5170 - 5250 @ 80), (3, 17)
	(5250 - 5330 @ 80), (3, 24), DFS
	(5490 - 5710 @ 80), (3, 24), DFS
	(5735 - 5835 @ 80), (3, 30)

country QA:
	(2402 - 2482 @ 40), (N/A, 20)
	(5735 - 5835 @ 40), (N/A, 30)

country RO: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (N/A, 20)
	(5250 - 5330 @ 40), (N/A, 20), DFS
	(5490 - 5710 @ 40), (N/A, 27), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR


# Source:
# http://www.ratel.rs/upload/documents/Plan_namene/Plan_namene-sl_glasnik.pdf
country RS:
	(2400 - 2483.5 @ 40), (N/A, 100 mW)
	(5150 - 5350 @ 40), (N/A, 200 mW), NO-OUTDOOR
	(5470 - 5725 @ 20), (3, 1000 mW), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country RU:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5330 @ 40), (N/A, 20)
	(5650 - 5710 @ 40), (N/A, 30)
	(5735 - 5835 @ 40), (N/A, 30)

country RW:
	(2402 - 2482 @ 40), (N/A, 20)
	(5735 - 5835 @ 40), (N/A, 30)

country SA:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (3, 17)
	(5250 - 5330 @ 80), (3, 24), DFS
	(5490 - 5710 @ 80), (3, 24), DFS
	(5735 - 5835 @ 80), (3, 30)

country SE: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (N/A, 20)
	(5250 - 5330 @ 80), (N/A, 20), DFS
	(5490 - 5710 @ 80), (N/A, 27), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country SG:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (3, 17)
	(5250 - 5330 @ 80), (3, 24), DFS
	(5490 - 5710 @ 80), (3, 24), DFS
	(5735 - 5835 @ 80), (3, 30)

country SI: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (N/A, 20)
	(5250 - 5330 @ 40), (N/A, 20), DFS
	(5490 - 5710 @ 40), (N/A, 27), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country SK: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (N/A, 20)
	(5250 - 5330 @ 80), (N/A, 20), DFS
	(5490 - 5710 @ 80), (N/A, 27), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country SV:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 20), (3, 17)
	(5250 - 5330 @ 20), (3, 23), DFS
	(5735 - 5835 @ 20), (3, 30)

country SY:
	(2402 - 2482 @ 40), (N/A, 20)

country TW:
	(2402 - 2472 @ 40), (3, 27)
	(5270 - 5330 @ 40), (3, 17), DFS
	(5490 - 5710 @ 80), (3, 30), DFS
	(5735 - 5815 @ 80), (3, 30)

country TH:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (3, 17)
	(5250 - 5330 @ 80), (3, 24), DFS
	(5490 - 5710 @ 80), (3, 24), DFS
	(5735 - 5835 @ 80), (3, 30)

country TT:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (3, 17)
	(5250 - 5330 @ 40), (3, 20), DFS
	(5490 - 5710 @ 40), (3, 20), DFS
	(5735 - 5835 @ 40), (3, 30)

country TN:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 20), (N/A, 20)
	(5250 - 5330 @ 20), (N/A, 20), DFS

country TR: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (N/A, 20)
	(5250 - 5330 @ 80), (N/A, 20), DFS
	(5490 - 5710 @ 80), (N/A, 27), DFS
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR
 
# Source:
# #914 / 06 Sep 2007: http://www.ucrf.gov.ua/uk/doc/nkrz/1196068874
# #1174 / 23 Oct 2008: http://www.nkrz.gov.ua/uk/activities/ruling/1225269361
# (appendix 8)
# Listed 5GHz range is a lowest common denominator for all related
# rules in the referenced laws. Such a range is used because of
# disputable definitions there.
country UA:
	(2400 - 2483.5 @ 40), (N/A, 20), NO-OUTDOOR
	(5150 - 5350 @ 40), (N/A, 20), NO-OUTDOOR
	# 60 gHz band channels 1-4, ref: Etsi En 302 567
	(57240 - 65880 @ 2160), (N/A, 40), NO-OUTDOOR

country US: DFS-FCC
	(2402 - 2472 @ 40), (3, 27)
	(5170 - 5250 @ 80), (3, 17)
	(5250 - 5330 @ 80), (3, 24), DFS
	(5490 - 5600 @ 80), (3, 24), DFS
	(5650 - 5710 @ 40), (3, 24), DFS
	(5735 - 5835 @ 80), (3, 30)
	# 60g band
	# reference: http://cfr.regstoday.com/47cfr15.aspx#47_CFR_15p255
	# channels 1,2,3, EIRP=40dBm(43dBm peak)
	(57240 - 63720 @ 2160), (N/A, 40)

country UY:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 40), (3, 17)
	(5250 - 5330 @ 40), (3, 20), DFS
	(5490 - 5710 @ 40), (3, 20), DFS
	(5735 - 5835 @ 40), (3, 30)

country UZ:
	(2402 - 2472 @ 40), (3, 27)
	(5170 - 5250 @ 40), (3, 17)
	(5250 - 5330 @ 40), (3, 20), DFS
	(5490 - 5710 @ 40), (3, 20), DFS
	(5735 - 5835 @ 40), (3, 30)

country VE:
	(2402 - 2482 @ 40), (N/A, 20)
	(5735 - 5815 @ 40), (N/A, 23)

country VN:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (3, 17)
	(5250 - 5330 @ 80), (3, 24), DFS
	(5490 - 5710 @ 80), (3, 24), DFS
	(5735 - 5835 @ 80), (3, 30)

country YE:
	(2402 - 2482 @ 40), (N/A, 20)

country ZA:
	(2402 - 2482 @ 40), (N/A, 20)
	(5170 - 5250 @ 80), (3, 17)
	(5250 - 5330 @ 80), (3, 24), DFS
	(5490 - 5710 @ 80), (3, 24), DFS
	(5735 - 5835 @ 80), (3, 30)

country ZW:
	(2402 - 2482 @ 40), (N/A, 20)


[-- Attachment #3: Type: text/plain, Size: 146 bytes --]

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-05-22  7:54                                 ` RE : " Vu Hai NGUYEN
@ 2014-05-22  8:06                                   ` Vu Hai NGUYEN
  2014-05-22 12:18                                     ` Janusz Dziedzic
  0 siblings, 1 reply; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-05-22  8:06 UTC (permalink / raw)
  To: Vu Hai NGUYEN, Janusz Dziedzic
  Cc: Patrick CARNEIRO RODRIGUEZ, Michal Kazior, ath10k

[-- Attachment #1: Type: text/plain, Size: 749 bytes --]


>>Thanks for logs,

>>Seems hostapd try to send probe resp:

>>1262304186.542126: nl80211: send_mlme - noack=1 freq=0 no_cck=0 offchanok=0 wait
>>_time=0 fc=0x50 nlmode=3

>>0x50 - probe resp

>>I think you will have to check ailogs.

>Thanks, I'll try it with wireshark but can you give me the detail that which information that I've to look in the frame? We tried it before but there are a lot of frames
and i'm confused.

We could see the probe request from the station but not the probe response from the AP. 
THere are 2 airlogs that we captured from wireshark for the canal36 (non DFS) and canal 56 (DFS) in the attached file

NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE


[-- Attachment #2: canal36 --]
[-- Type: application/octet-stream, Size: 104475 bytes --]

[-- Attachment #3: canal56 --]
[-- Type: application/octet-stream, Size: 86422 bytes --]

[-- Attachment #4: Type: text/plain, Size: 146 bytes --]

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-05-22  8:06                                   ` Vu Hai NGUYEN
@ 2014-05-22 12:18                                     ` Janusz Dziedzic
  2014-05-22 12:25                                       ` Janusz Dziedzic
  0 siblings, 1 reply; 134+ messages in thread
From: Janusz Dziedzic @ 2014-05-22 12:18 UTC (permalink / raw)
  To: Vu Hai NGUYEN; +Cc: Patrick CARNEIRO RODRIGUEZ, Michal Kazior, ath10k

On 22 May 2014 10:06, Vu Hai NGUYEN <vh.nguyen@actiasodielec.fr> wrote:
>
>>>Thanks for logs,
>
>>>Seems hostapd try to send probe resp:
>
>>>1262304186.542126: nl80211: send_mlme - noack=1 freq=0 no_cck=0 offchanok=0 wait
>>>_time=0 fc=0x50 nlmode=3
>
>>>0x50 - probe resp
>
>>>I think you will have to check ailogs.
>
>>Thanks, I'll try it with wireshark but can you give me the detail that which information that I've to look in the frame? We tried it before but there are a lot of frames
> and i'm confused.
>
> We could see the probe request from the station but not the probe response from the AP.
> THere are 2 airlogs that we captured from wireshark for the canal36 (non DFS) and canal 56 (DFS) in the attached file
>

Could you get trace log with debug_mask = 0xffffff3f?

You can also start hostapd with -ddt -T then we will have all logs in trace :)
You can also add traces from mac80211, cfg80211

Here description:
http://wireless.kernel.org/en/users/Drivers/ath10k/debug


BR
Janusz

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-05-22 12:18                                     ` Janusz Dziedzic
@ 2014-05-22 12:25                                       ` Janusz Dziedzic
  2014-05-22 14:40                                         ` RE : " Vu Hai NGUYEN
  0 siblings, 1 reply; 134+ messages in thread
From: Janusz Dziedzic @ 2014-05-22 12:25 UTC (permalink / raw)
  To: Vu Hai NGUYEN; +Cc: Patrick CARNEIRO RODRIGUEZ, Michal Kazior, ath10k

On 22 May 2014 14:18, Janusz Dziedzic <janusz.dziedzic@tieto.com> wrote:
> On 22 May 2014 10:06, Vu Hai NGUYEN <vh.nguyen@actiasodielec.fr> wrote:
>>
>>>>Thanks for logs,
>>
>>>>Seems hostapd try to send probe resp:
>>
>>>>1262304186.542126: nl80211: send_mlme - noack=1 freq=0 no_cck=0 offchanok=0 wait
>>>>_time=0 fc=0x50 nlmode=3
>>
>>>>0x50 - probe resp
>>
>>>>I think you will have to check ailogs.
>>
>>>Thanks, I'll try it with wireshark but can you give me the detail that which information that I've to look in the frame? We tried it before but there are a lot of frames
>> and i'm confused.
>>
>> We could see the probe request from the station but not the probe response from the AP.
>> THere are 2 airlogs that we captured from wireshark for the canal36 (non DFS) and canal 56 (DFS) in the attached file
>>
>
> Could you get trace log with debug_mask = 0xffffff3f?
>
> You can also start hostapd with -ddt -T then we will have all logs in trace :)
> You can also add traces from mac80211, cfg80211
>
> Here description:
> http://wireless.kernel.org/en/users/Drivers/ath10k/debug
>

BTW, seems you have wrong power constraint configuration - best remove
this from hostapd.conf file.

BR
Janusz

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-05-22 12:25                                       ` Janusz Dziedzic
@ 2014-05-22 14:40                                         ` Vu Hai NGUYEN
  2014-05-22 14:45                                           ` Vu Hai NGUYEN
                                                             ` (2 more replies)
  0 siblings, 3 replies; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-05-22 14:40 UTC (permalink / raw)
  To: Janusz Dziedzic; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k

[-- Attachment #1: Type: text/plain, Size: 1940 bytes --]

> Could you get trace log with debug_mask = 0xffffff3f?
>
> You can also start hostapd with -ddt -T then we will have all logs in trace :)
> You can also add traces from mac80211, cfg80211
>
> Here description:
> http://wireless.kernel.org/en/users/Drivers/ath10k/debug
>

>BTW, seems you have wrong power constraint configuration - best remove
>this from hostapd.conf file.

I didn't have the option -T in my hostapd, only those: 
options:                                                                        
   -h   show this usage                                                         
   -d   show more debug messages (-dd for even more)                            
   -B   run daemon in the background                                            
   -e   entropy file                                                            
   -g   global control interface path                                           
   -G   group for control interfaces                                            
   -P   PID file                                                                
   -K   include key data in debug messages                                      
   -t   include timestamps in some debug messages                               
   -v   show hostapd version                  
Is it because I don't have package trace installed in my kernel???? 

You can found in the attached file debug msg from hostapd (apd_52.txt), wpa_supp (wpa_52.txt), dmesg from AP (dmesg_apd.txt) and dmesg from STA (dmesg_wpa.txt)  with the debugmask=0xffffff3f
with the airlog of wireshark (airelog_52).
Small question: If I use the firmware version 999, the frame of Probe Request from Station have  Mac address source: SecureWo_12:34:56 and with the version 10.1.467-2.1 I get the true address mac, is this normal?

NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE





[-- Attachment #2: apd_52.txt --]
[-- Type: text/plain, Size: 21905 bytes --]

1262304601.399042: random: Trying to read entropy from /dev/random
1262304601.399560: Configuration file: /etc/hostapd.conf
1262304601.401296: ctrl_interface_group=0
1262304601.401616: eapol_version=1
1262304601.403406: rfkill: Cannot open RFKILL control device
1262304601.403678: nl80211: RFKILL status not available
1262304601.404430: nl80211: Supported cipher 00-0f-ac:1
1262304601.404680: nl80211: Supported cipher 00-0f-ac:5
1262304601.404817: nl80211: Supported cipher 00-0f-ac:2
1262304601.405039: nl80211: Supported cipher 00-0f-ac:4
1262304601.405199: nl80211: Supported cipher 00-0f-ac:6
1262304601.405601: nl80211: Using driver-based off-channel TX
1262304601.405848: nl80211: interface wlan0 in phy phy0
1262304601.406155: nl80211: Set mode ifindex 12 iftype 3 (AP)
1262304601.406498: nl80211: Failed to set interface 12 to mode 3: -16 (Device or resource busy)
1262304601.406803: nl80211: Try mode change after setting interface down
1262304602.015977: nl80211: Set mode ifindex 12 iftype 3 (AP)
1262304603.351275: nl80211: Mode change succeeded while interface is down
1262304603.352135: nl80211: Setup AP(wlan0) - device_ap_sme=0 use_monitor=1
1262304603.352390: nl80211: Create interface iftype 6 (MONITOR)
1262304603.357789: nl80211: New interface mon.wlan0 created: ifindex=14
1262304603.358099: nl80211: Add own interface ifindex 14
1262304603.358263: nl80211: if_indices[16]: 14
1262304603.359157: nl80211: Interface wlan0 is in bridge br0
1262304603.359492: nl80211: Add own interface ifindex 13
1262304603.359740: nl80211: if_indices[16]: 14 13
1262304603.359914: nl80211: Add own interface ifindex 12
1262304603.360091: nl80211: if_indices[16]: 14 13 12
1262304603.360420: phy: phy0
1262304603.361983: BSS count 1, BSSID mask 00:00:00:00:00:00 (0 bits)
1262304603.362272: wlan0: interface state UNINITIALIZED->COUNTRY_UPDATE
1262304603.362684: Previous country code FR, new country code FR 
1262304603.363693: nl80211: Regulatory information - country=FR (DFS-ETSI)
1262304603.364981: nl80211: 2402-2482 @ 40 MHz 20 mBm
1262304603.365256: nl80211: 5170-5250 @ 80 MHz 20 mBm
1262304603.365404: nl80211: 5250-5330 @ 80 MHz 20 mBm (DFS)
1262304603.365544: nl80211: 5490-5710 @ 80 MHz 27 mBm (DFS)
1262304603.365686: nl80211: 57240-65880 @ 2160 MHz 40 mBm (no outdoor)
1262304603.365910: nl80211: Added 802.11b mode based on 802.11g information
1262304603.366063: Allowed channel: mode=1 chan=1 freq=2412 MHz max_tx_power=20 dBm
1262304603.366288: Allowed channel: mode=1 chan=2 freq=2417 MHz max_tx_power=20 dBm
1262304603.369491: Allowed channel: mode=1 chan=3 freq=2422 MHz max_tx_power=20 dBm
1262304603.369792: Allowed channel: mode=1 chan=4 freq=2427 MHz max_tx_power=20 dBm
1262304603.369935: Allowed channel: mode=1 chan=5 freq=2432 MHz max_tx_power=20 dBm
1262304603.370182: Allowed channel: mode=1 chan=6 freq=2437 MHz max_tx_power=20 dBm
1262304603.370384: Allowed channel: mode=1 chan=7 freq=2442 MHz max_tx_power=20 dBm
1262304603.370561: Allowed channel: mode=1 chan=8 freq=2447 MHz max_tx_power=20 dBm
1262304603.370703: Allowed channel: mode=1 chan=9 freq=2452 MHz max_tx_power=20 dBm
1262304603.370901: Allowed channel: mode=1 chan=10 freq=2457 MHz max_tx_power=20 dBm
1262304603.371074: Allowed channel: mode=1 chan=11 freq=2462 MHz max_tx_power=20 dBm
1262304603.371247: Allowed channel: mode=1 chan=12 freq=2467 MHz max_tx_power=20 dBm
1262304603.371421: Allowed channel: mode=1 chan=13 freq=2472 MHz max_tx_power=20 dBm
1262304603.371593: Allowed channel: mode=2 chan=36 freq=5180 MHz max_tx_power=20 dBm
1262304603.371764: Allowed channel: mode=2 chan=40 freq=5200 MHz max_tx_power=20 dBm
1262304603.371988: Allowed channel: mode=2 chan=44 freq=5220 MHz max_tx_power=20 dBm
1262304603.372128: Allowed channel: mode=2 chan=48 freq=5240 MHz max_tx_power=20 dBm
1262304603.372339: Allowed channel: mode=2 chan=52 freq=5260 MHz max_tx_power=20 dBm (DFS state = usable)
1262304603.372521: Allowed channel: mode=2 chan=56 freq=5280 MHz max_tx_power=20 dBm (DFS state = usable)
1262304603.372699: Allowed channel: mode=2 chan=60 freq=5300 MHz max_tx_power=20 dBm (DFS state = usable)
1262304603.372884: Allowed channel: mode=2 chan=64 freq=5320 MHz max_tx_power=20 dBm (DFS state = usable)
1262304603.373068: Allowed channel: mode=2 chan=100 freq=5500 MHz max_tx_power=27 dBm (DFS state = usable)
1262304603.373252: Allowed channel: mode=2 chan=104 freq=5520 MHz max_tx_power=27 dBm (DFS state = usable)
1262304603.373293: Allowed channel: mode=2 chan=108 freq=5540 MHz max_tx_power=27 dBm (DFS state = usable)
1262304603.373321: Allowed channel: mode=2 chan=112 freq=5560 MHz max_tx_power=27 dBm (DFS state = usable)
1262304603.373346: Allowed channel: mode=2 chan=116 freq=5580 MHz max_tx_power=27 dBm (DFS state = usable)
1262304603.373372: Allowed channel: mode=2 chan=120 freq=5600 MHz max_tx_power=27 dBm (DFS state = usable)
1262304603.373598: Allowed channel: mode=2 chan=124 freq=5620 MHz max_tx_power=27 dBm (DFS state = usable)
1262304603.373638: Allowed channel: mode=2 chan=128 freq=5640 MHz max_tx_power=27 dBm (DFS state = usable)
1262304603.373665: Allowed channel: mode=2 chan=132 freq=5660 MHz max_tx_power=27 dBm (DFS state = usable)
1262304603.373690: Allowed channel: mode=2 chan=136 freq=5680 MHz max_tx_power=27 dBm (DFS state = usable)
1262304603.373715: Allowed channel: mode=2 chan=140 freq=5700 MHz max_tx_power=27 dBm (DFS state = usable)
1262304603.373739: Allowed channel: mode=0 chan=1 freq=2412 MHz max_tx_power=20 dBm
1262304603.373761: Allowed channel: mode=0 chan=2 freq=2417 MHz max_tx_power=20 dBm
1262304603.373784: Allowed channel: mode=0 chan=3 freq=2422 MHz max_tx_power=20 dBm
1262304603.373806: Allowed channel: mode=0 chan=4 freq=2427 MHz max_tx_power=20 dBm
1262304603.374063: Allowed channel: mode=0 chan=5 freq=2432 MHz max_tx_power=20 dBm
1262304603.374105: Allowed channel: mode=0 chan=6 freq=2437 MHz max_tx_power=20 dBm
1262304603.374131: Allowed channel: mode=0 chan=7 freq=2442 MHz max_tx_power=20 dBm
1262304603.374154: Allowed channel: mode=0 chan=8 freq=2447 MHz max_tx_power=20 dBm
1262304603.374176: Allowed channel: mode=0 chan=9 freq=2452 MHz max_tx_power=20 dBm
1262304603.374197: Allowed channel: mode=0 chan=10 freq=2457 MHz max_tx_power=20 dBm
1262304603.374218: Allowed channel: mode=0 chan=11 freq=2462 MHz max_tx_power=20 dBm
1262304603.374240: Allowed channel: mode=0 chan=12 freq=2467 MHz max_tx_power=20 dBm
1262304603.374262: Allowed channel: mode=0 chan=13 freq=2472 MHz max_tx_power=20 dBm
1262304603.374307: hw vht capab: 0x338001b2, conf vht capab: 0x0
1262304603.374558: wlan0: interface state COUNTRY_UPDATE->HT_SCAN
1262304603.374597: Scan for neighboring BSSes prior to enabling 40 MHz channel
1262304603.374631: 40 MHz affected channel range: [5250,5290] MHz
1262304603.374704: wlan0: nl80211: scan request
1262304603.374765: nl80211: Scan frequency 5260 MHz
1262304603.375000: nl80211: Scan frequency 5280 MHz
1262304603.375696: Scan requested (ret=0) - scan timeout 10 seconds
1262304603.375979: Interface initialization will be completed in a callback
1262304603.376196: ctrl_iface not configured!
1262304603.376397: random: Got 20/20 bytes from /dev/random
1262304603.378963: RTM_NEWLINK: ifi_index=12 ifname=wlan0 operstate=2 linkmode=0 master=13 ifi_flags=0x1002 ()
1262304603.379356: nl80211: Ignore interface down event since interface wlan0 is up
1262304603.379428: RTM_NEWLINK: ifi_index=12 ifname=wlan0 master=13 operstate=2 ifi_flags=0x1002 ()
1262304603.379713: nl80211: Ignore interface down event since interface wlan0 is up
1262304603.379781: RTM_NEWLINK: ifi_index=12 ifname=wlan0 master=13 operstate=2 ifi_flags=0x1002 ()
1262304603.379830: nl80211: Ignore interface down event since interface wlan0 is up
1262304603.380072: RTM_NEWLINK: ifi_index=12 ifname=wlan0 operstate=2 linkmode=0 master=13 ifi_flags=0x1003 ([UP])
1262304603.380155: RTM_NEWLINK: ifi_index=12 ifname=wlan0 master=13 operstate=2 ifi_flags=0x1003 ([UP])
1262304603.380218: nl80211: Add ifindex 13 for bridge br0
1262304603.380291: nl80211: Add own interface ifindex 13
1262304603.380466: nl80211: ifindex 13 already in the list
1262304603.380519: RTM_NEWLINK: ifi_index=14 ifname=mon.wlan0 operstate=2 linkmode=0 ifi_flags=0x1002 ()
1262304603.380581: nl80211: Ignore interface down event since interface mon.wlan0 is up
1262304603.380631: RTM_NEWLINK: ifi_index=14 ifname=mon.wlan0 operstate=0 linkmode=0 ifi_flags=0x11043 ([UP][RUNNING][LOWER_UP])
1262304603.380845: wlan0: Event INTERFACE_STATUS (5) received
1262304603.380882: Unknown event 5
1262304603.380923: nl80211: Event message available
1262304603.381003: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
1262304603.381187: wlan0: nl80211: Scan trigger
1262304603.381231: wlan0: Event SCAN_STARTED (49) received
1262304603.381255: Unknown event 49
1262304603.970906: nl80211: send_mlme - noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 nlmode=3
1262304603.970960: nl80211: send_mlme -> send_frame
1262304603.970972: nl80211: send_frame - Use bss->freq=0
1262304603.970983: nl80211: send_frame(freq=0 bss->freq=0) -> send_mntr
1262304603.971539: wlan0: Event TX_STATUS (18) received
1262304603.991176: nl80211: send_mlme - noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 nlmode=3
1262304603.991225: nl80211: send_mlme -> send_frame
1262304603.991238: nl80211: send_frame - Use bss->freq=0
1262304603.991250: nl80211: send_frame(freq=0 bss->freq=0) -> send_mntr
1262304603.991736: wlan0: Event TX_STATUS (18) received
1262304604.013986: nl80211: send_mlme - noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 nlmode=3
1262304604.014033: nl80211: send_mlme -> send_frame
1262304604.014046: nl80211: send_frame - Use bss->freq=0
1262304604.014058: nl80211: send_frame(freq=0 bss->freq=0) -> send_mntr
1262304604.014528: wlan0: Event TX_STATUS (18) received
1262304604.034421: nl80211: send_mlme - noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 nlmode=3
1262304604.034471: nl80211: send_mlme -> send_frame
1262304604.034485: nl80211: send_frame - Use bss->freq=0
1262304604.034497: nl80211: send_frame(freq=0 bss->freq=0) -> send_mntr
1262304604.035003: wlan0: Event TX_STATUS (18) received
1262304604.077641: nl80211: send_mlme - noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 nlmode=3
1262304604.077694: nl80211: send_mlme -> send_frame
1262304604.077708: nl80211: send_frame - Use bss->freq=0
1262304604.077720: nl80211: send_frame(freq=0 bss->freq=0) -> send_mntr
1262304604.078250: wlan0: Event TX_STATUS (18) received
1262304604.100319: nl80211: send_mlme - noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 nlmode=3
1262304604.100361: nl80211: send_mlme -> send_frame
1262304604.100375: nl80211: send_frame - Use bss->freq=0
1262304604.100386: nl80211: send_frame(freq=0 bss->freq=0) -> send_mntr
1262304604.100845: wlan0: Event TX_STATUS (18) received
1262304604.165092: nl80211: send_mlme - noack=1 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 nlmode=3
1262304604.165134: nl80211: send_mlme -> send_frame
1262304604.165147: nl80211: send_frame - Use bss->freq=0
1262304604.165159: nl80211: send_frame(freq=0 bss->freq=0) -> send_mntr
1262304604.165624: wlan0: Event TX_STATUS (18) received
1262304604.741479: nl80211: Event message available
1262304604.741572: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
1262304604.741602: wlan0: nl80211: New scan results available
1262304604.741639: nl80211: Scan included frequencies: 5260 5280
1262304604.741665: wlan0: Event SCAN_RESULTS (3) received
1262304604.741783: nl80211: Received scan results (0 BSSes)
1262304604.742058: HT40: control channel: 52  secondary channel: 56
1262304604.742082: Completing interface initialization
1262304604.742095: Mode: IEEE 802.11a  Channel: 52  Frequency: 5260 MHz
1262304604.742120: DFS 2 channels required radar detection
1262304604.742139: DFS all channels available, (SKIP CAC): no
1262304604.742151: DFS 0 chans unavailable - choose other channel: no
1262304604.742165: wlan0: interface state HT_SCAN->DFS
1262304604.742176: DFS start CAC on 5260 MHz
1262304604.742211: wlan0: DFS-CAC-START freq=5260 chan=52 sec_chan=1, width=0, seg0=0, seg1=0, cac_time=60s
1262304604.742238: nl80211: Start radar detection (CAC) 5260 MHz (ht_enabled=1, vht_enabled=0, bandwidth=40 MHz, cf1=5270 MHz, cf2=0 MHz)
1262304664.786599: nl80211: Event message available
1262304664.786701: nl80211: Drv Event 94 (NL80211_CMD_RADAR_DETECT) received for wlan0
1262304664.786737: nl80211: DFS event on freq 5260 MHz, ht: 1, offset: 1, width: 2, cf1: 5270MHz, cf2: 0MHz
1262304664.786774: wlan0: Event DFS_CAC_FINISHED (45) received
1262304664.786787: DFS CAC finished on 5260 MHz
1262304664.786811: wlan0: DFS-CAC-COMPLETED success=1 freq=5260 ht_enabled=1 chan_offset=1 chan_width=2 cf1=5270 cf2=0
1262304664.786825: DFS freq: 5260MHz, n_chans: 2
1262304664.786837: set_dfs_state 0x300 for 5260 MHz
1262304664.786849: set_dfs_state 0x300 for 5280 MHz
1262304664.786861: Completing interface initialization
1262304664.786873: Mode: IEEE 802.11a  Channel: 52  Frequency: 5260 MHz
1262304664.786888: DFS 2 channels required radar detection
1262304664.786899: DFS all channels available, (SKIP CAC): yes
1262304664.786919: nl80211: Set freq 5260 (ht_enabled=1, vht_enabled=0, bandwidth=40 MHz, cf1=5270 MHz, cf2=0 MHz)
1262304664.787038: RATE[0] rate=60 flags=0x1
1262304664.787056: RATE[1] rate=90 flags=0x0
1262304664.787069: RATE[2] rate=120 flags=0x1
1262304664.787079: RATE[3] rate=180 flags=0x0
1262304664.787091: RATE[4] rate=240 flags=0x1
1262304664.787101: RATE[5] rate=360 flags=0x0
1262304664.787112: RATE[6] rate=480 flags=0x0
1262304664.787122: RATE[7] rate=540 flags=0x0
1262304664.787286: hostapd_setup_bss(hapd=0x135d20 (wlan0), first=1)
1262304664.787322: wlan0: Flushing old station entries
1262304664.787341: nl80211: flush -> DEL_STATION wlan0 (all)
1262304664.787459: wlan0: Deauthenticate all stations
1262304664.787481: nl80211: send_mlme - noack=0 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0xc0 nlmode=3
1262304664.787499: nl80211: send_mlme -> send_frame
1262304664.787510: nl80211: send_frame - Use bss->freq=5260
1262304664.787521: nl80211: send_frame(freq=5260 bss->freq=5260) -> send_mntr
1262304664.787595: wpa_driver_nl80211_set_key: ifindex=12 (wlan0) alg=0 addr=(nil) key_idx=0 set_tx=0 seq_len=0 key_len=0
1262304664.787702: wpa_driver_nl80211_set_key: ifindex=12 (wlan0) alg=0 addr=(nil) key_idx=1 set_tx=0 seq_len=0 key_len=0
1262304664.787781: wpa_driver_nl80211_set_key: ifindex=12 (wlan0) alg=0 addr=(nil) key_idx=2 set_tx=0 seq_len=0 key_len=0
1262304664.787855: wpa_driver_nl80211_set_key: ifindex=12 (wlan0) alg=0 addr=(nil) key_idx=3 set_tx=0 seq_len=0 key_len=0
1262304664.787927: Using interface wlan0 with hwaddr 04:f0:21:0e:38:be and ssid "ath10k"
1262304664.787953: Deriving WPA PSK based on passphrase
1262304664.787979: SSID - hexdump_ascii(len=6):
     61 74 68 31 30 6b                                 ath10k          
1262304664.788038: PSK (ASCII passphrase) - hexdump_ascii(len=13): [REMOVED]
1262304665.017463: PSK (from passphrase) - hexdump(len=32): [REMOVED]
1262304665.018036: nl80211: Set beacon (beacon_set=0)
1262304665.018254: nl80211: Beacon head - hexdump(len=57): 80 00 00 00 ff ff ff ff ff ff 04 f0 21 0e 38 be 04 f0 21 0e 38 be 00 00 00 00 00 00 00 00 00 00 64 00 01 01 00 06 61 74 68 31 30 6b 01 08 8c 12 98 24 b0 48 60 6c 03 01 34
1262304665.018518: nl80211: Beacon tail - hexdump(len=103): 07 0a 46 52 20 24 08 14 64 0b 1b 00 20 01 03 2d 1a e2 19 1b ff ff ff 00 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 34 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00
1262304665.018838: nl80211: ifindex=12
1262304665.018972: nl80211: beacon_int=100
1262304665.019145: nl80211: dtim_period=2
1262304665.019315: nl80211: ssid - hexdump_ascii(len=6):
     61 74 68 31 30 6b                                 ath10k          
1262304665.019665: nl80211: hidden SSID not in use
1262304665.019828: nl80211: privacy=0
1262304665.019991: nl80211: auth_algs=0x1
1262304665.020153: nl80211: wpa_version=0x0
1262304665.020312: nl80211: key_mgmt_suites=0x2
1262304665.020474: nl80211: pairwise_ciphers=0x1
1262304665.020643: nl80211: group_cipher=0x1
1262304665.020821: nl80211: beacon_ies - hexdump(len=10): 7f 08 00 00 00 00 00 00 00 40
1262304665.021008: nl80211: proberesp_ies - hexdump(len=10): 7f 08 00 00 00 00 00 00 00 40
1262304665.021160: nl80211: assocresp_ies - hexdump(len=10): 7f 08 00 00 00 00 00 00 00 40
1262304666.022539: nl80211: Set wlan0 operstate 0->1 (UP)
1262304666.022591: netlink: Operstate: ifindex=12 linkmode=-1 (no change), operstate=6 (IF_OPER_UP)
1262304666.023242: wlan0: interface state DFS->ENABLED
1262304666.023281: wlan0: AP-ENABLED 
1262304666.023294: wlan0: Setup of interface done.
1262304666.042893: RTM_NEWLINK: ifi_index=12 ifname=wlan0 master=13 operstate=6 ifi_flags=0x11043 ([UP][RUNNING][LOWER_UP])
1262304666.043000: nl80211: Add ifindex 13 for bridge br0
1262304666.043018: nl80211: Add own interface ifindex 13
1262304666.043031: nl80211: ifindex 13 already in the list
1262304666.043054: RTM_NEWLINK: ifi_index=12 ifname=wlan0 master=13 operstate=6 ifi_flags=0x11043 ([UP][RUNNING][LOWER_UP])
1262304666.043094: nl80211: Add ifindex 13 for bridge br0
1262304666.043109: nl80211: Add own interface ifindex 13
1262304666.043120: nl80211: ifindex 13 already in the list
1262304666.043142: RTM_NEWLINK: ifi_index=12 ifname=wlan0 master=13 operstate=6 ifi_flags=0x11043 ([UP][RUNNING][LOWER_UP])
1262304666.043180: nl80211: Add ifindex 13 for bridge br0
1262304666.043195: nl80211: Add own interface ifindex 13
1262304666.043207: nl80211: ifindex 13 already in the list
1262304666.043231: RTM_NEWLINK: ifi_index=12 ifname=wlan0 operstate=6 linkmode=0 master=13 ifi_flags=0x11043 ([UP][RUNNING][LOWER_UP])
1262304668.028291: nl80211: send_mlme - noack=0 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 nlmode=3
1262304668.028346: nl80211: send_mlme -> send_frame
1262304668.028359: nl80211: send_frame - Use bss->freq=5260
1262304668.028371: nl80211: send_frame(freq=5260 bss->freq=5260) -> send_mntr
1262304668.233345: nl80211: send_mlme - noack=0 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 nlmode=3
1262304668.233398: nl80211: send_mlme -> send_frame
1262304668.233411: nl80211: send_frame - Use bss->freq=5260
1262304668.233423: nl80211: send_frame(freq=5260 bss->freq=5260) -> send_mntr
1262304668.443353: nl80211: send_mlme - noack=0 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 nlmode=3
1262304668.443407: nl80211: send_mlme -> send_frame
1262304668.443420: nl80211: send_frame - Use bss->freq=5260
1262304668.443432: nl80211: send_frame(freq=5260 bss->freq=5260) -> send_mntr
1262304668.932990: nl80211: send_mlme - noack=0 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 nlmode=3
1262304668.933043: nl80211: send_mlme -> send_frame
1262304668.933057: nl80211: send_frame - Use bss->freq=5260
1262304668.933069: nl80211: send_frame(freq=5260 bss->freq=5260) -> send_mntr
1262304669.143406: nl80211: send_mlme - noack=0 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 nlmode=3
1262304669.143461: nl80211: send_mlme -> send_frame
1262304669.143474: nl80211: send_frame - Use bss->freq=5260
1262304669.143486: nl80211: send_frame(freq=5260 bss->freq=5260) -> send_mntr
1262304669.353350: nl80211: send_mlme - noack=0 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 nlmode=3
1262304669.353404: nl80211: send_mlme -> send_frame
1262304669.353417: nl80211: send_frame - Use bss->freq=5260
1262304669.353429: nl80211: send_frame(freq=5260 bss->freq=5260) -> send_mntr
1262304670.238204: nl80211: send_mlme - noack=0 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 nlmode=3
1262304670.238258: nl80211: send_mlme -> send_frame
1262304670.238271: nl80211: send_frame - Use bss->freq=5260
1262304670.238283: nl80211: send_frame(freq=5260 bss->freq=5260) -> send_mntr
1262304670.443327: nl80211: send_mlme - noack=0 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 nlmode=3
1262304670.443375: nl80211: send_mlme -> send_frame
1262304670.443387: nl80211: send_frame - Use bss->freq=5260
1262304670.443399: nl80211: send_frame(freq=5260 bss->freq=5260) -> send_mntr
1262304670.653996: nl80211: send_mlme - noack=0 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 nlmode=3
1262304670.654041: nl80211: send_mlme -> send_frame
1262304670.654054: nl80211: send_frame - Use bss->freq=5260
1262304670.654065: nl80211: send_frame(freq=5260 bss->freq=5260) -> send_mntr
1262304672.038663: nl80211: send_mlme - noack=0 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 nlmode=3
1262304672.038718: nl80211: send_mlme -> send_frame
1262304672.038731: nl80211: send_frame - Use bss->freq=5260
1262304672.038744: nl80211: send_frame(freq=5260 bss->freq=5260) -> send_mntr
1262304672.243386: nl80211: send_mlme - noack=0 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 nlmode=3
1262304672.243439: nl80211: send_mlme -> send_frame
1262304672.243452: nl80211: send_frame - Use bss->freq=5260
1262304672.243464: nl80211: send_frame(freq=5260 bss->freq=5260) -> send_mntr
1262304672.453340: nl80211: send_mlme - noack=0 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 nlmode=3
1262304672.453388: nl80211: send_mlme -> send_frame
1262304672.453401: nl80211: send_frame - Use bss->freq=5260
1262304672.453413: nl80211: send_frame(freq=5260 bss->freq=5260) -> send_mntr
1262304683.008472: nl80211: send_mlme - noack=0 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 nlmode=3
1262304683.008524: nl80211: send_mlme -> send_frame
1262304683.008537: nl80211: send_frame - Use bss->freq=5260
1262304683.008549: nl80211: send_frame(freq=5260 bss->freq=5260) -> send_mntr
1262304683.213475: nl80211: send_mlme - noack=0 freq=0 no_cck=0 offchanok=0 wait_time=0 fc=0x50 nlmode=3


[-- Attachment #3: wpa_52.txt --]
[-- Type: text/plain, Size: 31507 bytes --]

1262304971.459936: wpa_supplicant v2.1                                        
1262304971.460199: random: Trying to read entropy from /dev/random              
1262304971.460259: Successfully initialized wpa_supplicant                      
1262304971.460290: Initializing interface 'wlan0' conf '/etc/wpa_supplicant.conf
' driver 'nl80211' ctrl_interface 'N/A' bridge 'N/A'                            
1262304971.460329: Configuration file '/etc/wpa_supplicant.conf' -> '/etc/wpa_su
pplicant.conf'                                                                  
1262304971.460361: Reading configuration file '/etc/wpa_supplicant.conf'        
1262304971.460518: ctrl_interface='/var/run/wpa_supplicant'                     
1262304971.460569: eapol_version=1                                              
1262304971.460593: ap_scan=1                                                    
1262304971.460616: fast_reauth=0                                                
1262304971.460643: Line: 5 - start of a new network block                       
1262304971.460707: ssid - hexdump_ascii(len=6):                                 
     61 74 68 31 30 6b                                 ath10k                   
1262304971.460812: key_mgmt: 0x4                                                
1262304971.460892: Priority group 0                                             
1262304971.460912:    id=0 ssid='ath10k'                                        
1262304971.462365: rfkill: Cannot open RFKILL control device                    
1262304971.462402: nl80211: RFKILL status not available                         
1262304971.462914: nl80211: Supported cipher 00-0f-ac:1                         
1262304971.462948: nl80211: Supported cipher 00-0f-ac:5                         
1262304971.462962: nl80211: Supported cipher 00-0f-ac:2                         
1262304971.462974: nl80211: Supported cipher 00-0f-ac:4                         
1262304971.462986: nl80211: Supported cipher 00-0f-ac:6                         
1262304971.463257: nl80211: Using driver-based off-channel TX                   
1262304971.463328: nl80211: interface wlan0 in phy phy0                         
1262304971.463434: nl80211: Set mode ifindex 5 iftype 2 (STATION)               
1262304971.463560: nl80211: Subscribe to mgmt frames with non-AP handle 0x108318
1262304971.463618: nl80211: Register frame type=0xd0 nl_handle=0x108318 match=06
1262304971.463690: nl80211: Register frame type=0xd0 nl_handle=0x108318 match=0a
07                                                                              
1262304971.463742: nl80211: Register frame type=0xd0 nl_handle=0x108318 match=0a
11                                                                              
1262304971.463826: netlink: Operstate: ifindex=5 linkmode=1 (userspace-control),
 operstate=5 (IF_OPER_DORMANT)                                                  
1262304971.463898: nl80211: driver param='(null)'                               
1262304971.463944: Add interface wlan0 to a new radio phy0                      
1262304971.464781: nl80211: Regulatory information - country=FR (DFS-ETSI)      
1262304971.464835: nl80211: 2402-2482 @ 40 MHz 20 mBm                           
1262304971.464858: nl80211: 5170-5250 @ 80 MHz 20 mBm                           
1262304971.464875: nl80211: 5250-5330 @ 80 MHz 20 mBm                           
1262304971.464891: nl80211: 5490-5710 @ 80 MHz 27 mBm                           
1262304971.464907: nl80211: 57240-65880 @ 2160 MHz 40 mBm                       
1262304971.464980: nl80211: Added 802.11b mode based on 802.11g information     
1262304971.465102: wlan0: Own MAC address: 04:f0:21:0e:38:c6                    
1262304971.465188: wpa_driver_nl80211_set_key: ifindex=5 (wlan0) alg=0 addr=(nil
) key_idx=0 set_tx=0 seq_len=0 key_len=0                                        
1262304971.465303: wpa_driver_nl80211_set_key: ifindex=5 (wlan0) alg=0 addr=(nil
) key_idx=1 set_tx=0 seq_len=0 key_len=0                                        
1262304971.465382: wpa_driver_nl80211_set_key: ifindex=5 (wlan0) alg=0 addr=(nil
) key_idx=2 set_tx=0 seq_len=0 key_len=0                                        
1262304971.465487: wpa_driver_nl80211_set_key: ifindex=5 (wlan0) alg=0 addr=(nil
) key_idx=3 set_tx=0 seq_len=0 key_len=0                                        
1262304971.465557: wlan0: RSN: flushing PMKID list in the driver                
1262304971.465574: nl80211: Flush PMKIDs                                        
1262304971.465681: wlan0: Setting scan request: 0.100000 sec                    
1262304971.465940: wlan0: WPS: UUID based on MAC address: 8e778342-bd63-5071-9d8
2-58ab20891bb0                                                                  
1262304971.478844: EAPOL: SUPP_PAE entering state DISCONNECTED                  
1262304971.478897: EAPOL: Supplicant port status: Unauthorized                  
1262304971.478918: nl80211: Skip set_supp_port(unauthorized) while not associate
d                                                                               
1262304971.478941: EAPOL: KEY_RX entering state NO_KEY_RECEIVE                  
1262304971.478959: EAPOL: SUPP_BE entering state INITIALIZE                     
1262304971.478978: EAP: EAP entering state DISABLED                             
1262304971.479219: wlan0: Added interface wlan0                                 
1262304971.479253: wlan0: State: DISCONNECTED -> DISCONNECTED                   
1262304971.479273: nl80211: Set wlan0 operstate 0->0 (DORMANT)                  
1262304971.479288: netlink: Operstate: ifindex=5 linkmode=-1 (no change), operst
ate=5 (IF_OPER_DORMANT)                                                         
1262304971.479462: random: Got 11/20 bytes from /dev/random                     
1262304971.573157: wlan0: State: DISCONNECTED -> SCANNING                       
1262304971.573208: wlan0: Starting AP scan for wildcard SSID                    
1262304971.573244: wlan0: Add radio work 'scan'@0x116b80                        
1262304971.573267: wlan0: First radio work item in the queue - schedule start im
mediately                                                                       
1262304971.573306: wlan0: Starting radio work 'scan'@0x116b80 after 0.000035 sec
ond wait                                                                        
1262304971.573325: wlan0: nl80211: scan request                                 
1262304971.573360: nl80211: Scan SSID - hexdump_ascii(len=0): [NULL]            
1262304971.573382: nl80211: Scan frequency 5260 MHz                             
1262304971.573773: Scan requested (ret=0) - scan timeout 10 seconds             
1262304971.573840: nl80211: Event message available                             
1262304971.573893: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for
 wlan0                                                                          
1262304971.573925: wlan0: nl80211: Scan trigger                                 
1262304971.573957: wlan0: Event SCAN_STARTED (49) received                      
1262304971.573983: wlan0: Own scan request started a scan in 0.000165 seconds   
1262304971.573997: wlan0: CTRL-EVENT-SCAN-STARTED                               
1262304971.723961: nl80211: Event message available                             
1262304971.724030: nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received
 for wlan0                                                                      
1262304971.724056: wlan0: nl80211: New scan results available                   
1262304971.724088: nl80211: Scan probed for SSID ''                             
1262304971.724111: nl80211: Scan included frequencies: 5260                     
1262304971.724128: wlan0: Event SCAN_RESULTS (3) received                       
1262304971.724147: wlan0: Scan completed in 0.150167 seconds                    
1262304971.724338: nl80211: Received scan results (1 BSSes)                     
1262304971.724577: wlan0: BSS: Start scan result update 1                       
1262304971.724629: wlan0: BSS: Add new id 0 BSSID 04:f0:21:0e:38:be SSID 'ath10k
'                                                                               
1262304971.724683: BSS: last_scan_res_used=1/32                                 
1262304971.724717: wlan0: New scan results available (own=1 ext=0)              
1262304971.724766: wlan0: Radio work 'scan'@0x116b80 done in 0.151458 seconds   
1262304971.724790: wlan0: Selecting BSS from priority group 0                   
1262304971.724825: wlan0: 0: 04:f0:21:0e:38:be ssid='ath10k' wpa_ie_len=0 rsn_ie
_len=0 caps=0x101 level=-15                                                     
1262304971.724857: wlan0:    allow in non-WPA/WPA2                              
1262304971.724888: wlan0:    selected BSS 04:f0:21:0e:38:be ssid='ath10k'       
1262304971.724921: wlan0: Considering connect request: reassociate: 0  selected:
 04:f0:21:0e:38:be  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_st
ate: SCANNING  ssid=0x107c38  current_ssid=(nil)                                
1262304971.724944: wlan0: Request association with 04:f0:21:0e:38:be            
1262304971.724976: wlan0: Add radio work 'sme-connect'@0x116b80                 
1262304971.724998: wlan0: First radio work item in the queue - schedule start im
mediately                                                                       
1262304971.725059: wlan0: Starting radio work 'sme-connect'@0x116b80 after 0.000
054 second wait                                                                 
1262304971.725091: wlan0: Automatic auth_alg selection: 0x1                     
1262304971.725129: wlan0: WPA: clearing AP WPA IE                               
1262304971.725151: wlan0: WPA: clearing AP RSN IE                               
1262304971.725179: wlan0:wlan0: authenticate with 04:f0:21:0e:38:be             
 WPA: clearing own WPA/RSN IE                                                   
1262304971.725222: wlan0: Cancelling scan requestwlan0: direct probe to 04:f0:21
:0e:38:be (try 1/3)                                                             
                                                                                
1262304971.725245: wlan0: SME: Trying to authenticate with 04:f0:21:0e:38:be (SS
ID='ath10k' freq=5260 MHz)                                                      
1262304971.725262: wlan0: State: SCANNING -> AUTHENTICATING                     
1262304971.725279: EAPOL: External notification - EAP success=0                 
1262304972.060052: EAPOL: External notification - EAP fail=0                    
1262304972.060085: EAPOL: External notification - portControl=ForceAuthorized   
1262304972.060125: nl80211: Authenticate (ifindex=5)                            
1262304972.060148:   * bssid=04:f0:21:0e:38:be                                  
1262304972.060164:   * freq=5260                                                
1262304972.060175:   * SSID - hexdump_ascii(len=6):                             
     61 74 68 31 30 6b                                 ath10k                   
1262304972.060212:   * IEs - hexdump(len=0): [NULL]                             
1262304972.060224:   * Auth Type 0                                              
1262304972.078592: nl80211: Authentication request send successfully            
1262304972.078666: nl80211: Event message available                             
1262304972.078705: nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for 
wlan0                                                                           
1262304972.078723: nl80211: New station 04:f0:21:0e:38:be                       
wlan0: direct probe to 04:f0:21:0e:38:be (try 2/3)                              
1262304972.483163: EAPOL: disable timer tick                                    
wlan0: direct probe to 04:f0:21:0e:38:be (try 3/3)                              
wlan0: authentication with 04:f0:21:0e:38:be timed out                          
1262304972.708769: nl80211: Event message available                             
1262304972.708886: nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for 
wlan0                                                                           
1262304972.708906: nl80211: Delete station 04:f0:21:0e:38:be                    
1262304972.708946: nl80211: Event message available                             
1262304972.708972: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for
 wlan0                                                                          
1262304972.709010: nl80211: MLME event 37; timeout with 04:f0:21:0e:38:be       
1262304972.709044: wlan0: Event AUTH_TIMED_OUT (14) received                    
1262304972.709062: wlan0: SME: Authentication timed out                         
1262304972.709085: wlan0: Radio work 'sme-connect'@0x116b80 done in 0.984028 sec
onds                                                                            
1262304972.709103: Added BSSID 04:f0:21:0e:38:be into blacklist                 
1262304972.709124: wlan0: Blacklist count 1 --> request scan in 100 ms          
1262304972.709142: wlan0: Setting scan request: 0.100000 sec                    
1262304972.709162: wlan0: State: AUTHENTICATING -> DISCONNECTED                 
1262304972.709176: nl80211: Set wlan0 operstate 0->0 (DORMANT)                  
1262304972.709191: netlink: Operstate: ifindex=5 linkmode=-1 (no change), operst
ate=5 (IF_OPER_DORMANT)                                                         
1262304972.709235: EAPOL: External notification - portEnabled=0                 
1262304972.709258: EAPOL: External notification - portValid=0                   
1262304972.813169: wlan0: State: DISCONNECTED -> SCANNING                       
1262304972.813233: wlan0: Starting AP scan for wildcard SSID                    
1262304972.813264: wlan0: Add radio work 'scan'@0x116b80                        
1262304972.813283: wlan0: First radio work item in the queue - schedule start im
mediately                                                                       
1262304972.813324: wlan0: Starting radio work 'scan'@0x116b80 after 0.000037 sec
ond wait                                                                        
1262304972.813344: wlan0: nl80211: scan request                                 
1262304972.813375: nl80211: Scan SSID - hexdump_ascii(len=0): [NULL]            
1262304972.813392: nl80211: Scan frequency 5260 MHz                             
1262304972.813754: Scan requested (ret=0) - scan timeout 30 seconds             
1262304972.813809: nl80211: Event message available                             
1262304972.813848: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for
 wlan0                                                                          
1262304972.813869: wlan0: nl80211: Scan trigger                                 
1262304972.813888: wlan0: Event SCAN_STARTED (49) received                      
1262304972.813907: wlan0: Own scan request started a scan in 0.000112 seconds   
1262304972.813921: wlan0: CTRL-EVENT-SCAN-STARTED                               
1262304972.96392wlan0: authenticate with 04:f0:21:0e:38:be                      
2: nl80211: Event message available                                             
1262304972.963994: nl80211: Drv Event 34 (Nwlan0: direct probe to 04:f0:21:0e:38
:be (try 1/3)                                                                   
L80211_CMD_NEW_SCAN_RESULTS) received for wlan0                                 
1262304972.964020: wlan0: nl80211: New scan results available                   
1262304972.964040: nl80211: Scan probed for SSID ''                             
1262304972.964055: nl80211: Scan included frequencies: 5260                     
1262304972.964073: wlan0: Event SCAN_RESULTS (3) received                       
1262304972.964091: wlan0: Scan completed in 0.150185 seconds                    
1262304972.964210: nl80211: Received scan results (1 BSSes)                     
1262304972.964432: wlan0: BSS: Start scan result update 2                       
1262304972.964469: BSS: last_scan_res_used=1/32                                 
1262304972.964496: wlan0: New scan results available (own=1 ext=0)              
1262304972.964534: wlan0: Radio work 'scan'@0x116b80 done in 0.151210 seconds   
1262304972.964555: wlan0: Selecting BSS from priority group 0                   
1262304972.964584: wlan0: 0: 04:f0:21:0e:38:be ssid='ath10k' wpa_ie_len=0 rsn_ie
_len=0 caps=0x101 level=-16                                                     
1262304972.964605: wlan0:    skip - blacklisted (count=1 limit=0)               
1262304972.964620: wlan0: No APs found - clear blacklist and try again          
1262304972.964633: Removed BSSID 04:f0:21:0e:38:be from blacklist (clear)       
1262304972.964652: wlan0: Selecting BSS from priority group 0                   
1262304972.964675: wlan0: 0: 04:f0:21:0e:38:be ssid='ath10k' wpa_ie_len=0 rsn_ie
_len=0 caps=0x101 level=-16                                                     
1262304972.964700: wlan0:    allow in non-WPA/WPA2                              
1262304972.964731: wlan0:    selected BSS 04:f0:21:0e:38:be ssid='ath10k'       
1262304972.964765: wlan0: Considering connect request: reassociate: 0  selected:
 04:f0:21:0e:38:be  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_st
ate: SCANNING  ssid=0x107c38  current_ssid=(nil)                                
1262304972.964788: wlan0: Request association with 04:f0:21:0e:38:be            
1262304972.964806: wlan0: Add radio work 'sme-connect'@0x116b80                 
1262304972.964823: wlan0: First radio work item in the queue - schedule start im
mediately                                                                       
1262304972.964874: wlan0: Starting radio work 'sme-connect'@0x116b80 after 0.000
046 second wait                                                                 
1262304972.964896: wlan0: Automatic auth_alg selection: 0x1                     
1262304972.964918: wlan0: WPA: clearing AP WPA IE                               
1262304972.964933: wlan0: WPA: clearing AP RSN IE                               
1262304972.964948: wlan0: WPA: clearing own WPA/RSN IE                          
1262304972.964969: wlan0: Cancelling scan request                               
1262304972.964989: wlan0: SME: Trying to authenticate with 04:f0:21:0e:38:be (SS
ID='ath10k' freq=5260 MHz)                                                      
1262304972.965006: wlan0: State: SCANNING -> AUTHENTICATING                     
1262304972.96502wlan0: direct probe to 04:f0:21:0e:38:be (try 2/3)              
3: EAPOL: External notification - EAP success=0                                 
1262304972.965045: EAPOL: External notification - EAP fail=0                    
1262304972.965059: EAPOL: External notification - portControl=ForceAuthorized   
1262304972.965086: nl80211: Authenticate (ifindex=5)                            
1262304972.965103:   * bssid=04:f0:21:0e:38:be                                  
1262304972.965119:   * freq=5260                                                
1262304972.965129:   * SSID - hexdump_ascii(len=6):                             
     61 74 68 31 30 6b                                 ath10k                   
1262304972.965165:   * IEs - hexdump(len=0): [NULL]                             
1262304972.965177:   * Auth Type 0                                              
1262304972.980908: nl80211: Authentication request send successfully            
1262304972.981009: nl80211: Event message available                             
1262304972.981047: nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for 
wlan0                                                                           
1262304972.981064: nl80211: New station 04:f0:21:0e:38:be                       
wlan0: direct probe to 04:f0:21:0e:38:be (try 3/3)                              
wlan0: authentication with 04:f0:21:0e:38:be timed out                          
1262304973.608773: nl80211: Event message available                             
1262304973.608898: nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for 
wlan0                                                                           
1262304973.608917: nl80211: Delete station 04:f0:21:0e:38:be                    
1262304973.608959: nl80211: Event message available                             
1262304973.608986: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for
 wlan0                                                                          
1262304973.609004: nl80211: MLME event 37; timeout with 04:f0:21:0e:38:be       
1262304973.609032: wlan0: Event AUTH_TIMED_OUT (14) received                    
1262304973.609050: wlan0: SME: Authentication timed out                         
1262304973.609073: wlan0: Radio work 'sme-connect'@0x116b80 done in 0.644200 sec
onds                                                                            
1262304973.609092: Added BSSID 04:f0:21:0e:38:be into blacklist                 
1262304973.609113: wlan0: Blacklist count 2 --> request scan in 500 ms          
1262304973.609131: wlan0: Setting scan request: 0.500000 sec                    
1262304973.609151: wlan0: State: AUTHENTICATING -> DISCONNECTED                 
1262304973.609165: nl80211: Set wlan0 operstate 0->0 (DORMANT)                  
1262304973.609181: netlink: Operstate: ifindex=5 linkmode=-1 (no change), operst
ate=5 (IF_OPER_DORMANT)                                                         
1262304973.609226: EAPOL: External notification - portEnabled=0                 
1262304973.609252: EAPOL: External notification - portValid=0                   
1262304974.113195: wlan0: State: DISCONNECTED -> SCANNING                       
1262304974.113267: wlan0: Starting AP scan for wildcard SSID                    
1262304974.113299: wlan0: Add radio work 'scan'@0x116b80                        
1262304974.113317: wlan0: First radio work item in the queue - schedule start im
mediately                                                                       
1262304974.113361: wlan0: Starting radio work 'scan'@0x116b80 after 0.000040 sec
ond wait                                                                        
1262304974.113381: wlan0: nl80211: scan request                                 
1262304974.113413: nl80211: Scan SSID - hexdump_ascii(len=0): [NULL]            
1262304974.113429: nl80211: Scan frequency 5260 MHz                             
1262304974.113796: Scan requested (ret=0) - scan timeout 30 seconds             
1262304974.113852: nl80211: Event message available                             
1262304974.113890: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for
 wlan0                                                                          
1262304974.113913: wlan0: nl80211: Scan trigger                                 
1262304974.113932: wlan0: Event SCAN_STARTED (49) received                      
1262304974.113952: wlan0: Own scan request started a scan in 0.000114 seconds   
1262304974.113967: wlan0: CTRL-EVENT-SCAN-STARTED                               
1262304974.264009: nl80211: Evenwlan0: authenticate with 04:f0:21:0e:38:be      
t message available                                                             
1262304974.264113: nl80211: Drv Event 34 (Nwlan0: direct probe to 04:f0:21:0e:38
:be (try 1/3)                                                                   
L80211_CMD_NEW_SCAN_RESULTS) received for wlan0                                 
1262304974.264142: wlan0: nl80211: New scan results available                   
1262304974.264162: nl80211: Scan probed for SSID ''                             
1262304974.264179: nl80211: Scan included frequencies: 5260                     
1262304974.264197: wlan0: Event SCAN_RESULTS (3) received                       
1262304974.264216: wlan0: Scan completed in 0.150265 seconds                    
1262304974.264347: nl80211: Received scan results (1 BSSes)                     
1262304974.264572: wlan0: BSS: Start scan result update 3                       
1262304974.264622: BSS: last_scan_res_used=1/32                                 
1262304974.264650: wlan0: New scan results available (own=1 ext=0)              
1262304974.264685: wlan0: Radio work 'scan'@0x116b80 done in 0.151324 seconds   
1262304974.264705: wlan0: Selecting BSS from priority group 0                   
1262304974.264733: wlan0: 0: 04:f0:21:0e:38:be ssid='ath10k' wpa_ie_len=0 rsn_ie
_len=0 caps=0x101 level=-16                                                     
1262304974.264755: wlan0:    skip - blacklisted (count=1 limit=0)               
1262304974.264770: wlan0: No APs found - clear blacklist and try again          
1262304974.264782: Removed BSSID 04:f0:21:0e:38:be from blacklist (clear)       
1262304974.264801: wlan0: Selecting BSS from priority group 0                   
1262304974.264824: wlan0: 0: 04:f0:21:0e:38:be ssid='ath10k' wpa_ie_len=0 rsn_ie
_len=0 caps=0x101 level=-16                                                     
1262304974.264848: wlan0:    allow in non-WPA/WPA2                              
1262304974.264879: wlan0:    selected BSS 04:f0:21:0e:38:be ssid='ath10k'       
1262304974.264913: wlan0: Considering connect request: reassociate: 0  selected:
 04:f0:21:0e:38:be  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_st
ate: SCANNING  ssid=0x107c38  current_ssid=(nil)                                
1262304974.264935: wlan0: Request association with 04:f0:21:0e:38:be            
1262304974.264954: wlan0: Add radio work 'sme-connect'@0x116b80                 
1262304974.264970: wlan0: First radio work item in the queue - schedule start im
mediately                                                                       
1262304974.265024: wlan0: Starting radio work 'sme-connect'@0x116b80 after 0.000
050 second wait                                                                 
1262304974.265047: wlan0: Automatic auth_alg selection: 0x1                     
1262304974.265068: wlan0: WPA: clearing AP WPA IE                               
1262304974.265084: wlan0: WPA: clearing AP RSN IE                               
1262304974.265098: wlan0: WPA: clearing own WPA/RSN IE                          
1262304974.265119: wlan0: Cancelling scan request                               
1262304974.265138: wlan0: SME: Trying to authenticate with 04:f0:21:0e:38:be (SS
ID='ath10k' freq=5260 MHz)                                                      
1262304974.265155: wlan0: State: SCANNING -> AUTHENTICATING                     
1262304974.26517wlan0: direct probe to 04:f0:21:0e:38:be (try 2/3)              
2: EAPOL: External notification - EAP success=0                                 
1262304974.265195: EAPOL: External notification - EAP fail=0                    
1262304974.265209: EAPOL: External notification - portControl=ForceAuthorized   
1262304974.265236: nl80211: Authenticate (ifindex=5)                            
1262304974.265254:   * bssid=04:f0:21:0e:38:be                                  
1262304974.265269:   * freq=5260                                                
1262304974.265279:   * SSID - hexdump_ascii(len=6):                             
     61 74 68 31 30 6b                                 ath10k                   
1262304974.265315:   * IEs - hexdump(len=0): [NULL]                             
1262304974.265327:   * Auth Type 0                                              
1262304974.281002: nl80211: Authentication request send successfully            
1262304974.281102: nl80211: Event message available                             
1262304974.281139: nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for 
wlan0                                                                           
1262304974.281157: nl80211: New station 04:f0:21:0e:38:be                       
wlan0: direct probe to 04:f0:21:0e:38:be (try 3/3)                              
wlan0: authentication with 04:f0:21:0e:38:be timed out                          
1262304974.908777: nl80211: Event message available                             
1262304974.908895: nl80211: Drv Event 20 (NL80211_CMD_DEL_STATION) received for 
wlan0                                                                           
1262304974.908915: nl80211: Delete station 04:f0:21:0e:38:be                    
1262304974.908955: nl80211: Event message available                             
1262304974.908981: nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for
 wlan0                                                                          
1262304974.908998: nl80211: MLME event 37; timeout with 04:f0:21:0e:38:be       
1262304974.909026: wlan0: Event AUTH_TIMED_OUT (14) received                    
1262304974.909044: wlan0: SME: Authentication timed out                         
1262304974.909066: wlan0: Radio work 'sme-connect'@0x116b80 done in 0.644042 sec
onds                                                                            
1262304974.909085: Added BSSID 04:f0:21:0e:38:be into blacklist                 
1262304974.909107: wlan0: Blacklist count 3 --> request scan in 1000 ms         
1262304974.909125: wlan0: Setting scan request: 1.000000 sec                    
1262304974.909145: wlan0: State: AUTHENTICATING -> DISCONNECTED                 
1262304974.909159: nl80211: Set wlan0 operstate 0->0 (DORMANT)                  
1262304974.909173: netlink: Operstate: ifindex=5 linkmode=-1 (no change), operst
ate=5 (IF_OPER_DORMANT)                                                         
1262304974.909218: EAPOL: External notification - portEnabled=0                 
1262304974.909243: EAPOL: External notification - portValid=0                   
1262304975.923178: wlan0: State: DISCONNECTED -> SCANNING                       
1262304975.923249: wlan0: Starting AP scan for wildcard SSID                    
1262304975.923280: wlan0: Add radio work 'scan'@0x116b80                        
1262304975.923299: wlan0: First radio work item in the queue - schedule start im
mediately                                                                       
1262304975.923342: wlan0: Starting radio work 'scan'@0x116b80 after 0.000039 sec
ond wait                                                                        
1262304975.923362: wlan0: nl80211: scan request                                 
1262304975.923393: nl80211: Scan SSID - hexdump_ascii(len=0): [NULL]            
1262304975.923410: nl80211: Scan frequency 5260 MHz                             
1262304975.923778: Scan requested (ret=0) - scan timeout 30 seconds             
1262304975.923832: nl80211: Event message available                             
1262304975.923870: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for
 wlan0                                                                          
1262304975.923893: wlan0: nl80211: Scan trigger                                 
1262304975.923912: wlan0: Event SCAN_STARTED (49) received                      
1262304975.923932: wlan0: Own scan request started a scan in 0.000114 seconds   
1262304975.923946: wlan0: CTRL-EVENT-SCAN-STARTED                               
1262304976.07396wlan0: authenticate with 04:f0:21:0e:38:be                      

[-- Attachment #4: dmesg_apd.txt --]
[-- Type: text/plain, Size: 86265 bytes --]

ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx mgmt ctrl                                                        
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d28883a0                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d28882e0                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2888220                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2888160                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx mgmt ctrl                                                        
ath10k: htt rx mgmt ctrl                                                        
ath10k: htt rx mgmt ctrl                                                        
ath10k: htt rx mgmt ctrl                                                        
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d28880a0                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx mgmt ctrl                                                        
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2c36f00                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx mgmt ctrl                                                        
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2c36e40                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx mgmt ctrl                                                        
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2c36d80                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2c36cc0                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx mgmt ctrl                                                        
ath10k: htt rx mgmt ctrl                                                        
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2c36c00                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx mgmt ctrl                                                        
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2c36b40                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx mgmt ctrl                                                        
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2c36a80                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2c369c0                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2c36900                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2c36840                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx mgmt ctrl                                                        
ath10k: htt rx mgmt ctrl                                                        
ath10k: htt rx mgmt ctrl                                                        
ath10k: htt rx mgmt ctrl                                                        
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2c36780                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx mgmt ctrl                                                        
ath10k: htc rx completion ep 2 skb d2ac2840                                     
ath10k: event mgmt rx status 00000000                                           
ath10k: event mgmt rx skb d2ac2840 len 244 ftype 00 stype 40                    
ath10k: event mgmt rx freq 2412 band 0 snr -33, rate_idx 0                      
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2c366c0                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx mgmt ctrl                                                        
ath10k: wmi mgmt tx skb c10ee6e0 len 176 ftype 00 stype 50                      
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x008f4660 len 188 n_items 1                        
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c10ee6e0                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2c36540                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: rx skb c10ee620 len 10  rate_idx 4 vht_nss 0 freq 2412 band 0 flag 0x200
000 fcs-err 0mic-err 0                                                          
ath10k: htc rx completion ep 2 skb d2ac2780                                     
ath10k: event mgmt rx status 00000000                                           
ath10k: event mgmt rx skb d2ac2780 len 244 ftype 00 stype 40                    
ath10k: event mgmt rx freq 2412 band 0 snr -32, rate_idx 0                      
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2c36480                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx mgmt ctrl                                                        
ath10k: wmi mgmt tx skb c10ee560 len 176 ftype 00 stype 50                      
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12fffc60 len 188 n_items 1                        
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c10ee560                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2c36300                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: rx skb c10ee4a0 len 10  rate_idx 4 vht_nss 0 freq 2412 band 0 flag 0x200
000 fcs-err 0mic-err 0                                                          
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2c36240                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htc rx completion ep 2 skb d2ac26c0                                     
ath10k: event mgmt rx status 00000000                                           
ath10k: event mgmt rx skb d2ac26c0 len 244 ftype 00 stype 40                    
ath10k: event mgmt rx freq 2412 band 0 snr -34, rate_idx 0                      
ath10k: htt rx mgmt ctrl                                                        
ath10k: wmi mgmt tx skb c10ee3e0 len 176 ftype 00 stype 50                      
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x008f4060 len 188 n_items 1                        
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c10ee3e0                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2c360c0                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htc rx completion ep 2 skb d2ac2600                                     
ath10k: event mgmt rx status 00000000                                           
ath10k: event mgmt rx skb d2ac2600 len 244 ftype 00 stype 40                    
ath10k: event mgmt rx freq 2412 band 0 snr -34, rate_idx 0                      
ath10k: htt rx mgmt ctrl                                                        
ath10k: wmi mgmt tx skb c10ee320 len 176 ftype 00 stype 50                      
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12fff460 len 188 n_items 1                        
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c10ee320                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2f2ce60                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htc rx completion ep 2 skb d2ac2540                                     
ath10k: event mgmt rx status 00000000                                           
ath10k: event mgmt rx skb d2ac2540 len 244 ftype 00 stype 40                    
ath10k: event mgmt rx freq 2412 band 0 snr -38, rate_idx 0                      
ath10k: htt rx mgmt ctrl                                                        
ath10k: wmi mgmt tx skb c10ee260 len 176 ftype 00 stype 50                      
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x008f4060 len 188 n_items 1                        
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c10ee260                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2f2cce0                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htc rx completion ep 2 skb d2ac2480                                     
ath10k: event mgmt rx status 00000000                                           
ath10k: event mgmt rx skb d2ac2480 len 244 ftype 00 stype 40                    
ath10k: event mgmt rx freq 2412 band 0 snr -38, rate_idx 0                      
ath10k: htt rx mgmt ctrl                                                        
ath10k: wmi mgmt tx skb c10ee1a0 len 176 ftype 00 stype 50                      
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12fff460 len 188 n_items 1                        
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c10ee1a0                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2f2cb60                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx dropping due to zero-len                                         
ath10k: htc rx completion ep 2 skb d2ac23c0                                     
ath10k: event mgmt rx status 00000000                                           
ath10k: event mgmt rx skb d2ac23c0 len 244 ftype 00 stype 40                    
ath10k: event mgmt rx freq 2412 band 0 snr -56, rate_idx 0                      
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2f2caa0                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx mgmt ctrl                                                        
ath10k: wmi mgmt tx skb d2e39ec0 len 176 ftype 00 stype 50                      
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12e04c60 len 188 n_items 1                        
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e39ec0                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2f2c920                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx mgmt ctrl                                                        
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2f2c860                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx dropping due to zero-len                                         
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2f2c7a0                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx dropping due to zero-len                                         
ath10k: htc rx completion ep 2 skb d2ac2300                                     
ath10k: wmi event debug mesg len 12                                             
ath10k: htc rx completion ep 2 skb d2ac2240                                     
ath10k: WMI_SCAN_EVENTID                                                        
ath10k: scan event type 8 reason 3 freq 5260 req_id 40961 scan_id 40960 vdev_id 
0                                                                               
ath10k: SCAN_EVENT_FOREIGN_CHANNEL                                              
ath10k: htc rx completion ep 2 skb d2ac2180                                     
ath10k: chan info err_code 0 freq 5260 cmd_flags 0 noise_floor 0 rx_clear_count 
3892975 cycle_count 88667487                                                    
ath10k: htc rx completion ep 2 skb d2ac20c0                                     
ath10k: WMI_SCAN_EVENTID                                                        
ath10k: scan event type 4 reason 3 freq 5260 req_id 40961 scan_id 40960 vdev_id 
0                                                                               
ath10k: SCAN_EVENT_BSS_CHANNEL                                                  
ath10k: htc rx completion ep 2 skb d2c52f20                                     
ath10k: chan info err_code 0 freq 5260 cmd_flags 1 noise_floor -100 rx_clear_cou
nt 3892975 cycle_count 101225230                                                
ath10k: htc rx completion ep 2 skb d2c52e60                                     
ath10k: WMI_SCAN_EVENTID                                                        
ath10k: scan event type 8 reason 3 freq 5280 req_id 40961 scan_id 40960 vdev_id 
0                                                                               
ath10k: SCAN_EVENT_FOREIGN_CHANNEL                                              
ath10k: htc rx completion ep 2 skb d2c52da0                                     
ath10k: chan info err_code 0 freq 5280 cmd_flags 0 noise_floor 0 rx_clear_count 
3893190 cycle_count 105986491                                                   
ath10k: htc rx completion ep 2 skb d2c52ce0                                     
ath10k: WMI_SCAN_EVENTID                                                        
ath10k: scan event type 4 reason 3 freq 5280 req_id 40961 scan_id 40960 vdev_id 
0                                                                               
ath10k: SCAN_EVENT_BSS_CHANNEL                                                  
ath10k: htc rx completion ep 2 skb d2c52c20                                     
ath10k: chan info err_code 0 freq 5280 cmd_flags 1 noise_floor -100 rx_clear_cou
nt 3893190 cycle_count 118836406                                                
ath10k: htc rx completion ep 2 skb d2c52b60                                     
ath10k: WMI_SCAN_EVENTID                                                        
ath10k: scan event type 2 reason 0 freq 5280 req_id 40961 scan_id 40960 vdev_id 
0                                                                               
ath10k: SCAN_EVENT_COMPLETED                                                    
ath10k: SCAN_REASON_COMPLETED                                                   
ath10k: mac config channel 5260MHz flags 0x10a radar 1                          
ath10k: mac monitor refs: promisc 1 monitor 0 cac 1                             
ath10k: mac monitor already started                                             
ath10k: mac cac start monitor vdev 1                                            
ath10k: mac config channel to 5260MHz (cf1 5270MHz cf2 0MHz width 40)           
ath10k: wmi mgmt vdev down id 0x1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12e04e60 len 16 n_items 1                         
ath10k: wmi vdev stop id 0x1                                                    
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2ac2300                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12e15260 len 16 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f2cf20                      
ath10k: htc rx completion ep 2 skb d2c52aa0                                     
ath10k: WMI_VDEV_STOPPED_EVENTID                                                
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: mac monitor vdev 1 stopped                                              
ath10k: mac monitor refs: promisc 1 monitor 0 cac 1                             
ath10k: wmi vdev start id 0x1 flags: 0x0, freq 5260, mode 6, ch_flags: 0x406, ma
x_power: 40                                                                     
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12e15260 len 140 n_items 1                        
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f2c620                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2c529e0                                     
ath10k: WMI_VDEV_START_RESP_EVENTID                                             
ath10k: wmi mgmt vdev up id 0x1 assoc id 0 bssid 04:f0:21:0e:38:be              
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12e15260 len 28 n_items 1                         
ath10k: mac monitor vdev 1 started                                              
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c529e0                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: mac config power 17                                                     
ath10k: wmi pdev set param 3 value 34                                           
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12e15260 len 20 n_items 1                         
ath10k: wmi pdev set param 4 value 34                                           
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f2c4a0                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12e04e60 len 20 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f2c6e0                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2c52920                                     
ath10k: event mgmt rx status 00000000                                           
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2f2c260                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx mgmt ctrl                                                        
eth0: no IPv6 routers present                                                   
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2f2c1a0                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htc rx completion ep 2 skb d2c52860                                     
ath10k: event mgmt rx status 00000000                                           
ath10k: htt rx mgmt ctrl                                                        
br0: no IPv6 routers present                                                    
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2f2c0e0                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htc rx completion ep 2 skb d2c527a0                                     
ath10k: event mgmt rx status 00000000                                           
ath10k: htt rx mgmt ctrl                                                        
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb c0fd2ec0                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htc rx completion ep 2 skb d2c526e0                                     
ath10k: event mgmt rx status 00000000                                           
ath10k: htt rx mgmt ctrl                                                        
ath10k: htc rx completion ep 2 skb d2c52620                                     
ath10k: event mgmt rx status 00000000                                           
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb c0fd2e00                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx mgmt ctrl                                                        
ath10k: htc rx completion ep 2 skb d2b6b500                                     
ath10k: event mgmt rx status 00000000                                           
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb c0fd2d40                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx mgmt ctrl                                                        
ath10k: htc rx completion ep 2 skb d2c524a0                                     
ath10k: event mgmt rx status 00000000                                           
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb c0fd2c80                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx mgmt ctrl                                                        
ath10k: htc rx completion ep 2 skb d2ac2cc0                                     
ath10k: event mgmt rx status 00000000                                           
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb c0fd2bc0                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx mgmt ctrl                                                        
ath10k: htc rx completion ep 2 skb d2cb5bc0                                     
ath10k: event mgmt rx status 00000000                                           
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb c0fd2b00                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx mgmt ctrl                                                        
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb c0fd2a40                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx dropping due to zero-len                                         
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb c0fd2980                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx dropping due to zero-len                                         
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb c0fd28c0                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx dropping due to zero-len                                         
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb c0fd2800                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htc rx completion ep 2 skb d2c52260                                     
ath10k: event mgmt rx status 00000000                                           
ath10k: htt rx mgmt ctrl                                                        
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb c0fd2740                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htc rx completion ep 2 skb d2ac2a80                                     
ath10k: event mgmt rx status 00000000                                           
ath10k: htt rx mgmt ctrl                                                        
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb c0fd2680                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htc rx completion ep 2 skb d2ac29c0                                     
ath10k: event mgmt rx status 00000000                                           
ath10k: htt rx mgmt ctrl                                                        
ath10k: mac config channel 5260MHz flags 0x10a radar 0                          
ath10k: mac monitor refs: promisc 1 monitor 0 cac 0                             
ath10k: mac monitor will be stopped later                                       
ath10k: mac cac finished                                                        
ath10k: mac config channel to 5260MHz (cf1 5260MHz cf2 0MHz width 20 (noht))    
ath10k: wmi mgmt vdev down id 0x1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x008f4660 len 16 n_items 1                         
ath10k: wmi vdev stop id 0x1                                                    
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e39200                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12fff860 len 16 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e39740                      
ath10k: htc rx completion ep 2 skb d28886a0                                     
ath10k: WMI_VDEV_STOPPED_EVENTID                                                
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: mac monitor vdev 1 stopped                                              
ath10k: mac monitor refs: promisc 1 monitor 0 cac 0                             
ath10k: wmi vdev start id 0x1 flags: 0x0, freq 5260, mode 0, ch_flags: 0x400, ma
x_power: 40                                                                     
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12fff860 len 140 n_items 1                        
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0fd2500                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d28389c0                                     
ath10k: WMI_VDEV_START_RESP_EVENTID                                             
ath10k: wmi mgmt vdev up id 0x1 assoc id 0 bssid 04:f0:21:0e:38:be              
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12fff860 len 28 n_items 1                         
ath10k: mac monitor vdev 1 started                                              
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d28389c0                      
ath10k: mac config power 20                                                     
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: wmi pdev set param 3 value 40                                           
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12fff860 len 20 n_items 1                         
ath10k: wmi pdev set param 4 value 40                                           
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0fd2380                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x008f4660 len 20 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0fd25c0                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: mac vdev 0 rts threshold -1                                             
ath10k: wmi vdev id 0x0 set param 1 value -1                                    
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x008f4660 len 24 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0fd25c0                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: mac config channel 5260MHz flags 0x10a radar 1                          
ath10k: mac monitor refs: promisc 1 monitor 0 cac 1                             
ath10k: mac monitor already started                                             
ath10k: mac cac start monitor vdev 1                                            
ath10k: mac config channel to 5260MHz (cf1 5270MHz cf2 0MHz width 40)           
ath10k: wmi mgmt vdev down id 0x1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12bdae60 len 16 n_items 1                         
ath10k: wmi vdev stop id 0x1                                                    
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f2cda0                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12879e60 len 16 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f2c320                      
ath10k: htc rx completion ep 2 skb d2c369c0                                     
ath10k: WMI_VDEV_STOPPED_EVENTID                                                
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: mac monitor vdev 1 stopped                                              
ath10k: mac monitor refs: promisc 1 monitor 0 cac 1                             
ath10k: wmi vdev start id 0x1 flags: 0x0, freq 5260, mode 6, ch_flags: 0x406, ma
x_power: 40                                                                     
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12879e60 len 140 n_items 1                        
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2ed0ee0                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb c10ee4a0                                     
ath10k: WMI_VDEV_START_RESP_EVENTID                                             
ath10k: wmi mgmt vdev up id 0x1 assoc id 0 bssid 04:f0:21:0e:38:be              
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12e04260 len 28 n_items 1                         
ath10k: mac monitor vdev 1 started                                              
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c10ee4a0                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: mac config power 17                                                     
ath10k: wmi pdev set param 3 value 34                                           
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12e04260 len 20 n_items 1                         
ath10k: wmi pdev set param 4 value 34                                           
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2ed0d60                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12bdae60 len 20 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2ac2a80                      
ath10k: wmi vdev id 0x0 set param 3 value 100                                   
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12bdae60 len 24 n_items 1                         
ath10k: mac vdev 0 beacon_interval 100                                          
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2ac2a80                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: vdev 0 set beacon tx mode to staggered                                  
ath10k: wmi pdev set param 7 value 0                                            
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12bdae60 len 20 n_items 1                         
ath10k: mac vdev 0 start center_freq 5260 phymode 11na-ht40                     
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2ed0b20                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: wmi vdev start id 0x0 flags: 0x0, freq 5260, mode 6, ch_flags: 0x406, ma
x_power: 40                                                                     
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12bdae60 len 140 n_items 1                        
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2ed0a60                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2838e40                                     
ath10k: WMI_VDEV_START_RESP_EVENTID                                             
ath10k: mac monitor refs: promisc 1 monitor 0 cac 0                             
ath10k: mac monitor will be stopped later                                       
ath10k: mac cac finished                                                        
ath10k: wmi mgmt vdev up id 0x0 assoc id 0 bssid 04:f0:21:0e:38:be              
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12fff460 len 28 n_items 1                         
ath10k: mac vdev 0 up                                                           
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2838e40                      
ath10k: htc rx completion ep 2 skb d2c2dbe0                                     
ath10k: WMI_TBTTOFFSET_UPDATE_EVENTID                                           
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: mac vdev 0 cts_prot 0                                                   
ath10k: wmi vdev id 0x0 set param 43 value 0                                    
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12fff460 len 24 n_items 1                         
ath10k: mac vdev 0 slot_time 2                                                  
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2ed08e0                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: wmi vdev id 0x0 set param 7 value 2                                     
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12fff460 len 24 n_items 1                         
ath10k: mac vdev 0 preamble 1n                                                  
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2ed0820                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: wmi vdev id 0x0 set param 8 value 1                                     
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12fff460 len 24 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2ed0760                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: wmi pdev set wmm params                                                 
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12fff460 len 108 n_items 1                        
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2838e40                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: wmi pdev set wmm params                                                 
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12fff460 len 108 n_items 1                        
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0fd2080                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: wmi pdev set wmm params                                                 
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12fff460 len 108 n_items 1                        
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2ed05e0                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: wmi pdev set wmm params                                                 
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12fff460 len 108 n_items 1                        
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2ed0520                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready                              
br0: port 2(wlan0) entering forwarding state                                    
br0: port 2(wlan0) entering forwarding state                                    
ath10k: htc rx completion ep 2 skb d2838c00                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 1/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x00879060 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2ed0460                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2e39d40                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 0/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x008f4060 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2ed0520                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2f2cc20                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 1/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x00879060 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2838780                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2ac2240                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 0/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x008f4060 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2838c00                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2c363c0                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 1/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x00879060 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e39d40                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2ac20c0                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 0/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x008f4060 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f2cc20                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2ac2180                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 1/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x00879060 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2ac2240                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2c52e60                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 0/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x008f4060 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c363c0                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2c52f20                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 1/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x008f4460 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2ac20c0                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2c52ce0                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 0/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12e04e60 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2ed03a0                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2c52da0                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 1/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x008f4460 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c52e60                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2f2cf20                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 0/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12e04c60 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2dbac00                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2f2c560                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 1/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12bdae60 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c52ce0                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2c36180                                     
ath10k: event mgmt rx status 00000000                                           
ath10k: event mgmt rx skb d2c36180 len 96 ftype 00 stype 40                     
ath10k: event mgmt rx freq 5260 band 1 snr -14, rate_idx 0                      
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2dba840                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx mgmt ctrl                                                        
ath10k: htc rx completion ep 2 skb d2c52c20                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 0/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x00879060 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c52da0                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb c10ee0e0                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 1/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12bdae60 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c52f20                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb c10ee620                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 0/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x00879060 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f2cf20                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2e39a40                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 1/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12bdae60 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c52c20                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2e39b00                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 0/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x00879060 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c10ee0e0                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2e398c0                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 1/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12bdae60 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c10ee620                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2e39800                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 0/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x00879060 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e39a40                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2c526e0                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 1/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12bdae60 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e39b00                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2c36a80                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 0/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12e04e60 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e398c0                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2e39c80                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 1/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x008f4060 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e39800                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2c52260                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 0/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12e04c60 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c526e0                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2e39740                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 1/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x008f4460 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c36a80                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb c0fd2440                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 0/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x00879060 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e39c80                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2f2c320                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 1/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x008f4460 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c52260                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2e39380                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 0/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x00879060 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e39740                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2f2c3e0                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 1/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x008f4460 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0fd2440                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2f2c9e0                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 0/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x00879060 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f2c320                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2ed0e20                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 1/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x008f4460 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e39380                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2888760                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 0/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x00879060 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f2c3e0                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2ed02e0                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 1/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x008f4460 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f2c9e0                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2ed0220                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 0/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12e04e60 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2ed0e20                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2ed0160                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 1/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12bdae60 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2888760                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2ed00a0                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 0/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12e04c60 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2ed02e0                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2dbaf00                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 1/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x008f4060 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2ed0220                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2dbae40                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 0/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x00879060 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2ed0160                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2ac2180                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 1/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x008f4060 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2ed00a0                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2dbacc0                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 0/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x00879060 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2dbaf00                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2dbad80                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 1/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x008f4060 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2dbae40                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2dbab40                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 0/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x00879060 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2ac2180                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2dbaa80                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 1/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x008f4060 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2dbacc0                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2dba9c0                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 0/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x00879060 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2dbad80                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2f2c560                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 1/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x008f4060 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2dbab40                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2dba900                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 0/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x008f4460 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2dbaa80                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2dba780                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 1/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x008f4660 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2dba9c0                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2dba6c0                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 0/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12bdae60 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2f2c560                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2dba600                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 1/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12fff460 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2dba900                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2dba540                                     
ath10k: mgmt swba vdev_map 0x1                                                  
ath10k: mgmt event bcn_info 0 tim_len 0 mcast 0 changed 0 num_ps_pending 0 bitma
p 0x00000000000000000000000000000000                                            
ath10k: dtim 0/2 mcast 0 pvmlen 1                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12bdae60 len 36 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2dba780                      
ath10k: htc ep 2 got 1 credits (total 1)                                        

[-- Attachment #5: dmesg_wpa.txt --]
[-- Type: text/plain, Size: 84444 bytes --]

ath10k: boot warm reset                                                         
ath10k: boot host cpu intr cause: 0x00000000                                    
ath10k: boot target cpu intr cause: 0x00001000                                  
ath10k: boot host cpu intr cause: 0x00000000                                    
ath10k: boot target cpu intr cause: 0x00000000                                  
ath10k: boot target reset state: 0x00000800                                     
ath10k: boot warm reset complete                                                
ath10k: boot hif power down                                                     
ath10k: boot warm reset                                                         
ath10k: boot host cpu intr cause: 0x00000000                                    
ath10k: boot target cpu intr cause: 0x00000000                                  
ath10k: boot host cpu intr cause: 0x00000000                                    
ath10k: boot target cpu intr cause: 0x00000000                                  
ath10k: boot target reset state: 0x00000800                                     
ath10k: boot warm reset complete                                                
# dmesg | tail -1000                                                            
ath10k: boot ce dest ring id 1 entries 512 base_addr c0fe2000                   
ath10k: boot ce dest ring id 2 entries 32 base_addr d2f84000                    
ath10k: boot init ce src ring id 3 entries 32 base_addr d2d47000                
ath10k: boot init ce src ring id 4 entries 4096 base_addr d2980000              
ath10k: boot init ce src ring id 7 entries 2 base_addr d298f000                 
ath10k: boot ce dest ring id 7 entries 2 base_addr d298e000                     
ath10k: boot waiting target to initialise                                       
ath10k: boot target indicator 0                                                 
ath10k: boot target indicator 0                                                 
ath10k: boot target indicator 0                                                 
ath10k: boot target indicator 2                                                 
ath10k: boot target initialised                                                 
ath10k: bmi start                                                               
ath10k: bmi write address 0x400800 length 4                                     
ath10k: bmi read address 0x400810 length 4                                      
ath10k: bmi write address 0x400810 length 4                                     
ath10k: bmi write address 0x400844 length 4                                     
ath10k: bmi write address 0x400904 length 4                                     
ath10k: bmi read address 0x4008ac length 4                                      
ath10k: boot push board extended data addr 0x0                                  
ath10k: bmi read address 0x400854 length 4                                      
ath10k: bmi write address 0x401cc0 length 2116                                  
ath10k: bmi write address 0x400858 length 4                                     
ath10k: boot upload otp to 0x1234 len 5402                                      
ath10k: bmi fast download address 0x1234 buffer 0xe22d7038 length 5402          
ath10k: bmi lz stream start address 0x1234                                      
ath10k: bmi lz data buffer 0xe22d7038 length 5400                               
ath10k: bmi lz data buffer 0xd2be3d3c length 4                                  
ath10k: bmi lz stream start address 0x0                                         
ath10k: bmi execute address 0x1234 param 0x0                                    
ath10k: bmi execute result 0x0                                                  
ath10k: boot otp execute result 0                                               
ath10k: bmi fast download address 0x1234 buffer 0xe22d855c length 249093        
ath10k: bmi lz stream start address 0x1234                                      
ath10k: bmi lz data buffer 0xe22d855c length 249092                             
ath10k: bmi lz data buffer 0xd2be3d3c length 4                                  
ath10k: bmi lz stream start address 0x0                                         
ath10k: bmi write address 0x400814 length 4                                     
ath10k: pci hif set callbacks                                                   
ath10k: pci hif get default pipe                                                
ath10k: pci hif map service                                                     
ath10k: bmi done                                                                
ath10k: htt tx max num pending tx 1424                                          
ath10k: htt rx ring size 1024 fill_level 1000                                   
ath10k: boot hif start                                                          
ath10k: Target ready! transmit resources: 2 size:1792                           
ath10k: pci hif map service                                                     
ath10k: boot htc service 'Control' ul pipe 0 dl pipe 1 eid 0 ready              
ath10k: boot htc ep 0 ul polled 0 dl polled 0                                   
ath10k: boot htc service 'Control' eid 0 TX flow control disabled               
ath10k: boot htc service HTT Data does not allocate target credits              
ath10k: ath10k_htc_build_tx_ctrl_skb: skb d2e46840                              
ath10k: pci tx item 0 paddr 0x12ec806c len 16 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 0 skb d2e46840                      
ath10k: HTC Service HTT Data connect response: status: 0x0, assigned ep: 0x1    
ath10k: pci hif map service                                                     
ath10k: boot htc service 'HTT Data' ul pipe 4 dl pipe 1 eid 1 ready             
ath10k: boot htc ep 1 ul polled 1 dl polled 0                                   
ath10k: boot htc service 'HTT Data' eid 1 TX flow control disabled              
ath10k: ath10k_htc_build_tx_ctrl_skb: skb d2e46780                              
ath10k: pci tx item 0 paddr 0x12ec846c len 16 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 0 skb d2e46780                      
ath10k: HTC Service WMI connect response: status: 0x0, assigned ep: 0x2         
ath10k: pci hif map service                                                     
ath10k: boot htc service 'WMI' ul pipe 3 dl pipe 2 eid 2 ready                  
ath10k: boot htc ep 2 ul polled 0 dl polled 0                                   
ath10k: ath10k_htc_build_tx_ctrl_skb: skb d2e466c0                              
ath10k: HTC is using TX credit flow control                                     
ath10k: pci tx item 0 paddr 0x12ec886c len 20 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 0 skb d2e466c0                      
ath10k: htc rx completion ep 2 skb d2fedec0                                     
ath10k: wmi event service ready sw_ver 0x01000000 sw_ver1 0x0000027c abi_ver 3 p
hy_cap 0x00000003 ht_cap 0x0000085b vht_cap 0x338001b2 vht_supp_msc 0x0000fffa s
ys_cap_info 0x00000000 mem_reqs 0 num_rf_chains 2                               
ath10k: firmware 999.999.0.636 booted                                           
ath10k: wmi init                                                                
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12a05a60 len 148 n_items 1                        
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fedec0                      
ath10k: htc rx completion ep 2 skb d2fede00                                     
ath10k: wmi event ready sw_version 16777216 abi_version 3 mac_addr 00:03:07:12:3
4:56 status 0 skb->len 20 ev-sz 20                                              
ath10k: pci tx item 0 paddr 0x12a05c60 len 12 n_items 1                         
ath10k: pci hif send complete check                                             
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb d29f36a0                      
ath10k: htc rx completion ep 1 skb d2e46600                                     
ath10k: htt rx, msg_type: 0x0                                                   
ath10k: htt target version 2.1                                                  
ath10k: pci tx item 0 paddr 0x12a05c60 len 48 n_items 1                         
ath10k: wmi pdev set param 34 value 1                                           
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12a05460 len 20 n_items 1                         
ath10k: wmi pdev set param 10 value 1                                           
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d29f36a0                      
ath10k: htc ep 2 got 2 credits (total 2)                                        
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12a05260 len 20 n_items 1                         
ath10k: wmi pdev set param 1 value 7                                            
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d29f3520                      
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12a05460 len 20 n_items 1                         
ath10k: wmi pdev set param 2 value 7                                            
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e46540                      
ath10k: htc ep 2 got 2 credits (total 2)                                        
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12a05260 len 20 n_items 1                         
ath10k: wmi pdev set param 35 value 0                                           
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d29f3520                      
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12a05460 len 20 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e46480                      
ath10k: htc ep 2 got 2 credits (total 2)                                        
ath10k: mac channel [0/32] freq 2412 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [1/32] freq 2417 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [2/32] freq 2422 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [3/32] freq 2427 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [4/32] freq 2432 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [5/32] freq 2437 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [6/32] freq 2442 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [7/32] freq 2447 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [8/32] freq 2452 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [9/32] freq 2457 maxpower 40 regpower 40 antenna 0 mode 1   
ath10k: mac channel [10/32] freq 2462 maxpower 40 regpower 40 antenna 0 mode 1  
ath10k: mac channel [11/32] freq 2467 maxpower 40 regpower 40 antenna 0 mode 1  
ath10k: mac channel [12/32] freq 2472 maxpower 40 regpower 40 antenna 0 mode 1  
ath10k: mac channel [13/32] freq 5180 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [14/32] freq 5200 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [15/32] freq 5220 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [16/32] freq 5240 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [17/32] freq 5260 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [18/32] freq 5280 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [19/32] freq 5300 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [20/32] freq 5320 maxpower 40 regpower 40 antenna 0 mode 0  
ath10k: mac channel [21/32] freq 5500 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [22/32] freq 5520 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [23/32] freq 5540 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [24/32] freq 5560 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [25/32] freq 5580 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [26/32] freq 5600 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [27/32] freq 5620 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [28/32] freq 5640 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [29/32] freq 5660 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [30/32] freq 5680 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: mac channel [31/32] freq 5700 maxpower 54 regpower 54 antenna 0 mode 0  
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x128ab060 len 784 n_items 1                        
ath10k: wmi pdev regdomain rd 37 rd2g 37 rd5g 37 ctl2g 30 ctl5g 30              
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e463c0                      
ath10k: pci tx item 0 paddr 0x12a05460 len 32 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d29f3520                      
ath10k: htc ep 2 got 2 credits (total 2)                                        
ath10k: mac vdev create 0 (add interface) type 2 subtype 0                      
ath10k: WMI vdev create: id 0 type 2 subtype 0 macaddr 00:03:07:12:34:56        
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12a05460 len 32 n_items 1                         
ath10k: wmi vdev id 0x0 set param 33 value 0                                    
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e46300                      
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12a05260 len 24 n_items 1                         
ath10k: wmi vdev id 0x0 set param 48 value 1                                    
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e463c0                      
ath10k: htc ep 2 got 2 credits (total 2)                                        
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12a05460 len 24 n_items 1                         
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0                            
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e46300                      
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12a05260 len 24 n_items 1                         
ath10k: wmi sta ps param vdev_id 0x0 param 1 value 1                            
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e46240                      
ath10k: htc ep 2 got 2 credits (total 2)                                        
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12a05460 len 24 n_items 1                         
ath10k: wmi sta ps param vdev_id 0x0 param 2 value 0                            
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e46300                      
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12a05260 len 24 n_items 1                         
ath10k: wmi vdev id 0x0 set param 1 value -1                                    
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e46180                      
ath10k: htc ep 2 got 2 credits (total 2)                                        
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12a05460 len 24 n_items 1                         
ath10k: wmi vdev id 0x0 set param 2 value -1                                    
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e46300                      
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12a05260 len 24 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e460c0                      
ath10k: htc ep 2 got 2 credits (total 2)                                        
ath10k: mac vdev 0 cts_prot 0                                                   
ath10k: wmi vdev id 0x0 set param 44 value 0                                    
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12a05260 len 24 n_items 1                         
ath10k: mac vdev 0 slot_time 1                                                  
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2facf20                      
ath10k: wmi vdev id 0x0 set param 7 value 1                                     
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12a05260 len 24 n_items 1                         
ath10k: mac vdev 0 preamble 1n                                                  
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2facf20                      
ath10k: htc ep 2 got 2 credits (total 2)                                        
ath10k: wmi vdev id 0x0 set param 8 value 1                                     
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12a05260 len 24 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2face60                      
ath10k: wmi pdev set wmm params                                                 
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12a05260 len 108 n_items 1                        
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0                            
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2face60                      
ath10k: htc ep 2 got 2 credits (total 2)                                        
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12a05460 len 24 n_items 1                         
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0                            
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e46300                      
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12a05260 len 24 n_items 1                         
ath10k: wmi pdev set wmm params                                                 
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2facda0                      
ath10k: htc ep 2 got 2 credits (total 2)                                        
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12a05460 len 108 n_items 1                        
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0                            
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e46300                      
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12a05260 len 24 n_items 1                         
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0                            
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2facce0                      
ath10k: htc ep 2 got 2 credits (total 2)                                        
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12a05460 len 24 n_items 1                         
ath10k: wmi pdev set wmm params                                                 
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e46300                      
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12a05260 len 108 n_items 1                        
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0                            
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2facc20                      
ath10k: htc ep 2 got 2 credits (total 2)                                        
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12a05460 len 24 n_items 1                         
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0                            
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e46300                      
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12a05260 len 24 n_items 1                         
ath10k: wmi pdev set wmm params                                                 
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2facb60                      
ath10k: htc ep 2 got 2 credits (total 2)                                        
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12a05460 len 108 n_items 1                        
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0                            
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e46300                      
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12a05260 len 24 n_items 1                         
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0                            
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2facaa0                      
ath10k: htc ep 2 got 2 credits (total 2)                                        
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12a05460 len 24 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e46300                      
ath10k: mac config channel 5260MHz flags 0x10a radar 0                          
ath10k: mac config power 20                                                     
ath10k: wmi pdev set param 3 value 40                                           
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12a05460 len 20 n_items 1                         
ath10k: wmi pdev set param 4 value 40                                           
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e46300                      
ath10k: htc ep 2 got 2 credits (total 2)                                        
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12a05260 len 20 n_items 1                         
ath10k: mac vdev 0 psmode disable                                               
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fac9e0                      
ath10k: wmi set powersave id 0x0 mode 0                                         
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12a05260 len 20 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fac9e0                      
ath10k: htc ep 2 got 2 credits (total 2)                                        
ADDRCONF(NETDEV_UP): wlan0: link is not ready                                   
ath10k: htc rx completion ep 2 skb d2fedd40                                     
ath10k: wmi event debug mesg len 12                                             
ath10k: wmi start scan                                                          
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12e03460 len 208 n_items 1                        
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2bdfc00                      
ath10k: htc rx completion ep 2 skb d2fedc80                                     
ath10k: WMI_SCAN_EVENTID                                                        
ath10k: scan event type 1 reason 4 freq 0 req_id 40961 scan_id 40960 vdev_id 0  
ath10k: SCAN_EVENT_STARTED                                                      
ath10k: htc rx completion ep 2 skb d2fedbc0                                     
ath10k: WMI_SCAN_EVENTID                                                        
ath10k: scan event type 4 reason 4 freq 0 req_id 40961 scan_id 40960 vdev_id 0  
ath10k: SCAN_EVENT_BSS_CHANNEL                                                  
ath10k: htc ep 2 got 1 credits (total 2)                                        
ath10k: htc rx completion ep 2 skb d2fedb00                                     
ath10k: WMI_SCAN_EVENTID                                                        
ath10k: scan event type 8 reason 4 freq 5260 req_id 40961 scan_id 40960 vdev_id 
0                                                                               
ath10k: SCAN_EVENT_FOREIGN_CHANNEL                                              
ath10k: htc rx completion ep 2 skb d2feda40                                     
ath10k: chan info err_code 0 freq 5260 cmd_flags 0 noise_floor 0 rx_clear_count 
536908 cycle_count 754115                                                       
ath10k: htc rx completion ep 2 skb d2fed980                                     
ath10k: event mgmt rx status 00000000                                           
ath10k: event mgmt rx skb d2fed980 len 168 ftype 00 stype 80                    
ath10k: event mgmt rx freq 5260 band 1 snr -9, rate_idx 0                       
ath10k: pci hif send complete check                                             
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb d2e46600                      
ath10k: htc rx completion ep 1 skb d2fac7a0                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx mgmt ctrl                                                        
ath10k: htc rx completion ep 2 skb d2fed8c0                                     
ath10k: WMI_SCAN_EVENTID                                                        
ath10k: scan event type 4 reason 4 freq 5260 req_id 40961 scan_id 40960 vdev_id 
0                                                                               
ath10k: SCAN_EVENT_BSS_CHANNEL                                                  
ath10k: htc rx completion ep 2 skb d2fed800                                     
ath10k: chan info err_code 0 freq 5260 cmd_flags 1 noise_floor -97 rx_clear_coun
t 558888 cycle_count 13254640                                                   
ath10k: htc rx completion ep 2 skb d2fed740                                     
ath10k: WMI_SCAN_EVENTID                                                        
ath10k: scan event type 2 reason 0 freq 5260 req_id 40961 scan_id 40960 vdev_id 
0                                                                               
ath10k: SCAN_EVENT_COMPLETED                                                    
ath10k: SCAN_REASON_COMPLETED                                                   
wlan0: authenticate with 04:f0:21:0e:38:be                                      
ath10k: mac config channel 5260MHz flags 0x10a radar 0                          
ath10k: mac config channel to 5260MHz (cf1 5270MHz cf2 0MHz width 40)           
ath10k: mac monitor refs: promisc 0 monitor 0 cac 0                             
ath10k: mac config power 19                                                     
ath10k: wmi pdev set param 3 value 38                                           
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12a05460 len 20 n_items 1                         
ath10k: wmi pdev set param 4 value 38                                           
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fed980                      
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12a05260 len 20 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2feda40                      
ath10k: wmi vdev id 0x0 set param 3 value 100                                   
ath10k: htc ep 2 got 2 credits (total 2)                                        
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12a05260 len 24 n_items 1                         
ath10k: mac vdev 0 beacon_interval 100                                          
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2feda40                      
ath10k: mac vdev 0 create peer 04:f0:21:0e:38:be                                
ath10k: wmi peer create vdev_id 0 peer_addr 04:f0:21:0e:38:be                   
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12a05260 len 24 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2feda40                      
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2fac620                                     
ath10k: htt rx, msg_type: 0x3                                                   
ath10k: htt peer map vdev 0 peer 04:f0:21:0e:38:be id 13                        
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2fac560                                     
ath10k: htt rx, msg_type: 0x3                                                   
ath10k: htt peer map vdev 0 peer 04:f0:21:0e:38:be id 125                       
ath10k: htc ep 2 got 2 credits (total 2)                                        
ath10k: mac vdev 0 start 04:f0:21:0e:38:be                                      
ath10k: mac vdev 0 start center_freq 5260 phymode 11na-ht40                     
ath10k: wmi vdev start id 0x0 flags: 0x0, freq 5260, mode 6, ch_flags: 0x6, max_
power: 40                                                                       
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12a05460 len 140 n_items 1                        
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fac4a0                      
ath10k: htc ep 2 got 1 credits (total 2)                                        
ath10k: htc rx completion ep 2 skb d2fed680                                     
ath10k: WMI_VDEV_START_RESP_EVENTID                                             
wlan0: direct probe to 04:f0:21:0e:38:be (try 1/3)                              
ath10k: htt tx alloc msdu_id 0                                                  
ath10k: pci tx item 0 paddr 0x12d23660 len 60 n_items 1                         
ath10k: pci hif send complete check                                             
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb d29f30a0                      
ath10k: htc rx completion ep 1 skb d2fac3e0                                     
ath10k: htt rx, msg_type: 0xE                                                   
ath10k: htt tx completion msdu_id 0 discard 0 no_ack 0                          
ath10k: htt tx free msdu_id 0                                                   
wlan0: direct probe to 04:f0:21:0e:38:be (try 2/3)                              
ath10k: htt tx alloc msdu_id 0                                                  
ath10k: pci tx item 0 paddr 0x12e03460 len 60 n_items 1                         
ath10k: pci hif send complete check                                             
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb d29f3220                      
ath10k: htc rx completion ep 1 skb d2fac320                                     
ath10k: htt rx, msg_type: 0xE                                                   
ath10k: htt tx completion msdu_id 0 discard 0 no_ack 0                          
ath10k: htt tx free msdu_id 0                                                   
wlan0: direct probe to 04:f0:21:0e:38:be (try 3/3)                              
ath10k: htt tx alloc msdu_id 0                                                  
ath10k: pci tx item 0 paddr 0x12a05060 len 60 n_items 1                         
ath10k: pci hif send complete check                                             
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb d29f30a0                      
ath10k: htc rx completion ep 1 skb d2fac260                                     
ath10k: htt rx, msg_type: 0xE                                                   
ath10k: htt tx completion msdu_id 0 discard 0 no_ack 0                          
ath10k: htt tx free msdu_id 0                                                   
wlan0: authentication with 04:f0:21:0e:38:be timed out                          
ath10k: mac vdev 0 peer delete 04:f0:21:0e:38:be (sta gone)                     
ath10k: wmi peer delete vdev_id 0 peer_addr 04:f0:21:0e:38:be                   
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12e03c60 len 24 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fac320                      
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2fac1a0                                     
ath10k: htt rx, msg_type: 0x4                                                   
ath10k: htt peer unmap vdev 0 peer 04:f0:21:0e:38:be id 13                      
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2fac0e0                                     
ath10k: htt rx, msg_type: 0x4                                                   
ath10k: htt peer unmap vdev 0 peer 04:f0:21:0e:38:be id 125                     
ath10k: mac vdev 0 stop (disassociated                                          
ath10k: wmi vdev stop id 0x0                                                    
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12a05260 len 16 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fac0e0                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2fed5c0                                     
ath10k: WMI_VDEV_STOPPED_EVENTID                                                
ath10k: mac vdev 0 down                                                         
ath10k: wmi mgmt vdev down id 0x0                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12a05260 len 16 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fed5c0                      
ath10k: htc ep 2 got 2 credits (total 2)                                        
ath10k: mac config channel 5260MHz flags 0x10a radar 0                          
ath10k: mac config channel to 5260MHz (cf1 5260MHz cf2 0MHz width 20 (noht))    
ath10k: mac monitor refs: promisc 0 monitor 0 cac 0                             
ath10k: mac config power 20                                                     
ath10k: wmi pdev set param 3 value 40                                           
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12a05260 len 20 n_items 1                         
ath10k: wmi pdev set param 4 value 40                                           
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d29f3220                      
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12e03c60 len 20 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d29f33a0                      
ath10k: htc ep 2 got 2 credits (total 2)                                        
ath10k: htc rx completion ep 2 skb d2fed500                                     
ath10k: wmi event debug mesg len 84                                             
ath10k: wmi start scan                                                          
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x1295ae60 len 208 n_items 1                        
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fed500                      
ath10k: htc rx completion ep 2 skb d2fed440                                     
ath10k: WMI_SCAN_EVENTID                                                        
ath10k: scan event type 1 reason 4 freq 5260 req_id 40961 scan_id 40960 vdev_id 
0                                                                               
ath10k: SCAN_EVENT_STARTED                                                      
ath10k: htc rx completion ep 2 skb d2fed380                                     
ath10k: WMI_SCAN_EVENTID                                                        
ath10k: scan event type 4 reason 4 freq 5260 req_id 40961 scan_id 40960 vdev_id 
0                                                                               
ath10k: SCAN_EVENT_BSS_CHANNEL                                                  
ath10k: htc rx completion ep 2 skb d2fed2c0                                     
ath10k: chan info err_code 0 freq 5260 cmd_flags 1 noise_floor -97 rx_clear_coun
t 1240320 cycle_count 69883904                                                  
ath10k: htc ep 2 got 1 credits (total 2)                                        
ath10k: htc rx completion ep 2 skb d2fed200                                     
ath10k: WMI_SCAN_EVENTID                                                        
ath10k: scan event type 8 reason 4 freq 5260 req_id 40961 scan_id 40960 vdev_id 
0                                                                               
ath10k: SCAN_EVENT_FOREIGN_CHANNEL                                              
ath10k: htc rx completion ep 2 skb d2fed140                                     
ath10k: chan info err_code 0 freq 5260 cmd_flags 0 noise_floor 0 rx_clear_count 
1778356 cycle_count 70601572                                                    
ath10k: htc rx completion ep 2 skb d2fed080                                     
ath10k: event mgmt rx status 00000000                                           
ath10k: event mgmt rx skb d2fed080 len 168 ftype 00 stype 80                    
ath10k: event mgmt rx freq 5260 band 1 snr -20, rate_idx 0                      
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2fadd40                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx mgmt ctrl                                                        
ath10k: htc rx completion ep 2 skb d29f3ee0                                     
ath10k: WMI_SCAN_EVENTID                                                        
ath10k: scan event type 4 reason 4 freq 5260 req_id 40961 scan_id 40960 vdev_id 
0                                                                               
ath10k: SCAN_EVENT_BSS_CHANNEL                                                  
ath10k: htc rx completion ep 2 skb d29f3e20                                     
ath10k: chan info err_code 0 freq 5260 cmd_flags 1 noise_floor -97 rx_clear_coun
t 1800358 cycle_count 83106456                                                  
ath10k: htc rx completion ep 2 skb d29f3d60                                     
ath10k: WMI_SCAN_EVENTID                                                        
ath10k: scan event type 2 reason 0 freq 5260 req_id 40961 scan_id 40960 vdev_id 
0                                                                               
ath10k: SCAN_EVENT_COMPLETED                                                    
ath10k: SCAN_REASON_COMPLETED                                                   
wlan0: authenticate with 04:f0:21:0e:38:be                                      
ath10k: mac config channel 5260MHz flags 0x10a radar 0                          
ath10k: mac config channel to 5260MHz (cf1 5270MHz cf2 0MHz width 40)           
ath10k: mac monitor refs: promisc 0 monitor 0 cac 0                             
ath10k: mac config power 19                                                     
ath10k: wmi pdev set param 3 value 38                                           
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12a05260 len 20 n_items 1                         
ath10k: wmi pdev set param 4 value 38                                           
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fed080                      
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12e03c60 len 20 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fac6e0                      
ath10k: wmi vdev id 0x0 set param 3 value 100                                   
ath10k: htc ep 2 got 2 credits (total 2)                                        
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12e03c60 len 24 n_items 1                         
ath10k: mac vdev 0 beacon_interval 100                                          
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fac6e0                      
ath10k: mac vdev 0 create peer 04:f0:21:0e:38:be                                
ath10k: wmi peer create vdev_id 0 peer_addr 04:f0:21:0e:38:be                   
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12e03c60 len 24 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fac6e0                      
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2fadbc0                                     
ath10k: htt rx, msg_type: 0x3                                                   
ath10k: htt peer map vdev 0 peer 04:f0:21:0e:38:be id 13                        
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2fadb00                                     
ath10k: htt rx, msg_type: 0x3                                                   
ath10k: htt peer map vdev 0 peer 04:f0:21:0e:38:be id 125                       
ath10k: htc ep 2 got 2 credits (total 2)                                        
ath10k: mac vdev 0 start 04:f0:21:0e:38:be                                      
ath10k: mac vdev 0 start center_freq 5260 phymode 11na-ht40                     
ath10k: wmi vdev start id 0x0 flags: 0x0, freq 5260, mode 6, ch_flags: 0x6, max_
power: 40                                                                       
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12a05260 len 140 n_items 1                        
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fada40                      
ath10k: htc ep 2 got 1 credits (total 2)                                        
ath10k: htc rx completion ep 2 skb d29f3ca0                                     
ath10k: WMI_VDEV_START_RESP_EVENTID                                             
wlan0: direct probe to 04:f0:21:0e:38:be (try 1/3)                              
ath10k: htt tx alloc msdu_id 0                                                  
ath10k: pci tx item 0 paddr 0x12a05060 len 60 n_items 1                         
ath10k: pci hif send complete check                                             
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb d29f3ca0                      
ath10k: htc rx completion ep 1 skb d2fad980                                     
ath10k: htt rx, msg_type: 0xE                                                   
ath10k: htt tx completion msdu_id 0 discard 0 no_ack 0                          
ath10k: htt tx free msdu_id 0                                                   
wlan0: direct probe to 04:f0:21:0e:38:be (try 2/3)                              
ath10k: htt tx alloc msdu_id 0                                                  
ath10k: pci tx item 0 paddr 0x12d23660 len 60 n_items 1                         
ath10k: pci hif send complete check                                             
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb d29f30a0                      
ath10k: htc rx completion ep 1 skb d2fad8c0                                     
ath10k: htt rx, msg_type: 0xE                                                   
ath10k: htt tx completion msdu_id 0 discard 0 no_ack 0                          
ath10k: htt tx free msdu_id 0                                                   
wlan0: direct probe to 04:f0:21:0e:38:be (try 3/3)                              
ath10k: htt tx alloc msdu_id 0                                                  
ath10k: pci tx item 0 paddr 0x12e03460 len 60 n_items 1                         
ath10k: pci hif send complete check                                             
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb d2e46600                      
ath10k: htc rx completion ep 1 skb d2fad800                                     
ath10k: htt rx, msg_type: 0xE                                                   
ath10k: htt tx completion msdu_id 0 discard 0 no_ack 0                          
ath10k: htt tx free msdu_id 0                                                   
wlan0: authentication with 04:f0:21:0e:38:be timed out                          
ath10k: mac vdev 0 peer delete 04:f0:21:0e:38:be (sta gone)                     
ath10k: wmi peer delete vdev_id 0 peer_addr 04:f0:21:0e:38:be                   
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12a05660 len 24 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fad8c0                      
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2fad740                                     
ath10k: htt rx, msg_type: 0x4                                                   
ath10k: htt peer unmap vdev 0 peer 04:f0:21:0e:38:be id 13                      
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2fad680                                     
ath10k: htt rx, msg_type: 0x4                                                   
ath10k: htt peer unmap vdev 0 peer 04:f0:21:0e:38:be id 125                     
ath10k: mac vdev 0 stop (disassociated                                          
ath10k: wmi vdev stop id 0x0                                                    
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12e03c60 len 16 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fad680                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d29f3be0                                     
ath10k: WMI_VDEV_STOPPED_EVENTID                                                
ath10k: mac vdev 0 down                                                         
ath10k: wmi mgmt vdev down id 0x0                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12e03c60 len 16 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d29f3be0                      
ath10k: htc ep 2 got 2 credits (total 2)                                        
ath10k: mac config channel 5260MHz flags 0x10a radar 0                          
ath10k: mac config channel to 5260MHz (cf1 5260MHz cf2 0MHz width 20 (noht))    
ath10k: mac monitor refs: promisc 0 monitor 0 cac 0                             
ath10k: mac config power 20                                                     
ath10k: wmi pdev set param 3 value 40                                           
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12e03c60 len 20 n_items 1                         
ath10k: wmi pdev set param 4 value 40                                           
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fad5c0                      
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12a05660 len 20 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2bdf240                      
ath10k: htc ep 2 got 2 credits (total 2)                                        
ath10k: htc rx completion ep 2 skb d29f3b20                                     
ath10k: wmi event debug mesg len 76                                             
ath10k: wmi start scan                                                          
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12a05a60 len 208 n_items 1                        
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d29f3b20                      
ath10k: htc rx completion ep 2 skb d29f3a60                                     
ath10k: WMI_SCAN_EVENTID                                                        
ath10k: scan event type 1 reason 4 freq 5260 req_id 40961 scan_id 40960 vdev_id 
0                                                                               
ath10k: SCAN_EVENT_STARTED                                                      
ath10k: htc rx completion ep 2 skb d29f39a0                                     
ath10k: WMI_SCAN_EVENTID                                                        
ath10k: scan event type 4 reason 4 freq 5260 req_id 40961 scan_id 40960 vdev_id 
0                                                                               
ath10k: SCAN_EVENT_BSS_CHANNEL                                                  
ath10k: htc rx completion ep 2 skb d29f38e0                                     
ath10k: chan info err_code 0 freq 5260 cmd_flags 1 noise_floor -97 rx_clear_coun
t 2481559 cycle_count 139651552                                                 
ath10k: htc ep 2 got 1 credits (total 2)                                        
ath10k: htc rx completion ep 2 skb d29f3820                                     
ath10k: WMI_SCAN_EVENTID                                                        
ath10k: scan event type 8 reason 4 freq 5260 req_id 40961 scan_id 40960 vdev_id 
0                                                                               
ath10k: SCAN_EVENT_FOREIGN_CHANNEL                                              
ath10k: htc rx completion ep 2 skb d29f3760                                     
ath10k: chan info err_code 0 freq 5260 cmd_flags 0 noise_floor 0 rx_clear_count 
3019471 cycle_count 140368132                                                   
ath10k: htc rx completion ep 2 skb d2e466c0                                     
ath10k: event mgmt rx status 00000000                                           
ath10k: event mgmt rx skb d2e466c0 len 168 ftype 00 stype 80                    
ath10k: event mgmt rx freq 5260 band 1 snr -19, rate_idx 0                      
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2fad440                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx mgmt ctrl                                                        
ath10k: htc rx completion ep 2 skb d29f3160                                     
ath10k: WMI_SCAN_EVENTID                                                        
ath10k: scan event type 4 reason 4 freq 5260 req_id 40961 scan_id 40960 vdev_id 
0                                                                               
ath10k: SCAN_EVENT_BSS_CHANNEL                                                  
ath10k: htc rx completion ep 2 skb d2bdf780                                     
ath10k: chan info err_code 0 freq 5260 cmd_flags 1 noise_floor -98 rx_clear_coun
t 3041386 cycle_count 152872764                                                 
ath10k: htc rx completion ep 2 skb d2bdfc00                                     
ath10k: WMI_SCAN_EVENTID                                                        
ath10k: scan event type 2 reason 0 freq 5260 req_id 40961 scan_id 40960 vdev_id 
0                                                                               
ath10k: SCAN_EVENT_COMPLETED                                                    
ath10k: SCAN_REASON_COMPLETED                                                   
wlan0: authenticate with 04:f0:21:0e:38:be                                      
ath10k: mac config channel 5260MHz flags 0x10a radar 0                          
ath10k: mac config channel to 5260MHz (cf1 5270MHz cf2 0MHz width 40)           
ath10k: mac monitor refs: promisc 0 monitor 0 cac 0                             
ath10k: mac config power 19                                                     
ath10k: wmi pdev set param 3 value 38                                           
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12e03c60 len 20 n_items 1                         
ath10k: wmi pdev set param 4 value 38                                           
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e466c0                      
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12a05660 len 20 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2bdf300                      
ath10k: wmi vdev id 0x0 set param 3 value 100                                   
ath10k: htc ep 2 got 2 credits (total 2)                                        
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12a05660 len 24 n_items 1                         
ath10k: mac vdev 0 beacon_interval 100                                          
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2bdf300                      
ath10k: mac vdev 0 create peer 04:f0:21:0e:38:be                                
ath10k: wmi peer create vdev_id 0 peer_addr 04:f0:21:0e:38:be                   
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12a05660 len 24 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2bdf300                      
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2fad2c0                                     
ath10k: htt rx, msg_type: 0x3                                                   
ath10k: htt peer map vdev 0 peer 04:f0:21:0e:38:be id 13                        
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2fad200                                     
ath10k: htt rx, msg_type: 0x3                                                   
ath10k: htt peer map vdev 0 peer 04:f0:21:0e:38:be id 125                       
ath10k: htc ep 2 got 2 credits (total 2)                                        
ath10k: mac vdev 0 start 04:f0:21:0e:38:be                                      
ath10k: mac vdev 0 start center_freq 5260 phymode 11na-ht40                     
ath10k: wmi vdev start id 0x0 flags: 0x0, freq 5260, mode 6, ch_flags: 0x6, max_
power: 40                                                                       
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12e03c60 len 140 n_items 1                        
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fad140                      
ath10k: htc ep 2 got 1 credits (total 2)                                        
ath10k: htc rx completion ep 2 skb d2fedc80                                     
ath10k: WMI_VDEV_START_RESP_EVENTID                                             
wlan0: direct probe to 04:f0:21:0e:38:be (try 1/3)                              
ath10k: htt tx alloc msdu_id 0                                                  
ath10k: pci tx item 0 paddr 0x1295ae60 len 60 n_items 1                         
ath10k: pci hif send complete check                                             
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb d2fac3e0                      
ath10k: htc rx completion ep 1 skb d2fad080                                     
ath10k: htt rx, msg_type: 0xE                                                   
ath10k: htt tx completion msdu_id 0 discard 0 no_ack 0                          
ath10k: htt tx free msdu_id 0                                                   
wlan0: direct probe to 04:f0:21:0e:38:be (try 2/3)                              
ath10k: htt tx alloc msdu_id 0                                                  
ath10k: pci tx item 0 paddr 0x12a05060 len 60 n_items 1                         
ath10k: pci hif send complete check                                             
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb d2bdf540                      
ath10k: htc rx completion ep 1 skb d2faeee0                                     
ath10k: htt rx, msg_type: 0xE                                                   
ath10k: htt tx completion msdu_id 0 discard 0 no_ack 0                          
ath10k: htt tx free msdu_id 0                                                   
wlan0: direct probe to 04:f0:21:0e:38:be (try 3/3)                              
ath10k: htt tx alloc msdu_id 0                                                  
ath10k: pci tx item 0 paddr 0x12a05c60 len 60 n_items 1                         
ath10k: pci hif send complete check                                             
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb d2bdfc00                      
ath10k: htc rx completion ep 1 skb d2faee20                                     
ath10k: htt rx, msg_type: 0xE                                                   
ath10k: htt tx completion msdu_id 0 discard 0 no_ack 0                          
ath10k: htt tx free msdu_id 0                                                   
ath10k: htc rx completion ep 2 skb d29f32e0                                     
ath10k: wmi event debug mesg len 52                                             
wlan0: authentication with 04:f0:21:0e:38:be timed out                          
ath10k: mac vdev 0 peer delete 04:f0:21:0e:38:be (sta gone)                     
ath10k: wmi peer delete vdev_id 0 peer_addr 04:f0:21:0e:38:be                   
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12a05a60 len 24 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2bdf600                      
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2faed60                                     
ath10k: htt rx, msg_type: 0x4                                                   
ath10k: htt peer unmap vdev 0 peer 04:f0:21:0e:38:be id 13                      
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2faeca0                                     
ath10k: htt rx, msg_type: 0x4                                                   
ath10k: htt peer unmap vdev 0 peer 04:f0:21:0e:38:be id 125                     
ath10k: mac vdev 0 stop (disassociated                                          
ath10k: wmi vdev stop id 0x0                                                    
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12a05660 len 16 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2faeca0                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2fedb00                                     
ath10k: WMI_VDEV_STOPPED_EVENTID                                                
ath10k: mac vdev 0 down                                                         
ath10k: wmi mgmt vdev down id 0x0                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12a05660 len 16 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fedb00                      
ath10k: htc ep 2 got 2 credits (total 2)                                        
ath10k: mac config channel 5260MHz flags 0x10a radar 0                          
ath10k: mac config channel to 5260MHz (cf1 5260MHz cf2 0MHz width 20 (noht))    
ath10k: mac monitor refs: promisc 0 monitor 0 cac 0                             
ath10k: mac config power 20                                                     
ath10k: wmi pdev set param 3 value 40                                           
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12a05660 len 20 n_items 1                         
ath10k: wmi pdev set param 4 value 40                                           
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2bdf540                      
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12a05a60 len 20 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e46600                      
ath10k: htc ep 2 got 2 credits (total 2)                                        
ath10k: htc rx completion ep 2 skb d2bdf900                                     
ath10k: wmi event debug mesg len 28                                             
ath10k: wmi start scan                                                          
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12e03c60 len 208 n_items 1                        
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2bdf900                      
ath10k: htc rx completion ep 2 skb d2bdf9c0                                     
ath10k: WMI_SCAN_EVENTID                                                        
ath10k: scan event type 1 reason 4 freq 5260 req_id 40961 scan_id 40960 vdev_id 
0                                                                               
ath10k: SCAN_EVENT_STARTED                                                      
ath10k: htc rx completion ep 2 skb d2fed8c0                                     
ath10k: WMI_SCAN_EVENTID                                                        
ath10k: scan event type 4 reason 4 freq 5260 req_id 40961 scan_id 40960 vdev_id 
0                                                                               
ath10k: SCAN_EVENT_BSS_CHANNEL                                                  
ath10k: htc rx completion ep 2 skb d2fed800                                     
ath10k: chan info err_code 0 freq 5260 cmd_flags 1 noise_floor -97 rx_clear_coun
t 3724146 cycle_count 209083730                                                 
ath10k: htc ep 2 got 1 credits (total 2)                                        
ath10k: htc rx completion ep 2 skb d2fac4a0                                     
ath10k: WMI_SCAN_EVENTID                                                        
ath10k: scan event type 8 reason 4 freq 5260 req_id 40961 scan_id 40960 vdev_id 
0                                                                               
ath10k: SCAN_EVENT_FOREIGN_CHANNEL                                              
ath10k: htc rx completion ep 2 skb d2fac0e0                                     
ath10k: chan info err_code 0 freq 5260 cmd_flags 0 noise_floor 0 rx_clear_count 
4306198 cycle_count 209860638                                                   
ath10k: htc rx completion ep 2 skb d2fed680                                     
ath10k: event mgmt rx status 00000000                                           
ath10k: event mgmt rx skb d2fed680 len 168 ftype 00 stype 80                    
ath10k: event mgmt rx freq 5260 band 1 snr -22, rate_idx 0                      
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2faea60                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx mgmt ctrl                                                        
ath10k: htc rx completion ep 2 skb d2fed500                                     
ath10k: event mgmt rx status 00000000                                           
ath10k: event mgmt rx skb d2fed500 len 168 ftype 00 stype 80                    
ath10k: event mgmt rx freq 5260 band 1 snr -19, rate_idx 0                      
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2fae9a0                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx mgmt ctrl                                                        
ath10k: htc rx completion ep 2 skb d2fed440                                     
ath10k: WMI_SCAN_EVENTID                                                        
ath10k: scan event type 4 reason 4 freq 5260 req_id 40961 scan_id 40960 vdev_id 
0                                                                               
ath10k: SCAN_EVENT_BSS_CHANNEL                                                  
ath10k: htc rx completion ep 2 skb d2fed380                                     
ath10k: chan info err_code 0 freq 5260 cmd_flags 1 noise_floor -98 rx_clear_coun
t 4350426 cycle_count 222306446                                                 
ath10k: htc rx completion ep 2 skb d2fed2c0                                     
ath10k: WMI_SCAN_EVENTID                                                        
ath10k: scan event type 2 reason 0 freq 5260 req_id 40961 scan_id 40960 vdev_id 
0                                                                               
ath10k: SCAN_EVENT_COMPLETED                                                    
ath10k: SCAN_REASON_COMPLETED                                                   
wlan0: authenticate with 04:f0:21:0e:38:be                                      
ath10k: mac config channel 5260MHz flags 0x10a radar 0                          
ath10k: mac config channel to 5260MHz (cf1 5270MHz cf2 0MHz width 40)           
ath10k: mac monitor refs: promisc 0 monitor 0 cac 0                             
ath10k: mac config power 19                                                     
ath10k: wmi pdev set param 3 value 38                                           
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12d23260 len 20 n_items 1                         
ath10k: wmi pdev set param 4 value 38                                           
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fed500                      
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12a05a60 len 20 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fed680                      
ath10k: wmi vdev id 0x0 set param 3 value 100                                   
ath10k: htc ep 2 got 2 credits (total 2)                                        
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12a05a60 len 24 n_items 1                         
ath10k: mac vdev 0 beacon_interval 100                                          
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fed680                      
ath10k: mac vdev 0 create peer 04:f0:21:0e:38:be                                
ath10k: wmi peer create vdev_id 0 peer_addr 04:f0:21:0e:38:be                   
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12a05a60 len 24 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fed680                      
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2fae820                                     
ath10k: htt rx, msg_type: 0x3                                                   
ath10k: htt peer map vdev 0 peer 04:f0:21:0e:38:be id 13                        
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2fae760                                     
ath10k: htt rx, msg_type: 0x3                                                   
ath10k: htt peer map vdev 0 peer 04:f0:21:0e:38:be id 125                       
ath10k: htc ep 2 got 2 credits (total 2)                                        
ath10k: mac vdev 0 start 04:f0:21:0e:38:be                                      
ath10k: mac vdev 0 start center_freq 5260 phymode 11na-ht40                     
ath10k: wmi vdev start id 0x0 flags: 0x0, freq 5260, mode 6, ch_flags: 0x6, max_
power: 40                                                                       
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12d23260 len 140 n_items 1                        
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fae6a0                      
ath10k: htc ep 2 got 1 credits (total 2)                                        
ath10k: htc rx completion ep 2 skb d2fed200                                     
ath10k: WMI_VDEV_START_RESP_EVENTID                                             
wlan0: direct probe to 04:f0:21:0e:38:be (try 1/3)                              
ath10k: htt tx alloc msdu_id 0                                                  
ath10k: pci tx item 0 paddr 0x1295ae60 len 60 n_items 1                         
ath10k: pci hif send complete check                                             
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb d2fad800                      
ath10k: htc rx completion ep 1 skb d2fae5e0                                     
ath10k: htt rx, msg_type: 0xE                                                   
ath10k: htt tx completion msdu_id 0 discard 0 no_ack 0                          
ath10k: htt tx free msdu_id 0                                                   
wlan0: direct probe to 04:f0:21:0e:38:be (try 2/3)                              
ath10k: htt tx alloc msdu_id 0                                                  
ath10k: pci tx item 0 paddr 0x12e03460 len 60 n_items 1                         
ath10k: pci hif send complete check                                             
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb d2950f20                      
ath10k: htc rx completion ep 1 skb d2fae520                                     
ath10k: htt rx, msg_type: 0xE                                                   
ath10k: htt tx completion msdu_id 0 discard 0 no_ack 0                          
ath10k: htt tx free msdu_id 0                                                   
wlan0: direct probe to 04:f0:21:0e:38:be (try 3/3)                              
ath10k: htt tx alloc msdu_id 0                                                  
ath10k: pci tx item 0 paddr 0x12d23660 len 60 n_items 1                         
ath10k: pci hif send complete check                                             
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb d2fed2c0                      
ath10k: htc rx completion ep 1 skb d2fae460                                     
ath10k: htt rx, msg_type: 0xE                                                   
ath10k: htt tx completion msdu_id 0 discard 0 no_ack 0                          
ath10k: htt tx free msdu_id 0                                                   
wlan0: authentication with 04:f0:21:0e:38:be timed out                          
ath10k: mac vdev 0 peer delete 04:f0:21:0e:38:be (sta gone)                     
ath10k: wmi peer delete vdev_id 0 peer_addr 04:f0:21:0e:38:be                   
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12a05060 len 24 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fae520                      
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2fae3a0                                     
ath10k: htt rx, msg_type: 0x4                                                   
ath10k: htt peer unmap vdev 0 peer 04:f0:21:0e:38:be id 13                      
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2fae2e0                                     
ath10k: htt rx, msg_type: 0x4                                                   
ath10k: htt peer unmap vdev 0 peer 04:f0:21:0e:38:be id 125                     
ath10k: mac vdev 0 stop (disassociated                                          
ath10k: wmi vdev stop id 0x0                                                    
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12a05a60 len 16 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fae2e0                      
ath10k: htc ep 2 got 1 credits (total 1)                                        
ath10k: htc rx completion ep 2 skb d2fade00                                     
ath10k: WMI_VDEV_STOPPED_EVENTID                                                
ath10k: mac vdev 0 down                                                         
ath10k: wmi mgmt vdev down id 0x0                                               
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12a05a60 len 16 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2fade00                      
ath10k: htc ep 2 got 2 credits (total 2)                                        
ath10k: mac config channel 5260MHz flags 0x10a radar 0                          
ath10k: mac config channel to 5260MHz (cf1 5260MHz cf2 0MHz width 20 (noht))    
ath10k: mac monitor refs: promisc 0 monitor 0 cac 0                             
ath10k: mac config power 20                                                     
ath10k: wmi pdev set param 3 value 40                                           
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12a05a60 len 20 n_items 1                         
ath10k: wmi pdev set param 4 value 40                                           
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2950f20                      
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12a05060 len 20 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2bdfc00                      
ath10k: htc ep 2 got 2 credits (total 2)                                        
ath10k: htc rx completion ep 2 skb d29f33a0                                     
ath10k: wmi event debug mesg len 76                                             
ath10k: wmi start scan                                                          
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12d23260 len 208 n_items 1                        
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d29f33a0                      
ath10k: htc rx completion ep 2 skb d29f3ee0                                     
ath10k: WMI_SCAN_EVENTID                                                        
ath10k: scan event type 1 reason 4 freq 5260 req_id 40961 scan_id 40960 vdev_id 
0                                                                               
ath10k: SCAN_EVENT_STARTED                                                      
ath10k: htc rx completion ep 2 skb d29f3e20                                     
ath10k: WMI_SCAN_EVENTID                                                        
ath10k: scan event type 4 reason 4 freq 5260 req_id 40961 scan_id 40960 vdev_id 
0                                                                               
ath10k: SCAN_EVENT_BSS_CHANNEL                                                  
ath10k: htc rx completion ep 2 skb d2bdf0c0                                     
ath10k: chan info err_code 0 freq 5260 cmd_flags 1 noise_floor -98 rx_clear_coun
t 5032278 cycle_count 278515999                                                 
ath10k: htc rx completion ep 2 skb d2fad680                                     
ath10k: wmi event debug mesg len 28                                             
ath10k: htc ep 2 got 1 credits (total 2)                                        
ath10k: htc rx completion ep 2 skb d29f3ca0                                     
ath10k: WMI_SCAN_EVENTID                                                        
ath10k: scan event type 8 reason 4 freq 5260 req_id 40961 scan_id 40960 vdev_id 
0                                                                               
ath10k: SCAN_EVENT_FOREIGN_CHANNEL                                              
ath10k: htc rx completion ep 2 skb d29f3b20                                     
ath10k: chan info err_code 0 freq 5260 cmd_flags 0 noise_floor 0 rx_clear_count 
5570040 cycle_count 279234103                                                   
ath10k: htc rx completion ep 2 skb d29f3a60                                     
ath10k: event mgmt rx status 00000000                                           
ath10k: event mgmt rx skb d29f3a60 len 168 ftype 00 stype 80                    
ath10k: event mgmt rx freq 5260 band 1 snr -21, rate_idx 0                      
ath10k: pci hif send complete check                                             
ath10k: htc rx completion ep 1 skb d2fae0a0                                     
ath10k: htt rx, msg_type: 0x1                                                   
ath10k: htt rx mgmt ctrl                                                        
ath10k: htc rx completion ep 2 skb d29f39a0                                     
ath10k: WMI_SCAN_EVENTID                                                        
ath10k: scan event type 4 reason 4 freq 5260 req_id 40961 scan_id 40960 vdev_id 
0                                                                               
ath10k: SCAN_EVENT_BSS_CHANNEL                                                  
ath10k: htc rx completion ep 2 skb d29f38e0                                     
ath10k: chan info err_code 0 freq 5260 cmd_flags 1 noise_floor -98 rx_clear_coun
t 5592124 cycle_count 291739211                                                 
ath10k: htc rx completion ep 2 skb d29f3820                                     
ath10k: WMI_SCAN_EVENTID                                                        
ath10k: scan event type 2 reason 0 freq 5260 req_id 40961 scan_id 40960 vdev_id 
0                                                                               
ath10k: SCAN_EVENT_COMPLETED                                                    
ath10k: SCAN_REASON_COMPLETED                                                   
ath10k: mac vdev 0 delete (remove interface)                                    
ath10k: WMI vdev delete id 0                                                    
ath10k: htc ep 2 consumed 1 credits (total 1)                                   
ath10k: pci tx item 0 paddr 0x12e03460 len 16 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2950320                      
ath10k: mac monitor refs: promisc 0 monitor 0 cac 0                             
ath10k: htc ep 2 consumed 1 credits (total 0)                                   
ath10k: HTC: endpoint 2 needs credit update                                     
ath10k: pci tx item 0 paddr 0x12e03460 len 16 n_items 1                         
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2950320                      
ath10k: htc ep 2 got 2 credits (total 2) 

[-- Attachment #6: airlog_52 --]
[-- Type: application/octet-stream, Size: 48322 bytes --]

[-- Attachment #7: Type: text/plain, Size: 146 bytes --]

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-05-22 14:40                                         ` RE : " Vu Hai NGUYEN
@ 2014-05-22 14:45                                           ` Vu Hai NGUYEN
  2014-05-22 16:44                                           ` RE : " Kalle Valo
  2014-05-23  7:18                                           ` Michal Kazior
  2 siblings, 0 replies; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-05-22 14:45 UTC (permalink / raw)
  To: Vu Hai NGUYEN, Janusz Dziedzic; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k

[-- Attachment #1: Type: text/plain, Size: 2255 bytes --]


I used a pc with a adapter usb that support wifi 5Ghz to connect to my AP (in channel 52) and capture airlog from wireshark.
It goes further than my station (which has same hardware and software like my AP) cause there is ACK of probe request and Deauthentification too.
May be it is intersting with you
And sorry for spamming (with 2nd mail) :D

Regards,
NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE

________________________________________
De : ath10k [ath10k-bounces@lists.infradead.org] de la part de Vu Hai NGUYEN [vh.nguyen@actiasodielec.fr]
Date d'envoi : jeudi 22 mai 2014 16:40
À : Janusz Dziedzic
Cc : Patrick CARNEIRO RODRIGUEZ; ath10k@lists.infradead.org
Objet : RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS

> Could you get trace log with debug_mask = 0xffffff3f?
>
> You can also start hostapd with -ddt -T then we will have all logs in trace :)
> You can also add traces from mac80211, cfg80211
>
> Here description:
> http://wireless.kernel.org/en/users/Drivers/ath10k/debug
>

>BTW, seems you have wrong power constraint configuration - best remove
>this from hostapd.conf file.

I didn't have the option -T in my hostapd, only those:
options:
   -h   show this usage
   -d   show more debug messages (-dd for even more)
   -B   run daemon in the background
   -e   entropy file
   -g   global control interface path
   -G   group for control interfaces
   -P   PID file
   -K   include key data in debug messages
   -t   include timestamps in some debug messages
   -v   show hostapd version
Is it because I don't have package trace installed in my kernel????

You can found in the attached file debug msg from hostapd (apd_52.txt), wpa_supp (wpa_52.txt), dmesg from AP (dmesg_apd.txt) and dmesg from STA (dmesg_wpa.txt)  with the debugmask=0xffffff3f
with the airlog of wireshark (airelog_52).
Small question: If I use the firmware version 999, the frame of Probe Request from Station have  Mac address source: SecureWo_12:34:56 and with the version 10.1.467-2.1 I get the true address mac, is this normal?

NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE





[-- Attachment #2: airlog_52_pc --]
[-- Type: application/octet-stream, Size: 238240 bytes --]

[-- Attachment #3: Type: text/plain, Size: 146 bytes --]

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-05-22 14:40                                         ` RE : " Vu Hai NGUYEN
  2014-05-22 14:45                                           ` Vu Hai NGUYEN
@ 2014-05-22 16:44                                           ` Kalle Valo
       [not found]                                             ` <EE97821C81277E459BEA5C6384C6F241012F109978E8@srvexch01.SODIELEC.local>
  2014-05-23  7:18                                           ` Michal Kazior
  2 siblings, 1 reply; 134+ messages in thread
From: Kalle Valo @ 2014-05-22 16:44 UTC (permalink / raw)
  To: Vu Hai NGUYEN; +Cc: Janusz Dziedzic, Patrick CARNEIRO RODRIGUEZ, ath10k

Vu Hai NGUYEN <vh.nguyen@actiasodielec.fr> writes:

> I didn't have the option -T in my hostapd, only those: 
> options:                                                                        
>    -h   show this usage                                                         
>    -d   show more debug messages (-dd for even more)                            
>    -B   run daemon in the background                                            
>    -e   entropy file                                                            
>    -g   global control interface path                                           
>    -G   group for control interfaces                                            
>    -P   PID file                                                                
>    -K   include key data in debug messages                                      
>    -t   include timestamps in some debug messages                               
>    -v   show hostapd version                  
> Is it because I don't have package trace installed in my kernel???? 

You need to enable CONFIG_DEBUG_LINUX_TRACING in hostapd to get -T
switch. It's documented here:

http://wireless.kernel.org/en/developers/Documentation/mac80211/tracing

-- 
Kalle Valo

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: [PATCH v3] ath10k: support get/set antenna configurations.
  2014-05-13 21:11       ` [PATCH v3] " Avery Pennarun
  2014-05-14  6:20         ` Yeoh Chun-Yeow
  2014-05-16 12:30         ` Kalle Valo
@ 2014-05-22 16:56         ` Kalle Valo
  2 siblings, 0 replies; 134+ messages in thread
From: Kalle Valo @ 2014-05-22 16:56 UTC (permalink / raw)
  To: Avery Pennarun
  Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, Ben Greear, ath10k

Avery Pennarun <apenwarr@gmail.com> writes:

> From: Ben Greear <greearb@candelatech.com>
>
> Tested with CT firmware, but should work on standard
> firmware as well.
>
> Verified that target's tx/rx chain register is set appropriately,
> and that the tx rate goes down as number of chains
> decrease, but I did not actually try to verify antenna
> ceased to transmit when disabled.
>
> Signed-off-by: Ben Greear <greearb@candelatech.com>
> Signed-off-by: Avery Pennarun <apenwarr@gmail.com>

Thanks, applied.

-- 
Kalle Valo

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-05-22 14:40                                         ` RE : " Vu Hai NGUYEN
  2014-05-22 14:45                                           ` Vu Hai NGUYEN
  2014-05-22 16:44                                           ` RE : " Kalle Valo
@ 2014-05-23  7:18                                           ` Michal Kazior
  2 siblings, 0 replies; 134+ messages in thread
From: Michal Kazior @ 2014-05-23  7:18 UTC (permalink / raw)
  To: Vu Hai NGUYEN; +Cc: Janusz Dziedzic, Patrick CARNEIRO RODRIGUEZ, ath10k

On 22 May 2014 16:40, Vu Hai NGUYEN <vh.nguyen@actiasodielec.fr> wrote:
[...]

> Small question: If I use the firmware version 999, the frame of Probe Request from Station have  Mac address source: SecureWo_12:34:56 and with the version 10.1.467-2.1 I get the true address mac, is this normal?

If memory serves right: if otp execution fails then mac address isn't
configured. I think you have to use 10.1's otp to fix this. People
have reported this issue before. See mailing list archives for
details, please.


Michał

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
       [not found]                                               ` <EE97821C81277E459BEA5C6384C6F241012F109978E9@srvexch01.SODIELEC.local>
@ 2014-05-23  7:40                                                 ` Kalle Valo
  2014-05-23  7:52                                                 ` RE : " Vu Hai NGUYEN
  1 sibling, 0 replies; 134+ messages in thread
From: Kalle Valo @ 2014-05-23  7:40 UTC (permalink / raw)
  To: Vu Hai NGUYEN; +Cc: Patrick CARNEIRO RODRIGUEZ, janusz.dziedzic, ath10k

Vu Hai NGUYEN <vh.nguyen@actiasodielec.fr> writes:

> P/S: I sent this mail yesterday but the size of file are too big (It
> ask me to wait for the moderator replied) so I had to compress and
> resend it.

The server will still reject it as it was over 500 kB. Don't send big
files via email, that will just overload the servers. Instead upload the
file to a server and send a link to the list.

-- 
Kalle Valo

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE :  RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
       [not found]                                               ` <EE97821C81277E459BEA5C6384C6F241012F109978E9@srvexch01.SODIELEC.local>
  2014-05-23  7:40                                                 ` Kalle Valo
@ 2014-05-23  7:52                                                 ` Vu Hai NGUYEN
  2014-05-26  8:34                                                   ` Janusz Dziedzic
  1 sibling, 1 reply; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-05-23  7:52 UTC (permalink / raw)
  To: Vu Hai NGUYEN, ath10k; +Cc: Patrick CARNEIRO RODRIGUEZ, janusz.dziedzic, kvalo


>You need to enable CONFIG_DEBUG_LINUX_TRACING in hostapd to get -T
>switch. It's documented here:

>http://wireless.kernel.org/en/developers/Documentation/mac80211/tracing

Thanks, I change the config to build hostapd and install trace-cmd in my kernel, 2 trace.dat file in the link below (1 AP and 1 -STA)
https://drive.google.com/folderview?id=0BwjHLCkPdrW6RVd3Um1vVDJhRm8&usp=drive_web

NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE




_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : ath10k: firmware crash in station mode
  2014-05-19 12:51                     ` Michal Kazior
  2014-05-20  6:44                       ` ath10k: firmware crash in station mode & problem DFS Vu Hai NGUYEN
@ 2014-05-23  9:15                       ` Yeoh Chun-Yeow
  2014-05-23 11:35                         ` RE : " Vu Hai NGUYEN
  1 sibling, 1 reply; 134+ messages in thread
From: Yeoh Chun-Yeow @ 2014-05-23  9:15 UTC (permalink / raw)
  To: Michal Kazior; +Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, ath10k

>
>> But I wonder if there will be any progress of the firmware in the future for promiscuous so that I can
>> set up bridge mode?
>
> Beats me. You should ask QCA about the future of ath10k firmware.
>

The best you can is use the firmware-2.bin_10.1.467.2-1. It should
allow you to bridge even in STA mode.

---
Chun-Yeow

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : RE : RE : ath10k: firmware crash in station mode
  2014-05-23  9:15                       ` RE : RE : ath10k: firmware crash in station mode Yeoh Chun-Yeow
@ 2014-05-23 11:35                         ` Vu Hai NGUYEN
  2014-05-23 14:27                           ` Yeoh Chun-Yeow
  0 siblings, 1 reply; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-05-23 11:35 UTC (permalink / raw)
  To: Yeoh Chun-Yeow, Michal Kazior; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k

>>> But I wonder if there will be any progress of the firmware in the future for promiscuous so that I can
>>> set up bridge mode?
>>>

>> Beats me. You should ask QCA about the future of ath10k firmware.
>>

>The best you can is use the firmware-2.bin_10.1.467.2-1. It should
>allow you to bridge even in STA mode.

I need to run the command "iw wlan0 set 4addr on" before setup bridge, else my bridge did not work. 
How did you bridge without that command?

Regards,
NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE
_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : ath10k: firmware crash in station mode
  2014-05-23 11:35                         ` RE : " Vu Hai NGUYEN
@ 2014-05-23 14:27                           ` Yeoh Chun-Yeow
  0 siblings, 0 replies; 134+ messages in thread
From: Yeoh Chun-Yeow @ 2014-05-23 14:27 UTC (permalink / raw)
  To: Vu Hai NGUYEN; +Cc: Patrick CARNEIRO RODRIGUEZ, Michal Kazior, ath10k

Yes, you can do it with firmware 10.1.467.2-1 but not firmware 999.999.0.636.

---
Chun-Yeow

On Fri, May 23, 2014 at 7:35 PM, Vu Hai NGUYEN
<vh.nguyen@actiasodielec.fr> wrote:
>>>> But I wonder if there will be any progress of the firmware in the future for promiscuous so that I can
>>>> set up bridge mode?
>>>>
>
>>> Beats me. You should ask QCA about the future of ath10k firmware.
>>>
>
>>The best you can is use the firmware-2.bin_10.1.467.2-1. It should
>>allow you to bridge even in STA mode.
>
> I need to run the command "iw wlan0 set 4addr on" before setup bridge, else my bridge did not work.
> How did you bridge without that command?
>
> Regards,
> NGUYEN Vu Hai
> Acita-Sodielec
> Route de Mayres - B.P. 9
> 12100 St GEORGES DE LUZENCON
> FRANCE

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* TR : ath10k: firmware crash in station mode
  2014-05-15 13:27               ` RE : " Vu Hai NGUYEN
  2014-05-19  6:59                 ` Michal Kazior
@ 2014-05-23 14:55                 ` Vu Hai NGUYEN
  2014-05-23 15:36                   ` Yeoh Chun-Yeow
  1 sibling, 1 reply; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-05-23 14:55 UTC (permalink / raw)
  To: Yeoh Chun-Yeow; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k

[-- Attachment #1: Type: text/plain, Size: 1422 bytes --]

>Yes, you can do it with firmware 10.1.467.2-1 but not firmware 999.999.0.636.

They all crashed, but the 999 crashed sooner (even before associated with the AP) , I've posted it the logs before for Michal Kazior. Here is my old email: 
http://lists.infradead.org/pipermail/ath10k/2014-May/002042.html

>>This is NULL dereference in firmware. I suspect it's an incomplete
>>driver-firmware setup (i.e. some commands weren't issued or were
>>invalid).

>>Can you enable debug logs ( echo 0xffffff3f | sudo tee /sys/module/ath10k_core/parameters/debug_mask ) before you try to
>>associate and post logs, please? I'd like to see command sequence sent
>>to firmware before the crash happens.

>I enable directly the debug_mask when I load the module "modprobe ath10k_core.ko debug_mask=0x0xffffff3f" (I thought it is the same thing like what you do, right?).
>You can found de debug mess in the attached file (debug_10-1.txt). (line 3007: wlan0: associated and then in line 3008: ath10k: firmware crashed!)

>>Can you post the crash logs (as noted above) when you try the 999
>>branch too, please? It seems 999 crashes sooner than 10.1. It might be
>>helpful to see the different crash points.

>Yes it crashed sooner. There are no wlan0: associated in the debug message. (attached file: debug_999.txt).


NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE


[-- Attachment #2: debug_10-1.txt --]
[-- Type: text/plain, Size: 121955 bytes --]

ath10k: htt target version 2.1
ath10k: pci tx item 0 paddr 0x12fd4460 len 48 n_items 1
ath10k: wmi pdev set param 30 value 1
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c0e60 len 20 n_items 1
ath10k: wmi pdev set param 10 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a41e60
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fd4260 len 20 n_items 1
ath10k: wmi pdev set param 1 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2daf180
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c0e60 len 20 n_items 1
ath10k: wmi pdev set param 2 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e669c0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fd4260 len 20 n_items 1
ath10k: wmi pdev set param 31 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2daf180
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c0e60 len 20 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e66c00
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac channel [0/32] freq 2412 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [1/32] freq 2417 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [2/32] freq 2422 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [3/32] freq 2427 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [4/32] freq 2432 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [5/32] freq 2437 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [6/32] freq 2442 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [7/32] freq 2447 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [8/32] freq 2452 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [9/32] freq 2457 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [10/32] freq 2462 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [11/32] freq 2467 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [12/32] freq 2472 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [13/32] freq 5180 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [14/32] freq 5200 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [15/32] freq 5220 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [16/32] freq 5240 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [17/32] freq 5260 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [18/32] freq 5280 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [19/32] freq 5300 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [20/32] freq 5320 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [21/32] freq 5500 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [22/32] freq 5520 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [23/32] freq 5540 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [24/32] freq 5560 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [25/32] freq 5580 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [26/32] freq 5600 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [27/32] freq 5620 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [28/32] freq 5640 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [29/32] freq 5660 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [30/32] freq 5680 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [31/32] freq 5700 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12e01860 len 784 n_items 1
ath10k: wmi pdev regdomain rd 37 rd2g 37 rd5g 37 ctl2g 30 ctl5g 30 dfs_region 0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e66cc0
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c0e60 len 36 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2daf180
ath10k: mac vdev create 0 (add interface) type 2 subtype 0
ath10k: WMI vdev create: id 0 type 2 subtype 0 macaddr 04:f0:21:0e:38:be
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009c0e60 len 32 n_items 1
ath10k: wmi vdev id 0x0 set param 31 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2daf180
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12fd4260 len 24 n_items 1
ath10k: vdev param 0 not supported by firmware
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e66d80
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fd4260 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 1 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e66d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c0e60 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 2 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e66e40
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fd4260 len 24 n_items 1
ath10k: wmi vdev id 0x0 set param 1 value -1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e66d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c0e60 len 24 n_items 1
ath10k: wmi vdev id 0x0 set param 2 value -1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e66f00
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fd4260 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e66d80
ath10k: mac vdev 0 cts_prot 0
ath10k: wmi vdev id 0x0 set param 43 value 0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12fd4260 len 24 n_items 1
ath10k: mac vdev 0 slot_time 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e66d80
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: wmi vdev id 0x0 set param 7 value 1
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fd4260 len 24 n_items 1
ath10k: mac vdev 0 preamble 1n
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e51160
ath10k: wmi vdev id 0x0 set param 8 value 1
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12fd4260 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e51160
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: wmi pdev set wmm params
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fd4260 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e51220
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c0e60 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e510a0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fd4260 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e51220
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c0e60 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e512e0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fd4260 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e51220
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c0e60 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e513a0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fd4260 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e51220
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c0e60 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e51460
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fd4260 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e51220
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c0e60 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e51520
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fd4260 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e51220
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c0e60 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e515e0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac config channel 2412MHz flags 0x1a0 radar 0
ath10k: mac config power 20
ath10k: wmi pdev set param 3 value 40
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009c0e60 len 20 n_items 1
ath10k: wmi pdev set param 4 value 40
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e516a0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12fd4260 len 20 n_items 1
ath10k: mac vdev 0 psmode disable
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e51220
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: wmi set powersave id 0x0 mode 0
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fd4260 len 20 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e51760
ADDRCONF(NETDEV_UP): wlan0: link is not ready
mv_eth_tool_get_settings is not supported on eth0
device eth0 entered promiscuous mode
device wlan0 entered promiscuous mode
ath10k: mac monitor refs: promisc 1 monitor 0 cac 0
ath10k: WMI vdev create: id 1 type 4 subtype 0 macaddr 04:f0:21:0e:38:be
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12fd4860 len 32 n_items 1
ath10k: mac monitor vdev 1 created
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2daf600
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: wmi vdev start id 0x1 flags: 0x0, freq 2412, mode 1, ch_flags: 0x1, max_power: 40
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12fd4860 len 140 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e51820
ath10k: htc ep 2 got 1 credits (total 2)
ath10k: htc rx completion ep 2 skb d2a41da0
ath10k: WMI_VDEV_START_RESP_EVENTID
ath10k: wmi mgmt vdev up id 0x1 assoc id 0 bssid 04:f0:21:0e:38:be
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12cefa60 len 28 n_items 1
ath10k: mac monitor vdev 1 started
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a41da0
ath10k: mac monitor started
br0: port 1(eth0) entering forwarding state
br0: port 1(eth0) entering forwarding state
ath10k: pci hif send complete check
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb d2e66a80
ath10k: htc rx completion ep 1 skb d2e518e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e519a0
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2a40680 len 16  rate_idx 0 vht_nss 0 freq 2412 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e51a60
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2a41ce0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a41ce0 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2412 band 0 snr -60, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e51b20
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e51be0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e51ca0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e51d60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e51e20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e51ee0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c080
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c140
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c200
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c2c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c380
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c440
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c500
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c5c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c680
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c740
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c800
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c8c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c980
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7ca40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7cb00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7cbc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7cc80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7cd40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7ce00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7cec0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a660e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a661a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66260
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66320
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a663e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a664a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66560
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66620
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a666e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a667a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66860
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66920
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a669e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66aa0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66b60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66c20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66ce0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66da0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66e60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66f20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a510c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf9c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf0c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf6c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf3c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf300
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdfb40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdfc00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdfcc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdfe40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdff00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdfd80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdfa80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51f00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51e40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51d80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51cc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51c00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51b40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51a80
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a519c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a516c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a513c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e660c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e66180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e66540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e66480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e663c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e66300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e66240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e66780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e666c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e66600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e54840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e54240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e54300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e54900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e54480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e54540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e543c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e54180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e54600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e546c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e54780
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e540c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9f0e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9f1a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9f260
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9f320
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9f3e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9f4a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9f560
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9f620
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9f6e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9f7a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9f860
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9f920
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9f9e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9faa0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9fb60
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9fc20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9fce0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9fda0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9fe60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9ff20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f730c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f73180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f73f00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f73e40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f73d80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f73cc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f73c00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f73b40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f73a80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f739c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f73900
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f73840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f73780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f736c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f73600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f73540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f73480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f733c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f73300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f73240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8a0c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8a180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8af00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8ae40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8ad80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8acc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8ac00
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8ab40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8aa80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8a9c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8a900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8a840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8a780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8a6c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8a600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8a540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8a480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8a3c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8a300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c8a240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5080
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5140
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5200
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb52c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5380
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5440
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5500
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb55c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5680
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5740
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5800
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb58c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5980
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5a40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5b00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5bc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5c80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5d40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5e00
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb5ec0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78ec0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78e00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78d40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78c80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78bc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78b00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78a40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78980
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c788c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78800
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78740
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78680
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c785c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78500
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78440
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78380
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c782c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78200
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78140
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c78080
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e56ee0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e56e20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e56d60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e56ca0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e56be0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e56b20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e56a60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e569a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e568e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e56820
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e56760
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e566a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e565e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e56520
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e56460
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e563a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e562e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e56220
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e56160
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e560a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4ff00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4fe40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4fd80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4fcc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4fc00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4fb40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4fa80
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4f9c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4f900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4f840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4f780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4f6c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4f600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4f540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4f480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4f3c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4f300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4f240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4f180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e4f0c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e49f20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e49e60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e49da0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e49ce0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e49c20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e49b60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e49aa0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e499e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e49920
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e49860
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e497a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e496e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e49620
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e49560
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e494a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e493e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e49320
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e49260
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e491a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e490e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43ec0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43e00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43d40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43c80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43bc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43b00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43a40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43980
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e438c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43800
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43740
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43680
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e435c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43500
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43440
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43380
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e432c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43200
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43140
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e43080
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7dee0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7de20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7dd60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7dca0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7dbe0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7db20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7da60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d9a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d8e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d820
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d760
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d6a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d5e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d520
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d460
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d3a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d2e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d220
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d160
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d0a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a75f00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a75e40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a75d80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a75cc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a75c00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a75b40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a75a80
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a759c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a75900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a75840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a75780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a756c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a75600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a75540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a75480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a753c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a75300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a75240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a75180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a750c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a70f20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a70e60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a70da0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a70ce0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a70c20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a70b60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a70aa0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a709e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a70920
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a70860
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a707a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a706e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a70620
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a70560
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a704a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a703e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a70320
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a70260
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a701a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a700e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6aec0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6ae00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6ad40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6ac80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6abc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6ab00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6aa40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6a980
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6a8c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6a800
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6a740
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6a680
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6a5c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6a500
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6a440
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6a380
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6a2c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6a200
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6a140
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a6a080
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a63ee0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a63e20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a63d60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a63ca0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a63be0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a63b20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a63a60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a639a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a638e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a63820
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a63760
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a636a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a635e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a63520
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a63460
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a633a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a632e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a63220
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a63160
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a630a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5df00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5de40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5dd80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5dcc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5dc00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5db40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5da80
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5d9c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5d900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5d840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5d780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5d6c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5d600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5d540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5d480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5d3c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5d300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5d240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5d180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a5d0c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3cf20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3ce60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3cda0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3cce0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3cc20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3cb60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3caa0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3c9e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3c920
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3c860
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3c7a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3c6e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3c620
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3c560
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3c4a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3c3e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3c320
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3c260
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3c1a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a3c0e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54ec0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54e00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54d40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54c80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54bc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54b00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54a40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54980
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a548c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54800
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54740
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54680
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a545c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54500
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54440
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54380
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a542c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54200
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54140
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a54080
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4dee0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4de20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4dd60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4dca0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4dbe0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4db20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4da60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4d9a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4d8e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4d820
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4d760
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4d6a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4d5e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4d520
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4d460
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4d3a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: htt rx dropping due to zero-len
ath10k: wmi start scan
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12fd4060 len 196 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a4d5e0
ath10k: htc ep 2 got 1 credits (total 1)
ath10k: htc rx completion ep 2 skb d2a41c20
ath10k: WMI_SCAN_EVENTID
ath10k: scan event type 1 reason 3 freq 2412 req_id 40961 scan_id 40960 vdev_id 0
ath10k: SCAN_EVENT_STARTED
ath10k: htc rx completion ep 2 skb d2a41b60
ath10k: WMI_SCAN_EVENTID
ath10k: scan event type 4 reason 3 freq 2412 req_id 40961 scan_id 40960 vdev_id 0
ath10k: SCAN_EVENT_BSS_CHANNEL
ath10k: htc rx completion ep 2 skb d2a41aa0
ath10k: chan info err_code 0 freq 2412 cmd_flags 1 noise_floor -100 rx_clear_count 1360002 cycle_count 19361316
ath10k: htc rx completion ep 2 skb d2a419e0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a419e0 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2412 band 0 snr -40, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4d2e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a41920
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a41920 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2412 band 0 snr -40, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4d220
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4d160
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2a41860
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a41860 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2412 band 0 snr -43, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a417a0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a417a0 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2412 band 0 snr -43, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a4d0a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a47f00
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htc rx completion ep 2 skb d2a416e0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a416e0 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2412 band 0 snr -71, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a47e40
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a41620
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a41620 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2412 band 0 snr -59, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a47d80
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a41560
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a41560 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2412 band 0 snr -59, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a47cc0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a414a0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a414a0 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2412 band 0 snr -72, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a47c00
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a47b40
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2deaa40 len 10  rate_idx 0 vht_nss 0 freq 2412 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a47a80
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2dea980 len 16  rate_idx 0 vht_nss 0 freq 2412 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a479c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htc rx completion ep 2 skb d2a413e0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a413e0 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2412 band 0 snr -59, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a47900
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a47840
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a47780
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2dea680 len 16  rate_idx 0 vht_nss 0 freq 2412 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a476c0
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2dea5c0 len 16  rate_idx 0 vht_nss 0 freq 2412 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a47600
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a47540
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2a41320
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a41320 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2412 band 0 snr -59, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a47480
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a473c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a47300
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a47240
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a47180
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a40740
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e66840
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2a41260
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a41260 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2412 band 0 snr -60, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2daf780
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htc ep 2 got 1 credits (total 2)
ath10k: htc rx completion ep 2 skb d2a411a0
ath10k: wmi event debug mesg len 12
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2daf240
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a41e60
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e669c0
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2a410e0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a410e0 len 104 ftype 00 stype 40
ath10k: event mgmt rx freq 2412 band 0 snr -51, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e66c00
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htc rx completion ep 2 skb d2a40ec0
ath10k: WMI_SCAN_EVENTID
ath10k: scan event type 8 reason 3 freq 2457 req_id 40961 scan_id 40960 vdev_id 0
ath10k: SCAN_EVENT_FOREIGN_CHANNEL
ath10k: htc rx completion ep 2 skb d2a40e00
ath10k: chan info err_code 0 freq 2457 cmd_flags 0 noise_floor 0 rx_clear_count 5061573 cycle_count 88374723
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e66cc0
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d28979a0 len 16  rate_idx 0 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: htc rx completion ep 2 skb d2a40d40
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a40d40 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -14, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2daf180
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e66e40
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2a40c80
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a40c80 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -14, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a40bc0
ath10k: WMI_SCAN_EVENTID
ath10k: scan event type 4 reason 3 freq 2457 req_id 40961 scan_id 40960 vdev_id 0
ath10k: SCAN_EVENT_BSS_CHANNEL
ath10k: htc rx completion ep 2 skb d2a40b00
ath10k: chan info err_code 0 freq 2457 cmd_flags 1 noise_floor -102 rx_clear_count 5508592 cycle_count 92425077
ath10k: htc rx completion ep 2 skb d2a40a40
ath10k: WMI_SCAN_EVENTID
ath10k: scan event type 2 reason 0 freq 2457 req_id 40961 scan_id 40960 vdev_id 0
ath10k: SCAN_EVENT_COMPLETED
ath10k: SCAN_REASON_COMPLETED
wlan0: authenticate with 00:15:61:10:51:de
ath10k: mac config channel 2457MHz flags 0x190 radar 0
ath10k: mac config channel to 2457MHz (cf1 2447MHz cf2 0MHz width 40)
ath10k: wmi mgmt vdev down id 0x1
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009c0660 len 16 n_items 1
ath10k: wmi vdev stop id 0x1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a40c80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12cefe60 len 16 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a40d40
ath10k: htc ep 2 got 1 credits (total 1)
ath10k: htc rx completion ep 2 skb d2a40980
ath10k: WMI_VDEV_STOPPED_EVENTID
ath10k: mac monitor vdev 1 stopped
ath10k: mac monitor refs: promisc 1 monitor 0 cac 0
ath10k: wmi vdev start id 0x1 flags: 0x0, freq 2457, mode 7, ch_flags: 0x7, max_power: 40
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12cefe60 len 140 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a40980
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc rx completion ep 2 skb d2a408c0
ath10k: WMI_VDEV_START_RESP_EVENTID
ath10k: wmi mgmt vdev up id 0x1 assoc id 0 bssid 04:f0:21:0e:38:be
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12cefe60 len 28 n_items 1
ath10k: mac monitor vdev 1 started
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a408c0
ath10k: mac config power 16
ath10k: wmi pdev set param 3 value 32
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12cefe60 len 20 n_items 1
ath10k: wmi pdev set param 4 value 32
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a408c0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009c0660 len 20 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a40c80
ath10k: wmi vdev id 0x0 set param 3 value 100
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c0660 len 24 n_items 1
ath10k: mac vdev 0 beacon_interval 100
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a40c80
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac vdev 0 create peer 00:15:61:10:51:de
ath10k: wmi peer create vdev_id 0 peer_addr 00:15:61:10:51:de
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009c0660 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e51160
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e510a0
ath10k: htt rx, msg_type: 0x3
ath10k: htt peer map vdev 0 peer 00:15:61:10:51:de id 287
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e512e0
ath10k: htt rx, msg_type: 0x3
ath10k: htt peer map vdev 0 peer 00:15:61:10:51:de id 367
ath10k: mac vdev 0 start 00:15:61:10:51:de
ath10k: mac vdev 0 start center_freq 2457 phymode 11ng-ht40
ath10k: wmi vdev start id 0x0 flags: 0x0, freq 2457, mode 7, ch_flags: 0x7, max_power: 40
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12cefe60 len 140 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e512e0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e51460
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2a40800
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a40800 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -19, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e51520
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2daf540
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2daf540 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -21, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e515e0
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2daf300
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2daf300 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -19, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a41f20
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a41f20 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -54, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e51220
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2e51760
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2e51760 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -20, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2daf600
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e66b40
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2dbaf20
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2dbaf20 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -48, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a4d5e0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a4d5e0 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -48, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2daf0c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a40680
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a470c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e51820
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e516a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2daf3c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2daf6c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2daf480
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e66a80
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a40500
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a41da0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a40440
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e51be0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c380
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f38ca0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c2c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f38d60
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a41c20
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a41c20 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -48, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c200
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f38e20
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c140
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a41b60
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a41b60 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -20, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f38ee0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c980
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f386a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htc rx completion ep 2 skb d2fa5f20
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2fa5f20 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -47, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c8c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f38760
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c800
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2fa5620
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2fa5620 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -19, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f38820
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7c740
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2fa54a0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2fa54a0 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -52, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f388e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a28180
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a28180 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -19, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a660e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f380a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7cec0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f38160
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7ce00
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f38220
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7cd40
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f382e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7cc80
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f383a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7cbc0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a54140
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a54140 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -20, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f38460
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7cb00
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f38520
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2fa5260
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2fa5260 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -52, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7ca40
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f385e0
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2deac80
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2deac80 len 104 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -71, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66ce0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f223c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66c20
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f22480
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66b60
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f22540
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66aa0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f22600
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a669e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f226c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66920
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f22780
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a66860
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2deabc0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2deabc0 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -20, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f22840
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a667a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2dea8c0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2dea8c0 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -20, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2f22900
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf300
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2a542c0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a542c0 len 104 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -63, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c09306e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf180
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a280c0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a280c0 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -19, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c09307a0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf240
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0930860
ath10k: htt rx, msg_type: 0x1
ath10k: rx skb d2dd3d60 len 60  rate_idx 3 vht_nss 0 freq 2457 band 0 flag 0x200000 fcs-err 0mic-err 0
ath10k: htc rx completion ep 2 skb d2897d60
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2897d60 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -20, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf780
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2dead40
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2dead40 len 104 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -62, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0930920
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf3c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c09309e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2897a60
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2897a60 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -20, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf480
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0930aa0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a40ec0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a40ec0 len 104 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -60, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf540
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0930b60
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cdf600
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d28979a0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d28979a0 len 220 ftype 00 stype 50
ath10k: event mgmt rx freq 2457 band 0 snr -19, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0930c20
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51a80
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a54080
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a54080 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -19, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c098f980
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51b40
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2897820
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2897820 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -20, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c098fa40
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2a40bc0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a40bc0 len 104 ftype 00 stype 40
ath10k: event mgmt rx freq 2457 band 0 snr -78, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a40b00
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a40b00 len 224 ftype 00 stype 80
ath10k: event mgmt rx freq 2457 band 0 snr -18, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51c00
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2a40d40
ath10k: WMI_VDEV_START_RESP_EVENTID
wlan0: send auth to 00:15:61:10:51:de (try 1/3)
ath10k: wmi mgmt tx skb d2a40b00 len 56 ftype 00 stype b0
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009c0060 len 68 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a40b00
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c098fb00
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc rx completion ep 2 skb d2e66f00
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2e66f00 len 32 ftype 00 stype b0
ath10k: event mgmt rx freq 2457 band 0 snr -19, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51cc0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
wlan0: authenticated
wlan0: associate with 00:15:61:10:51:de (try 1/3)
ath10k: wmi mgmt tx skb d2dd32e0 len 156 ftype 00 stype 00
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12cef860 len 168 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2dd32e0
ath10k: htc ep 2 got 1 credits (total 1)
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51d80
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c098fc80
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htc ep 2 got 1 credits (total 2)
ath10k: htc rx completion ep 2 skb d2a41860
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2a41860 len 176 ftype 00 stype 10
ath10k: event mgmt rx freq 2457 band 0 snr -19, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a51e40
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
wlan0: RX AssocResp from 00:15:61:10:51:de (capab=0x421 status=0 aid=1)
ath10k: wmi pdev set wmm params
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12ae8e60 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2dd3160
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c0060 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a40bc0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12ae8e60 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2dd3160
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c0060 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c098fd40
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12ae8e60 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2dd3160
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12ae8e60 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2dd3160
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: wmi pdev set wmm params
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12ae8e60 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c098fe00
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12cef260 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cd0d80
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12ae8e60 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c098fe00
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12cef260 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 192
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cdfa80
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12ae8e60 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c098fe00
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 1
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12ae8e60 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c098fe00
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac vdev 0 dtim_period 1
ath10k: wmi vdev id 0x0 set param 13 value 1
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12ae8e60 len 24 n_items 1
ath10k: mac vdev 0 slot_time 2
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e663c0
ath10k: wmi vdev id 0x0 set param 7 value 2
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12ae8e60 len 24 n_items 1
ath10k: mac vdev 0 preamble 2n
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2e663c0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: wmi vdev id 0x0 set param 8 value 2
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12ae8e60 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0f17ca0
ath10k: mac ht peer 00:15:61:10:51:de mcs cnt 8 nss 1
ath10k: mac peer 00:15:61:10:51:de phymode 11ng-ht40
ath10k: wmi peer assoc vdev 0 addr 00:15:61:10:51:de (new)
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12a05860 len 368 n_items 1
ath10k: wmi vdev 0 peer 0x00:15:61:10:51:de set param 1 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c0f17ca0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12ae8e60 len 32 n_items 1
ath10k: mac vdev 0 up (associated) bssid 00:15:61:10:51:de aid 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c098fec0
ath10k: wmi mgmt vdev up id 0x0 assoc id 1 bssid 00:15:61:10:51:de
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12ae8e60 len 28 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb c098fec0
ath10k: htt tx alloc msdu_id 0
ath10k: htt tx flags0 37 flags1 25600 len 30 id 0 frags_paddr 12b28000, msdu_paddr 12ae8e74 vdev 0 tid 16
ath10k: pci tx item 0 paddr 0x12b28010 len 24 n_items 2
ath10k: pci tx item 1 paddr 0x12ae8e74 len 32 n_items 2
wlan0: associated
ath10k: firmware crashed!
ath10k: hardware name qca988x hw2.0 version 0x4100016c
ath10k: firmware version: 10.1.467.2-1
ath10k: target register Dump Location: 0x00401930
ath10k: target Register Dump
ath10k: [00]: 0x4100016C 0x00000000 0x009A123A 0x00000000
ath10k: [04]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [08]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [12]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [16]: 0x00000000 0x00000000 0x00000000 0x009A123A
ath10k: [20]: 0x00000000 0x00401930 0x00000000 0x00000000
ath10k: [24]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [28]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [32]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [36]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [40]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [44]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [48]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [52]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [56]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: mac monitor refs: promisc 1 monitor 0 cac 0
ath10k: mac monitor refs: promisc 0 monitor 0 cac 0
ath10k: wmi mgmt vdev down id 0x1
ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
br0: port 2(wlan0) entering forwarding state
br0: port 2(wlan0) entering forwarding state
cfg80211: Calling CRDA for country: FR
ath10k: failed to put down monitor vdev 1: -11
ath10k: wmi vdev stop id 0x1
ath10k: failed to to request monitor vdev 1 stop: -11
eth0: no IPv6 routers present
br0: no IPv6 routers present

[-- Attachment #3: debug_999.txt --]
[-- Type: text/plain, Size: 107428 bytes --]

ath10k: htt target version 2.1
ath10k: pci tx item 0 paddr 0x009c4860 len 48 n_items 1
ath10k: wmi pdev set param 34 value 1
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7860 len 20 n_items 1
ath10k: wmi pdev set param 10 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c7df20
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7060 len 20 n_items 1
ath10k: wmi pdev set param 1 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39480
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7860 len 20 n_items 1
ath10k: wmi pdev set param 2 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cf1b40
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7060 len 20 n_items 1
ath10k: wmi pdev set param 35 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39480
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7860 len 20 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39240
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac channel [0/32] freq 2412 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [1/32] freq 2417 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [2/32] freq 2422 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [3/32] freq 2427 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [4/32] freq 2432 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [5/32] freq 2437 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [6/32] freq 2442 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [7/32] freq 2447 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [8/32] freq 2452 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [9/32] freq 2457 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [10/32] freq 2462 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [11/32] freq 2467 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [12/32] freq 2472 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [13/32] freq 5180 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [14/32] freq 5200 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [15/32] freq 5220 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [16/32] freq 5240 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [17/32] freq 5260 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [18/32] freq 5280 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [19/32] freq 5300 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [20/32] freq 5320 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [21/32] freq 5500 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [22/32] freq 5520 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [23/32] freq 5540 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [24/32] freq 5560 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [25/32] freq 5580 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [26/32] freq 5600 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [27/32] freq 5620 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [28/32] freq 5640 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [29/32] freq 5660 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [30/32] freq 5680 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [31/32] freq 5700 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12dd4060 len 784 n_items 1
ath10k: wmi pdev regdomain rd 37 rd2g 37 rd5g 37 ctl2g 30 ctl5g 30
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cf1cc0
ath10k: pci tx item 0 paddr 0x12be7860 len 32 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39480
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac vdev create 0 (add interface) type 2 subtype 0
ath10k: WMI vdev create: id 0 type 2 subtype 0 macaddr 00:03:07:12:34:56
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7860 len 32 n_items 1
ath10k: wmi vdev id 0x0 set param 33 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cf1d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7060 len 24 n_items 1
ath10k: wmi vdev id 0x0 set param 48 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cf1cc0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7860 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cf1d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7060 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 1 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cf1e40
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7860 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 2 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cf1d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7060 len 24 n_items 1
ath10k: wmi vdev id 0x0 set param 1 value -1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cf1f00
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7860 len 24 n_items 1
ath10k: wmi vdev id 0x0 set param 2 value -1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cf1d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7060 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cdc0a0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac vdev 0 cts_prot 0
ath10k: wmi vdev id 0x0 set param 44 value 0
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7060 len 24 n_items 1
ath10k: mac vdev 0 slot_time 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cdc160
ath10k: wmi vdev id 0x0 set param 7 value 1
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7060 len 24 n_items 1
ath10k: mac vdev 0 preamble 1n
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cdc160
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: wmi vdev id 0x0 set param 8 value 1
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7060 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cdc220
ath10k: wmi pdev set wmm params
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7060 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cdc220
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7860 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cf1d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7060 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cdc2e0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7860 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cf1d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7060 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cdc3a0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7860 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cf1d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7060 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cdc460
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7860 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cf1d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7060 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cdc520
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7860 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cf1d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7060 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cdc5e0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7860 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cf1d80
ath10k: mac config channel 2412MHz flags 0x1a0 radar 0
ath10k: mac config power 20
ath10k: wmi pdev set param 3 value 40
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7860 len 20 n_items 1
ath10k: wmi pdev set param 4 value 40
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cf1d80
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7060 len 20 n_items 1
ath10k: mac vdev 0 psmode disable
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cdc6a0
ath10k: wmi set powersave id 0x0 mode 0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7060 len 20 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2cdc6a0
ath10k: htc ep 2 got 2 credits (total 2)
ADDRCONF(NETDEV_UP): wlan0: link is not ready
eth0: stopped
ath10k: mac vdev 0 delete (remove interface)
ath10k: WMI vdev delete id 0
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7060 len 16 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c830c0
ath10k: mac monitor refs: promisc 0 monitor 0 cac 0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7060 len 16 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c830c0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: boot suspend complete
ath10k: boot hif stop
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb d2cf19c0
ath10k: boot warm reset
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x00001000
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x00000000
ath10k: boot target reset state: 0x00000800
ath10k: boot warm reset complete
ath10k: boot hif power down
ath10k: boot warm reset
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x00000000
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x00000000
ath10k: boot target reset state: 0x00000800
ath10k: boot warm reset complete
Port 0: Link-down
eth0: link up
Port 1: Link-up, Full-duplex, Speed-100Mbps.
Port 2: Link-down
Port 3: Link-down
Port -1: Link-down
eth0: started
ath10k: boot hif power up
ath10k: boot warm reset
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x00000000
ath10k: boot host cpu intr cause: 0x00000000
ath10k: boot target cpu intr cause: 0x00000000
ath10k: boot target reset state: 0x00000800
ath10k: boot warm reset complete
ath10k: boot init ce src ring id 0 entries 16 base_addr c0f5d000
ath10k: boot ce dest ring id 1 entries 512 base_addr c0f5a000
ath10k: boot ce dest ring id 2 entries 32 base_addr d285f000
ath10k: boot init ce src ring id 3 entries 32 base_addr d285a000
ath10k: boot init ce src ring id 4 entries 4096 base_addr d2970000
ath10k: boot init ce src ring id 7 entries 2 base_addr d297f000
ath10k: boot ce dest ring id 7 entries 2 base_addr d297e000
ath10k: boot waiting target to initialise
ath10k: boot target indicator 0
ath10k: boot target indicator 0
ath10k: boot target indicator 0
ath10k: boot target indicator 2
ath10k: boot target initialised
ath10k: bmi start
ath10k: bmi write address 0x400800 length 4
ath10k: bmi read address 0x400810 length 4
ath10k: bmi write address 0x400810 length 4
ath10k: bmi write address 0x400844 length 4
ath10k: bmi write address 0x400904 length 4
ath10k: bmi read address 0x4008ac length 4
ath10k: boot push board extended data addr 0x0
ath10k: bmi read address 0x400854 length 4
ath10k: bmi write address 0x401cc0 length 2116
ath10k: bmi write address 0x400858 length 4
ath10k: boot upload otp to 0x1234 len 5402
ath10k: bmi fast download address 0x1234 buffer 0xe212e038 length 5402
ath10k: bmi lz stream start address 0x1234
ath10k: bmi lz data buffer 0xe212e038 length 5400
ath10k: bmi lz data buffer 0xd2b59d3c length 4
ath10k: bmi lz stream start address 0x0
ath10k: bmi execute address 0x1234 param 0x0
ath10k: bmi execute result 0x0
ath10k: boot otp execute result 0
ath10k: bmi fast download address 0x1234 buffer 0xe212f55c length 249093
ath10k: bmi lz stream start address 0x1234
ath10k: bmi lz data buffer 0xe212f55c length 249092
ath10k: bmi lz data buffer 0xd2b59d3c length 4
ath10k: bmi lz stream start address 0x0
ath10k: bmi write address 0x400814 length 4
ath10k: pci hif set callbacks
ath10k: pci hif get default pipe
ath10k: pci hif map service
ath10k: bmi done
ath10k: boot hif start
ath10k: Target ready! transmit resources: 2 size:1792
ath10k: pci hif map service
ath10k: boot htc service 'Control' ul pipe 0 dl pipe 1 eid 0 ready
ath10k: boot htc ep 0 ul polled 0 dl polled 0
ath10k: boot htc service 'Control' eid 0 TX flow control disabled
ath10k: boot htc service HTT Data does not allocate target credits
ath10k: ath10k_htc_build_tx_ctrl_skb: skb d2a39840
ath10k: pci tx item 0 paddr 0x12b5a06c len 16 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 0 skb d2a39840
ath10k: HTC Service HTT Data connect response: status: 0x0, assigned ep: 0x1
ath10k: pci hif map service
ath10k: boot htc service 'HTT Data' ul pipe 4 dl pipe 1 eid 1 ready
ath10k: boot htc ep 1 ul polled 1 dl polled 0
ath10k: boot htc service 'HTT Data' eid 1 TX flow control disabled
ath10k: htt tx max num pending tx 1424
ath10k: htt rx ring size 1024 fill_level 1000
ath10k: ath10k_htc_build_tx_ctrl_skb: skb d2c01780
ath10k: pci tx item 0 paddr 0x129a246c len 16 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 0 skb d2c01780
ath10k: HTC Service WMI connect response: status: 0x0, assigned ep: 0x2
ath10k: pci hif map service
ath10k: boot htc service 'WMI' ul pipe 3 dl pipe 2 eid 2 ready
ath10k: boot htc ep 2 ul polled 0 dl polled 0
ath10k: ath10k_htc_build_tx_ctrl_skb: skb d2a399c0
ath10k: HTC is using TX credit flow control
ath10k: pci tx item 0 paddr 0x129a206c len 20 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 0 skb d2a399c0
ath10k: htc rx completion ep 2 skb d2d0b0c0
ath10k: wmi event service ready sw_ver 0x01000000 sw_ver1 0x0000027c abi_ver 3 phy_cap 0x00000003 ht_cap 0x0000085b vht_cap 0x338001b2 vht_supp_msc 0x0000fffa sys_cap_info 0x00000000 mem_reqs 0 num_rf_chains 2
ath10k: boot wmi ready
ath10k: firmware 999.999.0.636 booted
ath10k: wmi init
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7c60 len 148 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c01180
ath10k: htc rx completion ep 2 skb d2d05f20
ath10k: wmi event ready sw_version 16777216 abi_version 3 mac_addr 00:03:07:12:34:56 status 0 skb->len 20 ev-sz 20
ath10k: pci tx item 0 paddr 0x12be7460 len 12 n_items 1
ath10k: pci hif send complete check
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb d2d05f20
ath10k: htc rx completion ep 1 skb d2a39a80
ath10k: htt rx, msg_type: 0x0
ath10k: htt target version 2.1
ath10k: pci tx item 0 paddr 0x12be7460 len 48 n_items 1
ath10k: wmi pdev set param 34 value 1
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7660 len 20 n_items 1
ath10k: wmi pdev set param 10 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2d05f20
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009c4460 len 20 n_items 1
ath10k: wmi pdev set param 1 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c0de60
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7660 len 20 n_items 1
ath10k: wmi pdev set param 2 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39b40
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009c4460 len 20 n_items 1
ath10k: wmi pdev set param 35 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c0de60
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7660 len 20 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39c00
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac channel [0/32] freq 2412 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [1/32] freq 2417 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [2/32] freq 2422 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [3/32] freq 2427 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [4/32] freq 2432 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [5/32] freq 2437 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [6/32] freq 2442 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [7/32] freq 2447 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [8/32] freq 2452 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [9/32] freq 2457 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [10/32] freq 2462 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [11/32] freq 2467 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [12/32] freq 2472 maxpower 40 regpower 40 antenna 0 mode 1
ath10k: mac channel [13/32] freq 5180 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [14/32] freq 5200 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [15/32] freq 5220 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [16/32] freq 5240 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [17/32] freq 5260 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [18/32] freq 5280 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [19/32] freq 5300 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [20/32] freq 5320 maxpower 40 regpower 40 antenna 0 mode 0
ath10k: mac channel [21/32] freq 5500 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [22/32] freq 5520 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [23/32] freq 5540 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [24/32] freq 5560 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [25/32] freq 5580 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [26/32] freq 5600 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [27/32] freq 5620 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [28/32] freq 5640 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [29/32] freq 5660 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [30/32] freq 5680 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: mac channel [31/32] freq 5700 maxpower 54 regpower 54 antenna 0 mode 0
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12dd4860 len 784 n_items 1
ath10k: wmi pdev regdomain rd 37 rd2g 37 rd5g 37 ctl2g 30 ctl5g 30
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39cc0
ath10k: pci tx item 0 paddr 0x12be7660 len 32 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c0de60
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac vdev create 0 (add interface) type 2 subtype 0
ath10k: WMI vdev create: id 0 type 2 subtype 0 macaddr 00:03:07:12:34:56
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7660 len 32 n_items 1
ath10k: wmi vdev id 0x0 set param 33 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c4460 len 24 n_items 1
ath10k: wmi vdev id 0x0 set param 48 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39cc0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7660 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c4460 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 1 value 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39e40
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7660 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 2 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c4460 len 24 n_items 1
ath10k: wmi vdev id 0x0 set param 1 value -1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39f00
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7660 len 24 n_items 1
ath10k: wmi vdev id 0x0 set param 2 value -1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c4460 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a240a0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: mac vdev 0 cts_prot 0
ath10k: wmi vdev id 0x0 set param 44 value 0
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009c4460 len 24 n_items 1
ath10k: mac vdev 0 slot_time 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a24160
ath10k: wmi vdev id 0x0 set param 7 value 1
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c4460 len 24 n_items 1
ath10k: mac vdev 0 preamble 1n
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a24160
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: wmi vdev id 0x0 set param 8 value 1
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009c4460 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a24220
ath10k: wmi pdev set wmm params
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c4460 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a24220
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7660 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c4460 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a242e0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7660 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c4460 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a243a0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7660 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c4460 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a24460
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7660 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c4460 len 24 n_items 1
ath10k: wmi pdev set wmm params
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a24520
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7660 len 108 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 4 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39d80
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c4460 len 24 n_items 1
ath10k: wmi sta ps param vdev_id 0x0 param 0 value 0
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a245e0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12be7660 len 24 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39d80
ath10k: mac config channel 2412MHz flags 0x1a0 radar 0
ath10k: mac config power 20
ath10k: wmi pdev set param 3 value 40
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7660 len 20 n_items 1
ath10k: wmi pdev set param 4 value 40
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a39d80
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009c4460 len 20 n_items 1
ath10k: mac vdev 0 psmode disable
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a246a0
ath10k: wmi set powersave id 0x0 mode 0
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009c4460 len 20 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2a246a0
ath10k: htc ep 2 got 2 credits (total 2)
ADDRCONF(NETDEV_UP): wlan0: link is not ready
mv_eth_tool_get_settings is not supported on eth0
device eth0 entered promiscuous mode
device wlan0 entered promiscuous mode
ath10k: mac monitor refs: promisc 1 monitor 0 cac 0
ath10k: WMI vdev create: id 1 type 4 subtype 0 macaddr 00:03:07:12:34:56
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x009a0260 len 32 n_items 1
ath10k: mac monitor vdev 1 created
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c016c0
ath10k: wmi vdev start id 0x1 flags: 0x0, freq 2412, mode 1, ch_flags: 0x1, max_power: 40
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x009a0260 len 140 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c016c0
ath10k: htc ep 2 got 2 credits (total 2)
ath10k: htc rx completion ep 2 skb d2d05e60
ath10k: WMI_VDEV_START_RESP_EVENTID
ath10k: wmi mgmt vdev up id 0x1 assoc id 0 bssid 00:03:07:12:34:56
ath10k: htc ep 2 consumed 1 credits (total 1)
ath10k: pci tx item 0 paddr 0x12c1c860 len 28 n_items 1
ath10k: mac monitor vdev 1 started
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2c0dce0
ath10k: mac monitor started
br0: port 1(eth0) entering forwarding state
br0: port 1(eth0) entering forwarding state
ath10k: pci hif send complete check
ath10k: ath10k_htc_notify_tx_completion: ep 1 skb d2a39a80
ath10k: htc rx completion ep 1 skb d2a249a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24a60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24b20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24be0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24ca0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24d60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24e20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24ee0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f080
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f140
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f200
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f2c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f380
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f440
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f500
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f5c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f680
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f740
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f800
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f8c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f980
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0fa40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0fb00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0fbc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0fc80
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0fd40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0fe00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0fec0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d390e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d391a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d39260
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d39320
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d393e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d394a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d39560
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d39620
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d396e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d397a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d39860
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d39920
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d399e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d39aa0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d39b60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d39c20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d39ce0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d39da0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d39e60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d39f20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d240c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d24180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9c0c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9c180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9cf00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9ce40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9cd80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9ccc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9cc00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9cb40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9ca80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9c9c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9c900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9c840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9c780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9c6c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9c600
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9c540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9c480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9c3c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9c300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c9c240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d24f00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d24e40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d24d80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d24cc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d24c00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d24b40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d24a80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d249c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d24900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d24840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d24780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d246c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d24600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d24540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d24480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d243c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d24300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d24240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a39300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a393c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a39180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a390c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a396c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a39780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a39540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a39240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a39480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a39600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e59780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e59840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e59900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e59300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e59240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e59180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e590c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e596c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e59540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e593c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e59480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb c0e59600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7080
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7140
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7200
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc72c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7380
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7440
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7500
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc75c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7680
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7740
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7800
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc78c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7980
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7a40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7b00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7bc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7c80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7d40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7e00
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cc7ec0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb10e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb11a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb1260
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb1320
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb13e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb14a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb1560
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb1620
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb16e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb17a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb1860
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb1920
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb19e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb1aa0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb1b60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb1c20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb1ce0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb1da0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb1e60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2cb1f20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc6760
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc66a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc68e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc69a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc6a60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc6b20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc6be0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc6ca0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc6d60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc6e20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc6ee0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc60a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc6160
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc6220
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc62e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc63a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc6460
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc6520
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc65e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2bc6820
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a850e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a851a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a85260
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a85320
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a853e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a854a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a85560
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a85620
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a856e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a857a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a85860
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a85920
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a859e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a85aa0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a85b60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a85c20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a85ce0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a85f20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a85e60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a85da0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20ec0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20e00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20d40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20c80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20bc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20b00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20a40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20980
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a208c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20800
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20740
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20680
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a205c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20500
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20440
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20380
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a202c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20200
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20140
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a20080
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1aee0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1ae20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1ad60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1aca0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1abe0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1ab20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1aa60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1a9a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1a8e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1a820
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1a760
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1a6a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1a5e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1a520
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1a460
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1a3a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1a2e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1a220
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1a160
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a1a0a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a14f00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a14e40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a14d80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a14cc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a14c00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a14b40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a14a80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a149c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a14900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a14840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a14780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a146c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a14600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a14540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a14480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a143c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a14300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a14240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a14180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a140c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0cf20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0ce60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0cda0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0cce0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0cc20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0cb60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0caa0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0c9e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0c920
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0c860
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0c7a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0c6e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0c620
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0c560
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0c4a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0c3e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0c320
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0c260
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0c1a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0c0e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06ec0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06e00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06d40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06c80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06bc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06b00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06a40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06980
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a068c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06800
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06740
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06680
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a065c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06500
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06440
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06380
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a062c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06200
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06140
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a06080
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a01ee0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a01e20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a01d60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a01ca0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a01be0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a01b20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a01a60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a019a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a018e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a01820
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a01760
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a016a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a015e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a01520
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a01460
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a013a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a012e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a01220
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a01160
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a010a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3bf00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3be40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3bd80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3bcc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3bc00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3bb40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3ba80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3b9c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3b900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3b840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3b780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3b6c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3b600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3b540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3b480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3b3c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3b300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3b240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3b180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d3b0c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d34f20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d34e60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d34da0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d34ce0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d34c20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d34b60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d34aa0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d349e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d34920
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d34860
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d347a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d346e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d34620
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d34560
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d344a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d343e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d34320
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d34260
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d341a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d340e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2eec0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2ee00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2ed40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2ec80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2ebc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2eb00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2ea40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2e980
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2e8c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2e800
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2e740
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2e680
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2e5c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2e500
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2e440
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2e380
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2e2c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2e200
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2e140
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d2e080
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e25ee0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e25e20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e25d60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e25ca0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e25be0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e25b20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e25a60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e259a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e258e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e25820
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e25760
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e256a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e255e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e25520
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e25460
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e253a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e252e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e25220
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e25160
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2e250a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d25f00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d25e40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d25d80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d25cc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d25c00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d25b40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d25a80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d259c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d25900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d25840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d25780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d256c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d25600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d25540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d25480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d253c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d25300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d25240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d25180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d250c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1ef20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1ee60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1eda0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1ece0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1ec20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1eb60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1eaa0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1e9e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1e920
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1e860
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1e7a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1e6e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1e620
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1e560
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1e4a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1e3e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1e320
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1e260
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1e1a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d1e0e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18ec0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18e00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18d40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18c80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18bc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18b00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18a40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18980
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d188c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18800
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18740
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18680
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d185c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18500
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18440
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18380
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d182c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18200
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18140
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d18080
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d12ee0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d12e20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d12d60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d12ca0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d12be0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d12b20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d12a60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d129a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d128e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d12820
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d12760
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d126a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d125e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d12520
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d12460
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d123a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d122e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d12220
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d12160
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d120a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0bf00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0be40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0bd80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0bcc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0bc00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0bb40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0ba80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0b9c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0b900
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0b840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0b780
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0b6c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0b600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0b540
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0b480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0b3c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0b300
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0b240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0b180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d04740
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a39840
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c01780
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c01240
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d05f20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a39b40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a39c00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c0de60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a39cc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a39e40
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a39f00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a240a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24160
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24220
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a242e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a243a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24460
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24520
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a245e0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a39d80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a246a0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c01600
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c01480
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a39a80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c0dda0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d0b0c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c013c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c01180
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c010c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2c0df20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24760
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f080
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d04140
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24ee0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d04200
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24e20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d042c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24d60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d04380
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24ca0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d04440
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24be0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d04500
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24b20
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d045c0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a24a60
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2d04680
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0fc80
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d460
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0fbc0
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d520
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0fb00
ath10k: htt rx, msg_type: 0x1
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d5e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: htt rx mgmt ctrl
ath10k: wmi start scan
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12be7460 len 200 n_items 1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d28526e0
ath10k: htc ep 2 got 1 credits (total 1)
ath10k: htc rx completion ep 2 skb d2d05da0
ath10k: WMI_SCAN_EVENTID
ath10k: scan event type 1 reason 4 freq 2412 req_id 40961 scan_id 40960 vdev_id 0
ath10k: SCAN_EVENT_STARTED
ath10k: htc rx completion ep 2 skb d2d05ce0
ath10k: WMI_SCAN_EVENTID
ath10k: scan event type 4 reason 4 freq 2412 req_id 40961 scan_id 40960 vdev_id 0
ath10k: SCAN_EVENT_BSS_CHANNEL
ath10k: htc rx completion ep 2 skb d2d05c20
ath10k: chan info err_code 0 freq 2412 cmd_flags 1 noise_floor -113 rx_clear_count 889630 cycle_count 18258489
ath10k: htc rx completion ep 2 skb d2d05b60
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2d05b60 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2412 band 0 snr -82, rate_idx 0
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0fa40
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d6a0
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2d05aa0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2d05aa0 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2412 band 0 snr -83, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f980
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2d059e0
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2d059e0 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2412 band 0 snr -86, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d760
ath10k: htt rx, msg_type: 0x1
ath10k: htc rx completion ep 2 skb d2d05920
ath10k: event mgmt rx status 00000000
ath10k: event mgmt rx skb d2d05920 len 244 ftype 00 stype 40
ath10k: event mgmt rx freq 2412 band 0 snr -86, rate_idx 0
ath10k: htt rx mgmt ctrl
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f8c0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d820
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f800
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a7d8e0
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: htc rx completion ep 2 skb d2d05860
ath10k: wmi event debug mesg len 36
ath10k: pci hif send complete check
ath10k: htc rx completion ep 1 skb d2a0f740
ath10k: htt rx, msg_type: 0x1
ath10k: htt rx dropping due to zero-len
ath10k: firmware crashed!
ath10k: hardware name qca988x hw2.0 version 0x4100016c
ath10k: firmware version: 999.999.0.636
ath10k: target register Dump Location: 0x0040AC14
ath10k: target Register Dump
ath10k: [00]: 0x4100016C 0x00000000 0x009C4521 0x00000000
ath10k: [04]: 0x009C4521 0x00060330 0x00000019 0x00955A00
ath10k: [08]: 0x00008CC1 0x00000000 0x0040CC94 0x00000020
ath10k: [12]: 0x00000000 0x00000000 0x00958360 0x0095836B
ath10k: [16]: 0x809A0978 0x0040AD94 0x00439304 0x0040D074
ath10k: [20]: 0x0000FFFF 0x00000000 0x00431524 0x00000000
ath10k: [24]: 0x809A0978 0x0040AD94 0x00439304 0x0233079E
ath10k: [28]: 0x809AD1A2 0x0040ADE4 0x00439304 0x0043F68C
ath10k: [32]: 0x809B5DA3 0x00000000 0x000000FE 0x004440FC
ath10k: [36]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [40]: 0x00000000 0x00000000 0x00000000 0x00000000
ath10k: [44]: 0x00439BB8 0x00000000 0x00000000 0x00400000
ath10k: [48]: 0x809AE0B4 0x0040AE04 0x00400000 0x0043F68C
ath10k: [52]: 0x00000001 0x00000000 0x004231F0 0x00400000
ath10k: [56]: 0x809AE17E 0x0040AE44 0x0040FE6C 0x0040D310
ath10k: mac monitor refs: promisc 1 monitor 0 cac 0
ath10k: mac monitor refs: promisc 0 monitor 0 cac 0
ath10k: wmi mgmt vdev down id 0x1
ath10k: htc ep 2 consumed 1 credits (total 0)
ath10k: HTC: endpoint 2 needs credit update
ath10k: pci tx item 0 paddr 0x12c1cc60 len 16 n_items 1
ath10k: wmi vdev stop id 0x1
ath10k: ath10k_htc_notify_tx_completion: ep 2 skb d2bfb620
ath10k: failed to to request monitor vdev 1 stop: -11
ath10k: failed to synchronise monitor vdev 1: -110
ath10k: mac monitor vdev 1 stopped
ath10k: failed to stop monitor vdev: -110
ath10k: WMI vdev delete id 1
eth0: no IPv6 routers present
br0: no IPv6 routers present

[-- Attachment #4: Type: text/plain, Size: 146 bytes --]

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: TR : ath10k: firmware crash in station mode
  2014-05-23 14:55                 ` TR " Vu Hai NGUYEN
@ 2014-05-23 15:36                   ` Yeoh Chun-Yeow
  2014-05-23 16:03                     ` Ben Greear
  2014-05-24  5:49                     ` Tim Harvey
  0 siblings, 2 replies; 134+ messages in thread
From: Yeoh Chun-Yeow @ 2014-05-23 15:36 UTC (permalink / raw)
  To: Vu Hai NGUYEN; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k

Based on my testing, due to firmware 636 is not able to support
standalone monitor mode, and bridge requires promiscuous mode, it
would crash. Then, I have tested with AP firmware and it works well.
But then, I have not up the node for long time.

By the way, I am associating the AP before setting "iw dev wlan0 set
4addr on" and bridge it.

----
Chun-Yeow

On Fri, May 23, 2014 at 10:55 PM, Vu Hai NGUYEN
<vh.nguyen@actiasodielec.fr> wrote:
>>Yes, you can do it with firmware 10.1.467.2-1 but not firmware 999.999.0.636.
>
> They all crashed, but the 999 crashed sooner (even before associated with the AP) , I've posted it the logs before for Michal Kazior. Here is my old email:
> http://lists.infradead.org/pipermail/ath10k/2014-May/002042.html
>
>>>This is NULL dereference in firmware. I suspect it's an incomplete
>>>driver-firmware setup (i.e. some commands weren't issued or were
>>>invalid).
>
>>>Can you enable debug logs ( echo 0xffffff3f | sudo tee /sys/module/ath10k_core/parameters/debug_mask ) before you try to
>>>associate and post logs, please? I'd like to see command sequence sent
>>>to firmware before the crash happens.
>
>>I enable directly the debug_mask when I load the module "modprobe ath10k_core.ko debug_mask=0x0xffffff3f" (I thought it is the same thing like what you do, right?).
>>You can found de debug mess in the attached file (debug_10-1.txt). (line 3007: wlan0: associated and then in line 3008: ath10k: firmware crashed!)
>
>>>Can you post the crash logs (as noted above) when you try the 999
>>>branch too, please? It seems 999 crashes sooner than 10.1. It might be
>>>helpful to see the different crash points.
>
>>Yes it crashed sooner. There are no wlan0: associated in the debug message. (attached file: debug_999.txt).
>
>
> NGUYEN Vu Hai
> Acita-Sodielec
> Route de Mayres - B.P. 9
> 12100 St GEORGES DE LUZENCON
> FRANCE
>

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: TR : ath10k: firmware crash in station mode
  2014-05-23 15:36                   ` Yeoh Chun-Yeow
@ 2014-05-23 16:03                     ` Ben Greear
  2014-05-24  6:29                       ` Tim Harvey
  2014-05-24  5:49                     ` Tim Harvey
  1 sibling, 1 reply; 134+ messages in thread
From: Ben Greear @ 2014-05-23 16:03 UTC (permalink / raw)
  To: Yeoh Chun-Yeow; +Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, ath10k

On 05/23/2014 08:36 AM, Yeoh Chun-Yeow wrote:
> Based on my testing, due to firmware 636 is not able to support
> standalone monitor mode, and bridge requires promiscuous mode, it
> would crash. Then, I have tested with AP firmware and it works well.
> But then, I have not up the node for long time.
> 
> By the way, I am associating the AP before setting "iw dev wlan0 set
> 4addr on" and bridge it.

Well, if nothing else, you could try my firmware, with a small patch to
make it work on standard kernels.  If you can crash it, send me the
firmware crash message and I'll see if I can fix it.

Current binary is non-commercial, but I will shortly have a free-for-whatever-use
binary that has everything except the multiple-vif-to-same-ap-with-encryption
feature.  Virtually no one except folks like us doing wifi testing equipment
needs that feature....

My firmware has been fairly well tested with my patched kernel and in
station and AP mode.  I'm sure there are still bugs, but I will try
to fix them, at least.

http://www.candelatech.com/vsta.php

Thanks,
Ben


> 
> ----
> Chun-Yeow
> 
> On Fri, May 23, 2014 at 10:55 PM, Vu Hai NGUYEN
> <vh.nguyen@actiasodielec.fr> wrote:
>>> Yes, you can do it with firmware 10.1.467.2-1 but not firmware 999.999.0.636.
>>
>> They all crashed, but the 999 crashed sooner (even before associated with the AP) , I've posted it the logs before for Michal Kazior. Here is my old email:
>> http://lists.infradead.org/pipermail/ath10k/2014-May/002042.html
>>
>>>> This is NULL dereference in firmware. I suspect it's an incomplete
>>>> driver-firmware setup (i.e. some commands weren't issued or were
>>>> invalid).
>>
>>>> Can you enable debug logs ( echo 0xffffff3f | sudo tee /sys/module/ath10k_core/parameters/debug_mask ) before you try to
>>>> associate and post logs, please? I'd like to see command sequence sent
>>>> to firmware before the crash happens.
>>
>>> I enable directly the debug_mask when I load the module "modprobe ath10k_core.ko debug_mask=0x0xffffff3f" (I thought it is the same thing like what you do, right?).
>>> You can found de debug mess in the attached file (debug_10-1.txt). (line 3007: wlan0: associated and then in line 3008: ath10k: firmware crashed!)
>>
>>>> Can you post the crash logs (as noted above) when you try the 999
>>>> branch too, please? It seems 999 crashes sooner than 10.1. It might be
>>>> helpful to see the different crash points.
>>
>>> Yes it crashed sooner. There are no wlan0: associated in the debug message. (attached file: debug_999.txt).
>>
>>
>> NGUYEN Vu Hai
>> Acita-Sodielec
>> Route de Mayres - B.P. 9
>> 12100 St GEORGES DE LUZENCON
>> FRANCE
>>
> 
> _______________________________________________
> ath10k mailing list
> ath10k@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/ath10k
> 


-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: TR : ath10k: firmware crash in station mode
  2014-05-23 15:36                   ` Yeoh Chun-Yeow
  2014-05-23 16:03                     ` Ben Greear
@ 2014-05-24  5:49                     ` Tim Harvey
  2014-05-24 16:46                       ` Yeoh Chun-Yeow
  1 sibling, 1 reply; 134+ messages in thread
From: Tim Harvey @ 2014-05-24  5:49 UTC (permalink / raw)
  To: Yeoh Chun-Yeow
  Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, Michal Kazior, ath10k

On Fri, May 23, 2014 at 8:36 AM, Yeoh Chun-Yeow <yeohchunyeow@gmail.com> wrote:
> Based on my testing, due to firmware 636 is not able to support
> standalone monitor mode, and bridge requires promiscuous mode, it
> would crash. Then, I have tested with AP firmware and it works well.
> But then, I have not up the node for long time.
>
> By the way, I am associating the AP before setting "iw dev wlan0 set
> 4addr on" and bridge it.

I am able to reproduce this firmware crash as well very easily. While
you can avoid it by associating first, then setting 4addr, then adding
it to a bridge, any dissassociation/reassociation will trigger the
crash. Additionally its not always convenient to configure things in
that order - using OpenWrt with the interface bridged and wds enabled
will always trigger the crash on association.

Tim

>
> ----
> Chun-Yeow
>
> On Fri, May 23, 2014 at 10:55 PM, Vu Hai NGUYEN
> <vh.nguyen@actiasodielec.fr> wrote:
>>>Yes, you can do it with firmware 10.1.467.2-1 but not firmware 999.999.0.636.
>>
>> They all crashed, but the 999 crashed sooner (even before associated with the AP) , I've posted it the logs before for Michal Kazior. Here is my old email:
>> http://lists.infradead.org/pipermail/ath10k/2014-May/002042.html
>>
>>>>This is NULL dereference in firmware. I suspect it's an incomplete
>>>>driver-firmware setup (i.e. some commands weren't issued or were
>>>>invalid).
>>
>>>>Can you enable debug logs ( echo 0xffffff3f | sudo tee /sys/module/ath10k_core/parameters/debug_mask ) before you try to
>>>>associate and post logs, please? I'd like to see command sequence sent
>>>>to firmware before the crash happens.
>>
>>>I enable directly the debug_mask when I load the module "modprobe ath10k_core.ko debug_mask=0x0xffffff3f" (I thought it is the same thing like what you do, right?).
>>>You can found de debug mess in the attached file (debug_10-1.txt). (line 3007: wlan0: associated and then in line 3008: ath10k: firmware crashed!)
>>
>>>>Can you post the crash logs (as noted above) when you try the 999
>>>>branch too, please? It seems 999 crashes sooner than 10.1. It might be
>>>>helpful to see the different crash points.
>>
>>>Yes it crashed sooner. There are no wlan0: associated in the debug message. (attached file: debug_999.txt).
>>
>>
>> NGUYEN Vu Hai
>> Acita-Sodielec
>> Route de Mayres - B.P. 9
>> 12100 St GEORGES DE LUZENCON
>> FRANCE
>>
>
> _______________________________________________
> ath10k mailing list
> ath10k@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/ath10k

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: TR : ath10k: firmware crash in station mode
  2014-05-23 16:03                     ` Ben Greear
@ 2014-05-24  6:29                       ` Tim Harvey
  2014-05-24 16:14                         ` Ben Greear
  2014-05-25  7:26                         ` Kalle Valo
  0 siblings, 2 replies; 134+ messages in thread
From: Tim Harvey @ 2014-05-24  6:29 UTC (permalink / raw)
  To: Ben Greear, Valo, Kalle
  Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, Yeoh Chun-Yeow, ath10k

On Fri, May 23, 2014 at 9:03 AM, Ben Greear <greearb@candelatech.com> wrote:
> On 05/23/2014 08:36 AM, Yeoh Chun-Yeow wrote:
>> Based on my testing, due to firmware 636 is not able to support
>> standalone monitor mode, and bridge requires promiscuous mode, it
>> would crash. Then, I have tested with AP firmware and it works well.
>> But then, I have not up the node for long time.
>>
>> By the way, I am associating the AP before setting "iw dev wlan0 set
>> 4addr on" and bridge it.
>
> Well, if nothing else, you could try my firmware, with a small patch to
> make it work on standard kernels.  If you can crash it, send me the
> firmware crash message and I'll see if I can fix it.
>
> Current binary is non-commercial, but I will shortly have a free-for-whatever-use
> binary that has everything except the multiple-vif-to-same-ap-with-encryption
> feature.  Virtually no one except folks like us doing wifi testing equipment
> needs that feature....
>
> My firmware has been fairly well tested with my patched kernel and in
> station and AP mode.  I'm sure there are still bugs, but I will try
> to fix them, at least.
>
> http://www.candelatech.com/vsta.php
>
> Thanks,
> Ben
>

Ben,

I tried using your firmware on a 3.14 kernel without any luck. I don't
see any errors, but the sta never associates nor see's any ap on scan.
I followed http://www.candelatech.com/vsta.php step 4 and step 6 and
did this on OpenWrt, so the udev stuff doesn't apply.

What we really need here is for QCA to step up to the plate and fix
their firmware... or better yet open it up and let the community fix
what they can't! This is really holding ath10k and QCA988x back. We
have customers looking for alternatives after getting a rude awakening
to ath10k.

Kalle - Will QCA make some sort of statement as to what the plans are
with this firmware? Will there be updates? Will the features be merged
into a single firmware? Will it be opened up so that the community can
improve the product?

Regards,

Tim

>
>>
>> ----
>> Chun-Yeow
>>
>> On Fri, May 23, 2014 at 10:55 PM, Vu Hai NGUYEN
>> <vh.nguyen@actiasodielec.fr> wrote:
>>>> Yes, you can do it with firmware 10.1.467.2-1 but not firmware 999.999.0.636.
>>>
>>> They all crashed, but the 999 crashed sooner (even before associated with the AP) , I've posted it the logs before for Michal Kazior. Here is my old email:
>>> http://lists.infradead.org/pipermail/ath10k/2014-May/002042.html
>>>
>>>>> This is NULL dereference in firmware. I suspect it's an incomplete
>>>>> driver-firmware setup (i.e. some commands weren't issued or were
>>>>> invalid).
>>>
>>>>> Can you enable debug logs ( echo 0xffffff3f | sudo tee /sys/module/ath10k_core/parameters/debug_mask ) before you try to
>>>>> associate and post logs, please? I'd like to see command sequence sent
>>>>> to firmware before the crash happens.
>>>
>>>> I enable directly the debug_mask when I load the module "modprobe ath10k_core.ko debug_mask=0x0xffffff3f" (I thought it is the same thing like what you do, right?).
>>>> You can found de debug mess in the attached file (debug_10-1.txt). (line 3007: wlan0: associated and then in line 3008: ath10k: firmware crashed!)
>>>
>>>>> Can you post the crash logs (as noted above) when you try the 999
>>>>> branch too, please? It seems 999 crashes sooner than 10.1. It might be
>>>>> helpful to see the different crash points.
>>>
>>>> Yes it crashed sooner. There are no wlan0: associated in the debug message. (attached file: debug_999.txt).
>>>
>>>
>>> NGUYEN Vu Hai
>>> Acita-Sodielec
>>> Route de Mayres - B.P. 9
>>> 12100 St GEORGES DE LUZENCON
>>> FRANCE
>>>
>>
>> _______________________________________________
>> ath10k mailing list
>> ath10k@lists.infradead.org
>> http://lists.infradead.org/mailman/listinfo/ath10k
>>
>
>
> --
> Ben Greear <greearb@candelatech.com>
> Candela Technologies Inc  http://www.candelatech.com
>
>
> _______________________________________________
> ath10k mailing list
> ath10k@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/ath10k

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: TR : ath10k: firmware crash in station mode
  2014-05-24  6:29                       ` Tim Harvey
@ 2014-05-24 16:14                         ` Ben Greear
  2014-05-27 19:13                           ` Ben Greear
  2014-05-25  7:26                         ` Kalle Valo
  1 sibling, 1 reply; 134+ messages in thread
From: Ben Greear @ 2014-05-24 16:14 UTC (permalink / raw)
  To: Tim Harvey, Valo, Kalle
  Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, Yeoh Chun-Yeow, ath10k



On 05/23/2014 11:29 PM, Tim Harvey wrote:
> On Fri, May 23, 2014 at 9:03 AM, Ben Greear <greearb@candelatech.com> wrote:
>> On 05/23/2014 08:36 AM, Yeoh Chun-Yeow wrote:
>>> Based on my testing, due to firmware 636 is not able to support
>>> standalone monitor mode, and bridge requires promiscuous mode, it
>>> would crash. Then, I have tested with AP firmware and it works well.
>>> But then, I have not up the node for long time.
>>>
>>> By the way, I am associating the AP before setting "iw dev wlan0 set
>>> 4addr on" and bridge it.
>>
>> Well, if nothing else, you could try my firmware, with a small patch to
>> make it work on standard kernels.  If you can crash it, send me the
>> firmware crash message and I'll see if I can fix it.
>>
>> Current binary is non-commercial, but I will shortly have a free-for-whatever-use
>> binary that has everything except the multiple-vif-to-same-ap-with-encryption
>> feature.  Virtually no one except folks like us doing wifi testing equipment
>> needs that feature....
>>
>> My firmware has been fairly well tested with my patched kernel and in
>> station and AP mode.  I'm sure there are still bugs, but I will try
>> to fix them, at least.
>>
>> http://www.candelatech.com/vsta.php
>>
>> Thanks,
>> Ben
>>
>
> Ben,
>
> I tried using your firmware on a 3.14 kernel without any luck. I don't
> see any errors, but the sta never associates nor see's any ap on scan.
> I followed http://www.candelatech.com/vsta.php step 4 and step 6 and
> did this on OpenWrt, so the udev stuff doesn't apply.

Skip step 6 unless you are using my kernel.  Just step 4 for upstream
kernels.  I need to make a separate page for folks just using my CT
firmware on normal kernels doing normal things...

No arguments with the rest of your email :)

Thanks,
Ben

-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: TR : ath10k: firmware crash in station mode
  2014-05-24  5:49                     ` Tim Harvey
@ 2014-05-24 16:46                       ` Yeoh Chun-Yeow
  0 siblings, 0 replies; 134+ messages in thread
From: Yeoh Chun-Yeow @ 2014-05-24 16:46 UTC (permalink / raw)
  To: Tim Harvey
  Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, Michal Kazior, ath10k

>
> I am able to reproduce this firmware crash as well very easily. While
> you can avoid it by associating first, then setting 4addr, then adding
> it to a bridge, any dissassociation/reassociation will trigger the
> crash. Additionally its not always convenient to configure things in
> that order - using OpenWrt with the interface bridged and wds enabled
> will always trigger the crash on association.
>
> Tim
>

Yes. I agree with that. But it seems that this is the best we can do
for the time being.

---
Chun-Yeow

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: TR : ath10k: firmware crash in station mode
  2014-05-24  6:29                       ` Tim Harvey
  2014-05-24 16:14                         ` Ben Greear
@ 2014-05-25  7:26                         ` Kalle Valo
  1 sibling, 0 replies; 134+ messages in thread
From: Kalle Valo @ 2014-05-25  7:26 UTC (permalink / raw)
  To: Tim Harvey
  Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, Ben Greear,
	Yeoh Chun-Yeow, ath10k

Hi Tim,

Tim Harvey <tharvey@gateworks.com> writes:

> Kalle - Will QCA make some sort of statement as to what the plans are
> with this firmware? Will there be updates? Will the features be merged
> into a single firmware? Will it be opened up so that the community can
> improve the product?

I'm responsible only for the host driver and we have a separate team
doing the firmware development. I can not comment on behalf of that
team.

-- 
Kalle Valo

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-05-23  7:52                                                 ` RE : " Vu Hai NGUYEN
@ 2014-05-26  8:34                                                   ` Janusz Dziedzic
  2014-05-26 13:45                                                     ` Vu Hai NGUYEN
  0 siblings, 1 reply; 134+ messages in thread
From: Janusz Dziedzic @ 2014-05-26  8:34 UTC (permalink / raw)
  To: Vu Hai NGUYEN; +Cc: Patrick CARNEIRO RODRIGUEZ, kvalo, ath10k

On 23 May 2014 09:52, Vu Hai NGUYEN <vh.nguyen@actiasodielec.fr> wrote:
>
>>You need to enable CONFIG_DEBUG_LINUX_TRACING in hostapd to get -T
>>switch. It's documented here:
>
>>http://wireless.kernel.org/en/developers/Documentation/mac80211/tracing
>
> Thanks, I change the config to build hostapd and install trace-cmd in my kernel, 2 trace.dat file in the link below (1 AP and 1 -STA)
> https://drive.google.com/folderview?id=0BwjHLCkPdrW6RVd3Um1vVDJhRm8&usp=drive_web
>

Thanks for logs.
Seems hostapd get probe request and try to send probe responses but
using monitor interface - driver never get this frame.
Seems you have set use_monitor=1 in hostapd - why? Did you hack/overwrie this?
ath10k don't need dedicated monitor interface for AP mode.

BR
Janusz

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-05-26  8:34                                                   ` Janusz Dziedzic
@ 2014-05-26 13:45                                                     ` Vu Hai NGUYEN
       [not found]                                                       ` <CAFED-j=i5uhjqaJYL+dm_ui48EFeHG3isHYSSSo=+3gk-Wa5YQ@mail.gmail.com>
  0 siblings, 1 reply; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-05-26 13:45 UTC (permalink / raw)
  To: Janusz Dziedzic; +Cc: Patrick CARNEIRO RODRIGUEZ, kvalo, ath10k

>Thanks for logs.
>Seems hostapd get probe request and try to send probe responses but
>using monitor interface - driver never get this frame.
>Seems you have set use_monitor=1 in hostapd - why? Did you hack/overwrie this?
>ath10k don't need dedicated monitor interface for AP mode.

Thank you for your response, I don't set that parameter in hostapd file and even in the example file of hostapd.conf, I don't see that parameter. Here is my hostapd.conf:

interface=wlan0                                                                 
driver=nl80211                                                                  
bridge=br0                                                                      
country_code=FR                                                                 
ieee80211d=1                                                                    
ieee80211h=1                                                                    
hw_mode=a                                                                       
ieee80211n=1                                                                    
wds_sta=1                                                                       
ht_capab=[HT40+][SMPS-STATIC][TX-STBC][RX-STBC1][MAX-AMSDU-7935][DSSS_CCK-36]   
channel=52                                                                      
rts_threshold=2347                                                              
beacon_int=100                                                                  
wmm_enabled=1                                                                   
logger_syslog=-1                                                                
logger_syslog_level=0                                                           
logger_stdout=-1                                                                
logger_stdout_level=2                                                           
ctrl_interface_group=0                                                          
macaddr_acl=0                                                                   
auth_algs=1                                                                     
eapol_key_index_workaround=0                                                    
eapol_version=1                                                                 
eap_server=0                                                                    
ssid=ath10k                                                                     
wpa=0                                                                           
wpa_key_mgmt=WPA-PSK                                                            
wpa_passphrase=password                                           
wpa_group_rekey=86360        

But as you said, when I run hostapd (with option -dd) I saw this output: 
nl80211: Setup AP(wlan0) - device_ap_sme=0 use_monitor=1 
It means that parameter is set automatically by the driver nl80211?. And I guess that hostapd do that itself.
Do you know why or can you show me how to set that parameter off to do a test?


NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE
_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
       [not found]                                                       ` <CAFED-j=i5uhjqaJYL+dm_ui48EFeHG3isHYSSSo=+3gk-Wa5YQ@mail.gmail.com>
@ 2014-05-27  6:50                                                         ` Janusz Dziedzic
  2014-05-27  9:21                                                           ` Vu Hai NGUYEN
  2014-05-27 16:36                                                           ` Vu Hai NGUYEN
  0 siblings, 2 replies; 134+ messages in thread
From: Janusz Dziedzic @ 2014-05-27  6:50 UTC (permalink / raw)
  To: Janusz Dziedzic; +Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, kvalo, ath10k

On 26 May 2014 22:00, Janusz Dziedzic <janusz.dziedzic@gmail.com> wrote:
>
>
>
> 2014-05-26 15:45 GMT+02:00 Vu Hai NGUYEN <vh.nguyen@actiasodielec.fr>:
>
>> >Thanks for logs.
>> >Seems hostapd get probe request and try to send probe responses but
>> >using monitor interface - driver never get this frame.
>> >Seems you have set use_monitor=1 in hostapd - why? Did you hack/overwrie
>> > this?
>> >ath10k don't need dedicated monitor interface for AP mode.
>>
>> Thank you for your response, I don't set that parameter in hostapd file
>> and even in the example file of hostapd.conf, I don't see that parameter.
>> Here is my hostapd.conf:
>>
>> interface=wlan0
>> driver=nl80211
>> bridge=br0
>> country_code=FR
>> ieee80211d=1
>> ieee80211h=1
>> hw_mode=a
>> ieee80211n=1
>> wds_sta=1
>>
>> ht_capab=[HT40+][SMPS-STATIC][TX-STBC][RX-STBC1][MAX-AMSDU-7935][DSSS_CCK-36]
>> channel=52
>> rts_threshold=2347
>> beacon_int=100
>> wmm_enabled=1
>> logger_syslog=-1
>> logger_syslog_level=0
>> logger_stdout=-1
>> logger_stdout_level=2
>> ctrl_interface_group=0
>> macaddr_acl=0
>> auth_algs=1
>> eapol_key_index_workaround=0
>> eapol_version=1
>> eap_server=0
>> ssid=ath10k
>> wpa=0
>> wpa_key_mgmt=WPA-PSK
>> wpa_passphrase=password
>> wpa_group_rekey=86360
>>
>> But as you said, when I run hostapd (with option -dd) I saw this output:
>> nl80211: Setup AP(wlan0) - device_ap_sme=0 use_monitor=1
>> It means that parameter is set automatically by the driver nl80211?. And I
>> guess that hostapd do that itself.
>> Do you know why or can you show me how to set that parameter off to do a
>> test?
>>
>
> This is set base on what driver/mac80211/cfg80211 report - function
> wpa_driver_nl80211_capa().
> With ath10k and new mac80211 this should be never set. So, seems you still
> have old/wrong modules and system build/configuration problem?
> Check cfg80211.ko/mac80211.ko ... and/or add some prints to driver_nl80211.c

adding ath10k while html was removed :-)

BR
Janusz

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-05-27  6:50                                                         ` Janusz Dziedzic
@ 2014-05-27  9:21                                                           ` Vu Hai NGUYEN
  2014-05-27 16:36                                                           ` Vu Hai NGUYEN
  1 sibling, 0 replies; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-05-27  9:21 UTC (permalink / raw)
  To: Janusz Dziedzic, Janusz Dziedzic
  Cc: Patrick CARNEIRO RODRIGUEZ, kvalo, ath10k

> This is set base on what driver/mac80211/cfg80211 report - function
> wpa_driver_nl80211_capa().
> With ath10k and new mac80211 this should be never set. So, seems you still
> have old/wrong modules and system build/configuration problem?
> Check cfg80211.ko/mac80211.ko ... and/or add some prints to driver_nl80211.c

It's just about the module or it can be related to building hostapd too?

>adding ath10k while html was removed :-)

Sorry I don't get this. What do you mean about html here?


NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-05-27  6:50                                                         ` Janusz Dziedzic
  2014-05-27  9:21                                                           ` Vu Hai NGUYEN
@ 2014-05-27 16:36                                                           ` Vu Hai NGUYEN
  2014-05-28 15:25                                                             ` Vu Hai NGUYEN
  1 sibling, 1 reply; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-05-27 16:36 UTC (permalink / raw)
  To: Janusz Dziedzic, Janusz Dziedzic; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k


> This is set base on what driver/mac80211/cfg80211 report - function
> wpa_driver_nl80211_capa().
> With ath10k and new mac80211 this should be never set. So, seems you still
> have old/wrong modules and system build/configuration problem?
> Check cfg80211.ko/mac80211.ko ... and/or add some prints to driver_nl80211.c

I tried to trace back where the problem is in the code but can not found anything strange, since the modules that I compiled from backports seems normal (though I get some warnings (unused variable and defined but not used like:
/backports-output/net/wireless/sysfs.c:78:1: warning: 'init_ieee80211_attrs' defined but not used [-Wunused-function]
/backports-output/drivers/net/wireless/ath/ath10k/ce.c:337:21: warning: unused variable 'ar_pci' [-Wunused-variable]
/backports-output/net/mac80211/chan.c:858:26: warning: unused variable 'local' [-Wunused-variable]

DO I have to activate cfg80211 and mac80211 when I built my old kernel 3.2.36 (so that the .config of the kernel is changed) or I can build them directly from backport? I just link them to my kernel by setting KLIB=... and KLIB_BUILD=...
Thanks,
NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE



_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: TR : ath10k: firmware crash in station mode
  2014-05-24 16:14                         ` Ben Greear
@ 2014-05-27 19:13                           ` Ben Greear
  0 siblings, 0 replies; 134+ messages in thread
From: Ben Greear @ 2014-05-27 19:13 UTC (permalink / raw)
  To: Tim Harvey, Valo, Kalle
  Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, Yeoh Chun-Yeow, ath10k

On 05/24/2014 09:14 AM, Ben Greear wrote:
> 
> 
> On 05/23/2014 11:29 PM, Tim Harvey wrote:
>> On Fri, May 23, 2014 at 9:03 AM, Ben Greear <greearb@candelatech.com> wrote:
>>> On 05/23/2014 08:36 AM, Yeoh Chun-Yeow wrote:
>>>> Based on my testing, due to firmware 636 is not able to support
>>>> standalone monitor mode, and bridge requires promiscuous mode, it
>>>> would crash. Then, I have tested with AP firmware and it works well.
>>>> But then, I have not up the node for long time.
>>>>
>>>> By the way, I am associating the AP before setting "iw dev wlan0 set
>>>> 4addr on" and bridge it.
>>>
>>> Well, if nothing else, you could try my firmware, with a small patch to
>>> make it work on standard kernels.  If you can crash it, send me the
>>> firmware crash message and I'll see if I can fix it.
>>>
>>> Current binary is non-commercial, but I will shortly have a free-for-whatever-use
>>> binary that has everything except the multiple-vif-to-same-ap-with-encryption
>>> feature.  Virtually no one except folks like us doing wifi testing equipment
>>> needs that feature....
>>>
>>> My firmware has been fairly well tested with my patched kernel and in
>>> station and AP mode.  I'm sure there are still bugs, but I will try
>>> to fix them, at least.
>>>
>>> http://www.candelatech.com/vsta.php
>>>
>>> Thanks,
>>> Ben
>>>
>>
>> Ben,
>>
>> I tried using your firmware on a 3.14 kernel without any luck. I don't
>> see any errors, but the sta never associates nor see's any ap on scan.
>> I followed http://www.candelatech.com/vsta.php step 4 and step 6 and
>> did this on OpenWrt, so the udev stuff doesn't apply.
> 
> Skip step 6 unless you are using my kernel.  Just step 4 for upstream
> kernels.  I need to make a separate page for folks just using my CT
> firmware on normal kernels doing normal things...
> 
> No arguments with the rest of your email :)

I have just uploaded my latest firmware image, and it now works on
un-modified kernels (tested on Ubuntu 14.04 system with kernel
3.13.0-24-generic:  Brought up a station, associated with AP on
channel 36, obtained DHCP address).  I have not done any extensive
testing of our firmware on standard kernels.

You should only have to copy the firmware image to your existing system
and reboot and it should just work (tm).

One problem we often see is that the regulatory domain gets too restrictive
when we have several nics and/or different timezones and/or different
domains configured directly with 'iw'.

This keeps you from scanning on all normally available channels.

I have hacked my kernel to allow ignoring ath10k (and ath9k) regulatory
settings in the NICs, and we are now careful about the timezone
settings, but please do double-check that if you have scan issues,
you are actually scanning the needed channels.

'iw event' has enough info to show this.

If you do get a chance to try our firmware again, I'm interested
to know the results.

Thanks,
Ben

> 
> Thanks,
> Ben
> 


-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-05-27 16:36                                                           ` Vu Hai NGUYEN
@ 2014-05-28 15:25                                                             ` Vu Hai NGUYEN
  2014-05-28 15:49                                                               ` Ben Greear
  2014-05-28 17:19                                                               ` Janusz Dziedzic
  0 siblings, 2 replies; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-05-28 15:25 UTC (permalink / raw)
  To: Vu Hai NGUYEN, Janusz Dziedzic, Janusz Dziedzic
  Cc: Patrick CARNEIRO RODRIGUEZ, ath10k

> This is set base on what driver/mac80211/cfg80211 report - function
> wpa_driver_nl80211_capa().
> With ath10k and new mac80211 this should be never set. So, seems you still
> have old/wrong modules and system build/configuration problem?
> Check cfg80211.ko/mac80211.ko ... and/or add some prints to driver_nl80211.c

Problem solved. I looked in the driver_nl80211.c and found that use_monitor relied on "poll_command_supported" and "data_tx_status". I printed these 2 parameters and saw that data_tx_status=0, it depends on NL80211_FEATURE_SK_TX_STATUS and this parameter was affected to the flags of wiphy->features, defined in /net/mac80211/main.c.I find this parameter was set = 0 in /backport-include/linux/nl80211.h
That's why montior mode was forced to used with AP mode. I set that parameter = 1 and no more monitor interface in AP mode, my AP work in DFS mode now.
I'll write a mail to backport mail list to ask them why do they set that parameter=0. 

I get another question: There a conflict of information about HT40+ and HT40- in hostapd and ht40allow_map (fromdebugfs). 
In the hostapd.conf example file:
#      Note: There are limits on which channels can be used with HT40- and
#	HT40+. Following table shows the channels that may be available for
#	HT40- and HT40+ use per IEEE 802.11n Annex J:
#	freq		HT40-		HT40+
#	5 GHz	40,48,56,64	36,44,52,60   
It means the channel 48 is not available in HT40+. But the info from ht40allow_map said that channel 5240 Mhz (ie 48) is available in both 40+ and 40-.
If I set ht-capab=[HT40+] and channel=48, hostapd can not setup AP mode.
And the channel 140 can not be set neither in bandwidth 40+ nor 40- even my "iw list' show that channel 140 is available. 
Is there a problem with ht40allow_map?

NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-05-28 15:25                                                             ` Vu Hai NGUYEN
@ 2014-05-28 15:49                                                               ` Ben Greear
  2014-05-30  9:10                                                                 ` Vu Hai NGUYEN
  2014-05-28 17:19                                                               ` Janusz Dziedzic
  1 sibling, 1 reply; 134+ messages in thread
From: Ben Greear @ 2014-05-28 15:49 UTC (permalink / raw)
  To: Vu Hai NGUYEN
  Cc: Janusz Dziedzic, Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic

On 05/28/2014 08:25 AM, Vu Hai NGUYEN wrote:
>> This is set base on what driver/mac80211/cfg80211 report - function
>> wpa_driver_nl80211_capa().
>> With ath10k and new mac80211 this should be never set. So, seems you still
>> have old/wrong modules and system build/configuration problem?
>> Check cfg80211.ko/mac80211.ko ... and/or add some prints to driver_nl80211.c
> 
> Problem solved. I looked in the driver_nl80211.c and found that use_monitor relied on "poll_command_supported" and "data_tx_status". I printed these 2 parameters and saw that data_tx_status=0, it depends on NL80211_FEATURE_SK_TX_STATUS and this parameter was affected to the flags of wiphy->features, defined in /net/mac80211/main.c.I find this parameter was set = 0 in /backport-include/linux/nl80211.h
> That's why montior mode was forced to used with AP mode. I set that parameter = 1 and no more monitor interface in AP mode, my AP work in DFS mode now.
> I'll write a mail to backport mail list to ask them why do they set that parameter=0. 

So, did my firmware actually fix something, or was the problem just with the
backports and how you were using the official firmware?

> 
> I get another question: There a conflict of information about HT40+ and HT40- in hostapd and ht40allow_map (fromdebugfs). 
> In the hostapd.conf example file:
> #      Note: There are limits on which channels can be used with HT40- and
> #	HT40+. Following table shows the channels that may be available for
> #	HT40- and HT40+ use per IEEE 802.11n Annex J:
> #	freq		HT40-		HT40+
> #	5 GHz	40,48,56,64	36,44,52,60   
> It means the channel 48 is not available in HT40+. But the info from ht40allow_map said that channel 5240 Mhz (ie 48) is available in both 40+ and 40-.
> If I set ht-capab=[HT40+] and channel=48, hostapd can not setup AP mode.
> And the channel 140 can not be set neither in bandwidth 40+ nor 40- even my "iw list' show that channel 140 is available. 
> Is there a problem with ht40allow_map?

I'm not sure about any of this...might want to look at the hostapd code or log messages
to see why it fails to start.

Thanks,
Ben


> 
> NGUYEN Vu Hai
> Acita-Sodielec
> Route de Mayres - B.P. 9
> 12100 St GEORGES DE LUZENCON
> FRANCE
> 
> 
> _______________________________________________
> ath10k mailing list
> ath10k@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/ath10k
> 


-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-05-28 15:25                                                             ` Vu Hai NGUYEN
  2014-05-28 15:49                                                               ` Ben Greear
@ 2014-05-28 17:19                                                               ` Janusz Dziedzic
  2014-05-28 18:40                                                                 ` Janusz Dziedzic
  1 sibling, 1 reply; 134+ messages in thread
From: Janusz Dziedzic @ 2014-05-28 17:19 UTC (permalink / raw)
  To: Vu Hai NGUYEN; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic

On 28 May 2014 17:25, Vu Hai NGUYEN <vh.nguyen@actiasodielec.fr> wrote:
>> This is set base on what driver/mac80211/cfg80211 report - function
>> wpa_driver_nl80211_capa().
>> With ath10k and new mac80211 this should be never set. So, seems you still
>> have old/wrong modules and system build/configuration problem?
>> Check cfg80211.ko/mac80211.ko ... and/or add some prints to driver_nl80211.c
>
> Problem solved. I looked in the driver_nl80211.c and found that use_monitor relied on "poll_command_supported" and "data_tx_status". I printed these 2 parameters and saw that data_tx_status=0, it depends on NL80211_FEATURE_SK_TX_STATUS and this parameter was affected to the flags of wiphy->features, defined in /net/mac80211/main.c.I find this parameter was set = 0 in /backport-include/linux/nl80211.h
> That's why montior mode was forced to used with AP mode. I set that parameter = 1 and no more monitor interface in AP mode, my AP work in DFS mode now.
> I'll write a mail to backport mail list to ask them why do they set that parameter=0.
>
OK, btw I see there is a bug when sending frame using monitor
interface in mac80211 in ieee80211_monitor_start_xmit() - because of
that you have this problem. Seems for old kernel < 3.3.0 monitor
interface is required.
I will fix mac80211 issue when monitor is used.

> I get another question: There a conflict of information about HT40+ and HT40- in hostapd and ht40allow_map (fromdebugfs).
> In the hostapd.conf example file:
> #      Note: There are limits on which channels can be used with HT40- and
> #       HT40+. Following table shows the channels that may be available for
> #       HT40- and HT40+ use per IEEE 802.11n Annex J:
> #       freq            HT40-           HT40+
> #       5 GHz   40,48,56,64     36,44,52,60
> It means the channel 48 is not available in HT40+. But the info from ht40allow_map said that channel 5240 Mhz (ie 48) is available in both 40+ and 40-.
> If I set ht-capab=[HT40+] and channel=48, hostapd can not setup AP mode.
> And the channel 140 can not be set neither in bandwidth 40+ nor 40- even my "iw list' show that channel 140 is available.
> Is there a problem with ht40allow_map?
>
Seems ht40allow_map don't care about 80211n standard, just check
neighbor channels and set -/+. So, hostapd play with this correctly.
channel 140 as I remember correctly is disabled for all atheros cards.
I think Luis write about it.

BR
Janusz

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-05-28 17:19                                                               ` Janusz Dziedzic
@ 2014-05-28 18:40                                                                 ` Janusz Dziedzic
  2014-05-30 11:55                                                                   ` Vu Hai NGUYEN
  0 siblings, 1 reply; 134+ messages in thread
From: Janusz Dziedzic @ 2014-05-28 18:40 UTC (permalink / raw)
  To: Vu Hai NGUYEN; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic

[-- Attachment #1: Type: text/plain, Size: 2670 bytes --]

On 28 May 2014 19:19, Janusz Dziedzic <janusz.dziedzic@tieto.com> wrote:
> On 28 May 2014 17:25, Vu Hai NGUYEN <vh.nguyen@actiasodielec.fr> wrote:
>>> This is set base on what driver/mac80211/cfg80211 report - function
>>> wpa_driver_nl80211_capa().
>>> With ath10k and new mac80211 this should be never set. So, seems you still
>>> have old/wrong modules and system build/configuration problem?
>>> Check cfg80211.ko/mac80211.ko ... and/or add some prints to driver_nl80211.c
>>
>> Problem solved. I looked in the driver_nl80211.c and found that use_monitor relied on "poll_command_supported" and "data_tx_status". I printed these 2 parameters and saw that data_tx_status=0, it depends on NL80211_FEATURE_SK_TX_STATUS and this parameter was affected to the flags of wiphy->features, defined in /net/mac80211/main.c.I find this parameter was set = 0 in /backport-include/linux/nl80211.h
>> That's why montior mode was forced to used with AP mode. I set that parameter = 1 and no more monitor interface in AP mode, my AP work in DFS mode now.
>> I'll write a mail to backport mail list to ask them why do they set that parameter=0.
>>
> OK, btw I see there is a bug when sending frame using monitor
> interface in mac80211 in ieee80211_monitor_start_xmit() - because of
> that you have this problem. Seems for old kernel < 3.3.0 monitor
> interface is required.
> I will fix mac80211 issue when monitor is used.

Please remove your hack (use_monitor again) and check attached patch.

BR
Janusz

>
>> I get another question: There a conflict of information about HT40+ and HT40- in hostapd and ht40allow_map (fromdebugfs).
>> In the hostapd.conf example file:
>> #      Note: There are limits on which channels can be used with HT40- and
>> #       HT40+. Following table shows the channels that may be available for
>> #       HT40- and HT40+ use per IEEE 802.11n Annex J:
>> #       freq            HT40-           HT40+
>> #       5 GHz   40,48,56,64     36,44,52,60
>> It means the channel 48 is not available in HT40+. But the info from ht40allow_map said that channel 5240 Mhz (ie 48) is available in both 40+ and 40-.
>> If I set ht-capab=[HT40+] and channel=48, hostapd can not setup AP mode.
>> And the channel 140 can not be set neither in bandwidth 40+ nor 40- even my "iw list' show that channel 140 is available.
>> Is there a problem with ht40allow_map?
>>
> Seems ht40allow_map don't care about 80211n standard, just check
> neighbor channels and set -/+. So, hostapd play with this correctly.
> channel 140 as I remember correctly is disabled for all atheros cards.
> I think Luis write about it.
>
> BR
> Janusz

[-- Attachment #2: 0001-mac80211-allow-tx-via-monitor-iface-when-DFS.patch --]
[-- Type: text/x-patch, Size: 1982 bytes --]

From 4d0127bff5374486aac960d175b545d682ea20d6 Mon Sep 17 00:00:00 2001
From: Janusz Dziedzic <janusz.dziedzic@tieto.com>
Date: Wed, 28 May 2014 20:34:10 +0200
Subject: [PATCH] mac80211: allow tx via monitor iface when DFS

Allow send tx frames using monitor interface
when DFS chandef and we pass CAC (beaconing
allowed).

Signed-off-by: Janusz Dziedzic <janusz.dziedzic@tieto.com>
---
 net/mac80211/tx.c |   11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c
index 5214686..c3816d0 100644
--- a/net/mac80211/tx.c
+++ b/net/mac80211/tx.c
@@ -1618,12 +1618,12 @@ netdev_tx_t ieee80211_monitor_start_xmit(struct sk_buff *skb,
 {
 	struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
 	struct ieee80211_chanctx_conf *chanctx_conf;
-	struct ieee80211_channel *chan;
 	struct ieee80211_radiotap_header *prthdr =
 		(struct ieee80211_radiotap_header *)skb->data;
 	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
 	struct ieee80211_hdr *hdr;
 	struct ieee80211_sub_if_data *tmp_sdata, *sdata;
+	struct cfg80211_chan_def chandef;
 	u16 len_rthdr;
 	int hdrlen;
 
@@ -1721,9 +1721,9 @@ netdev_tx_t ieee80211_monitor_start_xmit(struct sk_buff *skb,
 	}
 
 	if (chanctx_conf)
-		chan = chanctx_conf->def.chan;
+		chandef = chanctx_conf->def;
 	else if (!local->use_chanctx)
-		chan = local->_oper_chandef.chan;
+		chandef = local->_oper_chandef;
 	else
 		goto fail_rcu;
 
@@ -1743,10 +1743,11 @@ netdev_tx_t ieee80211_monitor_start_xmit(struct sk_buff *skb,
 	 * radar detection by itself. We can do that later by adding a
 	 * monitor flag interfaces used for AP support.
 	 */
-	if ((chan->flags & (IEEE80211_CHAN_NO_IR | IEEE80211_CHAN_RADAR)))
+	if (!cfg80211_reg_can_beacon(local->hw.wiphy, &chandef,
+				     NL80211_IFTYPE_AP))
 		goto fail_rcu;
 
-	ieee80211_xmit(sdata, skb, chan->band);
+	ieee80211_xmit(sdata, skb, chandef.chan->band);
 	rcu_read_unlock();
 
 	return NETDEV_TX_OK;
-- 
1.7.9.5


[-- Attachment #3: Type: text/plain, Size: 146 bytes --]

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply related	[flat|nested] 134+ messages in thread

* RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-05-28 15:49                                                               ` Ben Greear
@ 2014-05-30  9:10                                                                 ` Vu Hai NGUYEN
  2014-05-30 14:49                                                                   ` Ben Greear
  0 siblings, 1 reply; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-05-30  9:10 UTC (permalink / raw)
  To: Ben Greear
  Cc: Janusz Dziedzic, Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic

On 05/28/2014 08:25 AM, Vu Hai NGUYEN wrote:
>>> This is set base on what driver/mac80211/cfg80211 report - function
>>> wpa_driver_nl80211_capa().
>>> With ath10k and new mac80211 this should be never set. So, seems you still
>>> have old/wrong modules and system build/configuration problem?
>>> Check cfg80211.ko/mac80211.ko ... and/or add some prints to driver_nl80211.c
>>
>>Problem solved. I looked in the driver_nl80211.c and found that use_monitor relied on "poll_command_supported" and "data_tx_status". I printed these 2 parameters and saw that data_tx_status=0, it depends on >>NL80211_FEATURE_SK_TX_STATUS and this parameter was affected to the flags of wiphy->features, defined in /net/mac80211/main.c.I find this parameter was set = 0 in /backport-include/linux/nl80211.h
>> That's why montior mode was forced to used with AP mode. I set that parameter = 1 and no more monitor interface in AP mode, my AP work in DFS mode now.
>> I'll write a mail to backport mail list to ask them why do they set that parameter=0.

>So, did my firmware actually fix something, or was the problem just with the
>backports and how you were using the official firmware?

Your firmware allows me  to enter the promiscuous mode to set up bridge network for myStation (using wpa_supplicant), If I use the official firmware (10.1.467-2.1) for my station, it crashed after associated with an AP. Thing that I've changed concern the backport, I disable monitor interface in AP mode to solve the connection problem in a channel using DFS and it doesn't concern your firmware.
Another thing that I've mentioned in my mail before that my AP create this interface when my station connected to my AP:
Interface wlan0.sta1                                                   
                ifindex 10                                                     
                wdev 0x6                                                       
                addr 04:f0:21:0e:38:be                                         
                type AP/VLAN                                                   
                channel 36 (5180 MHz), width: 40 MHz, center1: 5190 MHz
I am wrong because if I set up Router network for my STA, my AP won't create the interface wlan.sta1 when my STA connect, but if my STA is set up in Bridge network, the interface wlan0.sta1 will be created so this doesn't concern your firmware too.

NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE
_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-05-28 18:40                                                                 ` Janusz Dziedzic
@ 2014-05-30 11:55                                                                   ` Vu Hai NGUYEN
  2014-06-02  7:03                                                                     ` Janusz Dziedzic
  0 siblings, 1 reply; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-05-30 11:55 UTC (permalink / raw)
  To: Janusz Dziedzic; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic

>> OK, btw I see there is a bug when sending frame using monitor
>> interface in mac80211 in ieee80211_monitor_start_xmit() - because of
>> that you have this problem. Seems for old kernel < 3.3.0 monitor
>> interface is required.
>> I will fix mac80211 issue when monitor is used.

>Please remove your hack (use_monitor again) and check attached patch.

Thanks for the the patch, I applied and it worked with a monitor interface in AP mode. But do you why does it require monitor interface for old kernel < 3.3.0?
Btw, I have a doubt, in both case (I means when I applied your patch or my hack), I have to run the command "iw wlan0 scan" (after running wpa_supplicant) on my station to connect if the channel employs DFS
If the channel doesn't employs DFS, it can connect directly after running wpa_supplicant.

>> I get another question: There a conflict of information about HT40+ and HT40- in hostapd and ht40allow_map (fromdebugfs).
>> In the hostapd.conf example file:
>> #      Note: There are limits on which channels can be used with HT40- and
>> #       HT40+. Following table shows the channels that may be available for
>> #       HT40- and HT40+ use per IEEE 802.11n Annex J:
>> #       freq            HT40-           HT40+
>> #       5 GHz   40,48,56,64     36,44,52,60
>> It means the channel 48 is not available in HT40+. But the info from ht40allow_map said that channel 5240 Mhz (ie 48) is available in both 40+ and 40-.
>> If I set ht-capab=[HT40+] and channel=48, hostapd can not setup AP mode.
>> And the channel 140 can not be set neither in bandwidth 40+ nor 40- even my "iw list' show that channel 140 is available.
>> Is there a problem with ht40allow_map?
>>
> Seems ht40allow_map don't care about 80211n standard, just check
> neighbor channels and set -/+. So, hostapd play with this correctly.
> channel 140 as I remember correctly is disabled for all atheros cards.
> I think Luis write about it.

NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-05-30  9:10                                                                 ` Vu Hai NGUYEN
@ 2014-05-30 14:49                                                                   ` Ben Greear
  2014-06-02 16:16                                                                     ` Vu Hai NGUYEN
  0 siblings, 1 reply; 134+ messages in thread
From: Ben Greear @ 2014-05-30 14:49 UTC (permalink / raw)
  To: Vu Hai NGUYEN
  Cc: Janusz Dziedzic, Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic



On 05/30/2014 02:10 AM, Vu Hai NGUYEN wrote:
> On 05/28/2014 08:25 AM, Vu Hai NGUYEN wrote:
>>>> This is set base on what driver/mac80211/cfg80211 report - function
>>>> wpa_driver_nl80211_capa().
>>>> With ath10k and new mac80211 this should be never set. So, seems you still
>>>> have old/wrong modules and system build/configuration problem?
>>>> Check cfg80211.ko/mac80211.ko ... and/or add some prints to driver_nl80211.c
>>>
>>> Problem solved. I looked in the driver_nl80211.c and found that use_monitor relied on "poll_command_supported" and "data_tx_status". I printed these 2 parameters and saw that data_tx_status=0, it depends on >>NL80211_FEATURE_SK_TX_STATUS and this parameter was affected to the flags of wiphy->features, defined in /net/mac80211/main.c.I find this parameter was set = 0 in /backport-include/linux/nl80211.h
>>> That's why montior mode was forced to used with AP mode. I set that parameter = 1 and no more monitor interface in AP mode, my AP work in DFS mode now.
>>> I'll write a mail to backport mail list to ask them why do they set that parameter=0.
>
>> So, did my firmware actually fix something, or was the problem just with the
>> backports and how you were using the official firmware?
>
> Your firmware allows me  to enter the promiscuous mode to set up bridge network for myStation (using wpa_supplicant), If I use the official firmware (10.1.467-2.1) for my station, it crashed after associated with an AP. Thing that I've changed concern the backport, I disable monitor interface in AP mode to solve the connection problem in a channel using DFS and it doesn't concern your firmware.

Thanks for the confirmation.  I haven't tested bridged networks yet, but maybe you were
hitting some more general firmware problem that I had already fixed.

Ben

-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-05-30 11:55                                                                   ` Vu Hai NGUYEN
@ 2014-06-02  7:03                                                                     ` Janusz Dziedzic
  0 siblings, 0 replies; 134+ messages in thread
From: Janusz Dziedzic @ 2014-06-02  7:03 UTC (permalink / raw)
  To: Vu Hai NGUYEN; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic

On 30 May 2014 13:55, Vu Hai NGUYEN <vh.nguyen@actiasodielec.fr> wrote:
>>> OK, btw I see there is a bug when sending frame using monitor
>>> interface in mac80211 in ieee80211_monitor_start_xmit() - because of
>>> that you have this problem. Seems for old kernel < 3.3.0 monitor
>>> interface is required.
>>> I will fix mac80211 issue when monitor is used.
>
>>Please remove your hack (use_monitor again) and check attached patch.
>
> Thanks for the the patch, I applied and it worked with a monitor interface in AP mode. But do you why does it require monitor interface for old kernel < 3.3.0?
>
Seems < 3.3.0 tx_status is not reported correctly to user mode (or at
all). This is not problem in case of probe responses while hostapd
don't care about status in such case (your hack works). But
action/null frames still need correct ACK and monitor iface for <
3.3.0.

> Btw, I have a doubt, in both case (I means when I applied your patch or my hack), I have to run the command "iw wlan0 scan" (after running wpa_supplicant) on my station to connect if the channel employs DFS
> If the channel doesn't employs DFS, it can connect directly after running wpa_supplicant.
Seems you hit wpa_supplicant issue, which Jouni already fix, check this thread:

http://comments.gmane.org/gmane.linux.drivers.hostap/30454

BR
Janusz

>
>>> I get another question: There a conflict of information about HT40+ and HT40- in hostapd and ht40allow_map (fromdebugfs).
>>> In the hostapd.conf example file:
>>> #      Note: There are limits on which channels can be used with HT40- and
>>> #       HT40+. Following table shows the channels that may be available for
>>> #       HT40- and HT40+ use per IEEE 802.11n Annex J:
>>> #       freq            HT40-           HT40+
>>> #       5 GHz   40,48,56,64     36,44,52,60
>>> It means the channel 48 is not available in HT40+. But the info from ht40allow_map said that channel 5240 Mhz (ie 48) is available in both 40+ and 40-.
>>> If I set ht-capab=[HT40+] and channel=48, hostapd can not setup AP mode.
>>> And the channel 140 can not be set neither in bandwidth 40+ nor 40- even my "iw list' show that channel 140 is available.
>>> Is there a problem with ht40allow_map?
>>>
>> Seems ht40allow_map don't care about 80211n standard, just check
>> neighbor channels and set -/+. So, hostapd play with this correctly.
>> channel 140 as I remember correctly is disabled for all atheros cards.
>> I think Luis write about it.
>
> NGUYEN Vu Hai
> Acita-Sodielec
> Route de Mayres - B.P. 9
> 12100 St GEORGES DE LUZENCON
> FRANCE

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-05-30 14:49                                                                   ` Ben Greear
@ 2014-06-02 16:16                                                                     ` Vu Hai NGUYEN
  2014-06-02 16:48                                                                       ` Ben Greear
  0 siblings, 1 reply; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-06-02 16:16 UTC (permalink / raw)
  To: Ben Greear
  Cc: Janusz Dziedzic, Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic

>> Your firmware allows me  to enter the promiscuous mode to set up bridge network for myStation (using wpa_supplicant), If I use the official firmware (10.1.467-2.1) for my station, it crashed after associated with an AP. Thing that I've >>changed concern the backport, I disable monitor interface in AP mode to solve the connection problem in a channel using DFS and it doesn't concern your firmware.

>Thanks for the confirmation.  I haven't tested bridged networks yet, but maybe you were
>hitting some more general firmware problem that I had already fixed.

Hi Ben, I just discover something news, when I run my program with your firmware, I can not see a channel DFS (from command "iw wlan0 scan", it does not show me the network using a channel DFS). 
I can see the channel DFS if I use the official firmware (both 999 or 10.1). Do you need me to trace back something so that you can detect where the problem is? 

NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE





_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-06-02 16:16                                                                     ` Vu Hai NGUYEN
@ 2014-06-02 16:48                                                                       ` Ben Greear
  2014-06-03  6:51                                                                         ` Vu Hai NGUYEN
  0 siblings, 1 reply; 134+ messages in thread
From: Ben Greear @ 2014-06-02 16:48 UTC (permalink / raw)
  To: Vu Hai NGUYEN
  Cc: Janusz Dziedzic, Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic

On 06/02/2014 09:16 AM, Vu Hai NGUYEN wrote:
>>> Your firmware allows me  to enter the promiscuous mode to set up bridge network for myStation (using wpa_supplicant), If I use the official firmware (10.1.467-2.1) for my station, it crashed after associated with an AP. Thing that I've >>changed concern the backport, I disable monitor interface in AP mode to solve the connection problem in a channel using DFS and it doesn't concern your firmware.
> 
>> Thanks for the confirmation.  I haven't tested bridged networks yet, but maybe you were
>> hitting some more general firmware problem that I had already fixed.
> 
> Hi Ben, I just discover something news, when I run my program with your firmware, I can not see a channel DFS (from command "iw wlan0 scan", it does not show me the network using a channel DFS). 
> I can see the channel DFS if I use the official firmware (both 999 or 10.1). Do you need me to trace back something so that you can detect where the problem is? 

I could try building a set of binaries and let you bisect the problem, perhaps.

This might take a bit of your time, but if you are willing, I will write a script
to create firmware binaries for each of my commits so you can do a manual
bisect.

I also think that the '2-1' part of the upstream 10.1 firmware is not in the source code
QCA made available to me, so there may be upstream fixes I have not seen, and possibly
part of that enables/fixes DFS.

I am not aware of any changes in my firmware that should have broken
DFS, but of course with 100+ commits, I could have easily added regressions...

Thanks,
Ben

-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-06-02 16:48                                                                       ` Ben Greear
@ 2014-06-03  6:51                                                                         ` Vu Hai NGUYEN
  2014-06-04  4:14                                                                           ` Ben Greear
  0 siblings, 1 reply; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-06-03  6:51 UTC (permalink / raw)
  To: Ben Greear
  Cc: Janusz Dziedzic, Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic

>I could try building a set of binaries and let you bisect the problem, perhaps.

>This might take a bit of your time, but if you are willing, I will write a script
>to create firmware binaries for each of my commits so you can do a manual
>bisect.

>I also think that the '2-1' part of the upstream 10.1 firmware is not in the source code
>QCA made available to me, so there may be upstream fixes I have not seen, and possibly
>part of that enables/fixes DFS.

>I am not aware of any changes in my firmware that should have broken
>DFS, but of course with 100+ commits, I could have easily added regressions...

Yes, I'll try it, you can explain it to me if I don't know how to apply your script?

NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-06-03  6:51                                                                         ` Vu Hai NGUYEN
@ 2014-06-04  4:14                                                                           ` Ben Greear
  2014-06-04  9:20                                                                             ` Vu Hai NGUYEN
  0 siblings, 1 reply; 134+ messages in thread
From: Ben Greear @ 2014-06-04  4:14 UTC (permalink / raw)
  To: Vu Hai NGUYEN
  Cc: Janusz Dziedzic, Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic



On 06/02/2014 11:51 PM, Vu Hai NGUYEN wrote:
>> I could try building a set of binaries and let you bisect the problem, perhaps.
>
>> This might take a bit of your time, but if you are willing, I will write a script
>> to create firmware binaries for each of my commits so you can do a manual
>> bisect.
>
>> I also think that the '2-1' part of the upstream 10.1 firmware is not in the source code
>> QCA made available to me, so there may be upstream fixes I have not seen, and possibly
>> part of that enables/fixes DFS.
>
>> I am not aware of any changes in my firmware that should have broken
>> DFS, but of course with 100+ commits, I could have easily added regressions...
>
> Yes, I'll try it, you can explain it to me if I don't know how to apply your script?

I have a script to build every commit now, but except for the first few
and the last few images, you would need various driver changes to work with them.

I can rebase my firmware changes so that hopefully all (or at least most) of the
images will work on standard kernels, but it may be a few days before I
can get that done.

In the meantime, please try these two:

Compiled from original source received from QCA:

http://www.candelatech.com/downloads/firmware-2-community-commit-0-207ce4b.bin

It appeared to me that that code had a regression, so next commit fixed
that:

http://www.candelatech.com/downloads/firmware-2-community-commit-1-5717c65.bin

If either of these work with DFS, then some change I made later broke it, and I can
build the rest of the images so we can figure out where.

Thanks,
Ben

-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-06-04  4:14                                                                           ` Ben Greear
@ 2014-06-04  9:20                                                                             ` Vu Hai NGUYEN
  2014-06-04 16:20                                                                               ` Ben Greear
  2014-06-04 21:40                                                                               ` Ben Greear
  0 siblings, 2 replies; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-06-04  9:20 UTC (permalink / raw)
  To: Ben Greear
  Cc: Janusz Dziedzic, Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic

>I have a script to build every commit now, but except for the first few
>and the last few images, you would need various driver changes to work with them.

>I can rebase my firmware changes so that hopefully all (or at least most) of the
>images will work on standard kernels, but it may be a few days before I
>can get that done.

>In the meantime, please try these two:

>Compiled from original source received from QCA:

>http://www.candelatech.com/downloads/firmware-2-community-commit-0-207ce4b.bin

>It appeared to me that that code had a regression, so next commit fixed
>that:

>http://www.candelatech.com/downloads/firmware-2-community-commit-1-5717c65.bin

>If either of these work with DFS, then some change I made later broke it, and I can
>build the rest of the images so we can figure out where.

Both firmware in the link that you gave me work well, my station associate directly with the AP after running wpa_supplicant.
But then I re-put your firmware version non commercial, my STA did not associate directly after running wpa_supp, it keep print the message SCAN EVENT STARTED of wlan0. 
I run "iw wlan0 scan" and some times it can see and associate with my AP, some times it can not see the network with channel DFS, I mean it is not stable.

And I had other question too, I thought that you've done some test with ath10k in mode 802.11ac by iperf? What is the maximum rate that you obtain?
I'm using 2 PC and connect each one to my AP and STA, but the max rate that I had is around 120Mbps only, in both 802.11n and 802.11ac.
Strange things is that I config 3 antennas in used and leave the rate automatically (Don't set rates using "iw"), my station dump and file "fw_stats" in debugfs show me the rates of MCS 7 or 15 (in 802.11n) and NSS1 or 2 (in 802.11ac).
It never set in MCS 23 or NSS3, though my module wifi support 3 STREAMS, 1 can see it from "iw list":
VHT RX MCS set:
			1 streams: MCS 0-9
			2 streams: MCS 0-9
			3 streams: MCS 0-9
But it also show me: VHT RX highest supported: 0 Mbps and VHT TX highest supported: 0 Mbps, is there something wrong with it?
If I use "iw" to fixed rate, the info from station dump (TX rates is always false because of firmware issue), but RX rate and the info from "fw_stats" is same thing as what I fixed (I can fixe rate at MCS23 and NSS 3 too, I also verified with dmesg | grep mac to see debug message from ath10k). But as I said above, my rate is around 120 Mbps in iperf.

NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-06-04  9:20                                                                             ` Vu Hai NGUYEN
@ 2014-06-04 16:20                                                                               ` Ben Greear
  2014-06-04 21:40                                                                               ` Ben Greear
  1 sibling, 0 replies; 134+ messages in thread
From: Ben Greear @ 2014-06-04 16:20 UTC (permalink / raw)
  To: Vu Hai NGUYEN
  Cc: Janusz Dziedzic, Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic

On 06/04/2014 02:20 AM, Vu Hai NGUYEN wrote:
>> I have a script to build every commit now, but except for the first few
>> and the last few images, you would need various driver changes to work with them.
> 
>> I can rebase my firmware changes so that hopefully all (or at least most) of the
>> images will work on standard kernels, but it may be a few days before I
>> can get that done.
> 
>> In the meantime, please try these two:
> 
>> Compiled from original source received from QCA:
> 
>> http://www.candelatech.com/downloads/firmware-2-community-commit-0-207ce4b.bin
> 
>> It appeared to me that that code had a regression, so next commit fixed
>> that:
> 
>> http://www.candelatech.com/downloads/firmware-2-community-commit-1-5717c65.bin
> 
>> If either of these work with DFS, then some change I made later broke it, and I can
>> build the rest of the images so we can figure out where.
> 
> Both firmware in the link that you gave me work well, my station associate directly with the AP after running wpa_supplicant.
> But then I re-put your firmware version non commercial, my STA did not associate directly after running wpa_supp, it keep print the message SCAN EVENT STARTED of wlan0. 
> I run "iw wlan0 scan" and some times it can see and associate with my AP, some times it can not see the network with channel DFS, I mean it is not stable.

Ok, I will work on a series of firmwares for each of my commits so we can find
the bad commit and fix it.

> And I had other question too, I thought that you've done some test with ath10k in mode 802.11ac by iperf? What is the maximum rate that you obtain?
> I'm using 2 PC and connect each one to my AP and STA, but the max rate that I had is around 120Mbps only, in both 802.11n and 802.11ac.
> Strange things is that I config 3 antennas in used and leave the rate automatically (Don't set rates using "iw"), my station dump and file "fw_stats" in debugfs show me the rates of MCS 7 or 15 (in 802.11n) and NSS1 or 2 (in 802.11ac).
> It never set in MCS 23 or NSS3, though my module wifi support 3 STREAMS, 1 can see it from "iw list":
> VHT RX MCS set:
> 			1 streams: MCS 0-9
> 			2 streams: MCS 0-9
> 			3 streams: MCS 0-9
> But it also show me: VHT RX highest supported: 0 Mbps and VHT TX highest supported: 0 Mbps, is there something wrong with it?
> If I use "iw" to fixed rate, the info from station dump (TX rates is always false because of firmware issue), but RX rate and the info from "fw_stats" is same thing as what I fixed (I can fixe rate at MCS23 and NSS 3 too, I also verified with dmesg | grep mac to see debug message from ath10k). But as I said above, my rate is around 120 Mbps in iperf.

We can get 500+Mbps download, and about 400Mbps upload, TCP traffic using our own traffic generator,
which is somewhat similar to iperf.  Use large tx/rx buffers, large write sizes, and 10+ streams in
iperf for more optimal throughput.

We often get rates reported at 1.3Gbps, so it seems in our tests we train up well.

Unless you are using a modified driver with my firmware, you will not get useful
tx-rate stats reported, but I think the rx-rate is accurate with latest upstream
driver.

Thanks,
Ben

> 
> NGUYEN Vu Hai
> Acita-Sodielec
> Route de Mayres - B.P. 9
> 12100 St GEORGES DE LUZENCON
> FRANCE
> 


-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-06-04  9:20                                                                             ` Vu Hai NGUYEN
  2014-06-04 16:20                                                                               ` Ben Greear
@ 2014-06-04 21:40                                                                               ` Ben Greear
  2014-06-05  8:41                                                                                 ` RE : " Vu Hai NGUYEN
  1 sibling, 1 reply; 134+ messages in thread
From: Ben Greear @ 2014-06-04 21:40 UTC (permalink / raw)
  To: Vu Hai NGUYEN
  Cc: Janusz Dziedzic, Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic

On 06/04/2014 02:20 AM, Vu Hai NGUYEN wrote:
>> I have a script to build every commit now, but except for the first few
>> and the last few images, you would need various driver changes to work with them.
> 
>> I can rebase my firmware changes so that hopefully all (or at least most) of the
>> images will work on standard kernels, but it may be a few days before I
>> can get that done.
> 
>> In the meantime, please try these two:
> 
>> Compiled from original source received from QCA:
> 
>> http://www.candelatech.com/downloads/firmware-2-community-commit-0-207ce4b.bin
> 
>> It appeared to me that that code had a regression, so next commit fixed
>> that:
> 
>> http://www.candelatech.com/downloads/firmware-2-community-commit-1-5717c65.bin
> 
>> If either of these work with DFS, then some change I made later broke it, and I can
>> build the rest of the images so we can figure out where.
> 
> Both firmware in the link that you gave me work well, my station associate directly with the AP after running wpa_supplicant.
> But then I re-put your firmware version non commercial, my STA did not associate directly after running wpa_supp, it keep print the message SCAN EVENT STARTED of wlan0. 
> I run "iw wlan0 scan" and some times it can see and associate with my AP, some times it can not see the network with channel DFS, I mean it is not stable.

Ok, I have built an image for each of my commits, and I have attempted to rebase my changes
so that these kernels should work on un-patched drivers.  I have not actually tested these
various images on un-patched drivers, so if you see any un-expected problems, let me know
and I can test those specific images.

From your previous testing, you know the first commit should be OK for DFS, and the
last commit (172) is not.  To bisect, choose an image in the middle (ie, commit 86)
and see if it works.  If so, choose middle one between 86 and 172, if not, choose middle one
between 0 and 86...repeat until you find the first bad commit and let me know what that
is and I will try to figure out the problem in the firmware.

http://www.candelatech.com/downloads/ath10k-fw-all-images/

Thanks,
Ben


-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-06-04 21:40                                                                               ` Ben Greear
@ 2014-06-05  8:41                                                                                 ` Vu Hai NGUYEN
  2014-06-05 15:43                                                                                   ` Ben Greear
  2014-06-05 17:33                                                                                   ` Ben Greear
  0 siblings, 2 replies; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-06-05  8:41 UTC (permalink / raw)
  To: Ben Greear
  Cc: Janusz Dziedzic, Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic

>Ok, I have built an image for each of my commits, and I have attempted to rebase my changes
>so that these kernels should work on un-patched drivers.  I have not actually tested these
>various images on un-patched drivers, so if you see any un-expected problems, let me know
>and I can test those specific images.
>
From your previous testing, you know the first commit should be OK for DFS, and the
l>ast commit (172) is not.  To bisect, choose an image in the middle (ie, commit 86)
>and see if it works.  If so, choose middle one between 86 and 172, if not, choose middle one
>between 0 and 86...repeat until you find the first bad commit and let me know what that
>is and I will try to figure out the problem in the firmware.
>
>http://www.candelatech.com/downloads/ath10k-fw-all-images/

Thanks for building the image, I found out the diffrent is between the the 58th (work with DFS) and 59th commit (can not see DFS).
Here is my serial of test: 86: KO => 43 OK => 64 KO => 53 OK => 58 OK => 61 KO => 59 KO. Then I change between 58 and 59th commit one more time to confirm the different. 
Is that all of your commit that you've done? Cause with the firmware-2-ct-non-commercial.bin I can enter promiscuous mode to set up bridge network, but yesterday I tried your 2 firmwares 
and today with the firmware of 172th commit they are all broke in bridge network.
If not, can you rebuild other image so that I can trace your commit that allow to enter promiscuous mode?

Thanks,
NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE






_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-06-05  8:41                                                                                 ` RE : " Vu Hai NGUYEN
@ 2014-06-05 15:43                                                                                   ` Ben Greear
  2014-06-05 17:33                                                                                   ` Ben Greear
  1 sibling, 0 replies; 134+ messages in thread
From: Ben Greear @ 2014-06-05 15:43 UTC (permalink / raw)
  To: Vu Hai NGUYEN
  Cc: Janusz Dziedzic, Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic

On 06/05/2014 01:41 AM, Vu Hai NGUYEN wrote:
>> Ok, I have built an image for each of my commits, and I have attempted to rebase my changes
>> so that these kernels should work on un-patched drivers.  I have not actually tested these
>> various images on un-patched drivers, so if you see any un-expected problems, let me know
>> and I can test those specific images.
>>
>>From your previous testing, you know the first commit should be OK for DFS, and the
> l>ast commit (172) is not.  To bisect, choose an image in the middle (ie, commit 86)
>> and see if it works.  If so, choose middle one between 86 and 172, if not, choose middle one
>> between 0 and 86...repeat until you find the first bad commit and let me know what that
>> is and I will try to figure out the problem in the firmware.
>>
>> http://www.candelatech.com/downloads/ath10k-fw-all-images/
> 
> Thanks for building the image, I found out the diffrent is between the the 58th (work with DFS) and 59th commit (can not see DFS).
> Here is my serial of test: 86: KO => 43 OK => 64 KO => 53 OK => 58 OK => 61 KO => 59 KO. Then I change between 58 and 59th commit one more time to confirm the different. 
> Is that all of your commit that you've done? Cause with the firmware-2-ct-non-commercial.bin I can enter promiscuous mode to set up bridge network, but yesterday I tried your 2 firmwares 
> and today with the firmware of 172th commit they are all broke in bridge network.

Ok, I will look at the 59th commit today.

As for commit 172, it should be virtually identical to the firmware-2-ct-non-commercial.bin

I will double-check that I didn't miss some commit.

Can you try each of these and let me know if they work for promisc mode?

http://www.candelatech.com/downloads/firmware-2-ct-community-3.bin
http://www.candelatech.com/downloads/firmware-2-ct-community-2.bin
http://www.candelatech.com/downloads/firmware-2-ct-community-1.bin

And, in case it's a bit of a race, maybe try rebooting with each firmware
several times to see if it works in promisc sometimes and not others?

Thanks,
Ben


> If not, can you rebuild other image so that I can trace your commit that allow to enter promiscuous mode?
> 
> Thanks,
> NGUYEN Vu Hai
> Acita-Sodielec
> Route de Mayres - B.P. 9
> 12100 St GEORGES DE LUZENCON
> FRANCE
> 
> 
> 
> 
> 
> 
> _______________________________________________
> ath10k mailing list
> ath10k@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/ath10k
> 


-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-06-05  8:41                                                                                 ` RE : " Vu Hai NGUYEN
  2014-06-05 15:43                                                                                   ` Ben Greear
@ 2014-06-05 17:33                                                                                   ` Ben Greear
  2014-06-06  9:05                                                                                     ` RE : " Vu Hai NGUYEN
  1 sibling, 1 reply; 134+ messages in thread
From: Ben Greear @ 2014-06-05 17:33 UTC (permalink / raw)
  To: Vu Hai NGUYEN
  Cc: Janusz Dziedzic, Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic

On 06/05/2014 01:41 AM, Vu Hai NGUYEN wrote:
>> Ok, I have built an image for each of my commits, and I have attempted to rebase my changes
>> so that these kernels should work on un-patched drivers.  I have not actually tested these
>> various images on un-patched drivers, so if you see any un-expected problems, let me know
>> and I can test those specific images.
>>
>>From your previous testing, you know the first commit should be OK for DFS, and the
> l>ast commit (172) is not.  To bisect, choose an image in the middle (ie, commit 86)
>> and see if it works.  If so, choose middle one between 86 and 172, if not, choose middle one
>> between 0 and 86...repeat until you find the first bad commit and let me know what that
>> is and I will try to figure out the problem in the firmware.
>>
>> http://www.candelatech.com/downloads/ath10k-fw-all-images/
> 
> Thanks for building the image, I found out the diffrent is between the the 58th (work with DFS) and 59th commit (can not see DFS).
> Here is my serial of test: 86: KO => 43 OK => 64 KO => 53 OK => 58 OK => 61 KO => 59 KO. Then I change between 58 and 59th commit one more time to confirm the different. 

Ok, the difference must be changes I made to the scanning state machine.
That patch was fairly big, and did several different things.  I have split
it up into 4 separate patches to try to narrow down where the problem was
introduced.

Can you try these firmware images in order and let me know the first
that fails to do DFS properly?  The scan-1 should be white-space and
debugging only, so hopefully it works.

firmware-2-community-scan1.bin
firmware-2-community-scan2.bin
firmware-2-community-scan3.bin
firmware-2-community-scan4.bin

http://www.candelatech.com/downloads/

Thanks,
Ben



-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-06-05 17:33                                                                                   ` Ben Greear
@ 2014-06-06  9:05                                                                                     ` Vu Hai NGUYEN
  2014-06-06 15:50                                                                                       ` Ben Greear
  2014-06-07  0:28                                                                                       ` RE : RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS Ben Greear
  0 siblings, 2 replies; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-06-06  9:05 UTC (permalink / raw)
  To: Ben Greear
  Cc: Janusz Dziedzic, Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic

>Ok, the difference must be changes I made to the scanning state machine.
>That patch was fairly big, and did several different things.  I have split
>it up into 4 separate patches to try to narrow down where the problem was
>introduced.
>
>Can you try these firmware images in order and let me know the first
>that fails to do DFS properly?  The scan-1 should be white-space and
>debugging only, so hopefully it works.
>
>firmware-2-community-scan1.bin
>firmware-2-community-scan2.bin
>firmware-2-community-scan3.bin
>firmware-2-community-scan4.bin
>
>http://www.candelatech.com/downloads/

Thank you, I did the test, the first one and second one (scan 1 & 2) can work with DFS, the last 2 cann't.
I also retried to test promiscuous mode, may be yesterday I did something wrong when copy-paste the firmware.
Today I try the 172 commit firmware and it works in promisc mode, so again with binary search I redo my serie of test,
the different is between 120 (broken firmware) and 121 (non broken). 
(My serie is: 172 OK => 86 KO => 129 OK => 107 KO => 118 KO => 124 OK => 121 OK => 120 KO, than re-change to 
confirm the different :D)
Hope that is helpful for you 

Thanks,
NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE



_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-06-06  9:05                                                                                     ` RE : " Vu Hai NGUYEN
@ 2014-06-06 15:50                                                                                       ` Ben Greear
  2014-06-10  7:15                                                                                         ` Vu Hai NGUYEN
  2014-06-07  0:28                                                                                       ` RE : RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS Ben Greear
  1 sibling, 1 reply; 134+ messages in thread
From: Ben Greear @ 2014-06-06 15:50 UTC (permalink / raw)
  To: Vu Hai NGUYEN
  Cc: Janusz Dziedzic, Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic

On 06/06/2014 02:05 AM, Vu Hai NGUYEN wrote:
>> Ok, the difference must be changes I made to the scanning state machine.
>> That patch was fairly big, and did several different things.  I have split
>> it up into 4 separate patches to try to narrow down where the problem was
>> introduced.
>>
>> Can you try these firmware images in order and let me know the first
>> that fails to do DFS properly?  The scan-1 should be white-space and
>> debugging only, so hopefully it works.
>>
>> firmware-2-community-scan1.bin
>> firmware-2-community-scan2.bin
>> firmware-2-community-scan3.bin
>> firmware-2-community-scan4.bin
>>
>> http://www.candelatech.com/downloads/
> 
> Thank you, I did the test, the first one and second one (scan 1 & 2) can work with DFS, the last 2 cann't.

Ok, looks like the patch where I change the scan state machine logic is the bad one.

I will review it carefully and maybe try splitting it further today.

Are you able to test with a modified kernel?  If so, I can add debuglog
messages to the firmware and give you a kernel ath10k patch to print
those out in the kernel logs so you can send them to me for decoding...


Anyone have any ideas what sorts of problems I might be introducing by
changing around the scan logic?  Normal scanning seems to at least mostly
work...how is DFS special?


> I also retried to test promiscuous mode, may be yesterday I did something wrong when copy-paste the firmware.
> Today I try the 172 commit firmware and it works in promisc mode, so again with binary search I redo my serie of test,
> the different is between 120 (broken firmware) and 121 (non broken). 
> (My serie is: 172 OK => 86 KO => 129 OK => 107 KO => 118 KO => 124 OK => 121 OK => 120 KO, than re-change to 
> confirm the different :D)
> Hope that is helpful for you 

That is interesting...patch 121 is small and just fixes a firmware crash I was seeing
related to null dereference in beacon config logic.  Do you see firmware crashes for
build 120, or does it just silently not work?

Thanks,
Ben


-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-06-06  9:05                                                                                     ` RE : " Vu Hai NGUYEN
  2014-06-06 15:50                                                                                       ` Ben Greear
@ 2014-06-07  0:28                                                                                       ` Ben Greear
  1 sibling, 0 replies; 134+ messages in thread
From: Ben Greear @ 2014-06-07  0:28 UTC (permalink / raw)
  To: Vu Hai NGUYEN
  Cc: Janusz Dziedzic, Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic

On 06/06/2014 02:05 AM, Vu Hai NGUYEN wrote:
>> Ok, the difference must be changes I made to the scanning state machine.
>> That patch was fairly big, and did several different things.  I have split
>> it up into 4 separate patches to try to narrow down where the problem was
>> introduced.
>>
>> Can you try these firmware images in order and let me know the first
>> that fails to do DFS properly?  The scan-1 should be white-space and
>> debugging only, so hopefully it works.
>>
>> firmware-2-community-scan1.bin
>> firmware-2-community-scan2.bin
>> firmware-2-community-scan3.bin
>> firmware-2-community-scan4.bin
>>
>> http://www.candelatech.com/downloads/
> 
> Thank you, I did the test, the first one and second one (scan 1 & 2) can work with DFS, the last 2 cann't.

Can you please see if this firmware is any better for the DFS issue?

http://www.candelatech.com/downloads/firmware-2-community-scan3-a.bin

Thanks,
Ben

-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-06-06 15:50                                                                                       ` Ben Greear
@ 2014-06-10  7:15                                                                                         ` Vu Hai NGUYEN
  2014-06-10 15:51                                                                                           ` Ben Greear
  0 siblings, 1 reply; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-06-10  7:15 UTC (permalink / raw)
  To: Ben Greear
  Cc: Janusz Dziedzic, Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic

>Can you please see if this firmware is any better for the DFS issue?
>
>http://www.candelatech.com/downloads/firmware-2-community-scan3-a.bin

Thanks, I check your firmware but it can not fix the problem

>Ok, looks like the patch where I change the scan state machine logic is the bad one.
>
>I will review it carefully and maybe try splitting it further today.
>
>Are you able to test with a modified kernel?  If so, I can add debuglog
>messages to the firmware and give you a kernel ath10k patch to print
>those out in the kernel logs so you can send them to me for decoding...

Sorry I don't really get it, you mean that I can re-compiled ath10k for my own
kernel?  Actually I'm using backport to compile ath10k for my kernel 3.2.36 provided
for my chipset, If so, I can do it. 

>Anyone have any ideas what sorts of problems I might be introducing by
>changing around the scan logic?  Normal scanning seems to at least mostly
>work...how is DFS special?


>> I also retried to test promiscuous mode, may be yesterday I did something wrong when copy-paste the firmware.
>> Today I try the 172 commit firmware and it works in promisc mode, so again with binary search I redo my serie of test,
>> the different is between 120 (broken firmware) and 121 (non broken).
>> (My serie is: 172 OK => 86 KO => 129 OK => 107 KO => 118 KO => 124 OK => 121 OK => 120 KO, than re-change to
>> confirm the different :D)
>> Hope that is helpful for you

>That is interesting...patch 121 is small and just fixes a firmware crash I was seeing
>related to null dereference in beacon config logic.  Do you see firmware crashes for
>build 120, or does it just silently not work?

Yes it crashed once the STA associate to my AP in bridge network (promisc mode)

NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-06-10  7:15                                                                                         ` Vu Hai NGUYEN
@ 2014-06-10 15:51                                                                                           ` Ben Greear
  2014-06-11  7:19                                                                                             ` Vu Hai NGUYEN
  0 siblings, 1 reply; 134+ messages in thread
From: Ben Greear @ 2014-06-10 15:51 UTC (permalink / raw)
  To: Vu Hai NGUYEN
  Cc: Janusz Dziedzic, Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic

On 06/10/2014 12:15 AM, Vu Hai NGUYEN wrote:
>> Can you please see if this firmware is any better for the DFS issue?
>>
>> http://www.candelatech.com/downloads/firmware-2-community-scan3-a.bin
> 
> Thanks, I check your firmware but it can not fix the problem

Can you explain how you test this?  Do I need a special AP configuration
to do the test, or is a normal ath10k NIC and hostapd enough?

I can try to reproduce the problem and test the fixes here.

>> Ok, looks like the patch where I change the scan state machine logic is the bad one.
>>
>> I will review it carefully and maybe try splitting it further today.
>>
>> Are you able to test with a modified kernel?  If so, I can add debuglog
>> messages to the firmware and give you a kernel ath10k patch to print
>> those out in the kernel logs so you can send them to me for decoding...
> 
> Sorry I don't really get it, you mean that I can re-compiled ath10k for my own
> kernel?  Actually I'm using backport to compile ath10k for my kernel 3.2.36 provided
> for my chipset, If so, I can do it. 

Let me try to reproduce it myself first..that will be the fastest way
for me to fix the problem I think.

Thanks,
Ben

-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-06-10 15:51                                                                                           ` Ben Greear
@ 2014-06-11  7:19                                                                                             ` Vu Hai NGUYEN
  2014-06-11 17:05                                                                                               ` Ben Greear
  0 siblings, 1 reply; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-06-11  7:19 UTC (permalink / raw)
  To: Ben Greear
  Cc: Janusz Dziedzic, Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic

>Can you explain how you test this?  Do I need a special AP configuration
>to do the test, or is a normal ath10k NIC and hostapd enough?
>
>I can try to reproduce the problem and test the fixes here.

In my code, I copy the firmware chosen (10.1, 999 or CT) from another folder to /lib/firmware/ath10k/... 
before loading the modules of ath10k. Then I set up network (bridge or router) and finally run hostapd (if AP)
and wpa_supplicant (if STA). Each time I change a parameter of my network the program will kill almost 
all the actual processus, unload the modules and then reload, run new processus ....

Btw, I think that there is a conflict in your hostapd config file. I saw that you use channel 52 and 
vht_oper_centr_freq_seg0_idx=54, it means that you use 40 MHz operating Channel width?
If so  vht_oper_chwidth=1 should be set to 0. If you want to use 80Mhz Channel width you should 
set vht_oper_centr_freq_seg0_idx=58.


NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE







Thanks,
Ben

--
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-06-11  7:19                                                                                             ` Vu Hai NGUYEN
@ 2014-06-11 17:05                                                                                               ` Ben Greear
  2014-06-12  8:48                                                                                                 ` RE : " Vu Hai NGUYEN
  0 siblings, 1 reply; 134+ messages in thread
From: Ben Greear @ 2014-06-11 17:05 UTC (permalink / raw)
  To: Vu Hai NGUYEN
  Cc: Janusz Dziedzic, Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic

On 06/11/2014 12:19 AM, Vu Hai NGUYEN wrote:
>> Can you explain how you test this?  Do I need a special AP configuration
>> to do the test, or is a normal ath10k NIC and hostapd enough?
>>
>> I can try to reproduce the problem and test the fixes here.
> 
> In my code, I copy the firmware chosen (10.1, 999 or CT) from another folder to /lib/firmware/ath10k/... 
> before loading the modules of ath10k. Then I set up network (bridge or router) and finally run hostapd (if AP)
> and wpa_supplicant (if STA). Each time I change a parameter of my network the program will kill almost 
> all the actual processus, unload the modules and then reload, run new processus ....
> 
> Btw, I think that there is a conflict in your hostapd config file. I saw that you use channel 52 and 
> vht_oper_centr_freq_seg0_idx=54, it means that you use 40 MHz operating Channel width?
> If so  vht_oper_chwidth=1 should be set to 0. If you want to use 80Mhz Channel width you should 
> set vht_oper_centr_freq_seg0_idx=58.

Can you please try this firmware:

http://www.candelatech.com/downloads/firmware-2-community-scan-X.bin

I have verified that it works fine for me when connecting to an
AP on a DFS channel.  It should have the bridging fix as well.

There was an inverted beacon-filter setting bug in my code, though that
also should have been fixed in the previous firmware I sent you.

I might have had some other problem in that older firmware, however.

Thanks,
Ben


-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : RE : RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-06-11 17:05                                                                                               ` Ben Greear
@ 2014-06-12  8:48                                                                                                 ` Vu Hai NGUYEN
  2014-06-12 17:54                                                                                                   ` Ben Greear
  2014-06-12 20:22                                                                                                   ` Ben Greear
  0 siblings, 2 replies; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-06-12  8:48 UTC (permalink / raw)
  To: Ben Greear
  Cc: Janusz Dziedzic, Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic

>Can you please try this firmware:
>
>http://www.candelatech.com/downloads/firmware-2-community-scan-X.bin
>
>I have verified that it works fine for me when connecting to an
>AP on a DFS channel.  It should have the bridging fix as well.
>
>There was an inverted beacon-filter setting bug in my code, though that
>also should have been fixed in the previous firmware I sent you.
>
>I might have had some other problem in that older firmware, however.

Thank you, your new firmware work fine with DFS channel and promiscuous mode.
But there is a small bug, with the firmware 10.1 my station can associate with AP directly
after running wpa_supplicant. Your firmware had this:
wlan0: direct probe to (@ mac) (try 1/3)
wlan0: direct probe to (@ mac) (try 2/3)
wlan0: direct probe to (@ mac) (try 3/3)
and I have to run "iw wlan0 scan" to detect the network again and connect to it.
I've tested it with different channels DFS for 2 version of firmware (yours and 10.1)
so I'm quite sure about it.

Thanks,
NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE





_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : RE : RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS
  2014-06-12  8:48                                                                                                 ` RE : " Vu Hai NGUYEN
@ 2014-06-12 17:54                                                                                                   ` Ben Greear
  2014-06-12 20:22                                                                                                   ` Ben Greear
  1 sibling, 0 replies; 134+ messages in thread
From: Ben Greear @ 2014-06-12 17:54 UTC (permalink / raw)
  To: Vu Hai NGUYEN
  Cc: Janusz Dziedzic, Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic

On 06/12/2014 01:48 AM, Vu Hai NGUYEN wrote:
>> Can you please try this firmware:
>>
>> http://www.candelatech.com/downloads/firmware-2-community-scan-X.bin
>>
>> I have verified that it works fine for me when connecting to an
>> AP on a DFS channel.  It should have the bridging fix as well.
>>
>> There was an inverted beacon-filter setting bug in my code, though that
>> also should have been fixed in the previous firmware I sent you.
>>
>> I might have had some other problem in that older firmware, however.
> 
> Thank you, your new firmware work fine with DFS channel and promiscuous mode.
> But there is a small bug, with the firmware 10.1 my station can associate with AP directly
> after running wpa_supplicant. Your firmware had this:
> wlan0: direct probe to (@ mac) (try 1/3)
> wlan0: direct probe to (@ mac) (try 2/3)
> wlan0: direct probe to (@ mac) (try 3/3)
> and I have to run "iw wlan0 scan" to detect the network again and connect to it.
> I've tested it with different channels DFS for 2 version of firmware (yours and 10.1)
> so I'm quite sure about it.

Does this problem happen only with DFS, or do you see it on other channels as well?

I can build another set of firmwares for bisecting later today.

Thanks,
Ben


-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : ath10k: firmware crash in station mode & problem DFS
  2014-06-12  8:48                                                                                                 ` RE : " Vu Hai NGUYEN
  2014-06-12 17:54                                                                                                   ` Ben Greear
@ 2014-06-12 20:22                                                                                                   ` Ben Greear
  2014-06-13  8:50                                                                                                     ` Vu Hai NGUYEN
  1 sibling, 1 reply; 134+ messages in thread
From: Ben Greear @ 2014-06-12 20:22 UTC (permalink / raw)
  To: Vu Hai NGUYEN
  Cc: Janusz Dziedzic, Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic

On 06/12/2014 01:48 AM, Vu Hai NGUYEN wrote:
>> Can you please try this firmware:
>>
>> http://www.candelatech.com/downloads/firmware-2-community-scan-X.bin
>>
>> I have verified that it works fine for me when connecting to an
>> AP on a DFS channel.  It should have the bridging fix as well.
>>
>> There was an inverted beacon-filter setting bug in my code, though that
>> also should have been fixed in the previous firmware I sent you.
>>
>> I might have had some other problem in that older firmware, however.
> 
> Thank you, your new firmware work fine with DFS channel and promiscuous mode.
> But there is a small bug, with the firmware 10.1 my station can associate with AP directly
> after running wpa_supplicant. Your firmware had this:
> wlan0: direct probe to (@ mac) (try 1/3)
> wlan0: direct probe to (@ mac) (try 2/3)
> wlan0: direct probe to (@ mac) (try 3/3)
> and I have to run "iw wlan0 scan" to detect the network again and connect to it.
> I've tested it with different channels DFS for 2 version of firmware (yours and 10.1)
> so I'm quite sure about it.

I put a new series of patches (one build for every commit in my tree)
here.  This has the scan fix in place (at around build 70 or so)
so hopefully a bisect will work OK for you.

http://www.candelatech.com/downloads/ath10k-fw-all-images/

If you bisect the problem, please let me know the results
and I'll try to track down the problem.

Thanks,
Ben


-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : ath10k: firmware crash in station mode & problem DFS
  2014-06-12 20:22                                                                                                   ` Ben Greear
@ 2014-06-13  8:50                                                                                                     ` Vu Hai NGUYEN
  2014-06-13 14:34                                                                                                       ` Ben Greear
  2014-06-13 17:04                                                                                                       ` Ben Greear
  0 siblings, 2 replies; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-06-13  8:50 UTC (permalink / raw)
  To: Ben Greear
  Cc: Janusz Dziedzic, Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic

>I put a new series of patches (one build for every commit in my tree)
>here.  This has the scan fix in place (at around build 70 or so)
>so hopefully a bisect will work OK for you.
>
>http://www.candelatech.com/downloads/ath10k-fw-all-images/
>
>If you bisect the problem, please let me know the results
>and I'll try to track down the problem.

Thanks, the different is between the 61th and 62th commit. I have to type "iw wlan0 scan" for the 62th commit firmware to connect after running wpa_supp.
They all had: 
wlan0: CTRL-EVENT-SCAN-STARTED
wlan0: SME: Trying to authenticate with 04:f0:21:0e:38:be (SSID='ath10k' freq=5280 MHz)
wlan0: authenticate with 04:f0:21:0e:38:be
wlan0: direct probe to 04:f0:21:0e:38:be (try 1/3)   
wlan0: direct probe to 04:f0:21:0e:38:be (try 2/3)
wlan0: direct probe to 04:f0:21:0e:38:be (try 3/3)
wlan0: authentication with 04:f0:21:0e:38:be timed out

But the first firmware continue to do this: 
wlan0: SME: Trying to authenticate with 04:f0:21:0e:38:be (SSID='ath10k' freq=5280 MHz) 
wlan0: authenticate with 04:f0:21:0e:38:be    
wlan0: authenticated
 wlan0: Trying to associate with 04:f0:21:0e:38:be (try 1/3)
 wlan0: associate with 04:f0:21:0e:38:be
 wlan0: associated  

While the second one keeps saying:
wlan0: CTRL-EVENT-SCAN-STARTED

Thanks,
NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE



_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : ath10k: firmware crash in station mode & problem DFS
  2014-06-13  8:50                                                                                                     ` Vu Hai NGUYEN
@ 2014-06-13 14:34                                                                                                       ` Ben Greear
  2014-06-13 17:04                                                                                                       ` Ben Greear
  1 sibling, 0 replies; 134+ messages in thread
From: Ben Greear @ 2014-06-13 14:34 UTC (permalink / raw)
  To: Vu Hai NGUYEN
  Cc: Janusz Dziedzic, Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic



On 06/13/2014 01:50 AM, Vu Hai NGUYEN wrote:
>> I put a new series of patches (one build for every commit in my tree)
>> here.  This has the scan fix in place (at around build 70 or so)
>> so hopefully a bisect will work OK for you.
>>
>> http://www.candelatech.com/downloads/ath10k-fw-all-images/
>>
>> If you bisect the problem, please let me know the results
>> and I'll try to track down the problem.
>
> Thanks, the different is between the 61th and 62th commit. I have to type "iw wlan0 scan" for the 62th commit firmware to connect after running wpa_supp.
> They all had:
> wlan0: CTRL-EVENT-SCAN-STARTED
> wlan0: SME: Trying to authenticate with 04:f0:21:0e:38:be (SSID='ath10k' freq=5280 MHz)
> wlan0: authenticate with 04:f0:21:0e:38:be
> wlan0: direct probe to 04:f0:21:0e:38:be (try 1/3)
> wlan0: direct probe to 04:f0:21:0e:38:be (try 2/3)
> wlan0: direct probe to 04:f0:21:0e:38:be (try 3/3)
> wlan0: authentication with 04:f0:21:0e:38:be timed out

You see this with official firmware as well?  Any idea why
AP does not answer?


> But the first firmware continue to do this:
> wlan0: SME: Trying to authenticate with 04:f0:21:0e:38:be (SSID='ath10k' freq=5280 MHz)
> wlan0: authenticate with 04:f0:21:0e:38:be
> wlan0: authenticated
>   wlan0: Trying to associate with 04:f0:21:0e:38:be (try 1/3)
>   wlan0: associate with 04:f0:21:0e:38:be
>   wlan0: associated
>
> While the second one keeps saying:
> wlan0: CTRL-EVENT-SCAN-STARTED

I'll investigate the firmware change between 61 and 62, thanks for
narrowing it down.

Also, do you see this same behaviour on non-DFS channels?

Thanks,
Ben

>
> Thanks,
> NGUYEN Vu Hai
> Acita-Sodielec
> Route de Mayres - B.P. 9
> 12100 St GEORGES DE LUZENCON
> FRANCE
>
>
>
> _______________________________________________
> ath10k mailing list
> ath10k@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/ath10k
>

-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : ath10k: firmware crash in station mode & problem DFS
  2014-06-13  8:50                                                                                                     ` Vu Hai NGUYEN
  2014-06-13 14:34                                                                                                       ` Ben Greear
@ 2014-06-13 17:04                                                                                                       ` Ben Greear
  2014-06-16  7:16                                                                                                         ` Vu Hai NGUYEN
  1 sibling, 1 reply; 134+ messages in thread
From: Ben Greear @ 2014-06-13 17:04 UTC (permalink / raw)
  To: Vu Hai NGUYEN
  Cc: Janusz Dziedzic, Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic

On 06/13/2014 01:50 AM, Vu Hai NGUYEN wrote:
>> I put a new series of patches (one build for every commit in my tree)
>> here.  This has the scan fix in place (at around build 70 or so)
>> so hopefully a bisect will work OK for you.
>>
>> http://www.candelatech.com/downloads/ath10k-fw-all-images/
>>
>> If you bisect the problem, please let me know the results
>> and I'll try to track down the problem.
> 
> Thanks, the different is between the 61th and 62th commit. I have to type "iw wlan0 scan" for the 62th commit firmware to connect after running wpa_supp.
> They all had: 
> wlan0: CTRL-EVENT-SCAN-STARTED
> wlan0: SME: Trying to authenticate with 04:f0:21:0e:38:be (SSID='ath10k' freq=5280 MHz)
> wlan0: authenticate with 04:f0:21:0e:38:be
> wlan0: direct probe to 04:f0:21:0e:38:be (try 1/3)   
> wlan0: direct probe to 04:f0:21:0e:38:be (try 2/3)
> wlan0: direct probe to 04:f0:21:0e:38:be (try 3/3)
> wlan0: authentication with 04:f0:21:0e:38:be timed out

Looks like my scan-on-operating-channel optimization patch is
the problem.  I have just disabled this until I have time to
debug it in detail...

Here is a build of my full patch-set with that buggy patch reverted,
please see if it works for you:

http://www.candelatech.com/downloads/firmware-2-community-scanfix.bin

Thanks,
Ben


-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : ath10k: firmware crash in station mode & problem DFS
  2014-06-13 17:04                                                                                                       ` Ben Greear
@ 2014-06-16  7:16                                                                                                         ` Vu Hai NGUYEN
  2014-06-16 14:47                                                                                                           ` Ben Greear
  0 siblings, 1 reply; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-06-16  7:16 UTC (permalink / raw)
  To: Ben Greear
  Cc: Janusz Dziedzic, Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic

>Also, do you see this same behaviour on non-DFS channels?

No your firmware works normally on non-DFS channels.

>Looks like my scan-on-operating-channel optimization patch is
>the problem.  I have just disabled this until I have time to
>debug it in detail...
>
>Here is a build of my full patch-set with that buggy patch reverted,
>please see if it works for you:
>
>http://www.candelatech.com/downloads/firmware-2-community-scanfix.bin

Thanks,  I just do the test with your new firmware, It works on DFS channels and promiscuous mode.
If you update something for your patch, please feel free to ask me to do the test.


NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE




_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : ath10k: firmware crash in station mode & problem DFS
  2014-06-16  7:16                                                                                                         ` Vu Hai NGUYEN
@ 2014-06-16 14:47                                                                                                           ` Ben Greear
  2014-06-17  7:25                                                                                                             ` Vu Hai NGUYEN
  0 siblings, 1 reply; 134+ messages in thread
From: Ben Greear @ 2014-06-16 14:47 UTC (permalink / raw)
  To: Vu Hai NGUYEN
  Cc: Janusz Dziedzic, Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic



On 06/16/2014 12:16 AM, Vu Hai NGUYEN wrote:
>> Also, do you see this same behaviour on non-DFS channels?
>
> No your firmware works normally on non-DFS channels.
>
>> Looks like my scan-on-operating-channel optimization patch is
>> the problem.  I have just disabled this until I have time to
>> debug it in detail...
>>
>> Here is a build of my full patch-set with that buggy patch reverted,
>> please see if it works for you:
>>
>> http://www.candelatech.com/downloads/firmware-2-community-scanfix.bin
>
> Thanks,  I just do the test with your new firmware, It works on DFS channels and promiscuous mode.
> If you update something for your patch, please feel free to ask me to do the test.

I uploaded the latest CT firmware builds with this fix last Friday.  The 10.1.467-ct-006
should be basically the same as the -scanfix.bin that you tested earlier.

Please let me know if you see any additional problems.

Thanks,
Ben


-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : ath10k: firmware crash in station mode & problem DFS
  2014-06-16 14:47                                                                                                           ` Ben Greear
@ 2014-06-17  7:25                                                                                                             ` Vu Hai NGUYEN
  2014-06-23  9:03                                                                                                               ` Warning message in bridge mode Vu Hai NGUYEN
  0 siblings, 1 reply; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-06-17  7:25 UTC (permalink / raw)
  To: Ben Greear
  Cc: Janusz Dziedzic, Patrick CARNEIRO RODRIGUEZ, ath10k, Janusz Dziedzic

>I uploaded the latest CT firmware builds with this fix last Friday.  The 10.1.467-ct-006
>should be basically the same as the -scanfix.bin that you tested earlier.
>
>Please let me know if you see any additional problems.

Ok I've tested this firmware:
http://www.candelatech.com/downloads/firmware-2-ct-community-6.bin

I can use it for my STA in promiscuous mode and connect to my AP on channels DFS, 
Sometimes I get this message "wlan0: received packet with  own address as source address".
I'm not sure that it is your firmware issue or because of my network configuration.
I'll try to figure it out and report to you if it relates to your firmware. 

Thanks,
NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Warning message in bridge mode
  2014-06-17  7:25                                                                                                             ` Vu Hai NGUYEN
@ 2014-06-23  9:03                                                                                                               ` Vu Hai NGUYEN
  2014-06-23 21:33                                                                                                                 ` Ben Greear
  0 siblings, 1 reply; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-06-23  9:03 UTC (permalink / raw)
  To: ath10k; +Cc: Patrick CARNEIRO RODRIGUEZ, greearb

I get this warning message when doing my test with iperf in my AP:
br0: received packet on wlan0.sta1 with own address as source address

My STA is set up in bridge network (promiscuous mode) and using the firmware of CT.
http://www.candelatech.com/downloads/firmware-2-ct-community-6.bin
When my STA is associated successfully with my AP, the interface "wlan0.sta1" is created
in my AP. And I have this config:
br0              Link encap:Ethernet  HWaddr 04:F0:21:0E:38:C6  
eth0            Link encap:Ethernet  HWaddr 00:10:02:0F:C5:05
wlan0          Link encap:Ethernet  HWaddr 04:F0:21:0E:38:C6
wlan0.sta1  Link encap:Ethernet  HWaddr 04:F0:21:0E:38:C6 

I think that the warning message is because my interface br0 and wlan0.sta1 have the same
mac address. And it decrease the performance of the rate (I get higher rate with iperf when my 
STA is set up in router network (not enter promiscuous mode). I can not do the test with the
official firmware cause it crashed in promiscuous mode.
So I wonder that if anyone get the same issue like me?

Thanks,
NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE



I can use it for my STA in promiscuous mode and connect to my AP on channels DFS,
Sometimes I get this message "wlan0: received packet with  own address as source address".
I'm not sure that it is your firmware issue or because of my network configuration.
I'll try to figure it out and report to you if it relates to your firmware.

Thanks,
NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: Warning message in bridge mode
  2014-06-23  9:03                                                                                                               ` Warning message in bridge mode Vu Hai NGUYEN
@ 2014-06-23 21:33                                                                                                                 ` Ben Greear
  2014-06-23 21:47                                                                                                                   ` Bruno Antunes
  0 siblings, 1 reply; 134+ messages in thread
From: Ben Greear @ 2014-06-23 21:33 UTC (permalink / raw)
  To: Vu Hai NGUYEN; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k

On 06/23/2014 02:03 AM, Vu Hai NGUYEN wrote:
> I get this warning message when doing my test with iperf in my AP:
> br0: received packet on wlan0.sta1 with own address as source address
> 
> My STA is set up in bridge network (promiscuous mode) and using the firmware of CT.
> http://www.candelatech.com/downloads/firmware-2-ct-community-6.bin
> When my STA is associated successfully with my AP, the interface "wlan0.sta1" is created
> in my AP. And I have this config:
> br0              Link encap:Ethernet  HWaddr 04:F0:21:0E:38:C6  
> eth0            Link encap:Ethernet  HWaddr 00:10:02:0F:C5:05
> wlan0          Link encap:Ethernet  HWaddr 04:F0:21:0E:38:C6
> wlan0.sta1  Link encap:Ethernet     HWaddr 04:F0:21:0E:38:C6 
> 
> I think that the warning message is because my interface br0 and wlan0.sta1 have the same
> mac address. And it decrease the performance of the rate (I get higher rate with iperf when my 
> STA is set up in router network (not enter promiscuous mode). I can not do the test with the
> official firmware cause it crashed in promiscuous mode.
> So I wonder that if anyone get the same issue like me?

Why do you have the same MAC for wlan0 and wlan0.sta1?  What are those interfaces
exactly?  It is normal for the bridge to have same MAC as one of the interfaces
it contains.

> I can use it for my STA in promiscuous mode and connect to my AP on channels DFS,
> Sometimes I get this message "wlan0: received packet with  own address as source address".
> I'm not sure that it is your firmware issue or because of my network configuration.
> I'll try to figure it out and report to you if it relates to your firmware.

I doubt my firmware has any impact on this particular problem.

Thanks,
Ben

> 
> Thanks,
> NGUYEN Vu Hai
> Acita-Sodielec
> Route de Mayres - B.P. 9
> 12100 St GEORGES DE LUZENCON
> FRANCE
> 
> 
> _______________________________________________
> ath10k mailing list
> ath10k@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/ath10k
> 


-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: Warning message in bridge mode
  2014-06-23 21:33                                                                                                                 ` Ben Greear
@ 2014-06-23 21:47                                                                                                                   ` Bruno Antunes
  2014-06-24  7:39                                                                                                                     ` RE : " Vu Hai NGUYEN
  0 siblings, 1 reply; 134+ messages in thread
From: Bruno Antunes @ 2014-06-23 21:47 UTC (permalink / raw)
  To: Ben Greear; +Cc: Vu Hai NGUYEN, Patrick CARNEIRO RODRIGUEZ, ath10k


Hi,

No dia 23/06/2014, às 22:33, Ben Greear <greearb@candelatech.com> escreveu:

> On 06/23/2014 02:03 AM, Vu Hai NGUYEN wrote:
>> I get this warning message when doing my test with iperf in my AP:
>> br0: received packet on wlan0.sta1 with own address as source address

That message is common in other scenarios.
I also have this messages when in layer 2 mesh ( batman-adv)

>> 
>> My STA is set up in bridge network (promiscuous mode) and using the firmware of CT.
>> http://www.candelatech.com/downloads/firmware-2-ct-community-6.bin
>> When my STA is associated successfully with my AP, the interface "wlan0.sta1" is created
>> in my AP. And I have this config:
>> br0              Link encap:Ethernet  HWaddr 04:F0:21:0E:38:C6  
>> eth0            Link encap:Ethernet  HWaddr 00:10:02:0F:C5:05
>> wlan0          Link encap:Ethernet  HWaddr 04:F0:21:0E:38:C6
>> wlan0.sta1  Link encap:Ethernet     HWaddr 04:F0:21:0E:38:C6 
>> 
>> I think that the warning message is because my interface br0 and wlan0.sta1 have the same
>> mac address. And it decrease the performance of the rate (I get higher rate with iperf when my 
>> STA is set up in router network (not enter promiscuous mode). I can not do the test with the
>> official firmware cause it crashed in promiscuous mode.
>> So I wonder that if anyone get the same issue like me?
> 
> Why do you have the same MAC for wlan0 and wlan0.sta1?  What are those interfaces
> exactly?  It is normal for the bridge to have same MAC as one of the interfaces
> it contains.

I think he is using WDS mode.
For each station connected to the AP a new sub interface is added: wlan0.sta1, wlan0.sta2 ...
All sub interfaces share the MAC address.
At least that's what happens with ath9k.

> 
>> I can use it for my STA in promiscuous mode and connect to my AP on channels DFS,
>> Sometimes I get this message "wlan0: received packet with  own address as source address".
>> I'm not sure that it is your firmware issue or because of my network configuration.
>> I'll try to figure it out and report to you if it relates to your firmware.
> 
> I doubt my firmware has any impact on this particular problem.
Me too.

Bruno

> Thanks,
> Ben
> 
>> 
>> Thanks,
>> NGUYEN Vu Hai
>> Acita-Sodielec
>> Route de Mayres - B.P. 9
>> 12100 St GEORGES DE LUZENCON
>> FRANCE
>> 
>> 
>> _______________________________________________
>> ath10k mailing list
>> ath10k@lists.infradead.org
>> http://lists.infradead.org/mailman/listinfo/ath10k
>> 
> 
> 
> -- 
> Ben Greear <greearb@candelatech.com>
> Candela Technologies Inc  http://www.candelatech.com
> 
> 
> _______________________________________________
> ath10k mailing list
> ath10k@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/ath10k

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : Warning message in bridge mode
  2014-06-23 21:47                                                                                                                   ` Bruno Antunes
@ 2014-06-24  7:39                                                                                                                     ` Vu Hai NGUYEN
  2014-06-24 15:10                                                                                                                       ` Ben Greear
  0 siblings, 1 reply; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-06-24  7:39 UTC (permalink / raw)
  To: Bruno Antunes, Ben Greear; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k

>>> I get this warning message when doing my test with iperf in my AP:
>>> br0: received packet on wlan0.sta1 with own address as source address

>That message is common in other scenarios.
>I also have this messages when in layer 2 mesh ( batman-adv)

So I don't have to worry about this warning???

>>> My STA is set up in bridge network (promiscuous mode) and using the firmware of CT.
>>> http://www.candelatech.com/downloads/firmware-2-ct-community-6.bin
>>> When my STA is associated successfully with my AP, the interface "wlan0.sta1" is created
>>> in my AP. And I have this config:
>>> br0              Link encap:Ethernet  HWaddr 04:F0:21:0E:38:C6
>>> eth0            Link encap:Ethernet  HWaddr 00:10:02:0F:C5:05
>>> wlan0          Link encap:Ethernet  HWaddr 04:F0:21:0E:38:C6
>>> wlan0.sta1  Link encap:Ethernet     HWaddr 04:F0:21:0E:38:C6
>>>
>>> I think that the warning message is because my interface br0 and wlan0.sta1 have the same
>>> mac address. And it decrease the performance of the rate (I get higher rate with iperf when my
>>> STA is set up in router network (not enter promiscuous mode). I can not do the test with the
>>>official firmware cause it crashed in promiscuous mode.
>>> So I wonder that if anyone get the same issue like me?

>> Why do you have the same MAC for wlan0 and wlan0.sta1?  What are those interfaces
>> exactly?  It is normal for the bridge to have same MAC as one of the interfaces
>> it contains.
>I think he is using WDS mode.
>For each station connected to the AP a new sub interface is added: wlan0.sta1, wlan0.sta2 ...
>All sub interfaces share the MAC address.
>At least that's what happens with ath9k.

Yes I'm using WDS mode, set up from command "iw set 4addr on" and in my hostapd config I also have 
wds_sta=1. The sub interface is created only if my STA is set up is bridge network, if I use my STA as
a router there is no sub interface created, my STA associate with AP directly on interface wlan0.

>>> I can use it for my STA in promiscuous mode and connect to my AP on channels DFS,
>>> Sometimes I get this message "wlan0: received packet with  own address as source address".
>>> I'm not sure that it is your firmware issue or because of my network configuration.
>>> I'll try to figure it out and report to you if it relates to your firmware.

>> I doubt my firmware has any impact on this particular problem.
>Me too.

I was wrong, the only warning msg is "br0: received packet on wlan0.sta1 with own address as source address".
And I have another question: When doing test with iperf, I always have rate from AP to STA higher than STA to AP
(380Mbps vs 240 Mbps).This is normal too right? Cause before you told me that when you did the test with your 
own traffic generator, you can get 500+Mbps download, and about 400Mbps upload.

Thanks,
NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : Warning message in bridge mode
  2014-06-24  7:39                                                                                                                     ` RE : " Vu Hai NGUYEN
@ 2014-06-24 15:10                                                                                                                       ` Ben Greear
  2014-06-26 14:17                                                                                                                         ` Vu Hai NGUYEN
  0 siblings, 1 reply; 134+ messages in thread
From: Ben Greear @ 2014-06-24 15:10 UTC (permalink / raw)
  To: Vu Hai NGUYEN, Bruno Antunes; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k

On 06/24/2014 12:39 AM, Vu Hai NGUYEN wrote:

> I was wrong, the only warning msg is "br0: received packet on wlan0.sta1 with own address as source address".
> And I have another question: When doing test with iperf, I always have rate from AP to STA higher than STA to AP
> (380Mbps vs 240 Mbps).This is normal too right? Cause before you told me that when you did the test with your
> own trafficgenerator, you can get 500+Mbps download, and about 400Mbps upload.

We have done some tests recently on E5 3.7Ghz systems (ie, top-end-ish server systems)
that can push 800+Mbps UDP, but can't recall if that is upload or download.

We need to re-run tests and publish the info.

Looks like host CPU is very important to higher-speeds with ath10k.  I did a perf top
months ago, and there was bad contention on a spinlock or two in ath10k driver, so that
is probably much of the performance problems we see.

Thanks,
Ben

-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : Warning message in bridge mode
  2014-06-24 15:10                                                                                                                       ` Ben Greear
@ 2014-06-26 14:17                                                                                                                         ` Vu Hai NGUYEN
  2014-06-26 14:34                                                                                                                           ` Ben Greear
  0 siblings, 1 reply; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-06-26 14:17 UTC (permalink / raw)
  To: Ben Greear, Bruno Antunes; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k

Hi Ben,
Can you create a firmware that is the same as 10.1.467-2-1 but include your fix for promiscuous mode?
I would like to do the test of rate in bridge network to see if the performance is better or not.
But as your firmware contain other commit that might make the rate slower so I would like to ask you could create
this version of firmware.
Thanks in advance,

NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE

________________________________________
De : Ben Greear [greearb@candelatech.com]
Date d'envoi : mardi 24 juin 2014 17:10
À : Vu Hai NGUYEN; Bruno Antunes
Cc : Patrick CARNEIRO RODRIGUEZ; ath10k@lists.infradead.org
Objet : Re: RE : Warning message in bridge mode

On 06/24/2014 12:39 AM, Vu Hai NGUYEN wrote:

> I was wrong, the only warning msg is "br0: received packet on wlan0.sta1 with own address as source address".
> And I have another question: When doing test with iperf, I always have rate from AP to STA higher than STA to AP
> (380Mbps vs 240 Mbps).This is normal too right? Cause before you told me that when you did the test with your
> own trafficgenerator, you can get 500+Mbps download, and about 400Mbps upload.

We have done some tests recently on E5 3.7Ghz systems (ie, top-end-ish server systems)
that can push 800+Mbps UDP, but can't recall if that is upload or download.

We need to re-run tests and publish the info.

Looks like host CPU is very important to higher-speeds with ath10k.  I did a perf top
months ago, and there was bad contention on a spinlock or two in ath10k driver, so that
is probably much of the performance problems we see.

Thanks,
Ben

--
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : Warning message in bridge mode
  2014-06-26 14:17                                                                                                                         ` Vu Hai NGUYEN
@ 2014-06-26 14:34                                                                                                                           ` Ben Greear
  2014-06-27 15:52                                                                                                                             ` Vu Hai NGUYEN
  0 siblings, 1 reply; 134+ messages in thread
From: Ben Greear @ 2014-06-26 14:34 UTC (permalink / raw)
  To: Vu Hai NGUYEN; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k, Bruno Antunes

On 06/26/2014 07:17 AM, Vu Hai NGUYEN wrote:
> Hi Ben,
> Can you create a firmware that is the same as 10.1.467-2-1 but include your fix for promiscuous mode?
> I would like to do the test of rate in bridge network to see if the performance is better or not.
> But as your firmware contain other commit that might make the rate slower so I would like to ask you could create
> this version of firmware.

It would not be easy for me to do that.  While you found a single patch that
fixed the crash for you, I believe it is also dependent on many patches that
came before that one as well.

For your throughput tests, are you using UDP or TCP?  You might try TCP in
case you are hitting the same packet-reordering issue reported in another
email thread.

At least for standard operation (ie, no software-crypt), I doubt my
changes to the firmware had any significant impact on performance
or throughput.

Thanks,
Ben


> Thanks in advance,
> 
> NGUYEN Vu Hai
> Acita-Sodielec
> Route de Mayres - B.P. 9
> 12100 St GEORGES DE LUZENCON
> FRANCE
> 
> ________________________________________
> De : Ben Greear [greearb@candelatech.com]
> Date d'envoi : mardi 24 juin 2014 17:10
> À : Vu Hai NGUYEN; Bruno Antunes
> Cc : Patrick CARNEIRO RODRIGUEZ; ath10k@lists.infradead.org
> Objet : Re: RE : Warning message in bridge mode
> 
> On 06/24/2014 12:39 AM, Vu Hai NGUYEN wrote:
> 
>> I was wrong, the only warning msg is "br0: received packet on wlan0.sta1 with own address as source address".
>> And I have another question: When doing test with iperf, I always have rate from AP to STA higher than STA to AP
>> (380Mbps vs 240 Mbps).This is normal too right? Cause before you told me that when you did the test with your
>> own trafficgenerator, you can get 500+Mbps download, and about 400Mbps upload.
> 
> We have done some tests recently on E5 3.7Ghz systems (ie, top-end-ish server systems)
> that can push 800+Mbps UDP, but can't recall if that is upload or download.
> 
> We need to re-run tests and publish the info.
> 
> Looks like host CPU is very important to higher-speeds with ath10k.  I did a perf top
> months ago, and there was bad contention on a spinlock or two in ath10k driver, so that
> is probably much of the performance problems we see.
> 
> Thanks,
> Ben
> 
> --
> Ben Greear <greearb@candelatech.com>
> Candela Technologies Inc  http://www.candelatech.com
> 


-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : Warning message in bridge mode
  2014-06-26 14:34                                                                                                                           ` Ben Greear
@ 2014-06-27 15:52                                                                                                                             ` Vu Hai NGUYEN
  2014-06-27 15:59                                                                                                                               ` Ben Greear
  0 siblings, 1 reply; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-06-27 15:52 UTC (permalink / raw)
  To: Ben Greear; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k, Bruno Antunes

>It would not be easy for me to do that.  While you found a single patch that
>fixed the crash for you, I believe it is also dependent on many patches that
>came before that one as well.

>For your throughput tests, are you using UDP or TCP?  You might try TCP in
>case you are hitting the same packet-reordering issue reported in another
>email thread.

But as you and Bruno Antunes said before the warning message is normal and I can ignore it?
I've tested with both TCP and UDP using iperf. I'm testing TCP with option -w256K and 10 stream (-P10)
With Open Authentication in 802.11ac VHT80
  UDP Download (1% packet lost) :  565 Mbps  
  UDP Upload (1% packet lost):   320 Mbps
  TCP Download:  380 Mbps
  TCP Upload:    260 Mbps

>At least for standard operation (ie, no software-crypt), I doubt my
>changes to the firmware had any significant impact on performance
>or throughput.

You're right, If I do not enter promiscuous mode, I get the same rate when doing test with your firmware and the official firmware. 
But if I use your firmware for my STA in promiscuous mode, the rate is a little bit slower when doing test (about 20 Mbps less than non promiscuous mode)


NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE






_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* Re: RE : Warning message in bridge mode
  2014-06-27 15:52                                                                                                                             ` Vu Hai NGUYEN
@ 2014-06-27 15:59                                                                                                                               ` Ben Greear
  2014-06-30  8:14                                                                                                                                 ` Vu Hai NGUYEN
  0 siblings, 1 reply; 134+ messages in thread
From: Ben Greear @ 2014-06-27 15:59 UTC (permalink / raw)
  To: Vu Hai NGUYEN; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k, Bruno Antunes



On 06/27/2014 08:52 AM, Vu Hai NGUYEN wrote:
>> It would not be easy for me to do that.  While you found a single patch that
>> fixed the crash for you, I believe it is also dependent on many patches that
>> came before that one as well.
>
>> For your throughput tests, are you using UDP or TCP?  You might try TCP in
>> case you are hitting the same packet-reordering issue reported in another
>> email thread.
>
> But as you and Bruno Antunes said before the warning message is normal and I can ignore it?
> I've tested with both TCP and UDP using iperf. I'm testing TCP with option -w256K and 10 stream (-P10)
> With Open Authentication in 802.11ac VHT80
>    UDP Download (1% packet lost) :  565 Mbps
>    UDP Upload (1% packet lost):   320 Mbps
>    TCP Download:  380 Mbps
>    TCP Upload:    260 Mbps
>
>> At least for standard operation (ie, no software-crypt), I doubt my
>> changes to the firmware had any significant impact on performance
>> or throughput.
>
> You're right, If I do not enter promiscuous mode, I get the same rate when doing test with your firmware and the official firmware.
> But if I use your firmware for my STA in promiscuous mode, the rate is a little bit slower when doing test (about 20 Mbps less than non promiscuous mode)

Can you run 'perf top' or similar on your system to see if the kernel is doing more work
in promisc mode?  Promisc (monitor) mode is going to disable some firmware packet cooking,
so I think you may end up doing extra work in the driver.

Thanks,
Ben


-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

* RE : Warning message in bridge mode
  2014-06-27 15:59                                                                                                                               ` Ben Greear
@ 2014-06-30  8:14                                                                                                                                 ` Vu Hai NGUYEN
  0 siblings, 0 replies; 134+ messages in thread
From: Vu Hai NGUYEN @ 2014-06-30  8:14 UTC (permalink / raw)
  To: Ben Greear; +Cc: Patrick CARNEIRO RODRIGUEZ, ath10k, Bruno Antunes

[-- Attachment #1: Type: text/plain, Size: 785 bytes --]

>Can you run 'perf top' or similar on your system to see if the kernel is doing more work
>in promisc mode?  Promisc (monitor) mode is going to disable some firmware packet cooking,
>so I think you may end up doing extra work in the driver.

Thanks, I ran "top" on my system and saw the main different was the task "ksoftirqd". I google it and they told that
this can happen when a high speed network card receives a very large number of packets in a short time frame.
Our processor is almost exhausted in both case (only 2 and 5% idle). This may be reason our rate was limited when 
doing test too? You can find in the attached file 2 result when I run top on my system :D

NGUYEN Vu Hai
Acita-Sodielec
Route de Mayres - B.P. 9
12100 St GEORGES DE LUZENCON
FRANCE




[-- Attachment #2: top_non_promis.txt --]
[-- Type: text/plain, Size: 1328 bytes --]

Mem: 60800K used, 446288K free, 0K shrd, 0K buff, 28840K cached
CPU:   1% usr   6% sys   0% nic   5% idle   0% io   0% irq  86% sirq
Load average: 1.21 0.92 0.81 1/64 16146
  PID  PPID USER     STAT   VSZ %MEM %CPU COMMAND
    3     2 root     RW       0   0%  14% [ksoftirqd/0]
13735     2 root     SW       0   0%  10% [kworker/u:1]
  899     1 root     S     2588   1%   3% monitor
  733   731 root     S     2492   0%   2% /usr/bin/principal -production
15723   754 root     R     2384   0%   1% top
  749   747 root     S     2984   1%   1% /usr/sbin/lighttpd -D -f /etc/lighttpd
  909     1 root     S     2140   0%   1% jdb
18638     2 root     SW       0   0%   1% [kworker/u:0]
  756     1 root     S     2264   0%   0% /sbin/klogd -n
  915     1 root     S     2132   0%   0% confsftp
  728   726 root     S     1776   0%   0% /usr/bin/update 2
15291     2 root     SW       0   0%   0% [kworker/0:0]
15537     1 root     S     5384   1%   0% wpa_supplicant -Dnl80211 -iwlan0 -c /e
  723     1 root     S     3800   1%   0% vsftpd
  754     1 root     S     2384   0%   0% -sh
15515     1 root     S     2316   0%   0% bird -c /etc/bird.conf
    1     0 root     S     2264   0%   0% init
  755     1 root     S     2264   0%   0% /sbin/syslogd -n -m 0
  622     1 root     S     2264   0%   0% /usr/sbin/dropbear





[-- Attachment #3: top_promisc.txt --]
[-- Type: text/plain, Size: 1413 bytes --]

Mem: 60440K used, 446648K free, 0K shrd, 0K buff, 28812K cached
CPU:   1% usr   2% sys   0% nic   2% idle   0% io   0% irq  92% sirq
Load average: 1.87 0.96 0.75 5/63 11101
  PID  PPID USER     STAT   VSZ %MEM %CPU COMMAND
    3     2 root     RW       0   0%  40% [ksoftirqd/0]
18638     2 root     RW       0   0%  16% [kworker/u:0]
  749   747 root     S     2984   1%   4% /usr/sbin/lighttpd -D -f /etc/lighttpd
  899     1 root     R     2588   1%   4% monitor
  372     2 root     SW       0   0%   3% [kworker/u:2]
  909     1 root     S     2140   0%   3% jdb
  756     1 root     S     2264   0%   1% /sbin/klogd -n
  915     1 root     S     2132   0%   1% confsftp
  733   731 root     S     2492   0%   1% /usr/bin/principal -production
10282   754 root     R     2384   0%   0% top
  755     1 root     S     2264   0%   0% /sbin/syslogd -n -m 0
  728   726 root     S     1776   0%   0% /usr/bin/update 2
 9725     1 root     S     5384   1%   0% wpa_supplicant -Dnl80211 -iwlan0 -bbr0
  723     1 root     S     3800   1%   0% vsftpd
  754     1 root     S     2384   0%   0% -sh
    1     0 root     S     2264   0%   0% init
  622     1 root     S     2264   0%   0% /usr/sbin/dropbear
  726     1 root     S     2132   0%   0% runsv /var/service/update
  731     1 root     S     2132   0%   0% runsv /var/service/principal
  747     1 root     S     2132   0%   0% runsv /var/service/lighttpd


[-- Attachment #4: Type: text/plain, Size: 146 bytes --]

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 134+ messages in thread

end of thread, other threads:[~2014-06-30  8:14 UTC | newest]

Thread overview: 134+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-05-08 16:18 [PATCH v2 2/2] ath10k: support get/set antenna configurations greearb
2014-05-08 16:18 ` greearb
2014-05-12 15:43 ` RE : " Vu Hai NGUYEN
2014-05-12 16:17   ` Ben Greear
2014-05-13  0:49     ` Avery Pennarun
2014-05-13  3:36       ` Ben Greear
2014-05-13 13:08         ` ath10k: set channel by command "iw" not from hostapd and DFS support of firmware-2.bin_10.1.467.2-1 Vu Hai NGUYEN
2014-05-14  9:32           ` Matti Laakso
2014-05-14 11:56             ` RE : " Vu Hai NGUYEN
2014-05-15  8:02               ` Matti Laakso
2014-05-15 10:41                 ` RE : " Vu Hai NGUYEN
2014-05-15 11:11                   ` Janusz Dziedzic
2014-05-15 13:36                     ` RE : " Vu Hai NGUYEN
2014-05-15 16:08                       ` Vu Hai NGUYEN
2014-05-16  6:52                         ` Janusz Dziedzic
2014-05-16  7:01                           ` RE : " Vu Hai NGUYEN
2014-05-16  7:35                             ` Janusz Dziedzic
2014-05-16  7:46                               ` Bartosz Markowski
2014-05-16  8:03                                 ` RE : " Vu Hai NGUYEN
2014-05-16  8:13                                   ` Bartosz Markowski
2014-05-16  9:41                                     ` RE : " Vu Hai NGUYEN
2014-05-16 11:39                                       ` Janusz Dziedzic
2014-05-16 11:50                                         ` Janusz Dziedzic
2014-05-16 13:17                                           ` RE : RE " Vu Hai NGUYEN
2014-05-16 17:40                                             ` Janusz Dziedzic
2014-05-19  9:39                                               ` Vu Hai NGUYEN
2014-05-19 10:42                                                 ` Janusz Dziedzic
2014-05-16 13:00                               ` RE : RE : RE : RE : " Kalle Valo
2014-05-16 14:03                                 ` Janusz Dziedzic
2014-05-16 14:12                                   ` Kalle Valo
2014-05-16  7:41                             ` Matti Laakso
2014-05-15  7:07           ` ath10k: firmware crash in station mode Vu Hai NGUYEN
2014-05-15  7:53             ` Janusz Dziedzic
2014-05-15 10:57             ` Michal Kazior
2014-05-15 13:27               ` RE : " Vu Hai NGUYEN
2014-05-19  6:59                 ` Michal Kazior
2014-05-19  9:47                   ` RE : " Vu Hai NGUYEN
2014-05-19 12:51                     ` Michal Kazior
2014-05-20  6:44                       ` ath10k: firmware crash in station mode & problem DFS Vu Hai NGUYEN
2014-05-20  8:15                         ` RE : " Vu Hai NGUYEN
2014-05-20 17:59                           ` Janusz Dziedzic
2014-05-21  9:43                             ` RE : " Vu Hai NGUYEN
2014-05-21 14:03                               ` Janusz Dziedzic
2014-05-22  7:54                                 ` RE : " Vu Hai NGUYEN
2014-05-22  8:06                                   ` Vu Hai NGUYEN
2014-05-22 12:18                                     ` Janusz Dziedzic
2014-05-22 12:25                                       ` Janusz Dziedzic
2014-05-22 14:40                                         ` RE : " Vu Hai NGUYEN
2014-05-22 14:45                                           ` Vu Hai NGUYEN
2014-05-22 16:44                                           ` RE : " Kalle Valo
     [not found]                                             ` <EE97821C81277E459BEA5C6384C6F241012F109978E8@srvexch01.SODIELEC.local>
     [not found]                                               ` <EE97821C81277E459BEA5C6384C6F241012F109978E9@srvexch01.SODIELEC.local>
2014-05-23  7:40                                                 ` Kalle Valo
2014-05-23  7:52                                                 ` RE : " Vu Hai NGUYEN
2014-05-26  8:34                                                   ` Janusz Dziedzic
2014-05-26 13:45                                                     ` Vu Hai NGUYEN
     [not found]                                                       ` <CAFED-j=i5uhjqaJYL+dm_ui48EFeHG3isHYSSSo=+3gk-Wa5YQ@mail.gmail.com>
2014-05-27  6:50                                                         ` Janusz Dziedzic
2014-05-27  9:21                                                           ` Vu Hai NGUYEN
2014-05-27 16:36                                                           ` Vu Hai NGUYEN
2014-05-28 15:25                                                             ` Vu Hai NGUYEN
2014-05-28 15:49                                                               ` Ben Greear
2014-05-30  9:10                                                                 ` Vu Hai NGUYEN
2014-05-30 14:49                                                                   ` Ben Greear
2014-06-02 16:16                                                                     ` Vu Hai NGUYEN
2014-06-02 16:48                                                                       ` Ben Greear
2014-06-03  6:51                                                                         ` Vu Hai NGUYEN
2014-06-04  4:14                                                                           ` Ben Greear
2014-06-04  9:20                                                                             ` Vu Hai NGUYEN
2014-06-04 16:20                                                                               ` Ben Greear
2014-06-04 21:40                                                                               ` Ben Greear
2014-06-05  8:41                                                                                 ` RE : " Vu Hai NGUYEN
2014-06-05 15:43                                                                                   ` Ben Greear
2014-06-05 17:33                                                                                   ` Ben Greear
2014-06-06  9:05                                                                                     ` RE : " Vu Hai NGUYEN
2014-06-06 15:50                                                                                       ` Ben Greear
2014-06-10  7:15                                                                                         ` Vu Hai NGUYEN
2014-06-10 15:51                                                                                           ` Ben Greear
2014-06-11  7:19                                                                                             ` Vu Hai NGUYEN
2014-06-11 17:05                                                                                               ` Ben Greear
2014-06-12  8:48                                                                                                 ` RE : " Vu Hai NGUYEN
2014-06-12 17:54                                                                                                   ` Ben Greear
2014-06-12 20:22                                                                                                   ` Ben Greear
2014-06-13  8:50                                                                                                     ` Vu Hai NGUYEN
2014-06-13 14:34                                                                                                       ` Ben Greear
2014-06-13 17:04                                                                                                       ` Ben Greear
2014-06-16  7:16                                                                                                         ` Vu Hai NGUYEN
2014-06-16 14:47                                                                                                           ` Ben Greear
2014-06-17  7:25                                                                                                             ` Vu Hai NGUYEN
2014-06-23  9:03                                                                                                               ` Warning message in bridge mode Vu Hai NGUYEN
2014-06-23 21:33                                                                                                                 ` Ben Greear
2014-06-23 21:47                                                                                                                   ` Bruno Antunes
2014-06-24  7:39                                                                                                                     ` RE : " Vu Hai NGUYEN
2014-06-24 15:10                                                                                                                       ` Ben Greear
2014-06-26 14:17                                                                                                                         ` Vu Hai NGUYEN
2014-06-26 14:34                                                                                                                           ` Ben Greear
2014-06-27 15:52                                                                                                                             ` Vu Hai NGUYEN
2014-06-27 15:59                                                                                                                               ` Ben Greear
2014-06-30  8:14                                                                                                                                 ` Vu Hai NGUYEN
2014-06-07  0:28                                                                                       ` RE : RE : RE : RE : RE : ath10k: firmware crash in station mode & problem DFS Ben Greear
2014-05-28 17:19                                                               ` Janusz Dziedzic
2014-05-28 18:40                                                                 ` Janusz Dziedzic
2014-05-30 11:55                                                                   ` Vu Hai NGUYEN
2014-06-02  7:03                                                                     ` Janusz Dziedzic
2014-05-23  7:18                                           ` Michal Kazior
2014-05-23  9:15                       ` RE : RE : ath10k: firmware crash in station mode Yeoh Chun-Yeow
2014-05-23 11:35                         ` RE : " Vu Hai NGUYEN
2014-05-23 14:27                           ` Yeoh Chun-Yeow
2014-05-23 14:55                 ` TR " Vu Hai NGUYEN
2014-05-23 15:36                   ` Yeoh Chun-Yeow
2014-05-23 16:03                     ` Ben Greear
2014-05-24  6:29                       ` Tim Harvey
2014-05-24 16:14                         ` Ben Greear
2014-05-27 19:13                           ` Ben Greear
2014-05-25  7:26                         ` Kalle Valo
2014-05-24  5:49                     ` Tim Harvey
2014-05-24 16:46                       ` Yeoh Chun-Yeow
2014-05-13  0:52     ` [PATCH] ath10k: support get/set antenna configurations Avery Pennarun
2014-05-13 18:10       ` Kalle Valo
2014-05-13 18:15         ` Ben Greear
2014-05-13 21:03           ` Avery Pennarun
2014-05-14 12:28             ` Kalle Valo
2014-05-15  4:04               ` Yeoh Chun-Yeow
2014-05-15  5:47                 ` Avery Pennarun
2014-05-15  6:51                   ` Yeoh Chun-Yeow
2014-05-15  7:11                 ` Kalle Valo
2014-05-13 21:11       ` [PATCH v3] " Avery Pennarun
2014-05-14  6:20         ` Yeoh Chun-Yeow
2014-05-14  6:21           ` Avery Pennarun
2014-05-14  6:25             ` Yeoh Chun-Yeow
2014-05-14  7:18               ` Avery Pennarun
2014-05-14  7:22                 ` Yeoh Chun-Yeow
2014-05-14  7:33                   ` Yeoh Chun-Yeow
2014-05-16 12:30         ` Kalle Valo
2014-05-16 13:00           ` Ben Greear
2014-05-22 16:56         ` Kalle Valo
2014-05-13 17:50     ` RE : [PATCH v2 2/2] " Kalle Valo

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.