wmi_tlv_helper.c 39 KB

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