panther_nvm_manifest.c 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  1. /****************************************************************************
  2. Copyright (c) 2013, 2020 Qualcomm Technologies, Inc.
  3. All Rights Reserved.
  4. Confidential and Proprietary - Qualcomm Technologies, Inc.
  5. **********************************************************************
  6. 2013 Qualcomm Atheros, Inc.
  7. ****************************************************************************/
  8. /*====================================================================*
  9. *
  10. * signed panther_nvm_manifest (void const * memory, size_t extent);
  11. *
  12. * print manifest contents on stdout in human readable format;
  13. *
  14. * Contributor(s):
  15. * Charles Maier <cmaier@qca.qualcomm.com>
  16. *
  17. *--------------------------------------------------------------------*/
  18. #ifndef PANTHER_NVM_MANIFEST_SOURCE
  19. #define PANTHER_NVM_MANIFEST_SOURCE
  20. #include <stdio.h>
  21. #include <stdlib.h>
  22. #include <stdint.h>
  23. #include <errno.h>
  24. #include "../tools/format.h"
  25. #include "../tools/memory.h"
  26. #include "../tools/endian.h"
  27. #include "../tools/error.h"
  28. #include "../tools/files.h"
  29. #include "../tools/tlv.h"
  30. #include "../nvm/nvm.h"
  31. /*
  32. * strings must appear in order of hardware types;
  33. */
  34. #ifndef PANTHER_NVM_REVISION_SOURCE
  35. static char const * compatibility [] =
  36. {
  37. "QCA7420",
  38. "QCA700X",
  39. (char const *) (0)
  40. };
  41. #endif
  42. /*
  43. * strings must appear in order of field type; the last string is the error string;
  44. */
  45. static char const * nvm_fields [] =
  46. {
  47. "Signature",
  48. "Hardware Compatibility",
  49. "Chain Major Version",
  50. "Chain Minor Version",
  51. "Chain Type",
  52. "Build Major Version",
  53. "Build Minor Version",
  54. "Build Type",
  55. "Manifest Version",
  56. "Build Number",
  57. "Build Date",
  58. "Build Time",
  59. "Device Type",
  60. "Build Hostname",
  61. "Build Username",
  62. "Build Description",
  63. "Build Version String",
  64. "Build Sustaining Release",
  65. "Build Major Subversion",
  66. "Generic Identifier 0",
  67. "Generic Identifier 1",
  68. "Softloader Major Version",
  69. "Softloader Minor Version",
  70. "Manifest Free Space",
  71. "Unknown Type"
  72. };
  73. /*
  74. * strings must appear in order of chain type;
  75. */
  76. static char const * nvm_chains [] =
  77. {
  78. "Softloader",
  79. "Firmware",
  80. "Parameter Block",
  81. "CustomModule"
  82. };
  83. /*====================================================================*
  84. *
  85. * char * myitoa (unsigned number, char buffer [], size_t length);
  86. *
  87. * non-standard version of itoa () where buffer is packed right-
  88. * to-left to avoid reversing digits; ensure buffer is longer
  89. * than needed;
  90. *
  91. * Contributor(s):
  92. * Charles Maier <cmaier@qca.qualcomm.com>
  93. *
  94. *--------------------------------------------------------------------*/
  95. static char * myitoa (unsigned number, char buffer [], size_t length)
  96. {
  97. buffer [-- length] = (char) (0);
  98. do
  99. {
  100. buffer [-- length] = '0' + (number % 10);
  101. number /= 10;
  102. }
  103. while (number);
  104. return (buffer);
  105. }
  106. /*====================================================================*
  107. *
  108. * signed panther_nvm_manifest (void const * memory, size_t extent);
  109. *
  110. * nvm.h
  111. *
  112. * walk a manifest and print known values, if present; known values
  113. * are those defined in nvm.h and named here;
  114. *
  115. * the TLVNode data structure used here is not the same a that in
  116. * the firmware headers; our structure assumes values are 32-bit
  117. * integers and treats strings are exceptions to that rule;
  118. *
  119. * Contributor(s):
  120. * Charles Maier <cmaier@qca.qualcomm.com>
  121. *
  122. *--------------------------------------------------------------------*/
  123. signed panther_nvm_manifest (void const * memory, size_t extent)
  124. {
  125. uint8_t * offset = (uint8_t *) (memory);
  126. uint32_t length = (uint32_t) (extent);
  127. char string [1024];
  128. while (length > 0)
  129. {
  130. struct TLVNode * node = (struct TLVNode *) (offset);
  131. uint32_t type = LE32TOH (node->type);
  132. uint32_t size = LE32TOH (node->size);
  133. uint32_t data = LE32TOH (node->data);
  134. #if 0
  135. if (type == NVM_FIELD_SIGNATURE)
  136. {
  137. printf ("\t%s: %08X\n", nvm_fields [type], data);
  138. }
  139. else if (type == NVM_FIELD_HARDWARE_COMPAT)
  140. {
  141. strfbits (string, sizeof (string), compatibility, "|", data);
  142. printf ("\t%s: %s\n", nvm_fields [type], string);
  143. }
  144. else if (type == NVM_FIELD_CHAIN_MAJOR_VERSION)
  145. {
  146. printf ("\t%s: %d\n", nvm_fields [type], data);
  147. }
  148. else if (type == NVM_FIELD_CHAIN_MINOR_VERSION)
  149. {
  150. printf ("\t%s: %d\n", nvm_fields [type], data);
  151. }
  152. else if (type == NVM_FIELD_CHAIN_TYPE)
  153. {
  154. printf ("\t%s: %s\n", nvm_fields [type], data < SIZEOF (nvm_chains)? nvm_chains [data]: myitoa (data, string, sizeof (string)));
  155. }
  156. else if (type == NVM_FIELD_BUILD_MAJOR_VERSION)
  157. {
  158. printf ("\t%s: %d\n", nvm_fields [type], data);
  159. }
  160. else if (type == NVM_FIELD_BUILD_MINOR_VERSION)
  161. {
  162. printf ("\t%s: %d\n", nvm_fields [type], data);
  163. }
  164. else if (type == NVM_FIELD_BUILD_TYPE)
  165. {
  166. printf ("\t%s: %s\n", nvm_fields [type], (char const *) (& node->data));
  167. }
  168. else if (type == NVM_FIELD_MANIFEST_VERSION)
  169. {
  170. printf ("\t%s: %d\n", nvm_fields [type], data);
  171. }
  172. else if (type == NVM_FIELD_BUILD_NUMBER)
  173. {
  174. printf ("\t%s: %d\n", nvm_fields [type], data);
  175. }
  176. else if (type == NVM_FIELD_BUILD_DATE)
  177. {
  178. printf ("\t%s: %08X\n", nvm_fields [type], data);
  179. }
  180. else if (type == NVM_FIELD_BUILD_TIME)
  181. {
  182. printf ("\t%s: %06X\n", nvm_fields [type], data);
  183. }
  184. else if (type == NVM_FIELD_DEVICE_TYPE)
  185. {
  186. printf ("\t%s: %04X\n", nvm_fields [type], data);
  187. }
  188. else if (type == NVM_FIELD_BUILD_HOSTNAME)
  189. {
  190. printf ("\t%s: %s\n", nvm_fields [type], (char const *) (& node->data));
  191. }
  192. else if (type == NVM_FIELD_BUILD_USERNAME)
  193. {
  194. printf ("\t%s: %s\n", nvm_fields [type], (char const *) (& node->data));
  195. }
  196. else if (type == NVM_FIELD_BUILD_DESCRIPTION)
  197. {
  198. printf ("\t%s: %s\n", nvm_fields [type], (char const *) (& node->data));
  199. }
  200. else if (type == NVM_FIELD_BUILD_VERSION_STRING)
  201. {
  202. printf ("\t%s: %s\n", nvm_fields [type], (char const *) (& node->data));
  203. }
  204. else if (type == NVM_FIELD_BUILD_SUSTAINING_RELEASE)
  205. {
  206. printf ("\t%s: %d\n", nvm_fields [type], data);
  207. }
  208. else if (type == NVM_FIELD_BUILD_MAJOR_SUBVERSION)
  209. {
  210. printf ("\t%s: %d\n", nvm_fields [type], data);
  211. }
  212. else if (type == NVM_FIELD_GENERIC_ID0)
  213. {
  214. printf ("\t%s: %d\n", nvm_fields [type], data);
  215. }
  216. else if (type == NVM_FIELD_GENERIC_ID1)
  217. {
  218. printf ("\t%s: %d\n", nvm_fields [type], data);
  219. }
  220. else if (type == NVM_FIELD_SL_MAJOR_VERSION)
  221. {
  222. printf ("\t%s: %d\n", nvm_fields [type], data);
  223. }
  224. else if (type == NVM_FIELD_SL_MINOR_VERSION)
  225. {
  226. printf ("\t%s: %d\n", nvm_fields [type], data);
  227. }
  228. else if (type == NVM_FIELD_FREE_SPACE)
  229. {
  230. printf ("\t%s: %d/%d bytes\n", nvm_fields [type], size, extent);
  231. }
  232. else
  233. {
  234. error (0, 0, "%s: %d", nvm_fields [sizeof (nvm_fields) / sizeof (const char *) - 1], type);
  235. }
  236. #else
  237. switch (type)
  238. {
  239. case NVM_FIELD_SIGNATURE:
  240. case NVM_FIELD_BUILD_DATE:
  241. printf ("\t%s: %08X\n", nvm_fields [type], data);
  242. break;
  243. case NVM_FIELD_BUILD_TIME:
  244. printf ("\t%s: %06X\n", nvm_fields [type], data);
  245. break;
  246. case NVM_FIELD_DEVICE_TYPE:
  247. printf ("\t%s: %04X\n", nvm_fields [type], data);
  248. break;
  249. case NVM_FIELD_CHAIN_TYPE:
  250. printf ("\t%s: %s\n", nvm_fields [type], data < SIZEOF (nvm_chains)? nvm_chains [data]: myitoa (data, string, sizeof (string)));
  251. break;
  252. case NVM_FIELD_BUILD_HOSTNAME:
  253. case NVM_FIELD_BUILD_USERNAME:
  254. case NVM_FIELD_BUILD_DESCRIPTION:
  255. case NVM_FIELD_BUILD_VERSION_STRING:
  256. case NVM_FIELD_BUILD_TYPE:
  257. printf ("\t%s: %s\n", nvm_fields [type], (char const *) (& node->data));
  258. break;
  259. case NVM_FIELD_HARDWARE_COMPAT:
  260. strfbits (string, sizeof (string), compatibility, "|", data);
  261. printf ("\t%s: %s\n", nvm_fields [type], string);
  262. break;
  263. case NVM_FIELD_MANIFEST_VERSION:
  264. case NVM_FIELD_CHAIN_MAJOR_VERSION:
  265. case NVM_FIELD_CHAIN_MINOR_VERSION:
  266. case NVM_FIELD_BUILD_NUMBER:
  267. case NVM_FIELD_BUILD_MAJOR_VERSION:
  268. case NVM_FIELD_BUILD_MINOR_VERSION:
  269. case NVM_FIELD_BUILD_MAJOR_SUBVERSION:
  270. case NVM_FIELD_BUILD_SUSTAINING_RELEASE:
  271. case NVM_FIELD_GENERIC_ID0:
  272. case NVM_FIELD_GENERIC_ID1:
  273. case NVM_FIELD_SL_MAJOR_VERSION:
  274. case NVM_FIELD_SL_MINOR_VERSION:
  275. printf ("\t%s: %d\n", nvm_fields [type], data);
  276. break;
  277. case NVM_FIELD_FREE_SPACE:
  278. printf ("\t%s: %d/" SIZE_T_SPEC " bytes\n", nvm_fields [type], size, extent);
  279. break;
  280. default:
  281. error (0, 0, "%s: %d", nvm_fields [sizeof (nvm_fields) / sizeof (const char *) - 1], type);
  282. break;
  283. }
  284. #endif
  285. length -= TLVSPAN (node);
  286. offset += TLVSPAN (node);
  287. }
  288. return (0);
  289. }
  290. #endif