wmi_unified_non_tlv.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460
  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. #include "wmi_unified_non_tlv.h"
  27. #include "wmi_unified_api.h"
  28. #include "wmi.h"
  29. #include "wmi_unified_priv.h"
  30. /**
  31. * send_vdev_create_cmd_non_tlv() - send VDEV create command to fw
  32. * @wmi_handle: wmi handle
  33. * @param: pointer to hold vdev create parameter
  34. * @macaddr: vdev mac address
  35. *
  36. * Return: 0 for success or error code
  37. */
  38. int32_t send_vdev_create_cmd_non_tlv(wmi_unified_t wmi_handle,
  39. uint8_t macaddr[IEEE80211_ADDR_LEN],
  40. struct vdev_create_params *param)
  41. {
  42. return 0;
  43. }
  44. /**
  45. * send_vdev_delete_cmd_non_tlv() - send VDEV delete command to fw
  46. * @wmi_handle: wmi handle
  47. * @if_id: vdev id
  48. *
  49. * Return: 0 for success or error code
  50. */
  51. int32_t send_vdev_delete_cmd_non_tlv(wmi_unified_t wmi_handle,
  52. uint8_t if_id)
  53. {
  54. return 0;
  55. }
  56. /**
  57. * send_vdev_stop_cmd_non_tlv() - send vdev stop command to fw
  58. * @wmi: wmi handle
  59. * @vdev_id: vdev id
  60. *
  61. * Return: 0 for success or erro code
  62. */
  63. int32_t send_vdev_stop_cmd_non_tlv(wmi_unified_t wmi,
  64. uint8_t vdev_id)
  65. {
  66. return 0;
  67. }
  68. /**
  69. * send_vdev_down_cmd_non_tlv() - send vdev down command to fw
  70. * @wmi: wmi handle
  71. * @vdev_id: vdev id
  72. *
  73. * Return: 0 for success or error code
  74. */
  75. int32_t send_vdev_down_cmd_non_tlv(wmi_unified_t wmi, uint8_t vdev_id)
  76. {
  77. return 0;
  78. }
  79. /**
  80. * send_peer_flush_tids_cmd_non_tlv() - flush peer tids packets in fw
  81. * @wmi: wmi handle
  82. * @peer_addr: peer mac address
  83. * @param: pointer to hold peer flush tid parameter
  84. *
  85. * Return: 0 for sucess or error code
  86. */
  87. int32_t send_peer_flush_tids_cmd_non_tlv(wmi_unified_t wmi,
  88. uint8_t peer_addr[IEEE80211_ADDR_LEN],
  89. struct peer_flush_params *param)
  90. {
  91. return 0;
  92. }
  93. /**
  94. * send_peer_delete_cmd_non_tlv() - send PEER delete command to fw
  95. * @wmi: wmi handle
  96. * @peer_addr: peer mac addr
  97. * @vdev_id: vdev id
  98. *
  99. * Return: 0 for success or error code
  100. */
  101. int32_t send_peer_delete_cmd_non_tlv(wmi_unified_t wmi,
  102. uint8_t
  103. peer_addr[IEEE80211_ADDR_LEN],
  104. uint8_t vdev_id)
  105. {
  106. return 0;
  107. }
  108. /**
  109. * send_peer_param_cmd_non_tlv() - set peer parameter in fw
  110. * @wma_ctx: wmi handle
  111. * @peer_addr: peer mac address
  112. * @param : pointer to hold peer set parameter
  113. *
  114. * Return: 0 for success or error code
  115. */
  116. int32_t send_peer_param_cmd_non_tlv(wmi_unified_t wmi,
  117. uint8_t peer_addr[IEEE80211_ADDR_LEN],
  118. struct peer_set_params *param)
  119. {
  120. return 0;
  121. }
  122. /**
  123. * send_vdev_up_cmd_non_tlv() - send vdev up command in fw
  124. * @wmi: wmi handle
  125. * @bssid: bssid
  126. * @vdev_up_params: pointer to hold vdev up parameter
  127. *
  128. * Return: 0 for success or error code
  129. */
  130. int32_t send_vdev_up_cmd_non_tlv(wmi_unified_t wmi,
  131. uint8_t bssid[IEEE80211_ADDR_LEN],
  132. struct vdev_up_params *params)
  133. {
  134. return 0;
  135. }
  136. /**
  137. * send_peer_create_cmd_non_tlv() - send peer create command to fw
  138. * @wmi: wmi handle
  139. * @peer_addr: peer mac address
  140. * @peer_type: peer type
  141. * @vdev_id: vdev id
  142. *
  143. * Return: 0 for success or error code
  144. */
  145. int32_t send_peer_create_cmd_non_tlv(wmi_unified_t wmi,
  146. struct peer_create_params *param)
  147. {
  148. return 0;
  149. }
  150. /**
  151. * send_green_ap_ps_cmd_non_tlv() - enable green ap powersave command
  152. * @wmi_handle: wmi handle
  153. * @value: value
  154. * @mac_id: mac id to have radio context
  155. *
  156. * Return: 0 for success or error code
  157. */
  158. int32_t send_green_ap_ps_cmd_non_tlv(wmi_unified_t wmi_handle,
  159. uint32_t value, uint8_t mac_id)
  160. {
  161. return 0;
  162. }
  163. /**
  164. * send_pdev_utf_cmd_non_tlv() - send utf command to fw
  165. * @wmi_handle: wmi handle
  166. * @param: pointer to pdev_utf_params
  167. * @mac_id: mac id to have radio context
  168. *
  169. * Return: 0 for success or error code
  170. */
  171. int32_t
  172. send_pdev_utf_cmd_non_tlv(wmi_unified_t wmi_handle,
  173. struct pdev_utf_params *param,
  174. uint8_t mac_id)
  175. {
  176. return 0;
  177. }
  178. /**
  179. * send_pdev_param_cmd_non_tlv() - set pdev parameters
  180. * @wmi_handle: wmi handle
  181. * @param: pointer to pdev parameter
  182. * @mac_id: radio context
  183. *
  184. * Return: 0 on success, errno on failure
  185. */
  186. int32_t
  187. send_pdev_param_cmd_non_tlv(wmi_unified_t wmi_handle,
  188. struct pdev_params *param,
  189. uint8_t mac_id)
  190. {
  191. return 0;
  192. }
  193. /**
  194. * send_suspend_cmd_non_tlv() - WMI suspend function
  195. * @wmi_handle : handle to WMI.
  196. * @param : pointer to hold suspend parameter
  197. * @mac_id: radio context
  198. *
  199. * Return: 0 on success and -ve on failure.
  200. */
  201. int32_t send_suspend_cmd_non_tlv(wmi_unified_t wmi_handle,
  202. struct suspend_params *param,
  203. uint8_t mac_id)
  204. {
  205. return 0;
  206. }
  207. /**
  208. * send_resume_cmd_non_tlv() - WMI resume function
  209. * @param wmi_handle : handle to WMI.
  210. * @mac_id: radio context
  211. *
  212. * Return: 0 on success and -ve on failure.
  213. */
  214. int32_t send_resume_cmd_non_tlv(wmi_unified_t wmi_handle,
  215. uint8_t mac_id)
  216. {
  217. return 0;
  218. }
  219. /**
  220. * send_wow_enable_cmd_non_tlv() - WMI wow enable function
  221. * @param wmi_handle : handle to WMI.
  222. * @param param : pointer to hold wow enable parameter
  223. * @mac_id: radio context
  224. *
  225. * Return: 0 on success and -ve on failure.
  226. */
  227. int32_t send_wow_enable_cmd_non_tlv(wmi_unified_t wmi_handle,
  228. struct wow_cmd_params *param,
  229. uint8_t mac_id)
  230. {
  231. return 0;
  232. }
  233. /**
  234. * send_set_ap_ps_param_cmd_non_tlv() - set ap powersave parameters
  235. * @wma_ctx: wma context
  236. * @peer_addr: peer mac address
  237. * @param: pointer to ap_ps parameter structure
  238. *
  239. * Return: 0 for success or error code
  240. */
  241. int32_t send_set_ap_ps_param_cmd_non_tlv(wmi_unified_t wmi_handle,
  242. uint8_t *peer_addr,
  243. struct ap_ps_params *param)
  244. {
  245. return 0;
  246. }
  247. /**
  248. * send_set_sta_ps_param_cmd_non_tlv() - set sta powersave parameters
  249. * @wma_ctx: wma context
  250. * @peer_addr: peer mac address
  251. * @param: pointer to sta_ps parameter structure
  252. *
  253. * Return: 0 for success or error code
  254. */
  255. int32_t send_set_sta_ps_param_cmd_non_tlv(wmi_unified_t wmi_handle,
  256. struct sta_ps_params *param)
  257. {
  258. return 0;
  259. }
  260. /**
  261. * send_crash_inject_cmd_non_tlv() - inject fw crash
  262. * @wma_handle: wma handle
  263. * @param: ponirt to crash inject paramter structure
  264. *
  265. * Return: 0 for success or return error
  266. */
  267. int32_t send_crash_inject_cmd_non_tlv(wmi_unified_t wmi_handle,
  268. struct crash_inject *param)
  269. {
  270. return 0;
  271. }
  272. /**
  273. * send_dbglog_cmd_non_tlv() - set debug log level
  274. * @wmi_handle : handle to WMI.
  275. * @param : pointer to hold dbglog level parameter
  276. *
  277. * Return: 0 on success and -ve on failure.
  278. */
  279. int32_t
  280. send_dbglog_cmd_non_tlv(wmi_unified_t wmi_handle,
  281. struct dbglog_params *dbglog_param)
  282. {
  283. return 0;
  284. }
  285. /**
  286. * send_vdev_set_param_cmd_non_tlv() - WMI vdev set parameter function
  287. * @wmi_handle : handle to WMI.
  288. * @macaddr : MAC address
  289. * @param : pointer to hold vdev set parameter
  290. *
  291. * Return: 0 on success and -ve on failure.
  292. */
  293. int32_t send_vdev_set_param_cmd_non_tlv(wmi_unified_t wmi_handle,
  294. struct vdev_set_params *param)
  295. {
  296. return 0;
  297. }
  298. /**
  299. * send_stats_request_cmd_non_tlv() - WMI request stats function
  300. * @wmi_handle : handle to WMI.
  301. * @macaddr : MAC address
  302. * @param : pointer to hold stats request parameter
  303. *
  304. * Return: 0 on success and -ve on failure.
  305. */
  306. int32_t send_stats_request_cmd_non_tlv(wmi_unified_t wmi_handle,
  307. uint8_t macaddr[IEEE80211_ADDR_LEN],
  308. struct stats_request_params *param)
  309. {
  310. return 0;
  311. }
  312. /**
  313. * send_packet_log_enable_cmd_non_tlv() - WMI request stats function
  314. * @wmi_handle : handle to WMI.
  315. * @macaddr : MAC address
  316. * @param : pointer to hold stats request parameter
  317. *
  318. * Return: 0 on success and -ve on failure.
  319. */
  320. int32_t send_packet_log_enable_cmd_non_tlv(wmi_unified_t wmi_handle,
  321. uint8_t macaddr[IEEE80211_ADDR_LEN],
  322. struct packet_enable_params *param)
  323. {
  324. return 0;
  325. }
  326. /**
  327. * send_beacon_send_cmd_non_tlv() - WMI beacon send function
  328. * @wmi_handle : handle to WMI.
  329. * @macaddr : MAC address
  330. * @param : pointer to hold beacon send cmd parameter
  331. *
  332. * Return: 0 on success and -ve on failure.
  333. */
  334. int32_t send_beacon_send_cmd_non_tlv(wmi_unified_t wmi_handle,
  335. struct beacon_params *param)
  336. {
  337. return 0;
  338. }
  339. /**
  340. * send_peer_assoc_cmd_non_tlv() - WMI peer assoc function
  341. * @wmi_handle : handle to WMI.
  342. * @macaddr : MAC address
  343. * @param : pointer to peer assoc parameter
  344. *
  345. * Return: 0 on success and -ve on failure.
  346. */
  347. int32_t send_peer_assoc_cmd_non_tlv(wmi_unified_t wmi_handle,
  348. struct peer_assoc_params *param)
  349. {
  350. return 0;
  351. }
  352. /**
  353. * send_scan_start_cmd_non_tlv() - WMI scan start function
  354. * @wmi_handle : handle to WMI.
  355. * @macaddr : MAC address
  356. * @param : pointer to hold scan start cmd parameter
  357. *
  358. * Return: 0 on success and -ve on failure.
  359. */
  360. int32_t send_scan_start_cmd_non_tlv(wmi_unified_t wmi_handle,
  361. struct scan_start_params *param)
  362. {
  363. return 0;
  364. }
  365. /**
  366. * send_scan_stop_cmd_non_tlv() - WMI scan start function
  367. * @wmi_handle : handle to WMI.
  368. * @macaddr : MAC address
  369. * @param : pointer to hold scan start cmd parameter
  370. *
  371. * Return: 0 on success and -ve on failure.
  372. */
  373. int32_t send_scan_stop_cmd_non_tlv(wmi_unified_t wmi_handle,
  374. struct scan_stop_params *param)
  375. {
  376. return 0;
  377. }
  378. /**
  379. * send_scan_chan_list_cmd_non_tlv() - WMI scan channel list function
  380. * @wmi_handle : handle to WMI.
  381. * @macaddr : MAC address
  382. * @param : pointer to hold scan channel list parameter
  383. *
  384. * Return: 0 on success and -ve on failure.
  385. */
  386. int32_t send_scan_chan_list_cmd_non_tlv(wmi_unified_t wmi_handle,
  387. struct scan_chan_list_params *param)
  388. {
  389. return 0;
  390. }
  391. struct wmi_ops non_tlv_ops = {
  392. .send_vdev_create_cmd = send_vdev_create_cmd_non_tlv,
  393. .send_vdev_delete_cmd = send_vdev_delete_cmd_non_tlv,
  394. .send_vdev_down_cmd = send_vdev_down_cmd_non_tlv,
  395. .send_peer_flush_tids_cmd = send_peer_flush_tids_cmd_non_tlv,
  396. .send_peer_param_cmd = send_peer_param_cmd_non_tlv,
  397. .send_vdev_up_cmd = send_vdev_up_cmd_non_tlv,
  398. .send_peer_create_cmd = send_peer_create_cmd_non_tlv,
  399. .send_green_ap_ps_cmd = send_green_ap_ps_cmd_non_tlv,
  400. .send_pdev_utf_cmd = send_pdev_utf_cmd_non_tlv,
  401. .send_pdev_param_cmd = send_pdev_param_cmd_non_tlv,
  402. .send_suspend_cmd = send_suspend_cmd_non_tlv,
  403. .send_resume_cmd = send_resume_cmd_non_tlv,
  404. .send_wow_enable_cmd = send_wow_enable_cmd_non_tlv,
  405. .send_set_ap_ps_param_cmd = send_set_ap_ps_param_cmd_non_tlv,
  406. .send_set_sta_ps_param_cmd = send_set_sta_ps_param_cmd_non_tlv,
  407. .send_crash_inject_cmd = send_crash_inject_cmd_non_tlv,
  408. .send_dbglog_cmd = send_dbglog_cmd_non_tlv,
  409. .send_vdev_set_param_cmd = send_vdev_set_param_cmd_non_tlv,
  410. .send_stats_request_cmd = send_stats_request_cmd_non_tlv,
  411. .send_packet_log_enable_cmd = send_packet_log_enable_cmd_non_tlv,
  412. .send_beacon_send_cmd = send_beacon_send_cmd_non_tlv,
  413. .send_peer_assoc_cmd = send_peer_assoc_cmd_non_tlv,
  414. .send_scan_start_cmd = send_scan_start_cmd_non_tlv,
  415. .send_scan_stop_cmd = send_scan_stop_cmd_non_tlv,
  416. .send_scan_chan_list_cmd = send_scan_chan_list_cmd_non_tlv
  417. };
  418. /**
  419. * wmi_get_non_tlv_ops() - gives pointer to wmi tlv ops
  420. *
  421. * Return: pointer to wmi tlv ops
  422. */
  423. struct wmi_ops *wmi_get_non_tlv_ops(void)
  424. {
  425. return &non_tlv_ops;
  426. }