2015-08-18 19:03:09 +00:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
2019-11-09 10:12:08 +00:00
|
|
|
* Copyright(c) 2007 - 2017 Realtek Corporation.
|
|
|
|
*
|
2015-08-18 19:03:09 +00:00
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
2019-11-09 10:12:08 +00:00
|
|
|
*****************************************************************************/
|
2015-08-18 19:03:09 +00:00
|
|
|
#ifndef __HAL_SDIO_H_
|
|
|
|
#define __HAL_SDIO_H_
|
|
|
|
|
|
|
|
#define ffaddr2deviceId(pdvobj, addr) (pdvobj->Queue2Pipe[addr])
|
|
|
|
|
|
|
|
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);
|
2019-11-09 10:12:08 +00:00
|
|
|
void rtw_hal_set_sdio_tx_max_length(PADAPTER padapter, u8 numHQ, u8 numNQ, u8 numLQ, u8 numPubQ, u8 div_num);
|
2015-08-18 19:03:09 +00:00
|
|
|
u32 rtw_hal_get_sdio_tx_max_length(PADAPTER padapter, u8 queue_idx);
|
2019-11-09 10:12:08 +00:00
|
|
|
bool sdio_power_on_check(PADAPTER padapter);
|
|
|
|
|
|
|
|
#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 */
|
2015-08-18 19:03:09 +00:00
|
|
|
|
2019-11-09 10:12:08 +00:00
|
|
|
#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);
|
2015-08-18 19:03:09 +00:00
|
|
|
|
2019-11-09 10:12:08 +00:00
|
|
|
#endif /* __HAL_SDIO_H_ */
|