mirror of
https://github.com/Mange/rtl8192eu-linux-driver
synced 2025-12-10 00:04:17 +00:00
Add version v5.6.4
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
/******************************************************************************
|
||||
*
|
||||
* Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
|
||||
*
|
||||
* Copyright(c) 2007 - 2017 Realtek Corporation.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms of version 2 of the GNU General Public License as
|
||||
* published by the Free Software Foundation.
|
||||
@@ -11,12 +11,7 @@
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
* more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along with
|
||||
* this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
|
||||
*
|
||||
*
|
||||
******************************************************************************/
|
||||
*****************************************************************************/
|
||||
#ifndef __HAL_SDIO_H_
|
||||
#define __HAL_SDIO_H_
|
||||
|
||||
@@ -25,8 +20,37 @@
|
||||
u8 rtw_hal_sdio_max_txoqt_free_space(_adapter *padapter);
|
||||
u8 rtw_hal_sdio_query_tx_freepage(_adapter *padapter, u8 PageIdx, u8 RequiredPageNum);
|
||||
void rtw_hal_sdio_update_tx_freepage(_adapter *padapter, u8 PageIdx, u8 RequiredPageNum);
|
||||
void rtw_hal_set_sdio_tx_max_length(PADAPTER padapter, u8 numHQ, u8 numNQ, u8 numLQ, u8 numPubQ);
|
||||
void rtw_hal_set_sdio_tx_max_length(PADAPTER padapter, u8 numHQ, u8 numNQ, u8 numLQ, u8 numPubQ, u8 div_num);
|
||||
u32 rtw_hal_get_sdio_tx_max_length(PADAPTER padapter, u8 queue_idx);
|
||||
bool sdio_power_on_check(PADAPTER padapter);
|
||||
|
||||
#endif //__RTW_LED_H_
|
||||
#ifdef CONFIG_FW_C2H_REG
|
||||
void sd_c2h_hisr_hdl(_adapter *adapter);
|
||||
#endif
|
||||
|
||||
#if defined(CONFIG_RTL8188F) || defined (CONFIG_RTL8188GTV) || defined (CONFIG_RTL8192F)
|
||||
#define SDIO_LOCAL_CMD_ADDR(addr) ((SDIO_LOCAL_DEVICE_ID << 13) | ((addr) & SDIO_LOCAL_MSK))
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_SDIO_CHK_HCI_RESUME
|
||||
bool sdio_chk_hci_resume(struct intf_hdl *pintfhdl);
|
||||
void sdio_chk_hci_suspend(struct intf_hdl *pintfhdl);
|
||||
#else
|
||||
#define sdio_chk_hci_resume(pintfhdl) _FALSE
|
||||
#define sdio_chk_hci_suspend(pintfhdl) do {} while (0)
|
||||
#endif /* CONFIG_SDIO_CHK_HCI_RESUME */
|
||||
|
||||
#ifdef CONFIG_SDIO_INDIRECT_ACCESS
|
||||
/* program indirect access register in sdio local to read/write page0 registers */
|
||||
s32 sdio_iread(PADAPTER padapter, u32 addr, u8 size, u8 *v);
|
||||
s32 sdio_iwrite(PADAPTER padapter, u32 addr, u8 size, u8 *v);
|
||||
u8 sdio_iread8(struct intf_hdl *pintfhdl, u32 addr);
|
||||
u16 sdio_iread16(struct intf_hdl *pintfhdl, u32 addr);
|
||||
u32 sdio_iread32(struct intf_hdl *pintfhdl, u32 addr);
|
||||
s32 sdio_iwrite8(struct intf_hdl *pintfhdl, u32 addr, u8 val);
|
||||
s32 sdio_iwrite16(struct intf_hdl *pintfhdl, u32 addr, u16 val);
|
||||
s32 sdio_iwrite32(struct intf_hdl *pintfhdl, u32 addr, u32 val);
|
||||
#endif /* CONFIG_SDIO_INDIRECT_ACCESS */
|
||||
u32 cmd53_4byte_alignment(struct intf_hdl *pintfhdl, u32 addr);
|
||||
|
||||
#endif /* __HAL_SDIO_H_ */
|
||||
|
||||
Reference in New Issue
Block a user