sdio_ops_linux.h 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. #ifndef RTW_HALMAC
  23. u8 sd_f0_read8(struct intf_hdl *pintfhdl, u32 addr, s32 *err);
  24. void sd_f0_write8(struct intf_hdl *pintfhdl, u32 addr, u8 v, s32 *err);
  25. s32 _sd_cmd52_read(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *pdata);
  26. s32 _sd_cmd52_write(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *pdata);
  27. s32 sd_cmd52_read(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *pdata);
  28. s32 sd_cmd52_write(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *pdata);
  29. u8 _sd_read8(struct intf_hdl *pintfhdl, u32 addr, s32 *err);
  30. u8 sd_read8(struct intf_hdl *pintfhdl, u32 addr, s32 *err);
  31. u16 sd_read16(struct intf_hdl *pintfhdl, u32 addr, s32 *err);
  32. u32 _sd_read32(struct intf_hdl *pintfhdl, u32 addr, s32 *err);
  33. u32 sd_read32(struct intf_hdl *pintfhdl, u32 addr, s32 *err);
  34. void sd_write8(struct intf_hdl *pintfhdl, u32 addr, u8 v, s32 *err);
  35. void sd_write16(struct intf_hdl *pintfhdl, u32 addr, u16 v, s32 *err);
  36. void _sd_write32(struct intf_hdl *pintfhdl, u32 addr, u32 v, s32 *err);
  37. void sd_write32(struct intf_hdl *pintfhdl, u32 addr, u32 v, s32 *err);
  38. #endif /* RTW_HALMAC */
  39. bool rtw_is_sdio30(_adapter *adapter);
  40. inline u32 rtw_sdio_get_clock(struct dvobj_priv *d);
  41. s32 _sd_read(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, void *pdata);
  42. s32 sd_read(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, void *pdata);
  43. s32 _sd_write(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, void *pdata);
  44. s32 sd_write(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, void *pdata);
  45. void rtw_sdio_set_irq_thd(struct dvobj_priv *dvobj, _thread_hdl_ thd_hdl);
  46. int __must_check rtw_sdio_raw_read(struct dvobj_priv *d, unsigned int addr,
  47. void *buf, size_t len, bool fixed);
  48. int __must_check rtw_sdio_raw_write(struct dvobj_priv *d, unsigned int addr,
  49. void *buf, size_t len, bool fixed);
  50. #endif