pwrseqcmd.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /* Copyright(c) 2009-2012 Realtek Corporation.*/
  3. #ifndef __RTL8723E_PWRSEQCMD_H__
  4. #define __RTL8723E_PWRSEQCMD_H__
  5. #include "wifi.h"
  6. /*---------------------------------------------
  7. * 3 The value of cmd: 4 bits
  8. *---------------------------------------------
  9. */
  10. #define PWR_CMD_READ 0x00
  11. #define PWR_CMD_WRITE 0x01
  12. #define PWR_CMD_POLLING 0x02
  13. #define PWR_CMD_DELAY 0x03
  14. #define PWR_CMD_END 0x04
  15. /* define the base address of each block */
  16. #define PWR_BASEADDR_MAC 0x00
  17. #define PWR_BASEADDR_USB 0x01
  18. #define PWR_BASEADDR_PCIE 0x02
  19. #define PWR_BASEADDR_SDIO 0x03
  20. #define PWR_INTF_SDIO_MSK BIT(0)
  21. #define PWR_INTF_USB_MSK BIT(1)
  22. #define PWR_INTF_PCI_MSK BIT(2)
  23. #define PWR_INTF_ALL_MSK (BIT(0)|BIT(1)|BIT(2)|BIT(3))
  24. #define PWR_FAB_TSMC_MSK BIT(0)
  25. #define PWR_FAB_UMC_MSK BIT(1)
  26. #define PWR_FAB_ALL_MSK (BIT(0)|BIT(1)|BIT(2)|BIT(3))
  27. #define PWR_CUT_TESTCHIP_MSK BIT(0)
  28. #define PWR_CUT_A_MSK BIT(1)
  29. #define PWR_CUT_B_MSK BIT(2)
  30. #define PWR_CUT_C_MSK BIT(3)
  31. #define PWR_CUT_D_MSK BIT(4)
  32. #define PWR_CUT_E_MSK BIT(5)
  33. #define PWR_CUT_F_MSK BIT(6)
  34. #define PWR_CUT_G_MSK BIT(7)
  35. #define PWR_CUT_ALL_MSK 0xFF
  36. enum pwrseq_delay_unit {
  37. PWRSEQ_DELAY_US,
  38. PWRSEQ_DELAY_MS,
  39. };
  40. struct wlan_pwr_cfg {
  41. u16 offset;
  42. u8 cut_msk;
  43. u8 fab_msk:4;
  44. u8 interface_msk:4;
  45. u8 base:4;
  46. u8 cmd:4;
  47. u8 msk;
  48. u8 value;
  49. };
  50. #define GET_PWR_CFG_OFFSET(__PWR_CMD) (__PWR_CMD.offset)
  51. #define GET_PWR_CFG_CUT_MASK(__PWR_CMD) (__PWR_CMD.cut_msk)
  52. #define GET_PWR_CFG_FAB_MASK(__PWR_CMD) (__PWR_CMD.fab_msk)
  53. #define GET_PWR_CFG_INTF_MASK(__PWR_CMD) (__PWR_CMD.interface_msk)
  54. #define GET_PWR_CFG_BASE(__PWR_CMD) (__PWR_CMD.base)
  55. #define GET_PWR_CFG_CMD(__PWR_CMD) (__PWR_CMD.cmd)
  56. #define GET_PWR_CFG_MASK(__PWR_CMD) (__PWR_CMD.msk)
  57. #define GET_PWR_CFG_VALUE(__PWR_CMD) (__PWR_CMD.value)
  58. bool rtl_hal_pwrseqcmdparsing(struct rtl_priv *rtlpriv, u8 cut_version,
  59. u8 fab_version, u8 interface_type,
  60. struct wlan_pwr_cfg pwrcfgcmd[]);
  61. #endif