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 
7 static 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 
20 void rtl92ce_get_hw_reg(struct ieee80211_hw *hw, u8 variable, u8 *val);
21 void rtl92ce_read_eeprom_info(struct ieee80211_hw *hw);
22 void rtl92ce_interrupt_recognized(struct ieee80211_hw *hw,
23 				  struct rtl_int *int_vec);
24 int rtl92ce_hw_init(struct ieee80211_hw *hw);
25 void rtl92ce_card_disable(struct ieee80211_hw *hw);
26 void rtl92ce_enable_interrupt(struct ieee80211_hw *hw);
27 void rtl92ce_disable_interrupt(struct ieee80211_hw *hw);
28 int rtl92ce_set_network_type(struct ieee80211_hw *hw, enum nl80211_iftype type);
29 void rtl92ce_set_check_bssid(struct ieee80211_hw *hw, bool check_bssid);
30 void rtl92ce_set_qos(struct ieee80211_hw *hw, int aci);
31 void rtl92ce_set_beacon_related_registers(struct ieee80211_hw *hw);
32 void rtl92ce_set_beacon_interval(struct ieee80211_hw *hw);
33 void rtl92ce_update_interrupt_mask(struct ieee80211_hw *hw,
34 				   u32 add_msr, u32 rm_msr);
35 void rtl92ce_set_hw_reg(struct ieee80211_hw *hw, u8 variable, u8 *val);
36 void rtl92ce_update_hal_rate_tbl(struct ieee80211_hw *hw,
37 				 struct ieee80211_sta *sta, u8 rssi_level,
38 				 bool update_bw);
39 void rtl92ce_update_channel_access_setting(struct ieee80211_hw *hw);
40 bool rtl92ce_gpio_radio_on_off_checking(struct ieee80211_hw *hw, u8 *valid);
41 void rtl92ce_enable_hw_security_config(struct ieee80211_hw *hw);
42 void 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 
46 void rtl8192ce_read_bt_coexist_info_from_hwpg(struct ieee80211_hw *hw,
47 			bool autoload_fail, u8 *hwinfo);
48 void rtl8192ce_bt_reg_init(struct ieee80211_hw *hw);
49 void rtl8192ce_bt_hw_init(struct ieee80211_hw *hw);
50 void rtl92ce_suspend(struct ieee80211_hw *hw);
51 void rtl92ce_resume(struct ieee80211_hw *hw);
52 
53 #endif
54