Lines Matching defs:rtl_mac

1460 struct rtl_mac {  struct
1461 u8 mac_addr[ETH_ALEN];
1462 u8 mac80211_registered;
1463 u8 beacon_enabled;
1465 u32 tx_ss_num;
1466 u32 rx_ss_num;
1468 struct ieee80211_supported_band bands[NUM_NL80211_BANDS];
1469 struct ieee80211_hw *hw;
1470 struct ieee80211_vif *vif;
1471 enum nl80211_iftype opmode;
1474 struct rtl_tid_data tids[MAX_TID_COUNT];
1475 enum rtl_link_state link_state;
1477 int n_channels;
1478 int n_bitrates;
1480 bool offchan_delay;
1481 u8 p2p; /*using p2p role*/
1482 bool p2p_in_use;
1485 u32 rx_conf;
1486 u16 rx_mgt_filter;
1487 u16 rx_ctrl_filter;
1488 u16 rx_data_filter;
1490 bool act_scanning;
1491 u8 cnt_after_linked;
1492 bool skip_scan;
1496 struct sk_buff_head skb_waitq[MAX_TID_COUNT];
1498 u8 ht_stbc_cap;
1499 u8 ht_cur_stbc;
1502 u8 vht_enable;
1503 u8 bw_80;
1504 u8 vht_cur_ldpc;
1505 u8 vht_cur_stbc;
1506 u8 vht_stbc_cap;
1507 u8 vht_ldpc_cap;
1510 bool rdg_en;
1513 u8 bssid[ETH_ALEN] __aligned(2);
1514 u32 vendor;
1515 u8 mcs[16]; /* 16 bytes mcs for HT rates. */
1516 u32 basic_rates; /* b/g rates */
1517 u8 ht_enable;
1518 u8 sgi_40;
1519 u8 sgi_20;
1520 u8 bw_40;
1521 u16 mode; /* wireless mode */
1522 u8 slot_time;
1523 u8 short_preamble;
1524 u8 use_cts_protect;
1525 u8 cur_40_prime_sc;
1526 u8 cur_40_prime_sc_bk;
1527 u8 cur_80_prime_sc;
1528 u64 tsf;
1529 u8 retry_short;
1530 u8 retry_long;
1531 u16 assoc_id;
1532 bool hiddenssid;
1535 int beacon_interval;
1538 u8 min_space_cfg; /*For Min spacing configurations */
1539 u8 max_mss_density;
1540 u8 current_ampdu_factor;
1541 u8 current_ampdu_density;
1544 struct ieee80211_tx_queue_params edca_param[RTL_MAC80211_NUM_QUEUE];
1545 struct rtl_qos_parameters ac[AC_MAX];
1548 u64 last_txok_cnt;
1549 u64 last_rxok_cnt;
1550 u32 last_bt_edca_ul;
1551 u32 last_bt_edca_dl;
2785 #define rtl_mac(rtlpriv) (&((rtlpriv)->mac80211)) macro