hw.h (2036B)
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* Copyright(c) 2009-2012 Realtek Corporation.*/ 3 4#ifndef __RTL92CE_HW_H__ 5#define __RTL92CE_HW_H__ 6 7static inline u8 rtl92c_get_chnl_group(u8 chnl) 8{ 9 u8 group; 10 11 if (chnl < 3) 12 group = 0; 13 else if (chnl < 9) 14 group = 1; 15 else 16 group = 2; 17 return group; 18} 19 20void rtl92ce_get_hw_reg(struct ieee80211_hw *hw, u8 variable, u8 *val); 21void rtl92ce_read_eeprom_info(struct ieee80211_hw *hw); 22void rtl92ce_interrupt_recognized(struct ieee80211_hw *hw, 23 struct rtl_int *int_vec); 24int rtl92ce_hw_init(struct ieee80211_hw *hw); 25void rtl92ce_card_disable(struct ieee80211_hw *hw); 26void rtl92ce_enable_interrupt(struct ieee80211_hw *hw); 27void rtl92ce_disable_interrupt(struct ieee80211_hw *hw); 28int rtl92ce_set_network_type(struct ieee80211_hw *hw, enum nl80211_iftype type); 29void rtl92ce_set_check_bssid(struct ieee80211_hw *hw, bool check_bssid); 30void rtl92ce_set_qos(struct ieee80211_hw *hw, int aci); 31void rtl92ce_set_beacon_related_registers(struct ieee80211_hw *hw); 32void rtl92ce_set_beacon_interval(struct ieee80211_hw *hw); 33void rtl92ce_update_interrupt_mask(struct ieee80211_hw *hw, 34 u32 add_msr, u32 rm_msr); 35void rtl92ce_set_hw_reg(struct ieee80211_hw *hw, u8 variable, u8 *val); 36void rtl92ce_update_hal_rate_tbl(struct ieee80211_hw *hw, 37 struct ieee80211_sta *sta, u8 rssi_level, 38 bool update_bw); 39void rtl92ce_update_channel_access_setting(struct ieee80211_hw *hw); 40bool rtl92ce_gpio_radio_on_off_checking(struct ieee80211_hw *hw, u8 *valid); 41void rtl92ce_enable_hw_security_config(struct ieee80211_hw *hw); 42void rtl92ce_set_key(struct ieee80211_hw *hw, u32 key_index, 43 u8 *p_macaddr, bool is_group, u8 enc_algo, 44 bool is_wepkey, bool clear_all); 45 46void rtl8192ce_read_bt_coexist_info_from_hwpg(struct ieee80211_hw *hw, 47 bool autoload_fail, u8 *hwinfo); 48void rtl8192ce_bt_reg_init(struct ieee80211_hw *hw); 49void rtl8192ce_bt_hw_init(struct ieee80211_hw *hw); 50void rtl92ce_suspend(struct ieee80211_hw *hw); 51void rtl92ce_resume(struct ieee80211_hw *hw); 52 53#endif