|
@@ -1061,6 +1061,40 @@ struct wl1271_acx_ht_information {
|
|
u8 padding[3];
|
|
u8 padding[3];
|
|
} __packed;
|
|
} __packed;
|
|
|
|
|
|
|
|
+#define RX_BA_WIN_SIZE 8
|
|
|
|
+
|
|
|
|
+struct wl1271_acx_ba_session_policy {
|
|
|
|
+ struct acx_header header;
|
|
|
|
+ /*
|
|
|
|
+ * Specifies role Id, Range 0-7, 0xFF means ANY role.
|
|
|
|
+ * Future use. For now this field is irrelevant
|
|
|
|
+ */
|
|
|
|
+ u8 role_id;
|
|
|
|
+ /*
|
|
|
|
+ * Specifies Link Id, Range 0-31, 0xFF means ANY Link Id.
|
|
|
|
+ * Not applicable if Role Id is set to ANY.
|
|
|
|
+ */
|
|
|
|
+ u8 link_id;
|
|
|
|
+
|
|
|
|
+ u8 tid;
|
|
|
|
+
|
|
|
|
+ u8 enable;
|
|
|
|
+
|
|
|
|
+ /* Windows size in number of packets */
|
|
|
|
+ u16 win_size;
|
|
|
|
+
|
|
|
|
+ /*
|
|
|
|
+ * As initiator inactivity timeout in time units(TU) of 1024us.
|
|
|
|
+ * As receiver reserved
|
|
|
|
+ */
|
|
|
|
+ u16 inactivity_timeout;
|
|
|
|
+
|
|
|
|
+ /* Initiator = 1/Receiver = 0 */
|
|
|
|
+ u8 ba_direction;
|
|
|
|
+
|
|
|
|
+ u8 padding[3];
|
|
|
|
+} __packed;
|
|
|
|
+
|
|
struct wl1271_acx_fw_tsf_information {
|
|
struct wl1271_acx_fw_tsf_information {
|
|
struct acx_header header;
|
|
struct acx_header header;
|
|
|
|
|
|
@@ -1134,8 +1168,8 @@ enum {
|
|
ACX_RSSI_SNR_WEIGHTS = 0x0052,
|
|
ACX_RSSI_SNR_WEIGHTS = 0x0052,
|
|
ACX_KEEP_ALIVE_MODE = 0x0053,
|
|
ACX_KEEP_ALIVE_MODE = 0x0053,
|
|
ACX_SET_KEEP_ALIVE_CONFIG = 0x0054,
|
|
ACX_SET_KEEP_ALIVE_CONFIG = 0x0054,
|
|
- ACX_BA_SESSION_RESPONDER_POLICY = 0x0055,
|
|
|
|
- ACX_BA_SESSION_INITIATOR_POLICY = 0x0056,
|
|
|
|
|
|
+ ACX_BA_SESSION_POLICY_CFG = 0x0055,
|
|
|
|
+ ACX_BA_SESSION_RX_SETUP = 0x0056,
|
|
ACX_PEER_HT_CAP = 0x0057,
|
|
ACX_PEER_HT_CAP = 0x0057,
|
|
ACX_HT_BSS_OPERATION = 0x0058,
|
|
ACX_HT_BSS_OPERATION = 0x0058,
|
|
ACX_COEX_ACTIVITY = 0x0059,
|
|
ACX_COEX_ACTIVITY = 0x0059,
|
|
@@ -1209,6 +1243,9 @@ int wl1271_acx_set_ht_capabilities(struct wl1271 *wl,
|
|
bool allow_ht_operation);
|
|
bool allow_ht_operation);
|
|
int wl1271_acx_set_ht_information(struct wl1271 *wl,
|
|
int wl1271_acx_set_ht_information(struct wl1271 *wl,
|
|
u16 ht_operation_mode);
|
|
u16 ht_operation_mode);
|
|
|
|
+int wl1271_acx_set_ba_session(struct wl1271 *wl,
|
|
|
|
+ enum ieee80211_back_parties direction,
|
|
|
|
+ u8 tid_index, u8 policy);
|
|
int wl1271_acx_tsf_info(struct wl1271 *wl, u64 *mactime);
|
|
int wl1271_acx_tsf_info(struct wl1271 *wl, u64 *mactime);
|
|
int wl1271_acx_max_tx_retry(struct wl1271 *wl);
|
|
int wl1271_acx_max_tx_retry(struct wl1271 *wl);
|
|
|
|
|