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