wmi_tlv_helper.c 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323
  1. /*
  2. * Copyright (c) 2013-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_tlv_platform.c"
  27. #include "wmi_tlv_defs.h"
  28. #include "wmi_version.h"
  29. #define WMITLV_GET_ATTRIB_NUM_TLVS 0xFFFFFFFF
  30. #define WMITLV_GET_CMDID(val) (val & 0x00FFFFFF)
  31. #define WMITLV_GET_NUM_TLVS(val) ((val >> 24) & 0xFF)
  32. #define WMITLV_GET_TAGID(val) (val & 0x00000FFF)
  33. #define WMITLV_GET_TAG_STRUCT_SIZE(val) ((val >> 12) & 0x000001FF)
  34. #define WMITLV_GET_TAG_ARRAY_SIZE(val) ((val >> 21) & 0x000001FF)
  35. #define WMITLV_GET_TAG_VARIED(val) ((val >> 30) & 0x00000001)
  36. #define WMITLV_SET_ATTRB0(id) ((WMITLV_GET_TAG_NUM_TLV_ATTRIB(id) << 24) | \
  37. (id & 0x00FFFFFF))
  38. #define WMITLV_SET_ATTRB1(tagID, tagStructSize, tagArraySize, tagVaried) \
  39. (((tagVaried&0x1)<<30) | ((tagArraySize&0x1FF)<<21) | \
  40. ((tagStructSize&0x1FF)<<12) | (tagID&0xFFF))
  41. #define WMITLV_OP_SET_TLV_ATTRIB_macro(param_ptr, param_len, wmi_cmd_event_id, \
  42. elem_tlv_tag, elem_struc_type, elem_name, var_len, arr_size) \
  43. WMITLV_SET_ATTRB1(elem_tlv_tag, sizeof(elem_struc_type), arr_size, var_len),
  44. #define WMITLV_GET_CMD_EVT_ATTRB_LIST(id) \
  45. WMITLV_SET_ATTRB0(id), \
  46. WMITLV_TABLE(id,SET_TLV_ATTRIB, NULL, 0)
  47. A_UINT32 cmd_attr_list[] = {
  48. WMITLV_ALL_CMD_LIST(WMITLV_GET_CMD_EVT_ATTRB_LIST)
  49. };
  50. A_UINT32 evt_attr_list[] = {
  51. WMITLV_ALL_EVT_LIST(WMITLV_GET_CMD_EVT_ATTRB_LIST)
  52. };
  53. #ifdef NO_DYNAMIC_MEM_ALLOC
  54. static wmitlv_cmd_param_info *g_wmi_static_cmd_param_info_buf;
  55. A_UINT32 g_wmi_static_max_cmd_param_tlvs;
  56. #endif
  57. /**
  58. * wmitlv_set_static_param_tlv_buf() - tlv helper function
  59. * @param_tlv_buf: tlv buffer parameter
  60. * @max_tlvs_accomodated: max no of tlv entries
  61. *
  62. *
  63. * WMI TLV Helper function to set the static cmd_param_tlv structure
  64. * and number of TLVs that can be accomodated in the structure.
  65. * This function should be used when dynamic memory allocation is not
  66. * supported. When dynamic memory allocation is not supported by any
  67. * component then NO_DYNAMIC_MEMALLOC macro has to be defined in respective
  68. * tlv_platform.c file. And respective component has to allocate
  69. * cmd_param_tlv structure buffer to accomodate whatever number of TLV's.
  70. * Both the buffer address and number of TLV's that can be accomodated in
  71. * the buffer should be sent as arguments to this function.
  72. *
  73. * Return None
  74. */
  75. void
  76. wmitlv_set_static_param_tlv_buf(void *param_tlv_buf,
  77. A_UINT32 max_tlvs_accomodated)
  78. {
  79. #ifdef NO_DYNAMIC_MEM_ALLOC
  80. g_wmi_static_cmd_param_info_buf = param_tlv_buf;
  81. g_wmi_static_max_cmd_param_tlvs = max_tlvs_accomodated;
  82. #endif
  83. }
  84. /**
  85. * wmitlv_get_attributes() - tlv helper function
  86. * @is_cmd_id: boolean for command attribute
  87. * @cmd_event_id: command event id
  88. * @curr_tlv_order: tlv order
  89. * @tlv_attr_ptr: pointer to tlv attribute
  90. *
  91. *
  92. * WMI TLV Helper functions to find the attributes of the
  93. * Command/Event TLVs.
  94. *
  95. * Return: 0 if success. Return >=1 if failure.
  96. */
  97. static
  98. A_UINT32 wmitlv_get_attributes(A_UINT32 is_cmd_id, A_UINT32 cmd_event_id,
  99. A_UINT32 curr_tlv_order,
  100. wmitlv_attributes_struc *tlv_attr_ptr)
  101. {
  102. A_UINT32 i, base_index, num_tlvs, num_entries;
  103. A_UINT32 *pAttrArrayList;
  104. if (is_cmd_id) {
  105. pAttrArrayList = &cmd_attr_list[0];
  106. num_entries = QDF_ARRAY_SIZE(cmd_attr_list);
  107. } else {
  108. pAttrArrayList = &evt_attr_list[0];
  109. num_entries = QDF_ARRAY_SIZE(evt_attr_list);
  110. }
  111. for (i = 0; i < num_entries; i++) {
  112. num_tlvs = WMITLV_GET_NUM_TLVS(pAttrArrayList[i]);
  113. if (WMITLV_GET_CMDID(cmd_event_id) ==
  114. WMITLV_GET_CMDID(pAttrArrayList[i])) {
  115. tlv_attr_ptr->cmd_num_tlv = num_tlvs;
  116. /* Return success from here when only number of TLVS for
  117. * this command/event is required */
  118. if (curr_tlv_order == WMITLV_GET_ATTRIB_NUM_TLVS) {
  119. wmi_tlv_print_verbose
  120. ("%s: WMI TLV attribute definitions for %s:0x%x found; num_of_tlvs:%d\n",
  121. __func__, (is_cmd_id ? "Cmd" : "Evt"),
  122. cmd_event_id, num_tlvs);
  123. return 0;
  124. }
  125. /* Return failure if tlv_order is more than the expected
  126. * number of TLVs */
  127. if (curr_tlv_order >= num_tlvs) {
  128. wmi_tlv_print_error
  129. ("%s: ERROR: TLV order %d greater than num_of_tlvs:%d for %s:0x%x\n",
  130. __func__, curr_tlv_order, num_tlvs,
  131. (is_cmd_id ? "Cmd" : "Evt"), cmd_event_id);
  132. return 1;
  133. }
  134. base_index = i + 1; /* index to first TLV attributes */
  135. wmi_tlv_print_verbose
  136. ("%s: WMI TLV attributes for %s:0x%x tlv[%d]:0x%x\n",
  137. __func__, (is_cmd_id ? "Cmd" : "Evt"),
  138. cmd_event_id, curr_tlv_order,
  139. pAttrArrayList[(base_index + curr_tlv_order)]);
  140. tlv_attr_ptr->tag_order = curr_tlv_order;
  141. tlv_attr_ptr->tag_id =
  142. WMITLV_GET_TAGID(pAttrArrayList
  143. [(base_index + curr_tlv_order)]);
  144. tlv_attr_ptr->tag_struct_size =
  145. WMITLV_GET_TAG_STRUCT_SIZE(pAttrArrayList
  146. [(base_index +
  147. curr_tlv_order)]);
  148. tlv_attr_ptr->tag_varied_size =
  149. WMITLV_GET_TAG_VARIED(pAttrArrayList
  150. [(base_index +
  151. curr_tlv_order)]);
  152. tlv_attr_ptr->tag_array_size =
  153. WMITLV_GET_TAG_ARRAY_SIZE(pAttrArrayList
  154. [(base_index +
  155. curr_tlv_order)]);
  156. return 0;
  157. }
  158. i += num_tlvs;
  159. }
  160. wmi_tlv_print_error
  161. ("%s: ERROR: Didn't found WMI TLV attribute definitions for %s:0x%x\n",
  162. __func__, (is_cmd_id ? "Cmd" : "Evt"), cmd_event_id);
  163. return 1;
  164. }
  165. /**
  166. * wmitlv_check_tlv_params() - tlv helper function
  167. * @os_handle: os context handle
  168. * @param_struc_ptr: pointer to tlv structure
  169. * @is_cmd_id: boolean for command attribute
  170. * @wmi_cmd_event_id: command event id
  171. *
  172. *
  173. * Helper Function to vaidate the prepared TLV's for
  174. * an WMI event/command to be sent.
  175. *
  176. * Return: 0 if success. Return < 0 if failure.
  177. */
  178. static int
  179. wmitlv_check_tlv_params(void *os_handle, void *param_struc_ptr,
  180. A_UINT32 param_buf_len, A_UINT32 is_cmd_id,
  181. A_UINT32 wmi_cmd_event_id)
  182. {
  183. wmitlv_attributes_struc attr_struct_ptr;
  184. A_UINT32 buf_idx = 0;
  185. A_UINT32 tlv_index = 0;
  186. A_UINT8 *buf_ptr = (unsigned char *)param_struc_ptr;
  187. A_UINT32 expected_num_tlvs, expected_tlv_len;
  188. A_INT32 error = -1;
  189. /* Get the number of TLVs for this command/event */
  190. if (wmitlv_get_attributes
  191. (is_cmd_id, wmi_cmd_event_id, WMITLV_GET_ATTRIB_NUM_TLVS,
  192. &attr_struct_ptr) != 0) {
  193. wmi_tlv_print_error
  194. ("%s: ERROR: Couldn't get expected number of TLVs for Cmd=%d\n",
  195. __func__, wmi_cmd_event_id);
  196. goto Error_wmitlv_check_tlv_params;
  197. }
  198. /* NOTE: the returned number of TLVs is in "attr_struct_ptr.cmd_num_tlv" */
  199. expected_num_tlvs = attr_struct_ptr.cmd_num_tlv;
  200. while ((buf_idx + WMI_TLV_HDR_SIZE) <= param_buf_len) {
  201. A_UINT32 curr_tlv_tag =
  202. WMITLV_GET_TLVTAG(WMITLV_GET_HDR(buf_ptr));
  203. A_UINT32 curr_tlv_len =
  204. WMITLV_GET_TLVLEN(WMITLV_GET_HDR(buf_ptr));
  205. if ((buf_idx + WMI_TLV_HDR_SIZE + curr_tlv_len) > param_buf_len) {
  206. wmi_tlv_print_error
  207. ("%s: ERROR: Invalid TLV length for Cmd=%d Tag_order=%d buf_idx=%d Tag:%d Len:%d TotalLen:%d\n",
  208. __func__, wmi_cmd_event_id, tlv_index, buf_idx,
  209. curr_tlv_tag, curr_tlv_len, param_buf_len);
  210. goto Error_wmitlv_check_tlv_params;
  211. }
  212. /* Get the attributes of the TLV with the given order in "tlv_index" */
  213. wmi_tlv_OS_MEMZERO(&attr_struct_ptr,
  214. sizeof(wmitlv_attributes_struc));
  215. if (wmitlv_get_attributes
  216. (is_cmd_id, wmi_cmd_event_id, tlv_index,
  217. &attr_struct_ptr) != 0) {
  218. wmi_tlv_print_error
  219. ("%s: ERROR: No TLV attributes found for Cmd=%d Tag_order=%d\n",
  220. __func__, wmi_cmd_event_id, tlv_index);
  221. goto Error_wmitlv_check_tlv_params;
  222. }
  223. /* Found the TLV that we wanted */
  224. wmi_tlv_print_verbose("%s: [tlv %d]: tag=%d, len=%d\n",
  225. __func__, tlv_index, curr_tlv_tag,
  226. curr_tlv_len);
  227. /* Validating Tag ID order */
  228. if (curr_tlv_tag != attr_struct_ptr.tag_id) {
  229. wmi_tlv_print_error
  230. ("%s: ERROR: TLV has wrong tag in order for Cmd=0x%x. Given=%d, Expected=%d.\n",
  231. __func__, wmi_cmd_event_id, curr_tlv_tag,
  232. attr_struct_ptr.tag_id);
  233. goto Error_wmitlv_check_tlv_params;
  234. }
  235. /* Validate Tag length */
  236. /* Array TLVs length checking needs special handling */
  237. if ((curr_tlv_tag >= WMITLV_TAG_FIRST_ARRAY_ENUM)
  238. && (curr_tlv_tag <= WMITLV_TAG_LAST_ARRAY_ENUM)) {
  239. if (attr_struct_ptr.tag_varied_size == WMITLV_SIZE_FIX) {
  240. /* Array size can't be invalid for fixed size Array TLV */
  241. if (WMITLV_ARR_SIZE_INVALID ==
  242. attr_struct_ptr.tag_array_size) {
  243. wmi_tlv_print_error
  244. ("%s: ERROR: array_size can't be invalid for Array TLV Cmd=0x%x Tag=%d\n",
  245. __func__, wmi_cmd_event_id,
  246. curr_tlv_tag);
  247. goto Error_wmitlv_check_tlv_params;
  248. }
  249. expected_tlv_len =
  250. attr_struct_ptr.tag_array_size *
  251. attr_struct_ptr.tag_struct_size;
  252. /* Paddding is only required for Byte array Tlvs all other
  253. * array tlv's should be aligned to 4 bytes during their
  254. * definition */
  255. if (WMITLV_TAG_ARRAY_BYTE ==
  256. attr_struct_ptr.tag_id) {
  257. expected_tlv_len =
  258. roundup(expected_tlv_len,
  259. sizeof(A_UINT32));
  260. }
  261. if (curr_tlv_len != expected_tlv_len) {
  262. wmi_tlv_print_error
  263. ("%s: ERROR: TLV has wrong length for Cmd=0x%x. Tag_order=%d Tag=%d, Given_Len:%d Expected_Len=%d.\n",
  264. __func__, wmi_cmd_event_id,
  265. tlv_index, curr_tlv_tag,
  266. curr_tlv_len, expected_tlv_len);
  267. goto Error_wmitlv_check_tlv_params;
  268. }
  269. } else {
  270. /* Array size should be invalid for variable size Array TLV */
  271. if (WMITLV_ARR_SIZE_INVALID !=
  272. attr_struct_ptr.tag_array_size) {
  273. wmi_tlv_print_error
  274. ("%s: ERROR: array_size should be invalid for Array TLV Cmd=0x%x Tag=%d\n",
  275. __func__, wmi_cmd_event_id,
  276. curr_tlv_tag);
  277. goto Error_wmitlv_check_tlv_params;
  278. }
  279. /* Incase of variable length TLV's, there is no expectation
  280. * on the length field so do whatever checking you can
  281. * depending on the TLV tag if TLV length is non-zero */
  282. if (curr_tlv_len != 0) {
  283. /* Verify TLV length is aligned to the size of structure */
  284. if ((curr_tlv_len %
  285. attr_struct_ptr.tag_struct_size) !=
  286. 0) {
  287. wmi_tlv_print_error
  288. ("%s: ERROR: TLV length %d for Cmd=0x%x is not aligned to size of structure(%d bytes)\n",
  289. __func__, curr_tlv_len,
  290. wmi_cmd_event_id,
  291. attr_struct_ptr.
  292. tag_struct_size);
  293. goto Error_wmitlv_check_tlv_params;
  294. }
  295. if (curr_tlv_tag ==
  296. WMITLV_TAG_ARRAY_STRUC) {
  297. A_UINT8 *tlv_buf_ptr = NULL;
  298. A_UINT32 in_tlv_len;
  299. A_UINT32 idx;
  300. A_UINT32 num_of_elems;
  301. /* Verify length of inner TLVs */
  302. num_of_elems =
  303. curr_tlv_len /
  304. attr_struct_ptr.
  305. tag_struct_size;
  306. /* Set tlv_buf_ptr to the first inner TLV address */
  307. tlv_buf_ptr =
  308. buf_ptr + WMI_TLV_HDR_SIZE;
  309. for (idx = 0;
  310. idx < num_of_elems;
  311. idx++) {
  312. in_tlv_len =
  313. WMITLV_GET_TLVLEN
  314. (WMITLV_GET_HDR
  315. (tlv_buf_ptr));
  316. if ((in_tlv_len +
  317. WMI_TLV_HDR_SIZE)
  318. !=
  319. attr_struct_ptr.
  320. tag_struct_size) {
  321. wmi_tlv_print_error
  322. ("%s: ERROR: TLV has wrong length for Cmd=0x%x. Tag_order=%d Tag=%d, Given_Len:%zu Expected_Len=%d.\n",
  323. __func__,
  324. wmi_cmd_event_id,
  325. tlv_index,
  326. curr_tlv_tag,
  327. (in_tlv_len
  328. +
  329. WMI_TLV_HDR_SIZE),
  330. attr_struct_ptr.
  331. tag_struct_size);
  332. goto Error_wmitlv_check_tlv_params;
  333. }
  334. tlv_buf_ptr +=
  335. in_tlv_len +
  336. WMI_TLV_HDR_SIZE;
  337. }
  338. } else
  339. if ((curr_tlv_tag ==
  340. WMITLV_TAG_ARRAY_UINT32)
  341. || (curr_tlv_tag ==
  342. WMITLV_TAG_ARRAY_BYTE)
  343. || (curr_tlv_tag ==
  344. WMITLV_TAG_ARRAY_FIXED_STRUC)) {
  345. /* Nothing to verify here */
  346. } else {
  347. wmi_tlv_print_error
  348. ("%s ERROR Need to handle the Array tlv %d for variable length for Cmd=0x%x\n",
  349. __func__,
  350. attr_struct_ptr.tag_id,
  351. wmi_cmd_event_id);
  352. goto Error_wmitlv_check_tlv_params;
  353. }
  354. }
  355. }
  356. } else {
  357. /* Non-array TLV. */
  358. if ((curr_tlv_len + WMI_TLV_HDR_SIZE) !=
  359. attr_struct_ptr.tag_struct_size) {
  360. wmi_tlv_print_error
  361. ("%s: ERROR: TLV has wrong length for Cmd=0x%x. Given=%zu, Expected=%d.\n",
  362. __func__, wmi_cmd_event_id,
  363. (curr_tlv_len + WMI_TLV_HDR_SIZE),
  364. attr_struct_ptr.tag_struct_size);
  365. goto Error_wmitlv_check_tlv_params;
  366. }
  367. }
  368. /* Check TLV length is aligned to 4 bytes or not */
  369. if ((curr_tlv_len % sizeof(A_UINT32)) != 0) {
  370. wmi_tlv_print_error
  371. ("%s: ERROR: TLV length %d for Cmd=0x%x is not aligned to %zu bytes\n",
  372. __func__, curr_tlv_len, wmi_cmd_event_id,
  373. sizeof(A_UINT32));
  374. goto Error_wmitlv_check_tlv_params;
  375. }
  376. tlv_index++;
  377. buf_ptr += curr_tlv_len + WMI_TLV_HDR_SIZE;
  378. buf_idx += curr_tlv_len + WMI_TLV_HDR_SIZE;
  379. }
  380. if (tlv_index != expected_num_tlvs) {
  381. wmi_tlv_print_verbose
  382. ("%s: INFO: Less number of TLVs filled for Cmd=0x%x Filled %d Expected=%d\n",
  383. __func__, wmi_cmd_event_id, tlv_index, expected_num_tlvs);
  384. }
  385. return 0;
  386. Error_wmitlv_check_tlv_params:
  387. return error;
  388. }
  389. /**
  390. * wmitlv_check_event_tlv_params() - tlv helper function
  391. * @os_handle: os context handle
  392. * @param_struc_ptr: pointer to tlv structure
  393. * @is_cmd_id: boolean for command attribute
  394. * @wmi_cmd_event_id: command event id
  395. *
  396. *
  397. * Helper Function to vaidate the prepared TLV's for
  398. * an WMI event/command to be sent.
  399. *
  400. * Return: 0 if success. Return < 0 if failure.
  401. */
  402. int
  403. wmitlv_check_event_tlv_params(void *os_handle, void *param_struc_ptr,
  404. A_UINT32 param_buf_len, A_UINT32 wmi_cmd_event_id)
  405. {
  406. A_UINT32 is_cmd_id = 0;
  407. return wmitlv_check_tlv_params
  408. (os_handle, param_struc_ptr, param_buf_len, is_cmd_id,
  409. wmi_cmd_event_id);
  410. }
  411. /**
  412. * wmitlv_check_command_tlv_params() - tlv helper function
  413. * @os_handle: os context handle
  414. * @param_struc_ptr: pointer to tlv structure
  415. * @is_cmd_id: boolean for command attribute
  416. * @wmi_cmd_event_id: command event id
  417. *
  418. *
  419. * Helper Function to vaidate the prepared TLV's for
  420. * an WMI event/command to be sent.
  421. *
  422. * Return: 0 if success. Return < 0 if failure.
  423. */
  424. int
  425. wmitlv_check_command_tlv_params(void *os_handle, void *param_struc_ptr,
  426. A_UINT32 param_buf_len,
  427. A_UINT32 wmi_cmd_event_id)
  428. {
  429. A_UINT32 is_cmd_id = 1;
  430. return wmitlv_check_tlv_params
  431. (os_handle, param_struc_ptr, param_buf_len, is_cmd_id,
  432. wmi_cmd_event_id);
  433. }
  434. /**
  435. * wmitlv_check_and_pad_tlvs() - tlv helper function
  436. * @os_handle: os context handle
  437. * @param_buf_len: length of tlv parameter
  438. * @param_struc_ptr: pointer to tlv structure
  439. * @is_cmd_id: boolean for command attribute
  440. * @wmi_cmd_event_id: command event id
  441. * @wmi_cmd_struct_ptr: wmi command structure
  442. *
  443. *
  444. * vaidate the TLV's coming for an event/command and
  445. * also pads data to TLV's if necessary
  446. *
  447. * Return: 0 if success. Return < 0 if failure.
  448. */
  449. static int
  450. wmitlv_check_and_pad_tlvs(void *os_handle, void *param_struc_ptr,
  451. A_UINT32 param_buf_len, A_UINT32 is_cmd_id,
  452. A_UINT32 wmi_cmd_event_id, void **wmi_cmd_struct_ptr)
  453. {
  454. wmitlv_attributes_struc attr_struct_ptr;
  455. A_UINT32 buf_idx = 0;
  456. A_UINT32 tlv_index = 0;
  457. A_UINT32 num_of_elems = 0;
  458. int tlv_size_diff = 0;
  459. A_UINT8 *buf_ptr = (unsigned char *)param_struc_ptr;
  460. wmitlv_cmd_param_info *cmd_param_tlvs_ptr = NULL;
  461. A_UINT32 remaining_expected_tlvs = 0xFFFFFFFF;
  462. A_UINT32 len_wmi_cmd_struct_buf;
  463. A_INT32 error = -1;
  464. /* Get the number of TLVs for this command/event */
  465. if (wmitlv_get_attributes
  466. (is_cmd_id, wmi_cmd_event_id, WMITLV_GET_ATTRIB_NUM_TLVS,
  467. &attr_struct_ptr) != 0) {
  468. wmi_tlv_print_error
  469. ("%s: ERROR: Couldn't get expected number of TLVs for Cmd=%d\n",
  470. __func__, wmi_cmd_event_id);
  471. return error;
  472. }
  473. /* NOTE: the returned number of TLVs is in "attr_struct_ptr.cmd_num_tlv" */
  474. /* Create base structure of format wmi_cmd_event_id##_param_tlvs */
  475. len_wmi_cmd_struct_buf =
  476. attr_struct_ptr.cmd_num_tlv * sizeof(wmitlv_cmd_param_info);
  477. #ifndef NO_DYNAMIC_MEM_ALLOC
  478. /* Dynamic memory allocation supported */
  479. wmi_tlv_os_mem_alloc(os_handle, *wmi_cmd_struct_ptr,
  480. len_wmi_cmd_struct_buf);
  481. #else
  482. /* Dynamic memory allocation is not supported. Use the buffer
  483. * g_wmi_static_cmd_param_info_buf, which should be set using
  484. * wmi_tlv_set_static_param_tlv_buf(),
  485. * for base structure of format wmi_cmd_event_id##_param_tlvs */
  486. *wmi_cmd_struct_ptr = g_wmi_static_cmd_param_info_buf;
  487. if (attr_struct_ptr.cmd_num_tlv > g_wmi_static_max_cmd_param_tlvs) {
  488. /* Error: Expecting more TLVs that accomodated for static structure */
  489. wmi_tlv_print_error
  490. ("%s: Error: Expecting more TLVs that accomodated for static structure. Expected:%d Accomodated:%d\n",
  491. __func__, attr_struct_ptr.cmd_num_tlv,
  492. g_wmi_static_max_cmd_param_tlvs);
  493. return error;
  494. }
  495. #endif
  496. if (*wmi_cmd_struct_ptr == NULL) {
  497. /* Error: unable to alloc memory */
  498. wmi_tlv_print_error
  499. ("%s: Error: unable to alloc memory (size=%d) for TLV\n",
  500. __func__, len_wmi_cmd_struct_buf);
  501. return error;
  502. }
  503. cmd_param_tlvs_ptr = (wmitlv_cmd_param_info *) *wmi_cmd_struct_ptr;
  504. wmi_tlv_OS_MEMZERO(cmd_param_tlvs_ptr, len_wmi_cmd_struct_buf);
  505. remaining_expected_tlvs = attr_struct_ptr.cmd_num_tlv;
  506. while (((buf_idx + WMI_TLV_HDR_SIZE) <= param_buf_len)
  507. && (remaining_expected_tlvs)) {
  508. A_UINT32 curr_tlv_tag =
  509. WMITLV_GET_TLVTAG(WMITLV_GET_HDR(buf_ptr));
  510. A_UINT32 curr_tlv_len =
  511. WMITLV_GET_TLVLEN(WMITLV_GET_HDR(buf_ptr));
  512. int num_padding_bytes = 0;
  513. /* Get the attributes of the TLV with the given order in "tlv_index" */
  514. wmi_tlv_OS_MEMZERO(&attr_struct_ptr,
  515. sizeof(wmitlv_attributes_struc));
  516. if (wmitlv_get_attributes
  517. (is_cmd_id, wmi_cmd_event_id, tlv_index,
  518. &attr_struct_ptr) != 0) {
  519. wmi_tlv_print_error
  520. ("%s: ERROR: No TLV attributes found for Cmd=%d Tag_order=%d\n",
  521. __func__, wmi_cmd_event_id, tlv_index);
  522. goto Error_wmitlv_check_and_pad_tlvs;
  523. }
  524. /* Found the TLV that we wanted */
  525. wmi_tlv_print_verbose("%s: [tlv %d]: tag=%d, len=%d\n",
  526. __func__, tlv_index, curr_tlv_tag,
  527. curr_tlv_len);
  528. /* Validating Tag order */
  529. if (curr_tlv_tag != attr_struct_ptr.tag_id) {
  530. wmi_tlv_print_error
  531. ("%s: ERROR: TLV has wrong tag in order for Cmd=0x%x. Given=%d, Expected=%d.\n",
  532. __func__, wmi_cmd_event_id, curr_tlv_tag,
  533. attr_struct_ptr.tag_id);
  534. goto Error_wmitlv_check_and_pad_tlvs;
  535. }
  536. if ((curr_tlv_tag >= WMITLV_TAG_FIRST_ARRAY_ENUM)
  537. && (curr_tlv_tag <= WMITLV_TAG_LAST_ARRAY_ENUM)) {
  538. /* Current Tag is an array of some kind. */
  539. /* Skip the TLV header of this array */
  540. buf_ptr += WMI_TLV_HDR_SIZE;
  541. buf_idx += WMI_TLV_HDR_SIZE;
  542. } else {
  543. /* Non-array TLV. */
  544. curr_tlv_len += WMI_TLV_HDR_SIZE;
  545. }
  546. if (attr_struct_ptr.tag_varied_size == WMITLV_SIZE_FIX) {
  547. /* This TLV is fixed length */
  548. if (WMITLV_ARR_SIZE_INVALID ==
  549. attr_struct_ptr.tag_array_size) {
  550. tlv_size_diff =
  551. curr_tlv_len -
  552. attr_struct_ptr.tag_struct_size;
  553. num_of_elems =
  554. (curr_tlv_len > WMI_TLV_HDR_SIZE) ? 1 : 0;
  555. } else {
  556. tlv_size_diff =
  557. curr_tlv_len -
  558. (attr_struct_ptr.tag_struct_size *
  559. attr_struct_ptr.tag_array_size);
  560. num_of_elems = attr_struct_ptr.tag_array_size;
  561. }
  562. } else {
  563. /* This TLV has a variable number of elements */
  564. if (WMITLV_TAG_ARRAY_STRUC == attr_struct_ptr.tag_id) {
  565. A_UINT32 in_tlv_len = 0;
  566. if (curr_tlv_len != 0) {
  567. in_tlv_len =
  568. WMITLV_GET_TLVLEN(WMITLV_GET_HDR
  569. (buf_ptr));
  570. in_tlv_len += WMI_TLV_HDR_SIZE;
  571. tlv_size_diff =
  572. in_tlv_len -
  573. attr_struct_ptr.tag_struct_size;
  574. num_of_elems =
  575. curr_tlv_len / in_tlv_len;
  576. wmi_tlv_print_verbose
  577. ("%s: WARN: TLV array of structures in_tlv_len=%d struct_size:%d diff:%d num_of_elems=%d \n",
  578. __func__, in_tlv_len,
  579. attr_struct_ptr.tag_struct_size,
  580. tlv_size_diff, num_of_elems);
  581. } else {
  582. tlv_size_diff = 0;
  583. num_of_elems = 0;
  584. }
  585. } else
  586. if ((WMITLV_TAG_ARRAY_UINT32 ==
  587. attr_struct_ptr.tag_id)
  588. || (WMITLV_TAG_ARRAY_BYTE ==
  589. attr_struct_ptr.tag_id)
  590. || (WMITLV_TAG_ARRAY_FIXED_STRUC ==
  591. attr_struct_ptr.tag_id)) {
  592. tlv_size_diff = 0;
  593. num_of_elems =
  594. curr_tlv_len /
  595. attr_struct_ptr.tag_struct_size;
  596. } else {
  597. wmi_tlv_print_error
  598. ("%s ERROR Need to handle this tag ID for variable length %d\n",
  599. __func__, attr_struct_ptr.tag_id);
  600. goto Error_wmitlv_check_and_pad_tlvs;
  601. }
  602. }
  603. if ((WMITLV_TAG_ARRAY_STRUC == attr_struct_ptr.tag_id) &&
  604. (tlv_size_diff != 0)) {
  605. void *new_tlv_buf = NULL;
  606. A_UINT8 *tlv_buf_ptr = NULL;
  607. A_UINT32 in_tlv_len;
  608. A_UINT32 i;
  609. if (attr_struct_ptr.tag_varied_size == WMITLV_SIZE_FIX) {
  610. /* This is not allowed. The tag WMITLV_TAG_ARRAY_STRUC can
  611. * only be used with variable-length structure array
  612. * should not have a fixed number of elements (contradicting).
  613. * Use WMITLV_TAG_ARRAY_FIXED_STRUC tag for fixed size
  614. * structure array(where structure never change without
  615. * breaking compatibility) */
  616. wmi_tlv_print_error
  617. ("%s: ERROR: TLV (tag=%d) should be variable-length and not fixed length\n",
  618. __func__, curr_tlv_tag);
  619. goto Error_wmitlv_check_and_pad_tlvs;
  620. }
  621. /* Warning: Needs to allocate a larger structure and pad with zeros */
  622. wmi_tlv_print_verbose
  623. ("%s: WARN: TLV array of structures needs padding. tlv_size_diff=%d\n",
  624. __func__, tlv_size_diff);
  625. /* incoming structure length */
  626. in_tlv_len =
  627. WMITLV_GET_TLVLEN(WMITLV_GET_HDR(buf_ptr)) +
  628. WMI_TLV_HDR_SIZE;
  629. #ifndef NO_DYNAMIC_MEM_ALLOC
  630. wmi_tlv_os_mem_alloc(os_handle, new_tlv_buf,
  631. (num_of_elems *
  632. attr_struct_ptr.tag_struct_size));
  633. if (new_tlv_buf == NULL) {
  634. /* Error: unable to alloc memory */
  635. wmi_tlv_print_error
  636. ("%s: Error: unable to alloc memory (size=%d) for padding the TLV array %d\n",
  637. __func__,
  638. (num_of_elems *
  639. attr_struct_ptr.tag_struct_size),
  640. curr_tlv_tag);
  641. goto Error_wmitlv_check_and_pad_tlvs;
  642. }
  643. wmi_tlv_OS_MEMZERO(new_tlv_buf,
  644. (num_of_elems *
  645. attr_struct_ptr.tag_struct_size));
  646. tlv_buf_ptr = (A_UINT8 *) new_tlv_buf;
  647. for (i = 0; i < num_of_elems; i++) {
  648. if (tlv_size_diff > 0) {
  649. /* Incoming structure size is greater than expected
  650. * structure size. so copy the number of bytes equal
  651. * to expected structure size */
  652. wmi_tlv_OS_MEMCPY(tlv_buf_ptr,
  653. (void *)(buf_ptr +
  654. i *
  655. in_tlv_len),
  656. attr_struct_ptr.
  657. tag_struct_size);
  658. } else {
  659. /* Incoming structure size is smaller than expected
  660. * structure size. so copy the number of bytes equal
  661. * to incoming structure size */
  662. wmi_tlv_OS_MEMCPY(tlv_buf_ptr,
  663. (void *)(buf_ptr +
  664. i *
  665. in_tlv_len),
  666. in_tlv_len);
  667. }
  668. tlv_buf_ptr += attr_struct_ptr.tag_struct_size;
  669. }
  670. #else
  671. {
  672. A_UINT8 *src_addr;
  673. A_UINT8 *dst_addr;
  674. A_UINT32 buf_mov_len;
  675. if (tlv_size_diff < 0) {
  676. /* Incoming structure size is smaller than expected size
  677. * then this needs padding for each element in the array */
  678. /* Find amount of bytes to be padded for one element */
  679. num_padding_bytes = tlv_size_diff * -1;
  680. /* Move subsequent TLVs by number of bytes to be padded
  681. * for all elements */
  682. if (param_buf_len >
  683. (buf_idx + curr_tlv_len)) {
  684. src_addr =
  685. buf_ptr + curr_tlv_len;
  686. dst_addr =
  687. buf_ptr + curr_tlv_len +
  688. (num_padding_bytes *
  689. num_of_elems);
  690. buf_mov_len =
  691. param_buf_len - (buf_idx +
  692. curr_tlv_len);
  693. wmi_tlv_OS_MEMMOVE(dst_addr,
  694. src_addr,
  695. buf_mov_len);
  696. }
  697. /* Move subsequent elements of array down by number of
  698. * bytes to be padded for one element and alse set
  699. * padding bytes to zero */
  700. tlv_buf_ptr = buf_ptr;
  701. for (i = 0; i < num_of_elems; i++) {
  702. src_addr =
  703. tlv_buf_ptr + in_tlv_len;
  704. if (i != (num_of_elems - 1)) {
  705. /* Need not move anything for last element
  706. * in the array */
  707. dst_addr =
  708. tlv_buf_ptr +
  709. in_tlv_len +
  710. num_padding_bytes;
  711. buf_mov_len =
  712. curr_tlv_len -
  713. ((i +
  714. 1) * in_tlv_len);
  715. wmi_tlv_OS_MEMMOVE
  716. (dst_addr, src_addr,
  717. buf_mov_len);
  718. }
  719. /* Set the padding bytes to zeroes */
  720. wmi_tlv_OS_MEMZERO(src_addr,
  721. num_padding_bytes);
  722. tlv_buf_ptr +=
  723. attr_struct_ptr.
  724. tag_struct_size;
  725. }
  726. /* Update the number of padding bytes to total number
  727. * of bytes padded for all elements in the array */
  728. num_padding_bytes =
  729. num_padding_bytes * num_of_elems;
  730. new_tlv_buf = buf_ptr;
  731. } else {
  732. /* Incoming structure size is greater than expected size
  733. * then this needs shrinking for each element in the array */
  734. /* Find amount of bytes to be shrinked for one element */
  735. num_padding_bytes = tlv_size_diff * -1;
  736. /* Move subsequent elements of array up by number of bytes
  737. * to be shrinked for one element */
  738. tlv_buf_ptr = buf_ptr;
  739. for (i = 0; i < (num_of_elems - 1); i++) {
  740. src_addr =
  741. tlv_buf_ptr + in_tlv_len;
  742. dst_addr =
  743. tlv_buf_ptr + in_tlv_len +
  744. num_padding_bytes;
  745. buf_mov_len =
  746. curr_tlv_len -
  747. ((i + 1) * in_tlv_len);
  748. wmi_tlv_OS_MEMMOVE(dst_addr,
  749. src_addr,
  750. buf_mov_len);
  751. tlv_buf_ptr +=
  752. attr_struct_ptr.
  753. tag_struct_size;
  754. }
  755. /* Move subsequent TLVs by number of bytes to be shrinked
  756. * for all elements */
  757. if (param_buf_len >
  758. (buf_idx + curr_tlv_len)) {
  759. src_addr =
  760. buf_ptr + curr_tlv_len;
  761. dst_addr =
  762. buf_ptr + curr_tlv_len +
  763. (num_padding_bytes *
  764. num_of_elems);
  765. buf_mov_len =
  766. param_buf_len - (buf_idx +
  767. curr_tlv_len);
  768. wmi_tlv_OS_MEMMOVE(dst_addr,
  769. src_addr,
  770. buf_mov_len);
  771. }
  772. /* Update the number of padding bytes to total number of
  773. * bytes shrinked for all elements in the array */
  774. num_padding_bytes =
  775. num_padding_bytes * num_of_elems;
  776. new_tlv_buf = buf_ptr;
  777. }
  778. }
  779. #endif
  780. cmd_param_tlvs_ptr[tlv_index].tlv_ptr = new_tlv_buf;
  781. cmd_param_tlvs_ptr[tlv_index].num_elements =
  782. num_of_elems;
  783. cmd_param_tlvs_ptr[tlv_index].buf_is_allocated = 1; /* Indicates that buffer is allocated */
  784. } else if (tlv_size_diff >= 0) {
  785. /* Warning: some parameter truncation */
  786. if (tlv_size_diff > 0) {
  787. wmi_tlv_print_verbose
  788. ("%s: WARN: TLV truncated. tlv_size_diff=%d, curr_tlv_len=%d\n",
  789. __func__, tlv_size_diff, curr_tlv_len);
  790. }
  791. /* TODO: this next line needs more comments and explanation */
  792. cmd_param_tlvs_ptr[tlv_index].tlv_ptr =
  793. (attr_struct_ptr.tag_varied_size
  794. && !curr_tlv_len) ? NULL : (void *)buf_ptr;
  795. cmd_param_tlvs_ptr[tlv_index].num_elements =
  796. num_of_elems;
  797. cmd_param_tlvs_ptr[tlv_index].buf_is_allocated = 0; /* Indicates that buffer is not allocated */
  798. } else {
  799. void *new_tlv_buf = NULL;
  800. /* Warning: Needs to allocate a larger structure and pad with zeros */
  801. wmi_tlv_print_verbose
  802. ("%s: WARN: TLV needs padding. tlv_size_diff=%d\n",
  803. __func__, tlv_size_diff);
  804. #ifndef NO_DYNAMIC_MEM_ALLOC
  805. /* Dynamic memory allocation is supported */
  806. wmi_tlv_os_mem_alloc(os_handle, new_tlv_buf,
  807. (curr_tlv_len - tlv_size_diff));
  808. if (new_tlv_buf == NULL) {
  809. /* Error: unable to alloc memory */
  810. wmi_tlv_print_error
  811. ("%s: Error: unable to alloc memory (size=%d) for padding the TLV %d\n",
  812. __func__, (curr_tlv_len - tlv_size_diff),
  813. curr_tlv_tag);
  814. goto Error_wmitlv_check_and_pad_tlvs;
  815. }
  816. wmi_tlv_OS_MEMZERO(new_tlv_buf,
  817. (curr_tlv_len - tlv_size_diff));
  818. wmi_tlv_OS_MEMCPY(new_tlv_buf, (void *)buf_ptr,
  819. curr_tlv_len);
  820. #else
  821. /* Dynamic memory allocation is not supported. Padding has
  822. * to be done with in the existing buffer assuming we have
  823. * enough space to grow */
  824. {
  825. /* Note: tlv_size_diff is a value less than zero */
  826. /* Move the Subsequent TLVs by amount of bytes needs to be padded */
  827. A_UINT8 *src_addr;
  828. A_UINT8 *dst_addr;
  829. A_UINT32 src_len;
  830. num_padding_bytes = (tlv_size_diff * -1);
  831. src_addr = buf_ptr + curr_tlv_len;
  832. dst_addr =
  833. buf_ptr + curr_tlv_len + num_padding_bytes;
  834. src_len =
  835. param_buf_len - (buf_idx + curr_tlv_len);
  836. wmi_tlv_OS_MEMMOVE(dst_addr, src_addr, src_len);
  837. /* Set the padding bytes to zeroes */
  838. wmi_tlv_OS_MEMZERO(src_addr, num_padding_bytes);
  839. new_tlv_buf = buf_ptr;
  840. }
  841. #endif
  842. cmd_param_tlvs_ptr[tlv_index].tlv_ptr = new_tlv_buf;
  843. cmd_param_tlvs_ptr[tlv_index].num_elements =
  844. num_of_elems;
  845. cmd_param_tlvs_ptr[tlv_index].buf_is_allocated = 1; /* Indicates that buffer is allocated */
  846. }
  847. tlv_index++;
  848. remaining_expected_tlvs--;
  849. buf_ptr += curr_tlv_len + num_padding_bytes;
  850. buf_idx += curr_tlv_len + num_padding_bytes;
  851. }
  852. return 0;
  853. Error_wmitlv_check_and_pad_tlvs:
  854. if (is_cmd_id) {
  855. wmitlv_free_allocated_command_tlvs(wmi_cmd_event_id,
  856. wmi_cmd_struct_ptr);
  857. } else {
  858. wmitlv_free_allocated_event_tlvs(wmi_cmd_event_id,
  859. wmi_cmd_struct_ptr);
  860. }
  861. *wmi_cmd_struct_ptr = NULL;
  862. return error;
  863. }
  864. /**
  865. * wmitlv_check_and_pad_event_tlvs() - tlv helper function
  866. * @os_handle: os context handle
  867. * @param_struc_ptr: pointer to tlv structure
  868. * @param_buf_len: length of tlv parameter
  869. * @wmi_cmd_event_id: command event id
  870. * @wmi_cmd_struct_ptr: wmi command structure
  871. *
  872. *
  873. * validate and pad(if necessary) for incoming WMI Event TLVs
  874. *
  875. * Return: 0 if success. Return < 0 if failure.
  876. */
  877. int
  878. wmitlv_check_and_pad_event_tlvs(void *os_handle, void *param_struc_ptr,
  879. A_UINT32 param_buf_len,
  880. A_UINT32 wmi_cmd_event_id,
  881. void **wmi_cmd_struct_ptr)
  882. {
  883. A_UINT32 is_cmd_id = 0;
  884. return wmitlv_check_and_pad_tlvs
  885. (os_handle, param_struc_ptr, param_buf_len, is_cmd_id,
  886. wmi_cmd_event_id, wmi_cmd_struct_ptr);
  887. }
  888. /**
  889. * wmitlv_check_and_pad_command_tlvs() - tlv helper function
  890. * @os_handle: os context handle
  891. * @param_struc_ptr: pointer to tlv structure
  892. * @param_buf_len: length of tlv parameter
  893. * @wmi_cmd_event_id: command event id
  894. * @wmi_cmd_struct_ptr: wmi command structure
  895. *
  896. *
  897. * validate and pad(if necessary) for incoming WMI Command TLVs
  898. *
  899. * Return: 0 if success. Return < 0 if failure.
  900. */
  901. int
  902. wmitlv_check_and_pad_command_tlvs(void *os_handle, void *param_struc_ptr,
  903. A_UINT32 param_buf_len,
  904. A_UINT32 wmi_cmd_event_id,
  905. void **wmi_cmd_struct_ptr)
  906. {
  907. A_UINT32 is_cmd_id = 1;
  908. return wmitlv_check_and_pad_tlvs
  909. (os_handle, param_struc_ptr, param_buf_len, is_cmd_id,
  910. wmi_cmd_event_id, wmi_cmd_struct_ptr);
  911. }
  912. /**
  913. * wmitlv_free_allocated_tlvs() - tlv helper function
  914. * @is_cmd_id: bollean to check if cmd or event tlv
  915. * @cmd_event_id: command or event id
  916. * @wmi_cmd_struct_ptr: wmi command structure
  917. *
  918. *
  919. * free any allocated buffers for WMI Event/Command TLV processing
  920. *
  921. * Return: none
  922. */
  923. static void wmitlv_free_allocated_tlvs(A_UINT32 is_cmd_id,
  924. A_UINT32 cmd_event_id,
  925. void **wmi_cmd_struct_ptr)
  926. {
  927. void *ptr = *wmi_cmd_struct_ptr;
  928. if (!ptr) {
  929. wmi_tlv_print_error("%s: Nothing to free for CMD/Event 0x%x\n",
  930. __func__, cmd_event_id);
  931. return;
  932. }
  933. #ifndef NO_DYNAMIC_MEM_ALLOC
  934. /* macro to free that previously allocated memory for this TLV. When (op==FREE_TLV_ELEM). */
  935. #define WMITLV_OP_FREE_TLV_ELEM_macro(param_ptr, param_len, wmi_cmd_event_id, elem_tlv_tag, elem_struc_type, elem_name, var_len, arr_size) \
  936. if ((((WMITLV_TYPEDEF_STRUCT_PARAMS_TLVS(wmi_cmd_event_id) *)ptr)->WMITLV_FIELD_BUF_IS_ALLOCATED(elem_name)) && \
  937. (((WMITLV_TYPEDEF_STRUCT_PARAMS_TLVS(wmi_cmd_event_id) *)ptr)->elem_name != NULL)) \
  938. { \
  939. wmi_tlv_os_mem_free(((WMITLV_TYPEDEF_STRUCT_PARAMS_TLVS(wmi_cmd_event_id) *)ptr)->elem_name); \
  940. }
  941. #define WMITLV_FREE_TLV_ELEMS(id) \
  942. case id: \
  943. { \
  944. WMITLV_TABLE(id, FREE_TLV_ELEM, NULL, 0) \
  945. } \
  946. break;
  947. if (is_cmd_id) {
  948. switch (cmd_event_id) {
  949. WMITLV_ALL_CMD_LIST(WMITLV_FREE_TLV_ELEMS);
  950. default:
  951. wmi_tlv_print_error
  952. ("%s: ERROR: Cannot find the TLVs attributes for Cmd=0x%x, %d\n",
  953. __func__, cmd_event_id, cmd_event_id);
  954. }
  955. } else {
  956. switch (cmd_event_id) {
  957. WMITLV_ALL_EVT_LIST(WMITLV_FREE_TLV_ELEMS);
  958. default:
  959. wmi_tlv_print_error
  960. ("%s: ERROR: Cannot find the TLVs attributes for Cmd=0x%x, %d\n",
  961. __func__, cmd_event_id, cmd_event_id);
  962. }
  963. }
  964. wmi_tlv_os_mem_free(*wmi_cmd_struct_ptr);
  965. *wmi_cmd_struct_ptr = NULL;
  966. #endif
  967. return;
  968. }
  969. /**
  970. * wmitlv_free_allocated_command_tlvs() - tlv helper function
  971. * @cmd_event_id: command or event id
  972. * @wmi_cmd_struct_ptr: wmi command structure
  973. *
  974. *
  975. * free any allocated buffers for WMI Event/Command TLV processing
  976. *
  977. * Return: none
  978. */
  979. void wmitlv_free_allocated_command_tlvs(A_UINT32 cmd_event_id,
  980. void **wmi_cmd_struct_ptr)
  981. {
  982. wmitlv_free_allocated_tlvs(1, cmd_event_id, wmi_cmd_struct_ptr);
  983. }
  984. /**
  985. * wmitlv_free_allocated_event_tlvs() - tlv helper function
  986. * @cmd_event_id: command or event id
  987. * @wmi_cmd_struct_ptr: wmi command structure
  988. *
  989. *
  990. * free any allocated buffers for WMI Event/Command TLV processing
  991. *
  992. * Return: none
  993. */
  994. void wmitlv_free_allocated_event_tlvs(A_UINT32 cmd_event_id,
  995. void **wmi_cmd_struct_ptr)
  996. {
  997. wmitlv_free_allocated_tlvs(0, cmd_event_id, wmi_cmd_struct_ptr);
  998. }
  999. /**
  1000. * wmi_versions_are_compatible() - tlv helper function
  1001. * @vers1: host wmi version
  1002. * @vers2: target wmi version
  1003. *
  1004. *
  1005. * check if two given wmi versions are compatible
  1006. *
  1007. * Return: none
  1008. */
  1009. int
  1010. wmi_versions_are_compatible(wmi_abi_version *vers1, wmi_abi_version *vers2)
  1011. {
  1012. if ((vers1->abi_version_ns_0 != vers2->abi_version_ns_0) ||
  1013. (vers1->abi_version_ns_1 != vers2->abi_version_ns_1) ||
  1014. (vers1->abi_version_ns_2 != vers2->abi_version_ns_2) ||
  1015. (vers1->abi_version_ns_3 != vers2->abi_version_ns_3)) {
  1016. /* The namespaces are different. Incompatible. */
  1017. return 0;
  1018. }
  1019. if (vers1->abi_version_0 != vers2->abi_version_0) {
  1020. /* The major or minor versions are different. Incompatible */
  1021. return 0;
  1022. }
  1023. /* We ignore the build version */
  1024. return 1;
  1025. }
  1026. /**
  1027. * wmi_versions_can_downgrade() - tlv helper function
  1028. * @version_whitelist_table: version table
  1029. * @my_vers: host version
  1030. * @opp_vers: target version
  1031. * @out_vers: downgraded version
  1032. *
  1033. *
  1034. * check if target wmi version can be downgraded
  1035. *
  1036. * Return: 0 if success. Return < 0 if failure.
  1037. */
  1038. static int
  1039. wmi_versions_can_downgrade(int num_whitelist,
  1040. wmi_whitelist_version_info *version_whitelist_table,
  1041. wmi_abi_version *my_vers,
  1042. wmi_abi_version *opp_vers,
  1043. wmi_abi_version *out_vers)
  1044. {
  1045. A_UINT8 can_try_to_downgrade;
  1046. A_UINT32 my_major_vers = WMI_VER_GET_MAJOR(my_vers->abi_version_0);
  1047. A_UINT32 my_minor_vers = WMI_VER_GET_MINOR(my_vers->abi_version_0);
  1048. A_UINT32 opp_major_vers = WMI_VER_GET_MAJOR(opp_vers->abi_version_0);
  1049. A_UINT32 opp_minor_vers = WMI_VER_GET_MINOR(opp_vers->abi_version_0);
  1050. A_UINT32 downgraded_minor_vers;
  1051. if ((my_vers->abi_version_ns_0 != opp_vers->abi_version_ns_0) ||
  1052. (my_vers->abi_version_ns_1 != opp_vers->abi_version_ns_1) ||
  1053. (my_vers->abi_version_ns_2 != opp_vers->abi_version_ns_2) ||
  1054. (my_vers->abi_version_ns_3 != opp_vers->abi_version_ns_3)) {
  1055. /* The namespaces are different. Incompatible. */
  1056. can_try_to_downgrade = false;
  1057. } else if (my_major_vers != opp_major_vers) {
  1058. /* Major version is different. Incompatible and cannot downgrade. */
  1059. can_try_to_downgrade = false;
  1060. } else {
  1061. /* Same major version. */
  1062. if (my_minor_vers < opp_minor_vers) {
  1063. /* Opposite party is newer. Incompatible and cannot downgrade. */
  1064. can_try_to_downgrade = false;
  1065. } else if (my_minor_vers > opp_minor_vers) {
  1066. /* Opposite party is older. Check whitelist if we can downgrade */
  1067. can_try_to_downgrade = true;
  1068. } else {
  1069. /* Same version */
  1070. wmi_tlv_OS_MEMCPY(out_vers, my_vers,
  1071. sizeof(wmi_abi_version));
  1072. return 1;
  1073. }
  1074. }
  1075. if (!can_try_to_downgrade) {
  1076. wmi_tlv_print_error("%s: Warning: incompatible WMI version.\n",
  1077. __func__);
  1078. wmi_tlv_OS_MEMCPY(out_vers, my_vers, sizeof(wmi_abi_version));
  1079. return 0;
  1080. }
  1081. /* Try to see we can downgrade the supported version */
  1082. downgraded_minor_vers = my_minor_vers;
  1083. while (downgraded_minor_vers > opp_minor_vers) {
  1084. A_UINT8 downgraded = false;
  1085. int i;
  1086. for (i = 0; i < num_whitelist; i++) {
  1087. if (version_whitelist_table[i].major != my_major_vers) {
  1088. continue; /* skip */
  1089. }
  1090. if ((version_whitelist_table[i].namespace_0 !=
  1091. my_vers->abi_version_ns_0)
  1092. || (version_whitelist_table[i].namespace_1 !=
  1093. my_vers->abi_version_ns_1)
  1094. || (version_whitelist_table[i].namespace_2 !=
  1095. my_vers->abi_version_ns_2)
  1096. || (version_whitelist_table[i].namespace_3 !=
  1097. my_vers->abi_version_ns_3)) {
  1098. continue; /* skip */
  1099. }
  1100. if (version_whitelist_table[i].minor ==
  1101. downgraded_minor_vers) {
  1102. /* Found the next version that I can downgrade */
  1103. wmi_tlv_print_error
  1104. ("%s: Note: found a whitelist entry to downgrade. wh. list ver: %d,%d,0x%x 0x%x 0x%x 0x%x\n",
  1105. __func__, version_whitelist_table[i].major,
  1106. version_whitelist_table[i].minor,
  1107. version_whitelist_table[i].namespace_0,
  1108. version_whitelist_table[i].namespace_1,
  1109. version_whitelist_table[i].namespace_2,
  1110. version_whitelist_table[i].namespace_3);
  1111. downgraded_minor_vers--;
  1112. downgraded = true;
  1113. break;
  1114. }
  1115. }
  1116. if (!downgraded) {
  1117. break; /* Done since we did not find any whitelist to downgrade version */
  1118. }
  1119. }
  1120. wmi_tlv_OS_MEMCPY(out_vers, my_vers, sizeof(wmi_abi_version));
  1121. out_vers->abi_version_0 =
  1122. WMI_VER_GET_VERSION_0(my_major_vers, downgraded_minor_vers);
  1123. if (downgraded_minor_vers != opp_minor_vers) {
  1124. wmi_tlv_print_error
  1125. ("%s: Warning: incompatible WMI version and cannot downgrade.\n",
  1126. __func__);
  1127. return 0; /* Incompatible */
  1128. } else {
  1129. return 1; /* Compatible */
  1130. }
  1131. }
  1132. /**
  1133. * wmi_cmp_and_set_abi_version() - tlv helper function
  1134. * @version_whitelist_table: version table
  1135. * @my_vers: host version
  1136. * @opp_vers: target version
  1137. * @out_vers: downgraded version
  1138. *
  1139. * This routine will compare and set the WMI ABI version.
  1140. * First, compare my version with the opposite side's version.
  1141. * If incompatible, then check the whitelist to see if our side can downgrade.
  1142. * Finally, fill in the final ABI version into the output, out_vers.
  1143. * Return 0 if the output version is compatible
  1144. * Else return 1 if the output version is incompatible
  1145. *
  1146. * Return: 0 if the output version is compatible else < 0.
  1147. */
  1148. int
  1149. wmi_cmp_and_set_abi_version(int num_whitelist,
  1150. wmi_whitelist_version_info *
  1151. version_whitelist_table,
  1152. struct _wmi_abi_version *my_vers,
  1153. struct _wmi_abi_version *opp_vers,
  1154. struct _wmi_abi_version *out_vers)
  1155. {
  1156. wmi_tlv_print_verbose
  1157. ("%s: Our WMI Version: Mj=%d, Mn=%d, bd=%d, ns0=0x%x ns1:0x%x ns2:0x%x ns3:0x%x\n",
  1158. __func__, WMI_VER_GET_MAJOR(my_vers->abi_version_0),
  1159. WMI_VER_GET_MINOR(my_vers->abi_version_0), my_vers->abi_version_1,
  1160. my_vers->abi_version_ns_0, my_vers->abi_version_ns_1,
  1161. my_vers->abi_version_ns_2, my_vers->abi_version_ns_3);
  1162. wmi_tlv_print_verbose
  1163. ("%s: Opposite side WMI Version: Mj=%d, Mn=%d, bd=%d, ns0=0x%x ns1:0x%x ns2:0x%x ns3:0x%x\n",
  1164. __func__, WMI_VER_GET_MAJOR(opp_vers->abi_version_0),
  1165. WMI_VER_GET_MINOR(opp_vers->abi_version_0),
  1166. opp_vers->abi_version_1, opp_vers->abi_version_ns_0,
  1167. opp_vers->abi_version_ns_1, opp_vers->abi_version_ns_2,
  1168. opp_vers->abi_version_ns_3);
  1169. /* By default, the output version is our version. */
  1170. wmi_tlv_OS_MEMCPY(out_vers, my_vers, sizeof(wmi_abi_version));
  1171. if (!wmi_versions_are_compatible(my_vers, opp_vers)) {
  1172. /* Our host version and the given firmware version are incompatible. */
  1173. if (wmi_versions_can_downgrade
  1174. (num_whitelist, version_whitelist_table, my_vers, opp_vers,
  1175. out_vers)) {
  1176. /* We can downgrade our host versions to match firmware. */
  1177. wmi_tlv_print_error
  1178. ("%s: Host downgraded WMI Versions to match fw. Ret version: Mj=%d, Mn=%d, bd=%d, ns0=0x%x ns1:0x%x ns2:0x%x ns3:0x%x\n",
  1179. __func__,
  1180. WMI_VER_GET_MAJOR(out_vers->abi_version_0),
  1181. WMI_VER_GET_MINOR(out_vers->abi_version_0),
  1182. out_vers->abi_version_1,
  1183. out_vers->abi_version_ns_0,
  1184. out_vers->abi_version_ns_1,
  1185. out_vers->abi_version_ns_2,
  1186. out_vers->abi_version_ns_3);
  1187. return 0; /* Compatible */
  1188. } else {
  1189. /* Warn: We cannot downgrade our host versions to match firmware. */
  1190. wmi_tlv_print_error
  1191. ("%s: WARN: Host WMI Versions mismatch with fw. Ret version: Mj=%d, Mn=%d, bd=%d, ns0=0x%x ns1:0x%x ns2:0x%x ns3:0x%x\n",
  1192. __func__,
  1193. WMI_VER_GET_MAJOR(out_vers->abi_version_0),
  1194. WMI_VER_GET_MINOR(out_vers->abi_version_0),
  1195. out_vers->abi_version_1,
  1196. out_vers->abi_version_ns_0,
  1197. out_vers->abi_version_ns_1,
  1198. out_vers->abi_version_ns_2,
  1199. out_vers->abi_version_ns_3);
  1200. return 1; /* Incompatible */
  1201. }
  1202. } else {
  1203. /* We are compatible. Our host version is the output version */
  1204. wmi_tlv_print_verbose
  1205. ("%s: Host and FW Compatible WMI Versions. Ret version: Mj=%d, Mn=%d, bd=%d, ns0=0x%x ns1:0x%x ns2:0x%x ns3:0x%x\n",
  1206. __func__, WMI_VER_GET_MAJOR(out_vers->abi_version_0),
  1207. WMI_VER_GET_MINOR(out_vers->abi_version_0),
  1208. out_vers->abi_version_1, out_vers->abi_version_ns_0,
  1209. out_vers->abi_version_ns_1, out_vers->abi_version_ns_2,
  1210. out_vers->abi_version_ns_3);
  1211. return 0; /* Compatible */
  1212. }
  1213. }