xref: /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852bs/include/sdio_ops_linux.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /******************************************************************************
2*4882a593Smuzhiyun  *
3*4882a593Smuzhiyun  * Copyright(c) 2007 - 2019 Realtek Corporation.
4*4882a593Smuzhiyun  *
5*4882a593Smuzhiyun  * This program is free software; you can redistribute it and/or modify it
6*4882a593Smuzhiyun  * under the terms of version 2 of the GNU General Public License as
7*4882a593Smuzhiyun  * published by the Free Software Foundation.
8*4882a593Smuzhiyun  *
9*4882a593Smuzhiyun  * This program is distributed in the hope that it will be useful, but WITHOUT
10*4882a593Smuzhiyun  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11*4882a593Smuzhiyun  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12*4882a593Smuzhiyun  * more details.
13*4882a593Smuzhiyun  *
14*4882a593Smuzhiyun  *****************************************************************************/
15*4882a593Smuzhiyun #ifndef __SDIO_OPS_LINUX_H__
16*4882a593Smuzhiyun #define __SDIO_OPS_LINUX_H__
17*4882a593Smuzhiyun 
18*4882a593Smuzhiyun #define SDIO_ERR_VAL8	0xFF
19*4882a593Smuzhiyun #define SDIO_ERR_VAL16	0xFFFF
20*4882a593Smuzhiyun #define SDIO_ERR_VAL32	0xFFFFFFFF
21*4882a593Smuzhiyun 
22*4882a593Smuzhiyun 
23*4882a593Smuzhiyun bool rtw_is_sdio30(struct dvobj_priv *d);
24*4882a593Smuzhiyun u32 rtw_sdio_get_clock(struct dvobj_priv *d);
25*4882a593Smuzhiyun 
26*4882a593Smuzhiyun 
27*4882a593Smuzhiyun s32 _sd_read(struct dvobj_priv *d, u32 addr, u32 cnt, void *pdata);
28*4882a593Smuzhiyun s32 sd_read(struct dvobj_priv *d, u32 addr, u32 cnt, void *pdata);
29*4882a593Smuzhiyun s32 _sd_write(struct dvobj_priv *d, u32 addr, u32 cnt, void *pdata);
30*4882a593Smuzhiyun s32 sd_write(struct dvobj_priv *d, u32 addr, u32 cnt, void *pdata);
31*4882a593Smuzhiyun 
32*4882a593Smuzhiyun void rtw_sdio_set_irq_thd(struct dvobj_priv *d, _thread_hdl_ thd_hdl);
33*4882a593Smuzhiyun int __must_check rtw_sdio_raw_read(struct dvobj_priv *d, unsigned int addr,
34*4882a593Smuzhiyun 				void *buf, size_t len, bool fixed);
35*4882a593Smuzhiyun int __must_check rtw_sdio_raw_write(struct dvobj_priv *d, unsigned int addr,
36*4882a593Smuzhiyun 				void *buf, size_t len, bool fixed);
37*4882a593Smuzhiyun 
38*4882a593Smuzhiyun #endif /* __SDIO_OPS_LINUX_H__ */
39*4882a593Smuzhiyun 
40