Lines Matching defs:rtl_mac
1478 struct rtl_mac { struct
1479 u8 mac_addr[ETH_ALEN];
1480 u8 mac80211_registered;
1481 u8 beacon_enabled;
1483 u32 tx_ss_num;
1484 u32 rx_ss_num;
1486 struct ieee80211_supported_band bands[NUM_NL80211_BANDS];
1487 struct ieee80211_hw *hw;
1488 struct ieee80211_vif *vif;
1489 enum nl80211_iftype opmode;
1492 struct rtl_tid_data tids[MAX_TID_COUNT];
1493 enum rtl_link_state link_state;
1495 int n_channels;
1496 int n_bitrates;
1498 bool offchan_delay;
1499 u8 p2p; /*using p2p role*/
1500 bool p2p_in_use;
1503 u32 rx_conf;
1504 u16 rx_mgt_filter;
1505 u16 rx_ctrl_filter;
1506 u16 rx_data_filter;
1508 bool act_scanning;
1509 u8 cnt_after_linked;
1510 bool skip_scan;
1514 struct sk_buff_head skb_waitq[MAX_TID_COUNT];
1516 u8 ht_stbc_cap;
1517 u8 ht_cur_stbc;
1520 u8 vht_enable;
1521 u8 bw_80;
1522 u8 vht_cur_ldpc;
1523 u8 vht_cur_stbc;
1524 u8 vht_stbc_cap;
1525 u8 vht_ldpc_cap;
1528 bool rdg_en;
1531 u8 bssid[ETH_ALEN] __aligned(2);
1532 u32 vendor;
1533 u8 mcs[16]; /* 16 bytes mcs for HT rates. */
1534 u32 basic_rates; /* b/g rates */
1535 u8 ht_enable;
1536 u8 sgi_40;
1537 u8 sgi_20;
1538 u8 bw_40;
1539 u16 mode; /* wireless mode */
1540 u8 slot_time;
1541 u8 short_preamble;
1542 u8 use_cts_protect;
1543 u8 cur_40_prime_sc;
1544 u8 cur_40_prime_sc_bk;
1545 u8 cur_80_prime_sc;
1546 u64 tsf;
1547 u8 retry_short;
1548 u8 retry_long;
1549 u16 assoc_id;
1550 bool hiddenssid;
1553 int beacon_interval;
1556 u8 min_space_cfg; /*For Min spacing configurations */
1557 u8 max_mss_density;
1558 u8 current_ampdu_factor;
1559 u8 current_ampdu_density;
1562 struct ieee80211_tx_queue_params edca_param[RTL_MAC80211_NUM_QUEUE];
1563 struct rtl_qos_parameters ac[AC_MAX];
1566 u64 last_txok_cnt;
1567 u64 last_rxok_cnt;
1568 u32 last_bt_edca_ul;
1569 u32 last_bt_edca_dl;
2839 #define rtl_mac(rtlpriv) (&((rtlpriv)->mac80211)) macro