Lines Matching defs:rtl_hal
1577 struct rtl_hal { struct
1578 struct ieee80211_hw *hw;
1579 bool driver_is_goingto_unload;
1580 bool up_first_time;
1581 bool first_init;
1582 bool being_init_adapter;
1583 bool mac_func_enable;
1584 bool pre_edcca_enable;
1585 struct bt_coexist_8723 hal_coex_8723;
1587 enum intf_type interface;
1588 u16 hw_type; /*92c or 92d or 92s and so on */
1589 u8 ic_class;
1590 u8 oem_id;
1591 u32 version; /*version of chip */
1592 u8 state; /*stop 0, start 1 */
1593 u8 board_type;
1594 u8 package_type;
1596 u8 pa_type_2g;
1597 u8 pa_type_5g;
1598 u8 lna_type_2g;
1599 u8 lna_type_5g;
1600 u8 external_pa_2g;
1601 u8 external_lna_2g;
1602 u8 external_pa_5g;
1603 u8 external_lna_5g;
1604 u8 type_glna;
1605 u8 type_gpa;
1606 u8 type_alna;
1607 u8 type_apa;
1608 u8 rfe_type;
1611 u32 fwsize;
1612 u8 *pfirmware;
1613 u16 fw_version;
1614 u16 fw_subversion;
1615 bool h2c_setinprogress;
1616 u8 last_hmeboxnum;
1617 bool fw_ready;
1619 u8 fw_rsvdpage_startoffset;
1620 u8 h2c_txcmd_seq;
1621 u8 current_ra_rate;
1624 u16 fwcmd_iomap;
1625 u32 fwcmd_ioparam;
1626 bool set_fwcmd_inprogress;
1627 u8 current_fwcmd_io;
1629 struct p2p_ps_offload_t p2p_ps_offload;
1630 bool fw_clk_change_in_progress;
1631 bool allow_sw_to_change_hwclc;
1632 u8 fw_ps_state;
1635 u8 minspace_cfg; /*For Min spacing configurations */
1638 enum macphy_mode macphymode;
1639 enum band_type current_bandtype; /* 0:2.4G, 1:5G */
1640 enum band_type current_bandtypebackup;
1641 enum band_type bandset;
1643 u32 interfaceindex;
1645 u8 macphyctl_reg;
1646 bool earlymode_enable;
1647 u8 max_earlymode_num;
1649 bool during_mac0init_radiob;
1650 bool during_mac1init_radioa;
1651 bool reloadtxpowerindex;
1655 bool load_imrandiqk_setting_for2g;
1657 bool disable_amsdu_8k;
1658 bool master_of_dmsp;
1659 bool slave_of_dmsp;
1662 bool enter_pnp_sleep;
1663 bool wake_from_pnp_sleep;
1664 time64_t last_suspend_sec;
1665 u32 wowlan_fwsize;
1666 u8 *wowlan_firmware;
1668 u8 hw_rof_enable; /*Enable GPIO[9] as WL RF HW PDn source*/
1670 bool real_wow_v2_enable;
1671 bool re_init_llt_table;
2768 #define rtl_hal(rtlpriv) (&((rtlpriv)->rtlhal)) macro