cdp_txrx_peer_ops.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646
  1. /*
  2. * Copyright (c) 2016 The Linux Foundation. All rights reserved.
  3. *
  4. * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  5. *
  6. *
  7. * Permission to use, copy, modify, and/or distribute this software for
  8. * any purpose with or without fee is hereby granted, provided that the
  9. * above copyright notice and this permission notice appear in all
  10. * copies.
  11. *
  12. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  13. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  14. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  15. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  16. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  17. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  18. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  19. * PERFORMANCE OF THIS SOFTWARE.
  20. */
  21. /*
  22. * This file was originally distributed by Qualcomm Atheros, Inc.
  23. * under proprietary terms before Copyright ownership was assigned
  24. * to the Linux Foundation.
  25. */
  26. /**
  27. * @file cdp_txrx_peer.h
  28. * @brief Define the host data path peer API functions
  29. * called by the host control SW and the OS interface module
  30. */
  31. #ifndef _CDP_TXRX_PEER_H_
  32. #define _CDP_TXRX_PEER_H_
  33. #include <cdp_txrx_ops.h>
  34. /**
  35. * cdp_peer_register() - Register peer into physical device
  36. * @soc - data path soc handle
  37. * @pdev - data path device instance
  38. * @sta_desc - peer description
  39. *
  40. * Register peer into physical device
  41. *
  42. * Return: QDF_STATUS_SUCCESS registration success
  43. * QDF_STATUS_E_NOSUPPORT not support this feature
  44. */
  45. static inline QDF_STATUS
  46. cdp_peer_register(ol_txrx_soc_handle soc, void *pdev,
  47. struct ol_txrx_desc_type *sta_desc)
  48. {
  49. if (!soc || !soc->ops || !soc->ops->peer_ops) {
  50. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  51. "%s invalid instance", __func__);
  52. return QDF_STATUS_E_INVAL;
  53. }
  54. if (soc->ops->peer_ops->register_peer)
  55. return soc->ops->peer_ops->register_peer(pdev, sta_desc);
  56. return QDF_STATUS_E_NOSUPPORT;
  57. }
  58. /**
  59. * cdp_peer_clear() - remove peer from physical device
  60. * @soc - data path soc handle
  61. * @pdev - data path device instance
  62. * @sta_id - local peer id
  63. *
  64. * remove peer from physical device
  65. *
  66. * Return: QDF_STATUS_SUCCESS registration success
  67. * QDF_STATUS_E_NOSUPPORT not support this feature
  68. */
  69. static inline QDF_STATUS
  70. cdp_peer_clear(ol_txrx_soc_handle soc, void *pdev, uint8_t sta_id)
  71. {
  72. if (!soc || !soc->ops || !soc->ops->peer_ops) {
  73. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  74. "%s invalid instance", __func__);
  75. return QDF_STATUS_E_INVAL;
  76. }
  77. return QDF_STATUS_E_NOSUPPORT;
  78. }
  79. /**
  80. * cdp_peer_register_ocb_peer() - register ocb peer from physical device
  81. * @soc - data path soc handle
  82. * @cds_ctx - cds void context
  83. * @mac_addr - mac address for ocb self peer
  84. * @peer_id - local peer id
  85. *
  86. * register ocb peer from physical device
  87. *
  88. * Return: QDF_STATUS_SUCCESS registration success
  89. * QDF_STATUS_E_NOSUPPORT not support this feature
  90. */
  91. static inline QDF_STATUS
  92. cdp_peer_register_ocb_peer(ol_txrx_soc_handle soc, void *cds_ctx,
  93. uint8_t *mac_addr, uint8_t *peer_id)
  94. {
  95. if (!soc || !soc->ops || !soc->ops->peer_ops) {
  96. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  97. "%s invalid instance", __func__);
  98. return QDF_STATUS_E_INVAL;
  99. }
  100. if (soc->ops->peer_ops->register_ocb_peer)
  101. return soc->ops->peer_ops->register_ocb_peer(cds_ctx,
  102. mac_addr, peer_id);
  103. return QDF_STATUS_E_NOSUPPORT;
  104. }
  105. /**
  106. * cdp_peer_remove_for_vdev() - remove peer instance from virtual interface
  107. * @soc - data path soc handle
  108. * @vdev - virtual interface instance
  109. * @callback - remove done notification callback function pointer
  110. * @callback_context - callback caller context
  111. * @remove_last_peer - removed peer is last peer or not
  112. *
  113. * remove peer instance from virtual interface
  114. *
  115. * Return: NONE
  116. */
  117. static inline void
  118. cdp_peer_remove_for_vdev(ol_txrx_soc_handle soc,
  119. void *vdev, ol_txrx_vdev_peer_remove_cb callback,
  120. void *callback_context, bool remove_last_peer)
  121. {
  122. if (!soc || !soc->ops || !soc->ops->peer_ops) {
  123. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  124. "%s invalid instance", __func__);
  125. return;
  126. }
  127. if (soc->ops->peer_ops->remove_peers_for_vdev)
  128. return soc->ops->peer_ops->remove_peers_for_vdev(
  129. vdev, callback, callback_context, remove_last_peer);
  130. return;
  131. }
  132. /**
  133. * cdp_peer_find_by_addr() - Find peer by peer mac address
  134. * @soc - data path soc handle
  135. * @pdev - data path device instance
  136. * @peer_addr - peer mac address
  137. * @peer_id - local peer id with target mac address
  138. *
  139. * Find peer and local peer id by peer mac address
  140. *
  141. * Return: peer instance void pointer
  142. * NULL cannot find target peer
  143. */
  144. static inline void
  145. *cdp_peer_find_by_addr(ol_txrx_soc_handle soc, void *pdev,
  146. uint8_t *peer_addr, uint8_t *peer_id)
  147. {
  148. if (!soc || !soc->ops || !soc->ops->peer_ops) {
  149. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  150. "%s invalid instance", __func__);
  151. return NULL;
  152. }
  153. if (soc->ops->peer_ops->find_peer_by_addr)
  154. return soc->ops->peer_ops->find_peer_by_addr(
  155. pdev, peer_addr, peer_id);
  156. return NULL;
  157. }
  158. /**
  159. * cdp_peer_find_by_addr_and_vdev() - Find peer by peer mac address within vdev
  160. * @soc - data path soc handle
  161. * @pdev - data path device instance
  162. * @vdev - virtual interface instance
  163. * @peer_addr - peer mac address
  164. * @peer_id - local peer id with target mac address
  165. *
  166. * Find peer by peer mac address within vdev
  167. *
  168. * Return: peer instance void pointer
  169. * NULL cannot find target peer
  170. */
  171. static inline void
  172. *cdp_peer_find_by_addr_and_vdev(ol_txrx_soc_handle soc, void *pdev,
  173. void *vdev, uint8_t *peer_addr, uint8_t *peer_id)
  174. {
  175. if (!soc || !soc->ops || !soc->ops->peer_ops) {
  176. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  177. "%s invalid instance", __func__);
  178. return NULL;
  179. }
  180. if (soc->ops->peer_ops->find_peer_by_addr_and_vdev)
  181. return soc->ops->peer_ops->find_peer_by_addr_and_vdev(
  182. pdev, vdev, peer_addr, peer_id);
  183. return NULL;
  184. }
  185. /**
  186. * cdp_peer_find_by_local_id() - Find peer by local peer id
  187. * @soc - data path soc handle
  188. * @pdev - data path device instance
  189. * @local_peer_id - local peer id want to find
  190. *
  191. * Find peer by local peer id within physical device
  192. *
  193. * Return: peer instance void pointer
  194. * NULL cannot find target peer
  195. */
  196. static inline void
  197. *cdp_peer_find_by_local_id(ol_txrx_soc_handle soc, void *pdev,
  198. uint8_t local_peer_id)
  199. {
  200. if (!soc || !soc->ops || !soc->ops->peer_ops) {
  201. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  202. "%s invalid instance", __func__);
  203. return NULL;
  204. }
  205. if (soc->ops->peer_ops->peer_find_by_local_id)
  206. return soc->ops->peer_ops->peer_find_by_local_id(
  207. pdev, local_peer_id);
  208. return NULL;
  209. }
  210. /**
  211. * cdp_peer_state_update() - update peer local state
  212. * @soc - data path soc handle
  213. * @pdev - data path device instance
  214. * @peer_addr - peer mac address
  215. * @state - new peer local state
  216. *
  217. * update peer local state
  218. *
  219. * Return: QDF_STATUS_SUCCESS registration success
  220. * QDF_STATUS_E_NOSUPPORT not support this feature
  221. */
  222. static inline QDF_STATUS
  223. cdp_peer_state_update(ol_txrx_soc_handle soc, void *pdev,
  224. uint8_t *peer_addr, enum ol_txrx_peer_state state)
  225. {
  226. if (!soc || !soc->ops || !soc->ops->peer_ops) {
  227. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  228. "%s invalid instance", __func__);
  229. return QDF_STATUS_E_INVAL;
  230. }
  231. if (soc->ops->peer_ops->peer_state_update)
  232. return soc->ops->peer_ops->peer_state_update(
  233. pdev, peer_addr, state);
  234. return QDF_STATUS_E_NOSUPPORT;
  235. }
  236. /**
  237. * cdp_peer_state_get() - Get local peer state
  238. * @soc - data path soc handle
  239. * @peer - peer instance
  240. *
  241. * Get local peer state
  242. *
  243. * Return: peer status
  244. */
  245. static inline int
  246. cdp_peer_state_get(ol_txrx_soc_handle soc, void *peer)
  247. {
  248. if (!soc || !soc->ops || !soc->ops->peer_ops) {
  249. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  250. "%s invalid instance", __func__);
  251. return 0;
  252. }
  253. if (soc->ops->peer_ops->get_peer_state)
  254. return soc->ops->peer_ops->get_peer_state(peer);
  255. return 0;
  256. }
  257. /**
  258. * cdp_peer_get_local_peer_id() - Find local peer id within peer instance
  259. * @soc - data path soc handle
  260. * @peer - peer instance
  261. *
  262. * Find local peer id within peer instance
  263. *
  264. * Return: local peer id
  265. * HTT_INVALID_PEER Invalid peer
  266. */
  267. static inline uint16_t
  268. cdp_peer_get_local_peer_id(ol_txrx_soc_handle soc, void *peer)
  269. {
  270. if (!soc || !soc->ops || !soc->ops->peer_ops) {
  271. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  272. "%s invalid instance", __func__);
  273. return HTT_INVALID_PEER;
  274. }
  275. if (soc->ops->peer_ops->local_peer_id)
  276. return soc->ops->peer_ops->local_peer_id(peer);
  277. return HTT_INVALID_PEER;
  278. }
  279. /**
  280. * cdp_peer_get_vdevid() - Get virtaul interface id which peer registered
  281. * @soc - data path soc handle
  282. * @peer - peer instance
  283. * @vdev_id - virtaul interface id which peer registered
  284. *
  285. * Get virtaul interface id which peer registered
  286. *
  287. * Return: QDF_STATUS_SUCCESS registration success
  288. * QDF_STATUS_E_NOSUPPORT not support this feature
  289. */
  290. static inline QDF_STATUS
  291. cdp_peer_get_vdevid(ol_txrx_soc_handle soc, void *peer, uint8_t *vdev_id)
  292. {
  293. if (!soc || !soc->ops || !soc->ops->peer_ops) {
  294. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  295. "%s invalid instance", __func__);
  296. return QDF_STATUS_E_INVAL;
  297. }
  298. if (soc->ops->peer_ops->get_vdevid)
  299. return soc->ops->peer_ops->get_vdevid(peer, vdev_id);
  300. return QDF_STATUS_E_NOSUPPORT;
  301. }
  302. /**
  303. * cdp_peer_get_vdev_by_sta_id() - Get vdev instance by local peer id
  304. * @soc - data path soc handle
  305. * @sta_id - local peer id
  306. *
  307. * Get virtaul interface id by local peer id
  308. *
  309. * Return: Virtual interface instance
  310. * NULL in case cannot find
  311. */
  312. static inline void
  313. *cdp_peer_get_vdev_by_sta_id(ol_txrx_soc_handle soc, uint8_t sta_id)
  314. {
  315. if (!soc || !soc->ops || !soc->ops->peer_ops) {
  316. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  317. "%s invalid instance", __func__);
  318. return NULL;
  319. }
  320. if (soc->ops->peer_ops->get_vdev_by_sta_id)
  321. return soc->ops->peer_ops->get_vdev_by_sta_id(sta_id);
  322. return NULL;
  323. }
  324. /**
  325. * cdp_peer_get_peer_mac_addr() - Get peer mac address
  326. * @soc - data path soc handle
  327. * @peer - peer instance
  328. *
  329. * Get peer mac address
  330. *
  331. * Return: peer mac address pointer
  332. * NULL in case cannot find
  333. */
  334. static inline uint8_t
  335. *cdp_peer_get_peer_mac_addr(ol_txrx_soc_handle soc, void *peer)
  336. {
  337. if (!soc || !soc->ops || !soc->ops->peer_ops) {
  338. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  339. "%s invalid instance", __func__);
  340. return NULL;
  341. }
  342. if (soc->ops->peer_ops->peer_get_peer_mac_addr)
  343. return soc->ops->peer_ops->peer_get_peer_mac_addr(peer);
  344. return NULL;
  345. }
  346. /**
  347. * cdp_peer_get_vdev() - Get virtual interface instance which peer belongs
  348. * @soc - data path soc handle
  349. * @peer - peer instance
  350. *
  351. * Get virtual interface instance which peer belongs
  352. *
  353. * Return: virtual interface instance pointer
  354. * NULL in case cannot find
  355. */
  356. static inline void
  357. *cdp_peer_get_vdev(ol_txrx_soc_handle soc, void *peer)
  358. {
  359. if (!soc || !soc->ops || !soc->ops->peer_ops) {
  360. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  361. "%s invalid instance", __func__);
  362. return NULL;
  363. }
  364. if (soc->ops->peer_ops->get_vdev_for_peer)
  365. return soc->ops->peer_ops->get_vdev_for_peer(peer);
  366. return NULL;
  367. }
  368. /**
  369. * cdp_peer_update_ibss_add_peer_num_of_vdev() - update number of peer
  370. * @soc - data path soc handle
  371. * @vdev - virtual interface instance
  372. * @peer_num_delta - number of peer should be updated
  373. *
  374. * update number of peer
  375. *
  376. * Return: updated number of peer
  377. * 0 fail
  378. */
  379. static inline int16_t
  380. cdp_peer_update_ibss_add_peer_num_of_vdev(ol_txrx_soc_handle soc,
  381. void *vdev, int16_t peer_num_delta)
  382. {
  383. if (!soc || !soc->ops || !soc->ops->peer_ops) {
  384. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  385. "%s invalid instance", __func__);
  386. return 0;
  387. }
  388. if (soc->ops->peer_ops->update_ibss_add_peer_num_of_vdev)
  389. return soc->ops->peer_ops->update_ibss_add_peer_num_of_vdev(
  390. vdev, peer_num_delta);
  391. return 0;
  392. }
  393. /**
  394. * cdp_peer_copy_mac_addr_raw() - copy peer mac address
  395. * @soc - data path soc handle
  396. * @vdev - virtual interface instance
  397. * @bss_addr - mac address should be copied
  398. *
  399. * copy peer mac address
  400. *
  401. * Return: none
  402. */
  403. static inline void
  404. cdp_peer_copy_mac_addr_raw(ol_txrx_soc_handle soc,
  405. void *vdev, uint8_t *bss_addr)
  406. {
  407. if (!soc || !soc->ops || !soc->ops->peer_ops) {
  408. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  409. "%s invalid instance", __func__);
  410. return;
  411. }
  412. if (soc->ops->peer_ops->copy_mac_addr_raw)
  413. return soc->ops->peer_ops->copy_mac_addr_raw(vdev, bss_addr);
  414. return;
  415. }
  416. /**
  417. * cdp_peer_add_last_real_peer() - Add peer with last peer marking
  418. * @soc - data path soc handle
  419. * @pdev - data path device instance
  420. * @vdev - virtual interface instance
  421. * @peer_id - local peer id
  422. *
  423. * copy peer mac address
  424. *
  425. * Return: none
  426. */
  427. static inline void
  428. cdp_peer_add_last_real_peer(ol_txrx_soc_handle soc,
  429. void *pdev, void *vdev, uint8_t *peer_id)
  430. {
  431. if (!soc || !soc->ops || !soc->ops->peer_ops) {
  432. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  433. "%s invalid instance", __func__);
  434. return;
  435. }
  436. if (soc->ops->peer_ops->add_last_real_peer)
  437. return soc->ops->peer_ops->add_last_real_peer(
  438. pdev, vdev, peer_id);
  439. return;
  440. }
  441. /**
  442. * cdp_peer_last_assoc_received() - last assoc received peer
  443. * @soc - data path soc handle
  444. * @peer - peer instance pointer
  445. *
  446. * !!! This should be implemented on legacy also
  447. * last assoc received peer
  448. *
  449. * Return: pointer
  450. */
  451. static inline qdf_time_t *
  452. cdp_peer_last_assoc_received(ol_txrx_soc_handle soc, void *peer)
  453. {
  454. if (!soc || !soc->ops || !soc->ops->peer_ops) {
  455. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  456. "%s invalid instance", __func__);
  457. return NULL;
  458. }
  459. if (soc->ops->peer_ops->last_assoc_received)
  460. return soc->ops->peer_ops->last_assoc_received(peer);
  461. return NULL;
  462. }
  463. /**
  464. * cdp_peer_last_disassoc_received() - last disassoc received peer
  465. * @soc - data path soc handle
  466. * @peer - peer instance pointer
  467. *
  468. * !!! This should be implemented on legacy also
  469. * last disassoc received peer
  470. *
  471. * Return: pointer
  472. */
  473. static inline qdf_time_t *
  474. cdp_peer_last_disassoc_received(ol_txrx_soc_handle soc, void *peer)
  475. {
  476. if (!soc || !soc->ops || !soc->ops->peer_ops) {
  477. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  478. "%s invalid instance", __func__);
  479. return NULL;
  480. }
  481. if (soc->ops->peer_ops->last_disassoc_received)
  482. return soc->ops->peer_ops->last_disassoc_received(peer);
  483. return NULL;
  484. }
  485. /**
  486. * cdp_peer_last_deauth_received() - last deauth received peer
  487. * @soc - data path soc handle
  488. * @peer - peer instance pointer
  489. *
  490. * !!! This should be implemented on legacy also
  491. * last deauth received peer
  492. *
  493. * Return: pointer
  494. */
  495. static inline qdf_time_t *
  496. cdp_peer_last_deauth_received(ol_txrx_soc_handle soc, void *peer)
  497. {
  498. if (!soc || !soc->ops || !soc->ops->peer_ops) {
  499. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  500. "%s invalid instance", __func__);
  501. return NULL;
  502. }
  503. if (soc->ops->peer_ops->last_deauth_received)
  504. return soc->ops->peer_ops->last_deauth_received(peer);
  505. return NULL;
  506. }
  507. /**
  508. * cdp_peer_is_vdev_restore_last_peer() - restore last peer
  509. * @soc - data path soc handle
  510. * @peer - peer instance pointer
  511. *
  512. * restore last peer
  513. *
  514. * Return: true, restore success
  515. * fasle, restore fail
  516. */
  517. static inline bool
  518. cdp_peer_is_vdev_restore_last_peer(ol_txrx_soc_handle soc, void *peer)
  519. {
  520. if (!soc || !soc->ops || !soc->ops->peer_ops) {
  521. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  522. "%s invalid instance", __func__);
  523. return false;
  524. }
  525. if (soc->ops->peer_ops->is_vdev_restore_last_peer)
  526. return soc->ops->peer_ops->is_vdev_restore_last_peer(peer);
  527. return false;
  528. }
  529. /**
  530. * cdp_peer_update_last_real_peer() - update last real peer
  531. * @soc - data path soc handle
  532. * @pdev - data path device instance
  533. * @peer - peer instance pointer
  534. * @peer_id - local peer id
  535. * @restore_last_peer - restore last peer or not
  536. *
  537. * update last real peer
  538. *
  539. * Return: none
  540. */
  541. static inline void
  542. cdp_peer_update_last_real_peer(ol_txrx_soc_handle soc, void *pdev,
  543. void *peer, uint8_t *peer_id, bool restore_last_peer)
  544. {
  545. if (!soc || !soc->ops || !soc->ops->peer_ops) {
  546. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  547. "%s invalid instance", __func__);
  548. return;
  549. }
  550. if (soc->ops->peer_ops->update_last_real_peer)
  551. return soc->ops->peer_ops->update_last_real_peer(pdev, peer,
  552. peer_id, restore_last_peer);
  553. return;
  554. }
  555. /**
  556. * ol_txrx_peer_detach_force_delete() - Detach and delete a peer's data object
  557. * @peer - the object to detach
  558. *
  559. * Detach a peer and force the peer object to be removed. It is called during
  560. * roaming scenario when the firmware has already deleted a peer.
  561. * Peer object is freed immediately to avoid duplicate peers during roam sync
  562. * indication processing.
  563. *
  564. * Return: None
  565. */
  566. static inline void cdp_peer_detach_force_delete(ol_txrx_soc_handle soc,
  567. void *peer)
  568. {
  569. if (!soc || !soc->ops || !soc->ops->peer_ops) {
  570. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  571. "%s invalid instance", __func__);
  572. return;
  573. }
  574. if (soc->ops->peer_ops->peer_detach_force_delete)
  575. return soc->ops->peer_ops->peer_detach_force_delete(peer);
  576. return;
  577. }
  578. #endif /* _CDP_TXRX_PEER_H_ */