os_if_son.h 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795
  1. /*
  2. * Copyright (c) 2021, The Linux Foundation. All rights reserved.
  3. * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
  4. *
  5. * Permission to use, copy, modify, and/or distribute this software for any
  6. * purpose with or without fee is hereby granted, provided that the above
  7. * copyright notice and this permission notice appear in all copies.
  8. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  9. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  10. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  11. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  12. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  13. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  14. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  15. */
  16. /**
  17. * DOC : os_if_son.h
  18. *
  19. * WLAN Host Device Driver file for son (Self Organizing Network)
  20. * support.
  21. *
  22. */
  23. #ifndef _OS_IF_SON_H_
  24. #define _OS_IF_SON_H_
  25. #include <qdf_types.h>
  26. #include <wlan_objmgr_vdev_obj.h>
  27. #include <wlan_objmgr_psoc_obj.h>
  28. #include <wlan_objmgr_pdev_obj.h>
  29. #include <wlan_reg_ucfg_api.h>
  30. #include <ieee80211_external.h>
  31. #define INVALID_WIDTH 0xFF
  32. /**
  33. * struct son_callbacks - struct containing callback to non-converged driver
  34. * @os_if_is_acs_in_progress: whether acs is in progress or not
  35. * @os_if_set_chan_ext_offset: set chan extend offset
  36. * @os_if_get_chan_ext_offset: get chan extend offset
  37. * @os_if_set_bandwidth: set band width
  38. * @os_if_get_bandwidth: get band width
  39. * @os_if_set_chan: set chan
  40. * @os_if_set_country_code: set country code
  41. * @os_if_set_candidate_freq: set freq to switch after radar detection
  42. * @os_if_get_candidate_freq: get freq to switch after radar detection
  43. * @os_if_set_phymode: set phy mode
  44. * @os_if_get_phymode: get phy mode
  45. * @os_if_get_rx_nss: Gets number of RX spatial streams
  46. * @os_if_set_acl_policy: set acl policy
  47. * @os_if_get_acl_policy: get acl policy
  48. * @os_if_add_acl_mac: add mac to acl
  49. * @os_if_del_acl_mac: del mac from acl
  50. * @os_if_kickout_mac: kickout sta with given mac
  51. * @os_if_set_chwidth: set chan width
  52. * @os_if_get_chwidth: get chan width
  53. * @os_if_get_sta_list: get sta list
  54. * @os_if_get_sta_space: get sta space
  55. * @os_if_deauth_sta: Deauths the target peer
  56. * @os_if_modify_acl: Add/Del target peer in ACL
  57. * @os_if_get_vdev_by_netdev: Get vdev from net device
  58. * @os_if_trigger_objmgr_object_creation: Trigger objmgr object creation
  59. * @os_if_trigger_objmgr_object_deletion: Trigger objmgr object deletion
  60. * @os_if_start_acs: Trigger ACS
  61. * @os_if_set_acs_channels: Set channel list for ACS
  62. * @os_if_get_acs_report: Gets the ACS report
  63. * @os_if_get_node_info: Gets the datarate info for node
  64. * @os_if_get_peer_capability: Gets peer capability
  65. * @os_if_get_peer_max_mcs_idx: Gets peer max MCS index
  66. * @os_if_get_sta_stats: Get sta stats
  67. */
  68. struct son_callbacks {
  69. uint32_t (*os_if_is_acs_in_progress)(struct wlan_objmgr_vdev *vdev);
  70. int (*os_if_set_chan_ext_offset)(
  71. struct wlan_objmgr_vdev *vdev,
  72. enum sec20_chan_offset son_chan_ext_offset);
  73. enum sec20_chan_offset (*os_if_get_chan_ext_offset)(
  74. struct wlan_objmgr_vdev *vdev);
  75. int (*os_if_set_bandwidth)(struct wlan_objmgr_vdev *vdev,
  76. uint32_t son_bandwidth);
  77. uint32_t (*os_if_get_bandwidth)(struct wlan_objmgr_vdev *vdev);
  78. int (*os_if_set_chan)(struct wlan_objmgr_vdev *vdev, int chan,
  79. enum wlan_band_id son_band);
  80. uint32_t (*os_if_get_sta_count)(struct wlan_objmgr_vdev *vdev);
  81. int (*os_if_set_country_code)(struct wlan_objmgr_vdev *vdev,
  82. char *country_code);
  83. int (*os_if_set_candidate_freq)(struct wlan_objmgr_vdev *vdev,
  84. qdf_freq_t freq);
  85. qdf_freq_t (*os_if_get_candidate_freq)(struct wlan_objmgr_vdev *vdev);
  86. int (*os_if_set_phymode)(struct wlan_objmgr_vdev *vdev,
  87. enum ieee80211_phymode mode);
  88. enum ieee80211_phymode (*os_if_get_phymode)(
  89. struct wlan_objmgr_vdev *vdev);
  90. uint8_t (*os_if_get_rx_nss)(struct wlan_objmgr_vdev *vdev);
  91. QDF_STATUS (*os_if_set_acl_policy)(struct wlan_objmgr_vdev *vdev,
  92. ieee80211_acl_cmd son_acl_policy);
  93. ieee80211_acl_cmd (*os_if_get_acl_policy)(
  94. struct wlan_objmgr_vdev *vdev);
  95. int (*os_if_add_acl_mac)(struct wlan_objmgr_vdev *vdev,
  96. struct qdf_mac_addr *acl_mac);
  97. int (*os_if_del_acl_mac)(struct wlan_objmgr_vdev *vdev,
  98. struct qdf_mac_addr *acl_mac);
  99. int (*os_if_kickout_mac)(struct wlan_objmgr_vdev *vdev,
  100. struct qdf_mac_addr *acl_mac);
  101. int (*os_if_set_chwidth)(struct wlan_objmgr_vdev *vdev,
  102. enum ieee80211_cwm_width son_chwidth);
  103. enum ieee80211_cwm_width (*os_if_get_chwidth)(
  104. struct wlan_objmgr_vdev *vdev);
  105. void (*os_if_get_sta_list)(struct wlan_objmgr_vdev *vdev,
  106. struct ieee80211req_sta_info *req,
  107. uint32_t *space);
  108. uint32_t (*os_if_get_sta_space)(struct wlan_objmgr_vdev *vdev);
  109. void (*os_if_deauth_sta)(struct wlan_objmgr_vdev *vdev,
  110. uint8_t *peer_mac,
  111. bool ignore_frame);
  112. void (*os_if_modify_acl)(struct wlan_objmgr_vdev *vdev,
  113. uint8_t *peer_mac,
  114. bool allow_auth);
  115. struct wlan_objmgr_vdev *(*os_if_get_vdev_by_netdev)
  116. (struct net_device *dev);
  117. QDF_STATUS (*os_if_trigger_objmgr_object_creation)
  118. (enum wlan_umac_comp_id id);
  119. QDF_STATUS (*os_if_trigger_objmgr_object_deletion)
  120. (enum wlan_umac_comp_id id);
  121. int (*os_if_start_acs)(struct wlan_objmgr_vdev *vdev, uint8_t enable);
  122. int (*os_if_set_acs_channels)(struct wlan_objmgr_vdev *vdev,
  123. struct ieee80211req_athdbg *req);
  124. int (*os_if_get_acs_report)(struct wlan_objmgr_vdev *vdev,
  125. struct ieee80211_acs_dbg *acs_r);
  126. QDF_STATUS (*os_if_get_node_info)(struct wlan_objmgr_vdev *vdev,
  127. uint8_t *mac_addr,
  128. wlan_node_info *nodeinfo);
  129. QDF_STATUS (*os_if_get_peer_capability)(struct wlan_objmgr_vdev *vdev,
  130. struct wlan_objmgr_peer *peer,
  131. wlan_peer_cap *cap);
  132. uint32_t (*os_if_get_peer_max_mcs_idx)(struct wlan_objmgr_vdev *vdev,
  133. struct wlan_objmgr_peer *peer);
  134. int (*os_if_get_sta_stats)(struct wlan_objmgr_vdev *vdev,
  135. uint8_t *mac_addr,
  136. struct ieee80211_nodestats *stats);
  137. };
  138. /**
  139. * enum os_if_son_vendor_cmd_type - Enum to specify get/set command
  140. * @OS_IF_SON_VENDOR_GET_CMD: Get type command called from wificonfiguration
  141. * vendor command handler
  142. * @OS_IF_SON_VENDOR_SET_CMD: Set type command called from wificonfiguration
  143. * vendor command handler
  144. * @OS_IF_SON_VENDOR_MAX_CMD: Max cmd type
  145. */
  146. enum os_if_son_vendor_cmd_type {
  147. OS_IF_SON_VENDOR_GET_CMD,
  148. OS_IF_SON_VENDOR_SET_CMD,
  149. OS_IF_SON_VENDOR_MAX_CMD,
  150. };
  151. /**
  152. * struct os_if_son_rx_ops - Contains cb for os_if rx ops used by SON
  153. * @parse_generic_nl_cmd: Callback for parsing generic nl vendor commands
  154. */
  155. struct os_if_son_rx_ops {
  156. int (*parse_generic_nl_cmd)(struct wiphy *wiphy,
  157. struct wireless_dev *wdev, void *params,
  158. enum os_if_son_vendor_cmd_type type);
  159. };
  160. /**
  161. * struct wlan_os_if_son_ops - Contains cb for os_if txrx ops used by SON
  162. * @son_osif_rx_ops: structure to contain rx ops
  163. */
  164. struct wlan_os_if_son_ops {
  165. struct os_if_son_rx_ops son_osif_rx_ops;
  166. };
  167. /**
  168. * wlan_os_if_son_ops_register_cb() - Set son os_if ops cb
  169. * @handler: son os_if ops cb table
  170. *
  171. * Return: void
  172. */
  173. void
  174. wlan_os_if_son_ops_register_cb(void (*handler)(struct wlan_os_if_son_ops *));
  175. /**
  176. * os_if_son_register_osif_ops() - Register son os_if ops with os_if
  177. *
  178. * Return: void
  179. */
  180. void os_if_son_register_osif_ops(void);
  181. /**
  182. * os_if_son_register_lmac_if_ops() - Register son lmac_if rx_ops with lmac
  183. * @psoc: objmrg psoc handle
  184. *
  185. * Register son lmac_if rx_ops with lmac to be called by SON DLKM
  186. *
  187. * Return: void
  188. */
  189. void os_if_son_register_lmac_if_ops(struct wlan_objmgr_psoc *psoc);
  190. /**
  191. * os_if_son_register_hdd_callbacks() - register son hdd callback
  192. * @psoc: psoc
  193. * @cb_obj: pointer to callback
  194. *
  195. * Return: void
  196. */
  197. void os_if_son_register_hdd_callbacks(struct wlan_objmgr_psoc *psoc,
  198. struct son_callbacks *cb_obj);
  199. /**
  200. * os_if_son_get_freq() - get freq
  201. * @vdev: vdev
  202. *
  203. * Return: freq of given vdev
  204. */
  205. qdf_freq_t os_if_son_get_freq(struct wlan_objmgr_vdev *vdev);
  206. /**
  207. * os_if_son_is_acs_in_progress() - whether ACS in progress or not
  208. * @vdev: vdev
  209. *
  210. * Return: true if ACS is in progress
  211. */
  212. uint32_t os_if_son_is_acs_in_progress(struct wlan_objmgr_vdev *vdev);
  213. /**
  214. * os_if_son_is_cac_in_progress() - whether CAC is in progress or not
  215. * @vdev: vdev
  216. *
  217. * Return: true if CAC is in progress
  218. */
  219. uint32_t os_if_son_is_cac_in_progress(struct wlan_objmgr_vdev *vdev);
  220. /**
  221. * os_if_son_set_chan_ext_offset() - set chan extend offset
  222. * @vdev: vdev
  223. * @son_chan_ext_offset son chan extend offset
  224. *
  225. * Return: 0 on success, negative errno on failure
  226. */
  227. int os_if_son_set_chan_ext_offset(struct wlan_objmgr_vdev *vdev,
  228. enum sec20_chan_offset son_chan_ext_offset);
  229. /**
  230. * os_if_son_get_chan_ext_offset() - get chan extend offset
  231. * @vdev: vdev
  232. *
  233. * Return: enum sec20_chan_offset
  234. */
  235. enum sec20_chan_offset os_if_son_get_chan_ext_offset(
  236. struct wlan_objmgr_vdev *vdev);
  237. /**
  238. * os_if_son_set_bandwidth() - set band width
  239. * @vdev: vdev
  240. * @son_bandwidth: band width
  241. *
  242. * Return: 0 on success, negative errno on failure
  243. */
  244. int os_if_son_set_bandwidth(struct wlan_objmgr_vdev *vdev,
  245. uint32_t son_bandwidth);
  246. /**
  247. * os_if_son_get_bandwidth() - get band width
  248. * @vdev: vdev
  249. *
  250. * Return: band width
  251. */
  252. uint32_t os_if_son_get_bandwidth(struct wlan_objmgr_vdev *vdev);
  253. /**
  254. * os_if_son_get_band_info() - get band info
  255. * @vdev: vdev
  256. *
  257. * Return: band info
  258. */
  259. uint32_t os_if_son_get_band_info(struct wlan_objmgr_vdev *vdev);
  260. /**
  261. * os_if_son_get_chan_list() - get a list of chan information
  262. * @vdev: vdev
  263. * @ic_chans: chan information array to get
  264. * @chan_info: pointer to ieee80211_channel_info to get
  265. * @ic_nchans: number of chan information it gets
  266. * @flag_160: flag indicating the API to fill the center frequencies of 160MHz.
  267. *
  268. * Return: 0 on success, negative errno on failure
  269. */
  270. int os_if_son_get_chan_list(struct wlan_objmgr_vdev *vdev,
  271. struct ieee80211_ath_channel *ic_chans,
  272. struct ieee80211_channel_info *chan_info,
  273. uint8_t *ic_nchans, bool flag_160);
  274. /**
  275. * os_if_son_get_sta_count() - get connected STA count
  276. * @vdev: vdev
  277. *
  278. * Return: connected STA count
  279. */
  280. uint32_t os_if_son_get_sta_count(struct wlan_objmgr_vdev *vdev);
  281. /**
  282. * os_if_son_get_bssid() - get bssid of given vdev
  283. * @vdev: vdev
  284. * @bssid: pointer to BSSID
  285. *
  286. * Return: 0 if BSSID is gotten successfully
  287. */
  288. int os_if_son_get_bssid(struct wlan_objmgr_vdev *vdev,
  289. uint8_t bssid[QDF_MAC_ADDR_SIZE]);
  290. /**
  291. * os_if_son_get_ssid() - get ssid of given vdev
  292. * @vdev: vdev
  293. * @ssid: pointer to SSID
  294. * @ssid_len: ssid length
  295. *
  296. * Return: 0 if SSID is gotten successfully
  297. */
  298. int os_if_son_get_ssid(struct wlan_objmgr_vdev *vdev,
  299. char ssid[WLAN_SSID_MAX_LEN + 1],
  300. uint8_t *ssid_len);
  301. /**
  302. * os_if_son_set_chan() - set chan
  303. * @vdev: vdev
  304. * @chan: given chan
  305. * @son_band: given band
  306. *
  307. * Return: 0 on success, negative errno on failure
  308. */
  309. int os_if_son_set_chan(struct wlan_objmgr_vdev *vdev,
  310. int chan, enum wlan_band_id son_band);
  311. /**
  312. * os_if_son_set_cac_timeout() - set cac timeout
  313. * @vdev: vdev
  314. * @cac_timeout: cac timeount to set
  315. *
  316. * Return: 0 if cac time out is set successfully
  317. */
  318. int os_if_son_set_cac_timeout(struct wlan_objmgr_vdev *vdev,
  319. int cac_timeout);
  320. /**
  321. * os_if_son_get_cac_timeout() - get cac timeout
  322. * @vdev: vdev
  323. * @cac_timeout: cac timeout to get
  324. *
  325. * Return 0 if cac time out is get successfully
  326. */
  327. int os_if_son_get_cac_timeout(struct wlan_objmgr_vdev *vdev,
  328. int *cac_timeout);
  329. /**
  330. * os_if_son_set_country_code() - set country code
  331. * @vdev: vdev
  332. * @country_code: country code to set
  333. *
  334. * Return: 0 if country code is set successfully
  335. */
  336. int os_if_son_set_country_code(struct wlan_objmgr_vdev *vdev,
  337. char *country_code);
  338. /**
  339. * os_if_son_get_country_code() - get country code
  340. * @vdev: vdev
  341. * @country_code: country code to get
  342. *
  343. * Return: 0 if country code is get successfully
  344. */
  345. int os_if_son_get_country_code(struct wlan_objmgr_vdev *vdev,
  346. char *country_code);
  347. /**
  348. * os_if_son_set_candidate_freq() - set freq to switch after radar detection
  349. * @vdev: vdev
  350. * @freq: freq to switch
  351. *
  352. * Return: 0 if candidate freq is set successfully
  353. */
  354. int os_if_son_set_candidate_freq(struct wlan_objmgr_vdev *vdev,
  355. qdf_freq_t freq);
  356. /**
  357. * os_if_son_get_candidate_freq() - get freq to switch after radar detection
  358. * @vdev: vdev
  359. *
  360. * Return: candidate freq to switch after radar detection
  361. */
  362. qdf_freq_t os_if_son_get_candidate_freq(struct wlan_objmgr_vdev *vdev);
  363. /**
  364. * os_if_son_get_phymode() - get phy mode
  365. * @vdev: vdev
  366. *
  367. * Return: enum ieee80211_phymode
  368. */
  369. enum ieee80211_phymode os_if_son_get_phymode(struct wlan_objmgr_vdev *vdev);
  370. /**
  371. * os_if_son_set_phymode() - set phy mode
  372. * @vdev: vdev
  373. * @mode: son phy mode to set
  374. *
  375. * Return: 0 on success, negative errno on failure
  376. */
  377. int os_if_son_set_phymode(struct wlan_objmgr_vdev *vdev,
  378. enum ieee80211_phymode mode);
  379. /**
  380. * os_if_son_get_phy_stats() - get phy stats
  381. * @vdev: vdev
  382. * @phy_stats: phy stats
  383. *
  384. * Return: void
  385. */
  386. void os_if_son_get_phy_stats(struct wlan_objmgr_vdev *vdev,
  387. struct ol_ath_radiostats *phy_stats);
  388. /**
  389. * os_if_son_cbs_init() - cbs init
  390. * @vdev: vdev
  391. *
  392. * Return: 0 on success, negative errno on failure
  393. */
  394. int os_if_son_cbs_init(void);
  395. /**
  396. * os_if_son_cbs_deinit() - cbs deinit
  397. * @vdev: vdev
  398. *
  399. * Return: 0 on success, negative errno on failure
  400. */
  401. int os_if_son_cbs_deinit(void);
  402. /**
  403. * os_if_son_set_cbs() - enable cbs or disable
  404. * @vdev: vdev
  405. * @enable: true or false
  406. *
  407. * Return: 0 on success, negative errno on failure
  408. */
  409. int os_if_son_set_cbs(struct wlan_objmgr_vdev *vdev,
  410. bool enable);
  411. /**
  412. * os_if_son_set_cbs_wait_time() - set cbs wait time
  413. * @vdev: vdev
  414. * @val: value
  415. *
  416. * Return: 0 on success, negative errno on failure
  417. */
  418. int os_if_son_set_cbs_wait_time(struct wlan_objmgr_vdev *vdev,
  419. uint32_t val);
  420. /**
  421. * os_if_son_set_cbs_dwell_split_time() - set cbs dwell split time
  422. * @vdev: vdev
  423. * @val: value
  424. *
  425. * Return: 0 on success, negative errno on failure
  426. */
  427. int os_if_son_set_cbs_dwell_split_time(struct wlan_objmgr_vdev *vdev,
  428. uint32_t val);
  429. /**
  430. * os_if_son_get_chan_util() - get chan utilization
  431. * @vdev: vdev
  432. *
  433. * Return: chan utilization (0 - 100)
  434. */
  435. uint8_t os_if_son_get_chan_util(struct wlan_objmgr_vdev *vdev);
  436. /**
  437. * os_if_son_pdev_ops() - Handles PDEV specific SON commands
  438. * @pdev: pdev
  439. * @type: SON command to handle
  440. * @data: Input Data
  441. * @ret: Output Data
  442. *
  443. * Return: QDF_SUCCCESS_SUCCESS in case of success
  444. */
  445. QDF_STATUS os_if_son_pdev_ops(struct wlan_objmgr_pdev *pdev,
  446. enum wlan_mlme_pdev_param type,
  447. void *data, void *ret);
  448. /**
  449. * os_if_son_vdev_ops() - Handles VDEV specific SON commands
  450. * @vdev: vdev
  451. * @type: SON command to handle
  452. * @data: Input Data
  453. * @ret: Output Data
  454. *
  455. * Return: QDF_SUCCCESS_SUCCESS in case of success
  456. */
  457. QDF_STATUS os_if_son_vdev_ops(struct wlan_objmgr_vdev *pdev,
  458. enum wlan_mlme_vdev_param type,
  459. void *data, void *ret);
  460. /**
  461. * os_if_son_peer_ops() - Handles PEER specific SON commands
  462. * @peer: peer
  463. * @type: SON command to handle
  464. * @data: Input Data. Pointer to wlan_mlme_peer_data
  465. * @ret: Output Data. Pointer to wlan_mlme_peer_data
  466. *
  467. * Return: QDF_SUCCCESS_SUCCESS in case of success
  468. */
  469. QDF_STATUS os_if_son_peer_ops(struct wlan_objmgr_peer *peer,
  470. enum wlan_mlme_peer_param type,
  471. union wlan_mlme_peer_data *data,
  472. union wlan_mlme_peer_data *ret);
  473. /**
  474. * os_if_son_scan_db_iterate() - get country code
  475. * @pdev: pdev
  476. * @handler: scan_iterator
  477. * @arg: argument to be passed to handler
  478. *
  479. * Return: QDF_SUCCCESS_SUCCESS in case of success
  480. */
  481. QDF_STATUS os_if_son_scan_db_iterate(struct wlan_objmgr_pdev *pdev,
  482. scan_iterator_func handler, void *arg);
  483. /**
  484. * os_if_son_acl_is_probe_wh_set() - Withheld probes for given mac_addr,
  485. * not supported
  486. * @vdev: vdev
  487. * @mac_addr: 6-Byte MAC address
  488. * @probe_rssi: Probe Request RSSI
  489. *
  490. * Return: true / false
  491. */
  492. bool os_if_son_acl_is_probe_wh_set(struct wlan_objmgr_vdev *vdev,
  493. const uint8_t *mac_addr,
  494. uint8_t probe_rssi);
  495. /**
  496. * os_if_son_get_rx_streams() - Gets number of RX spatial streams
  497. * @vdev: target vdev
  498. *
  499. * Return: number of spatial stream
  500. */
  501. uint8_t os_if_son_get_rx_streams(struct wlan_objmgr_vdev *vdev);
  502. /**
  503. * os_if_son_cfg80211_reply() - replies to cfg80211
  504. * @sk_buf: sk_buff to uper layer
  505. *
  506. * Return: QDF_STATUS_SUCCESS on success
  507. */
  508. QDF_STATUS os_if_son_cfg80211_reply(qdf_nbuf_t sk_buf);
  509. /**
  510. * os_if_son_vdev_is_wds() - checks if wds capability is supported or not
  511. * @vdev: Pointer to vdev
  512. *
  513. * Return: true if wds is supported
  514. */
  515. bool os_if_son_vdev_is_wds(struct wlan_objmgr_vdev *vdev);
  516. /*
  517. * os_if_son_set_acl_policy() - set acl policy
  518. * @vdev: vdev
  519. * @son_acl_policy: son acl policy. enum ieee80211_acl_cmd
  520. *
  521. * Return: QDF_STATUS
  522. */
  523. QDF_STATUS os_if_son_set_acl_policy(struct wlan_objmgr_vdev *vdev,
  524. ieee80211_acl_cmd son_acl_policy);
  525. /**
  526. * os_if_son_get_acl_policy() - get acl policy
  527. * @vdev: vdev
  528. *
  529. * Return: acl policy. enum ieee80211_acl_cmd
  530. */
  531. ieee80211_acl_cmd os_if_son_get_acl_policy(struct wlan_objmgr_vdev *vdev);
  532. /**
  533. * os_if_son_add_acl_mac() - add mac to acl
  534. * @vdev: vdev
  535. * @acl_mac: mac to add
  536. *
  537. * Return: 0 on success, negative errno on failure
  538. */
  539. int os_if_son_add_acl_mac(struct wlan_objmgr_vdev *vdev,
  540. struct qdf_mac_addr *acl_mac);
  541. /**
  542. * os_if_son_get_sta_space() - get sta space
  543. * @vdev: target vdev
  544. *
  545. * Return: bytes which is needed to fill sta information
  546. */
  547. uint32_t os_if_son_get_sta_space(struct wlan_objmgr_vdev *vdev);
  548. /**
  549. * os_if_son_get_sta_list() - get sta list
  550. * @vdev: target vdev
  551. * @si: pointer to ieee80211req_sta_info
  552. * @space: space left
  553. *
  554. * Return: void
  555. */
  556. void os_if_son_get_sta_list(struct wlan_objmgr_vdev *vdev,
  557. struct ieee80211req_sta_info *si, uint32_t *space);
  558. /**
  559. * os_if_son_del_acl_mac() - del mac from acl
  560. * @vdev: vdev
  561. * @acl_mac: mac to del
  562. *
  563. * Return: 0 on success, negative errno on failure
  564. */
  565. int os_if_son_del_acl_mac(struct wlan_objmgr_vdev *vdev,
  566. struct qdf_mac_addr *acl_mac);
  567. /**
  568. * os_if_son_kickout_mac() - kickout sta with given mac
  569. * @vdev: vdev
  570. * @acl_mac: sta mac to kickout
  571. *
  572. * Return: 0 on success, negative errno on failure
  573. */
  574. int os_if_son_kickout_mac(struct wlan_objmgr_vdev *vdev,
  575. struct qdf_mac_addr *mac);
  576. /**
  577. * os_if_son_set_chwidth() - set chan width
  578. * @vdev: vdev
  579. * @son_chwidth: son chan width
  580. *
  581. * Return: 0 on success, negative errno on failure
  582. */
  583. int os_if_son_set_chwidth(struct wlan_objmgr_vdev *vdev,
  584. enum ieee80211_cwm_width son_chwidth);
  585. /**
  586. * os_if_son_get_chwidth() - get chan width
  587. * @vdev: vdev
  588. *
  589. * Return: son chan width
  590. */
  591. enum ieee80211_cwm_width os_if_son_get_chwidth(struct wlan_objmgr_vdev *vdev);
  592. /**
  593. * os_if_son_deauth_peer_sta - Deauths specified STA
  594. * @vdev: vdev
  595. * @peer_mac: Target peer MAC address
  596. * @ignore_frame: True to silently deauth the peer
  597. *
  598. * Return: void
  599. */
  600. void os_if_son_deauth_peer_sta(struct wlan_objmgr_vdev *vdev,
  601. uint8_t *peer_mac,
  602. bool ignore_frame);
  603. /**
  604. * os_if_son_modify_acl - Updates ACL with given peer
  605. * @vdev: vdev
  606. * @peer_mac: Target peer MAC address
  607. * @allow_auth: True to allow specified peer to connect
  608. *
  609. * Return: void
  610. */
  611. void os_if_son_modify_acl(struct wlan_objmgr_vdev *vdev,
  612. uint8_t *peer_mac,
  613. bool allow_auth);
  614. /**
  615. * os_if_son_deliver_ald_event() - deliver ald events to son
  616. * @vdev: vdev object
  617. * @peer: peer object
  618. * @event: Name of the event
  619. * @event_data: event data
  620. *
  621. * Return: 0 on success
  622. */
  623. int os_if_son_deliver_ald_event(struct wlan_objmgr_vdev *vdev,
  624. struct wlan_objmgr_peer *peer,
  625. enum ieee80211_event_type event,
  626. void *event_data);
  627. /**
  628. * os_if_son_get_vdev_by_netdev() - Get vdev from net device
  629. * @dev: net device struct
  630. *
  631. * Return: objmgr vdev on success else NULL
  632. */
  633. struct wlan_objmgr_vdev *os_if_son_get_vdev_by_netdev(struct net_device *dev);
  634. /**
  635. * os_if_son_trigger_objmgr_object_deletion() - Trigger objmgr object deletion
  636. * @id: umac component id
  637. *
  638. * Return: QDF_STATUS_SUCCESS on success
  639. */
  640. QDF_STATUS os_if_son_trigger_objmgr_object_deletion(enum wlan_umac_comp_id id);
  641. /**
  642. * os_if_son_trigger_objmgr_object_creation() - Trigger objmgr object creation
  643. * @id: umac component id
  644. *
  645. * Return: QDF_STATUS_SUCCESS on success
  646. */
  647. QDF_STATUS os_if_son_trigger_objmgr_object_creation(enum wlan_umac_comp_id id);
  648. /**
  649. * os_if_son_start_acs() - Triggers ACS on the target vdev
  650. * @vdev: target vdev
  651. * @enable: True - to start ACS
  652. *
  653. * Return: 0 on success
  654. */
  655. int os_if_son_start_acs(struct wlan_objmgr_vdev *vdev, uint8_t enable);
  656. /**
  657. * os_if_son_set_acs_chan() - Set channel list for ACS
  658. * @vdev: target vdev
  659. * @req: channel list
  660. *
  661. * Return: 0 on success
  662. */
  663. int os_if_son_set_acs_chan(struct wlan_objmgr_vdev *vdev,
  664. struct ieee80211req_athdbg *req);
  665. /**
  666. * os_if_son_get_acs_report() - Get ACS report
  667. * @vdev: target vdev
  668. * @acs_r: ACS report structure
  669. *
  670. * Return: 0 on success
  671. */
  672. int os_if_son_get_acs_report(struct wlan_objmgr_vdev *vdev,
  673. struct ieee80211_acs_dbg *acs_r);
  674. /**
  675. * os_if_son_parse_generic_nl_cmd() - Sends the Generic vendor commands
  676. * to SON.
  677. * @wiphy: Standard wiphy object
  678. * @wdev: wireless device
  679. * @tb: Command type structure pointer
  680. * @type: Get/Set command
  681. *
  682. * This function parses the GENERIC vendor commands received from
  683. * userspace then sends the extracted data to SON module for further
  684. * processing along with wiphy, wdev, extected structure - param
  685. * and command type i.e. GET / SET. Each of the GENERIC commands are
  686. * interdependent and hence in SON module, they will be further
  687. * parsed based on type i.e. GET / SET.
  688. *
  689. * Return: 0 on success
  690. */
  691. int os_if_son_parse_generic_nl_cmd(struct wiphy *wiphy,
  692. struct wireless_dev *wdev,
  693. struct nlattr **tb,
  694. enum os_if_son_vendor_cmd_type type);
  695. /**
  696. * os_if_son_get_node_datarate_info() - Get datarate info about given mac
  697. * @vdev: vdev_obj
  698. * @mac_addr: mac_address to get datarate information
  699. * @node_info: object to store datarate information
  700. *
  701. * Return: void
  702. */
  703. QDF_STATUS os_if_son_get_node_datarate_info(struct wlan_objmgr_vdev *vdev,
  704. uint8_t *mac_addr,
  705. wlan_node_info *node_info);
  706. /**
  707. * os_if_son_get_peer_max_mcs_idx() - Get max mcs index of the peer
  708. * @vdev: vdev obj
  709. * @peer: peer obj
  710. *
  711. * Return: max mcs index on success / 0 on failure
  712. */
  713. uint32_t os_if_son_get_peer_max_mcs_idx(struct wlan_objmgr_vdev *vdev,
  714. struct wlan_objmgr_peer *peer);
  715. /**
  716. * os_if_son_get_sta_stats() - get connected sta rssi and estimated data rate
  717. * @vdev: pointer to vdev
  718. * @mac_addr: connected sta mac addr
  719. * @stats: pointer to ieee80211_nodestats
  720. *
  721. * Return: 0 on success, negative errno on failure
  722. */
  723. int os_if_son_get_sta_stats(struct wlan_objmgr_vdev *vdev, uint8_t *mac_addr,
  724. struct ieee80211_nodestats *stats);
  725. #endif