net: wireless: rockchip_wlan: add rtl8188eu support
[firefly-linux-kernel-4.4.55.git] / drivers / net / wireless / rockchip_wlan / rtl8188eu / include / sdio_ops_linux.h
1 /******************************************************************************
2  *
3  * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
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  * You should have received a copy of the GNU General Public License along with
15  * this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
17  *
18  *
19  ******************************************************************************/
20 #ifndef __SDIO_OPS_LINUX_H__
21 #define __SDIO_OPS_LINUX_H__
22
23 #define SDIO_ERR_VAL8   0xEA
24 #define SDIO_ERR_VAL16  0xEAEA
25 #define SDIO_ERR_VAL32  0xEAEAEAEA
26
27 u8 sd_f0_read8(struct intf_hdl *pintfhdl, u32 addr, s32 *err);
28 void sd_f0_write8(struct intf_hdl *pintfhdl, u32 addr, u8 v, s32 *err);
29
30 s32 _sd_cmd52_read(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *pdata);
31 s32 _sd_cmd52_write(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *pdata);
32 s32 sd_cmd52_read(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *pdata);
33 s32 sd_cmd52_write(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *pdata);
34
35 u8 _sd_read8(struct intf_hdl *pintfhdl, u32 addr, s32 *err);
36 u8 sd_read8(struct intf_hdl *pintfhdl, u32 addr, s32 *err);
37 u16 sd_read16(struct intf_hdl *pintfhdl, u32 addr, s32 *err);
38 u32 _sd_read32(struct intf_hdl *pintfhdl, u32 addr, s32 *err);
39 u32 sd_read32(struct intf_hdl *pintfhdl, u32 addr, s32 *err);
40 s32 _sd_read(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, void *pdata);
41 s32 sd_read(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, void *pdata);
42 void sd_write8(struct intf_hdl *pintfhdl, u32 addr, u8 v, s32 *err);
43 void sd_write16(struct intf_hdl *pintfhdl, u32 addr, u16 v, s32 *err);
44 void _sd_write32(struct intf_hdl *pintfhdl, u32 addr, u32 v, s32 *err);
45 void sd_write32(struct intf_hdl *pintfhdl, u32 addr, u32 v, s32 *err);
46 s32 _sd_write(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, void *pdata);
47 s32 sd_write(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, void *pdata);
48
49
50 void rtw_sdio_set_irq_thd(struct dvobj_priv *dvobj, _thread_hdl_ thd_hdl);
51 #endif
52