2022-06-08 23:46:35 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
|
|
|
|
/* Copyright(c) 2007 - 2011 Realtek Corporation. */
|
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
#ifndef _RTW_HT_H_
|
|
|
|
#define _RTW_HT_H_
|
|
|
|
|
2022-06-08 23:46:35 +00:00
|
|
|
#include "osdep_service.h"
|
2013-05-08 21:45:39 +00:00
|
|
|
#include "wifi.h"
|
|
|
|
|
2013-08-15 21:11:51 +00:00
|
|
|
struct ht_priv {
|
2013-05-19 04:28:07 +00:00
|
|
|
u32 ht_option;
|
2013-08-12 04:36:23 +00:00
|
|
|
u32 ampdu_enable;/* for enable Tx A-MPDU */
|
|
|
|
u32 tx_amsdu_enable;/* for enable Tx A-MSDU */
|
|
|
|
u32 tx_amdsu_maxlen; /* 1: 8k, 0:4k ; default:8k, for tx */
|
2013-08-15 21:11:51 +00:00
|
|
|
u32 rx_ampdu_maxlen; /* for rx reordering ctrl win_sz,
|
|
|
|
* updated when join_callback. */
|
2013-08-12 04:36:23 +00:00
|
|
|
u8 bwmode;/* */
|
|
|
|
u8 ch_offset;/* PRIME_CHNL_OFFSET */
|
|
|
|
u8 sgi;/* short GI */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-08-12 04:36:23 +00:00
|
|
|
/* for processing Tx A-MPDU */
|
2013-05-08 21:45:39 +00:00
|
|
|
u8 agg_enable_bitmap;
|
|
|
|
u8 candidate_tid_bitmap;
|
|
|
|
|
2015-04-08 18:43:40 +00:00
|
|
|
struct ieee80211_ht_cap ht_cap;
|
2013-05-08 21:45:39 +00:00
|
|
|
};
|
|
|
|
|
2013-08-12 04:36:23 +00:00
|
|
|
#endif /* _RTL871X_HT_H_ */
|