1
0
Fork 0
mirror of synced 2025-03-06 20:59:54 +01:00

wifi: rtlwifi: Add rtl8192du/hw.{c,h}

These contain mostly hardware init/deinit routines for RTL8192DU.

Signed-off-by: Bitterblue Smith <rtl8821cerfe2@gmail.com>
Signed-off-by: Ping-Ke Shih <pkshih@realtek.com>
Link: https://msgid.link/282afe18-f37d-45f7-9275-68c39d1fde09@gmail.com
This commit is contained in:
Bitterblue Smith 2024-05-23 17:45:31 +03:00 committed by Ping-Ke Shih
parent dc71f4e142
commit e769c67105
2 changed files with 1234 additions and 0 deletions

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,22 @@
/* SPDX-License-Identifier: GPL-2.0 */
/* Copyright(c) 2024 Realtek Corporation.*/
#ifndef __RTL92DU_HW_H__
#define __RTL92DU_HW_H__
void rtl92du_get_hw_reg(struct ieee80211_hw *hw, u8 variable, u8 *val);
void rtl92du_set_hw_reg(struct ieee80211_hw *hw, u8 variable, u8 *val);
void rtl92du_read_chip_version(struct ieee80211_hw *hw);
int rtl92du_hw_init(struct ieee80211_hw *hw);
void rtl92du_card_disable(struct ieee80211_hw *hw);
void rtl92du_enable_interrupt(struct ieee80211_hw *hw);
void rtl92du_disable_interrupt(struct ieee80211_hw *hw);
int rtl92du_set_network_type(struct ieee80211_hw *hw, enum nl80211_iftype type);
void rtl92du_set_check_bssid(struct ieee80211_hw *hw, bool check_bssid);
void rtl92du_set_beacon_related_registers(struct ieee80211_hw *hw);
void rtl92du_set_beacon_interval(struct ieee80211_hw *hw);
void rtl92du_update_interrupt_mask(struct ieee80211_hw *hw,
u32 add_msr, u32 rm_msr);
void rtl92du_linked_set_reg(struct ieee80211_hw *hw);
#endif