123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
-
- #ifndef _CDP_TXRX_CMN_REG_H_
- #define _CDP_TXRX_CMN_REG_H_
- #include "hif_main.h"
- #define MOB_DRV_LEGACY_DP 0xdeed
- #define LITHIUM_DP 0xfffe
- ol_txrx_soc_handle ol_txrx_soc_attach(struct ol_if_ops *dp_ol_if_ops);
- #ifdef QCA_WIFI_QCA8074
- void *dp_soc_attach_wifi3(void *osif_soc, void *hif_handle,
- HTC_HANDLE htc_handle, qdf_device_t qdf_osdev,
- struct ol_if_ops *ol_ops);
- #else
- static inline void *dp_soc_attach_wifi3(void *osif_soc, void *hif_handle,
- HTC_HANDLE htc_handle, qdf_device_t qdf_osdev,
- struct ol_if_ops *ol_ops)
- {
- return NULL;
- }
- #endif
- static inline ol_txrx_soc_handle cdp_soc_attach(u_int16_t devid,
- void *hif_handle, void *scn, void *htc_handle,
- qdf_device_t qdf_dev, struct ol_if_ops *dp_ol_if_ops)
- {
- switch (devid) {
- case LITHIUM_DP:
- case QCA8074_DEVICE_ID:
- case RUMIM2M_DEVICE_ID_NODE0:
- case RUMIM2M_DEVICE_ID_NODE1:
- return dp_soc_attach_wifi3(scn, hif_handle, htc_handle,
- qdf_dev, dp_ol_if_ops);
- break;
- default:
- return ol_txrx_soc_attach(dp_ol_if_ops);
- }
- return NULL;
- }
- #endif
|