@@ -1131,10 +1131,10 @@ static int ath9k_hif_request_firmware(struct hif_device_usb *hif_dev,
/* expected fw locations:
* - ath9k_htc/htc_9271-1.dev.0.fw (development version)
- * - ath9k_htc/htc_9271-1.4.0.fw (stable version)
+ * - ath9k_htc/htc_9271-1.4.1.fw (stable version)
*/
snprintf(hif_dev->fw_name, sizeof(hif_dev->fw_name),
- "%s/htc_%s-%d.%s.0.fw", HTC_FW_PATH,
+ "%s/htc_%s-%d.%s.1.fw", HTC_FW_PATH,
chip, MAJOR_VERSION_REQ, index);
}
@@ -197,8 +197,8 @@ struct ath9k_htc_target_rx_stats {
__be32 host_done;
} __packed;
-#define ATH9K_HTC_MAX_VIF 2
-#define ATH9K_HTC_MAX_BCN_VIF 2
+#define ATH9K_HTC_MAX_VIF 8
+#define ATH9K_HTC_MAX_BCN_VIF 8
#define INC_VIF(_priv, _type) do { \
switch (_type) { \
@@ -251,8 +251,8 @@ struct ath9k_vif_iter_data {
u8 mask[ETH_ALEN];
};
-#define ATH9K_HTC_MAX_STA 8
-#define ATH9K_HTC_MAX_TID 8
+#define ATH9K_HTC_MAX_STA 128
+#define ATH9K_HTC_MAX_TID 16
enum tid_aggr_state {
AGGR_STOP = 0,
@@ -697,9 +697,9 @@ static int ath9k_init_priv(struct ath9k_htc_priv *priv,
}
static const struct ieee80211_iface_limit if_limits[] = {
- { .max = 2, .types = BIT(NL80211_IFTYPE_STATION) |
+ { .max = 8, .types = BIT(NL80211_IFTYPE_STATION) |
BIT(NL80211_IFTYPE_P2P_CLIENT) },
- { .max = 2, .types = BIT(NL80211_IFTYPE_AP) |
+ { .max = 8, .types = BIT(NL80211_IFTYPE_AP) |
#ifdef CONFIG_MAC80211_MESH
BIT(NL80211_IFTYPE_MESH_POINT) |
#endif
@@ -709,7 +709,7 @@ static int ath9k_init_priv(struct ath9k_htc_priv *priv,
static const struct ieee80211_iface_combination if_comb = {
.limits = if_limits,
.n_limits = ARRAY_SIZE(if_limits),
- .max_interfaces = 2,
+ .max_interfaces = 8,
.num_different_channels = 1,
};
Increase driver limit for various interface combinations. I was able to start 8 virtual APs and connect 5 clients to these. New firmware will be sent to linux-firmware mailing list too. Meanwhile, take a look here for changes it includes if you wish to build it yourself: https://github.com/qca/open-ath9k-htc-firmware/pull/149 Signed-off-by: Tomislav Požega <pozega.tomislav@gmail.com> --- drivers/net/wireless/ath/ath9k/hif_usb.c | 4 ++-- drivers/net/wireless/ath/ath9k/htc.h | 8 ++++---- drivers/net/wireless/ath/ath9k/htc_drv_init.c | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-)