OSDN Git Service

Add rtl8821ce driver version 5.5.2
[android-x86/external-kernel-drivers.git] / rtl8821ce / include / hal_sdio.h
1 /******************************************************************************
2  *
3  * Copyright(c) 2007 - 2017 Realtek Corporation.
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of version 2 of the GNU General Public License as
7  * published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12  * more details.
13  *
14  *****************************************************************************/
15 #ifndef __HAL_SDIO_H_
16 #define __HAL_SDIO_H_
17
18 #define ffaddr2deviceId(pdvobj, addr)   (pdvobj->Queue2Pipe[addr])
19
20 u8 rtw_hal_sdio_max_txoqt_free_space(_adapter *padapter);
21 u8 rtw_hal_sdio_query_tx_freepage(_adapter *padapter, u8 PageIdx, u8 RequiredPageNum);
22 void rtw_hal_sdio_update_tx_freepage(_adapter *padapter, u8 PageIdx, u8 RequiredPageNum);
23 void rtw_hal_set_sdio_tx_max_length(PADAPTER padapter, u8 numHQ, u8 numNQ, u8 numLQ, u8 numPubQ, u8 div_num);
24 u32 rtw_hal_get_sdio_tx_max_length(PADAPTER padapter, u8 queue_idx);
25 bool sdio_power_on_check(PADAPTER padapter);
26
27 #ifdef CONFIG_FW_C2H_REG
28 void sd_c2h_hisr_hdl(_adapter *adapter);
29 #endif
30
31 #if defined(CONFIG_RTL8188F) || defined (CONFIG_RTL8188GTV) || defined (CONFIG_RTL8192F)
32 #define SDIO_LOCAL_CMD_ADDR(addr) ((SDIO_LOCAL_DEVICE_ID << 13) | ((addr) & SDIO_LOCAL_MSK))
33 #endif
34
35 #ifdef CONFIG_SDIO_CHK_HCI_RESUME
36 bool sdio_chk_hci_resume(struct intf_hdl *pintfhdl);
37 void sdio_chk_hci_suspend(struct intf_hdl *pintfhdl);
38 #else
39 #define sdio_chk_hci_resume(pintfhdl) _FALSE
40 #define sdio_chk_hci_suspend(pintfhdl) do {} while (0)
41 #endif /* CONFIG_SDIO_CHK_HCI_RESUME */
42
43 #ifdef CONFIG_SDIO_INDIRECT_ACCESS
44 /* program indirect access register in sdio local to read/write page0 registers */
45 s32 sdio_iread(PADAPTER padapter, u32 addr, u8 size, u8 *v);
46 s32 sdio_iwrite(PADAPTER padapter, u32 addr, u8 size, u8 *v);
47 u8 sdio_iread8(struct intf_hdl *pintfhdl, u32 addr);
48 u16 sdio_iread16(struct intf_hdl *pintfhdl, u32 addr);
49 u32 sdio_iread32(struct intf_hdl *pintfhdl, u32 addr);
50 s32 sdio_iwrite8(struct intf_hdl *pintfhdl, u32 addr, u8 val);
51 s32 sdio_iwrite16(struct intf_hdl *pintfhdl, u32 addr, u16 val);
52 s32 sdio_iwrite32(struct intf_hdl *pintfhdl, u32 addr, u32 val);
53 #endif /* CONFIG_SDIO_INDIRECT_ACCESS */
54 u32 cmd53_4byte_alignment(struct intf_hdl *pintfhdl, u32 addr);
55
56 #endif /* __HAL_SDIO_H_ */