panther_nvm_revision.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. /****************************************************************************
  2. Copyright (c) 2013, 2020, 2022 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_revision (void const * memory, size_t extent);
  11. *
  12. * print the firmware revision string on stdout in human readable
  13. * format; although a revision string appears within the manifest,
  14. * the format does not match that returned by the firmware with a
  15. * VS_SW_VER request; this function walks the manifest and builds
  16. * a string that matches the firmware;
  17. *
  18. * Contributor(s):
  19. * Charles Maier <cmaier@qca.qualcomm.com>
  20. *
  21. *--------------------------------------------------------------------*/
  22. #ifndef PANTHER_NVM_REVISION_SOURCE
  23. #define PANTHER_NVM_REVISION_SOURCE
  24. #include <stdio.h>
  25. #include <stdlib.h>
  26. #include <stdint.h>
  27. #include <errno.h>
  28. #include "../tools/format.h"
  29. #include "../tools/memory.h"
  30. #include "../tools/endian.h"
  31. #include "../tools/error.h"
  32. #include "../tools/files.h"
  33. #include "../tools/tlv.h"
  34. #include "../nvm/nvm.h"
  35. /*
  36. * strings must appear in order of hardware types;
  37. */
  38. #ifndef PANTHER_NVM_MANIFEST_SOURCE
  39. static char const * compatibility [] =
  40. {
  41. "QCA7420",
  42. "QCA700X",
  43. (char const *) (0)
  44. };
  45. #endif
  46. signed panther_nvm_revision (void const * memory, size_t extent)
  47. {
  48. struct
  49. {
  50. char const * hardware;
  51. uint32_t device_type;
  52. char software [4];
  53. uint16_t build;
  54. uint32_t date;
  55. char const * type;
  56. }
  57. revision;
  58. uint8_t * offset = (uint8_t *) (memory);
  59. uint32_t length = (uint32_t) (extent);
  60. while (length > 0)
  61. {
  62. struct TLVNode * node = (struct TLVNode *) (offset);
  63. uint32_t type = LE32TOH (node->type);
  64. uint32_t data = LE32TOH (node->data);
  65. if (type == NVM_FIELD_HARDWARE_COMPAT)
  66. {
  67. static char string [1024];
  68. strfbits (string, sizeof (string), compatibility, "|", data);
  69. revision.hardware = string;
  70. }
  71. else if (type == NVM_FIELD_DEVICE_TYPE)
  72. {
  73. revision.device_type = data;
  74. }
  75. else if (type == NVM_FIELD_BUILD_MAJOR_VERSION)
  76. {
  77. revision.software [0] = data;
  78. }
  79. else if (type == NVM_FIELD_BUILD_MINOR_VERSION)
  80. {
  81. revision.software [1] = data;
  82. }
  83. else if (type == NVM_FIELD_BUILD_MAJOR_SUBVERSION)
  84. {
  85. revision.software [2] = data;
  86. }
  87. else if (type == NVM_FIELD_BUILD_NUMBER)
  88. {
  89. revision.build = data;
  90. }
  91. else if (type == NVM_FIELD_BUILD_SUSTAINING_RELEASE)
  92. {
  93. revision.software [3] = data;
  94. }
  95. else if (type == NVM_FIELD_BUILD_DATE)
  96. {
  97. revision.date = data;
  98. }
  99. else if (type == NVM_FIELD_BUILD_TYPE)
  100. {
  101. revision.type = (char const *) (& node->data);
  102. }
  103. length -= TLVSPAN (node);
  104. offset += TLVSPAN (node);
  105. }
  106. //printf ("%s-", revision.hardware);
  107. printf ("%s", "QCA");
  108. if(revision.device_type == 0x7000)
  109. {
  110. printf ("%s-", "700x");
  111. } else {
  112. printf ("%04X-", revision.device_type);
  113. }
  114. printf ("%d.", revision.software [0]);
  115. printf ("%d.", revision.software [1]);
  116. printf ("%d.", revision.software [2]);
  117. printf ("%d-", revision.build);
  118. printf ("%02d-", revision.software [3]);
  119. printf ("%08X-", revision.date);
  120. printf ("%s\n", revision.type);
  121. return (0);
  122. }
  123. signed panther_nvm_revision_forChkpib (void const * memory, size_t extent, struct Revision *PIBRevision)
  124. {
  125. uint8_t * offset = (uint8_t *) (memory);
  126. uint32_t length = (uint32_t) (extent);
  127. while (length > 0)
  128. {
  129. struct TLVNode * node = (struct TLVNode *) (offset);
  130. uint32_t type = LE32TOH (node->type);
  131. uint32_t data = LE32TOH (node->data);
  132. if (type == NVM_FIELD_HARDWARE_COMPAT)
  133. {
  134. static char string [1024];
  135. strfbits (string, sizeof (string), compatibility, "|", data);
  136. PIBRevision->hardware = string;
  137. }
  138. else if (type == NVM_FIELD_DEVICE_TYPE)
  139. {
  140. PIBRevision->device_type = data;
  141. }
  142. else if (type == NVM_FIELD_BUILD_MAJOR_VERSION)
  143. {
  144. PIBRevision->software [0] = data;
  145. }
  146. else if (type == NVM_FIELD_BUILD_MINOR_VERSION)
  147. {
  148. PIBRevision->software [1] = data;
  149. }
  150. else if (type == NVM_FIELD_BUILD_MAJOR_SUBVERSION)
  151. {
  152. PIBRevision->software [2] = data;
  153. }
  154. else if (type == NVM_FIELD_BUILD_NUMBER)
  155. {
  156. PIBRevision->build = data;
  157. }
  158. else if (type == NVM_FIELD_BUILD_SUSTAINING_RELEASE)
  159. {
  160. PIBRevision->software [3] = data;
  161. }
  162. else if (type == NVM_FIELD_BUILD_DATE)
  163. {
  164. PIBRevision->date = data;
  165. }
  166. else if (type == NVM_FIELD_BUILD_TYPE)
  167. {
  168. PIBRevision->type = (char const *) (& node->data);
  169. }
  170. length -= TLVSPAN (node);
  171. offset += TLVSPAN (node);
  172. }
  173. return (0);
  174. }
  175. #endif