hal_sdio.h 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. #define ffaddr2deviceId(pdvobj, addr) (pdvobj->Queue2Pipe[addr])
  18. u8 rtw_hal_sdio_max_txoqt_free_space(_adapter *padapter);
  19. u8 rtw_hal_sdio_query_tx_freepage(_adapter *padapter, u8 PageIdx, u8 RequiredPageNum);
  20. void rtw_hal_sdio_update_tx_freepage(_adapter *padapter, u8 PageIdx, u8 RequiredPageNum);
  21. void rtw_hal_set_sdio_tx_max_length(PADAPTER padapter, u8 numHQ, u8 numNQ, u8 numLQ, u8 numPubQ, u8 div_num);
  22. u32 rtw_hal_get_sdio_tx_max_length(PADAPTER padapter, u8 queue_idx);
  23. bool sdio_power_on_check(PADAPTER padapter);
  24. #ifdef CONFIG_FW_C2H_REG
  25. void sd_c2h_hisr_hdl(_adapter *adapter);
  26. #endif
  27. #if defined(CONFIG_RTL8188F) || defined (CONFIG_RTL8188GTV) || defined (CONFIG_RTL8192F)
  28. #define SDIO_LOCAL_CMD_ADDR(addr) ((SDIO_LOCAL_DEVICE_ID << 13) | ((addr) & SDIO_LOCAL_MSK))
  29. #endif
  30. #ifdef CONFIG_SDIO_CHK_HCI_RESUME
  31. bool sdio_chk_hci_resume(struct intf_hdl *pintfhdl);
  32. void sdio_chk_hci_suspend(struct intf_hdl *pintfhdl);
  33. #else
  34. #define sdio_chk_hci_resume(pintfhdl) _FALSE
  35. #define sdio_chk_hci_suspend(pintfhdl) do {} while (0)
  36. #endif /* CONFIG_SDIO_CHK_HCI_RESUME */
  37. #ifdef CONFIG_SDIO_INDIRECT_ACCESS
  38. /* program indirect access register in sdio local to read/write page0 registers */
  39. s32 sdio_iread(PADAPTER padapter, u32 addr, u8 size, u8 *v);
  40. s32 sdio_iwrite(PADAPTER padapter, u32 addr, u8 size, u8 *v);
  41. u8 sdio_iread8(struct intf_hdl *pintfhdl, u32 addr);
  42. u16 sdio_iread16(struct intf_hdl *pintfhdl, u32 addr);
  43. u32 sdio_iread32(struct intf_hdl *pintfhdl, u32 addr);
  44. s32 sdio_iwrite8(struct intf_hdl *pintfhdl, u32 addr, u8 val);
  45. s32 sdio_iwrite16(struct intf_hdl *pintfhdl, u32 addr, u16 val);
  46. s32 sdio_iwrite32(struct intf_hdl *pintfhdl, u32 addr, u32 val);
  47. #endif /* CONFIG_SDIO_INDIRECT_ACCESS */
  48. u32 cmd53_4byte_alignment(struct intf_hdl *pintfhdl, u32 addr);
  49. #endif /* __HAL_SDIO_H_ */