Lines Matching defs:rtl_mac
1438 struct rtl_mac { struct
1439 u8 mac_addr[ETH_ALEN];
1440 u8 mac80211_registered;
1441 u8 beacon_enabled;
1443 u32 tx_ss_num;
1444 u32 rx_ss_num;
1446 struct ieee80211_supported_band bands[NUM_NL80211_BANDS];
1447 struct ieee80211_hw *hw;
1448 struct ieee80211_vif *vif;
1449 enum nl80211_iftype opmode;
1452 enum rtl_link_state link_state;
1454 int n_channels;
1455 int n_bitrates;
1457 bool offchan_delay;
1458 u8 p2p; /*using p2p role*/
1459 bool p2p_in_use;
1462 u32 rx_conf;
1463 u16 rx_mgt_filter;
1464 u16 rx_ctrl_filter;
1465 u16 rx_data_filter;
1467 bool act_scanning;
1468 u8 cnt_after_linked;
1469 bool skip_scan;
1473 struct sk_buff_head skb_waitq[MAX_TID_COUNT];
1475 u8 ht_stbc_cap;
1476 u8 ht_cur_stbc;
1479 u8 vht_enable;
1480 u8 bw_80;
1481 u8 vht_cur_ldpc;
1482 u8 vht_cur_stbc;
1483 u8 vht_stbc_cap;
1484 u8 vht_ldpc_cap;
1487 bool rdg_en;
1490 u8 bssid[ETH_ALEN] __aligned(2);
1491 u32 vendor;
1492 u8 mcs[16]; /* 16 bytes mcs for HT rates. */
1493 u32 basic_rates; /* b/g rates */
1494 u8 ht_enable;
1495 u8 sgi_40;
1496 u8 sgi_20;
1497 u8 bw_40;
1498 u16 mode; /* wireless mode */
1499 u8 slot_time;
1500 u8 short_preamble;
1501 u8 use_cts_protect;
1502 u8 cur_40_prime_sc;
1503 u8 cur_40_prime_sc_bk;
1504 u8 cur_80_prime_sc;
1505 u64 tsf;
1506 u8 retry_short;
1507 u8 retry_long;
1508 u16 assoc_id;
1509 bool hiddenssid;
1512 int beacon_interval;
1515 u8 min_space_cfg; /*For Min spacing configurations */
1516 u8 max_mss_density;
1517 u8 current_ampdu_factor;
1518 u8 current_ampdu_density;
1521 struct ieee80211_tx_queue_params edca_param[RTL_MAC80211_NUM_QUEUE];
1522 struct rtl_qos_parameters ac[AC_MAX];
1525 u64 last_txok_cnt;
1526 u64 last_rxok_cnt;
1527 u32 last_bt_edca_ul;
1528 u32 last_bt_edca_dl;
2755 #define rtl_mac(rtlpriv) (&((rtlpriv)->mac80211)) macro