cdp_txrx_cmn_reg.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /*
  2. * Copyright (c) 2011-2019 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. /**
  19. * @file cdp_txrx_cmn.h
  20. * @brief Define the host data path converged API functions
  21. * called by the host control SW and the OS interface module
  22. */
  23. #ifndef _CDP_TXRX_CMN_REG_H_
  24. #define _CDP_TXRX_CMN_REG_H_
  25. #include "hif_main.h"
  26. #define MOB_DRV_LEGACY_DP 0xdeed/*FIXME Add MCL device IDs */
  27. #define LITHIUM_DP 0xfffd/*FIXME Add Litium device ID */
  28. /* Use these device IDs for attach in future */
  29. ol_txrx_soc_handle ol_txrx_soc_attach(void *scn_handle, struct ol_if_ops *dp_ol_if_ops);
  30. /**
  31. * dp_soc_attach_wifi3() - Attach txrx SOC
  32. * @ctrl_psoc: Opaque SOC handle from Ctrl plane
  33. * @htc_handle: Opaque HTC handle
  34. * @hif_handle: Opaque HIF handle
  35. * @qdf_osdev: QDF device
  36. * @ol_ops: Offload Operations
  37. * @device_id: Device ID
  38. *
  39. * Return: DP SOC handle on success, NULL on failure
  40. */
  41. /**
  42. * dp_soc_init_wifi3() - Initialize txrx SOC
  43. * @soc: Opaque DP SOC handle
  44. * @ctrl_psoc: Opaque SOC handle from control plane
  45. * @hif_handle: Opaque HIF handle
  46. * @htc_handle: Opaque HTC handle
  47. * @qdf_osdev: QDF device
  48. * @ol_ops: Offload Operations
  49. * @device_id: Device ID
  50. *
  51. * Return: DP SOC handle on success, NULL on failure
  52. */
  53. #if defined(QCA_WIFI_QCA8074) || defined(QCA_WIFI_QCA6018)
  54. void *dp_soc_attach_wifi3(struct cdp_ctrl_objmgr_psoc *ctrl_psoc,
  55. void *hif_handle,
  56. HTC_HANDLE htc_handle, qdf_device_t qdf_osdev,
  57. struct ol_if_ops *ol_ops, uint16_t device_id);
  58. void *dp_soc_init_wifi3(void *soc, struct cdp_ctrl_objmgr_psoc *ctrl_psoc,
  59. void *hif_handle,
  60. HTC_HANDLE htc_handle, qdf_device_t qdf_osdev,
  61. struct ol_if_ops *ol_ops, uint16_t device_id);
  62. #else
  63. static inline void *dp_soc_attach_wifi3(struct cdp_ctrl_objmgr_psoc *ctrl_psoc,
  64. void *hif_handle,
  65. HTC_HANDLE htc_handle,
  66. qdf_device_t qdf_osdev,
  67. struct ol_if_ops *ol_ops,
  68. uint16_t device_id)
  69. {
  70. return NULL;
  71. }
  72. static inline
  73. void *dp_soc_init_wifi3(void *soc, struct cdp_ctrl_objmgr_psoc *ctrl_psoc,
  74. void *hif_handle,
  75. HTC_HANDLE htc_handle, qdf_device_t qdf_osdev,
  76. struct ol_if_ops *ol_ops, uint16_t device_id)
  77. {
  78. return NULL;
  79. }
  80. #endif /* QCA_WIFI_QCA8074 */
  81. static inline ol_txrx_soc_handle cdp_soc_attach(
  82. u_int16_t devid, void *hif_handle, void *psoc,
  83. HTC_HANDLE htc_handle, qdf_device_t qdf_dev,
  84. struct ol_if_ops *dp_ol_if_ops)
  85. {
  86. switch (devid) {
  87. case LITHIUM_DP: /*FIXME Add lithium devide IDs */
  88. case QCA8074_DEVICE_ID: /* Hawekeye */
  89. case QCA8074V2_DEVICE_ID: /* Hawekeye V2*/
  90. case QCA6290_DEVICE_ID:
  91. case QCA6390_DEVICE_ID:
  92. case QCA6390_EMULATION_DEVICE_ID:
  93. case RUMIM2M_DEVICE_ID_NODE0: /*lithium emulation */
  94. case RUMIM2M_DEVICE_ID_NODE1: /*lithium emulation */
  95. case RUMIM2M_DEVICE_ID_NODE2: /*lithium emulation */
  96. case RUMIM2M_DEVICE_ID_NODE3: /*lithium emulation */
  97. case RUMIM2M_DEVICE_ID_NODE4: /*lithium emulation */
  98. case RUMIM2M_DEVICE_ID_NODE5: /*lithium emulation */
  99. return dp_soc_attach_wifi3(psoc, hif_handle, htc_handle,
  100. qdf_dev, dp_ol_if_ops, devid);
  101. break;
  102. default:
  103. return ol_txrx_soc_attach(psoc, dp_ol_if_ops);
  104. }
  105. return NULL;
  106. }
  107. #endif /*_CDP_TXRX_CMN_REG_H_ */