VersionInfo2.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed VersionInfo2 (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * read hardware and software version information from an INT6000
  15. * using a VS_SW_VER Request Message;
  16. *
  17. * Contributor(s):
  18. * Charles Maier <cmaier@qca.qualcomm.com>
  19. *
  20. *--------------------------------------------------------------------*/
  21. #ifndef VERSIONINFO2_SOURCE
  22. #define VERSIONINFO2_SOURCE
  23. #include <stdint.h>
  24. #include <memory.h>
  25. #include "../tools/error.h"
  26. #include "../tools/memory.h"
  27. #include "../tools/symbol.h"
  28. #include "../plc/plc.h"
  29. signed VersionInfo2 (struct plc * plc)
  30. {
  31. struct channel * channel = (struct channel *) (plc->channel);
  32. struct message * message = (struct message *) (plc->message);
  33. #ifndef __GNUC__
  34. #pragma pack (push,1)
  35. #endif
  36. struct __packed vs_sw_ver_request
  37. {
  38. struct ethernet_hdr ethernet;
  39. struct qualcomm_hdr qualcomm;
  40. uint32_t COOKIE;
  41. }
  42. * request = (struct vs_sw_ver_request *) (message);
  43. struct __packed vs_sw_ver_confirm
  44. {
  45. struct ethernet_hdr ethernet;
  46. struct qualcomm_hdr qualcomm;
  47. uint8_t MSTATUS;
  48. uint8_t MDEVICE_CLASS;
  49. uint8_t MVERLENGTH;
  50. char MVERSION [254];
  51. uint32_t IDENT;
  52. uint32_t STEPPING_NUM;
  53. uint32_t COOKIE;
  54. uint32_t RSVD [6];
  55. }
  56. * confirm = (struct vs_sw_ver_confirm *) (message);
  57. struct __packed vs_sw_ver_confirm_bootrom
  58. {
  59. struct ethernet_hdr ethernet;
  60. struct qualcomm_hdr qualcomm;
  61. uint8_t MSTATUS;
  62. uint8_t MDEVICE_CLASS;
  63. uint8_t MVERLENGTH;
  64. char MVERSION [64];
  65. uint8_t res;
  66. uint32_t IDENT;
  67. uint32_t STEPPING_NUM;
  68. uint32_t COOKIE;
  69. uint32_t RSVD [6];
  70. }
  71. * confirm1 = (struct vs_sw_ver_confirm_bootrom *) (message);
  72. #ifndef __GNUC__
  73. #pragma pack (pop)
  74. #endif
  75. Request (plc, "Request Version Information");
  76. memset (message, 0, sizeof (* message));
  77. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  78. QualcommHeader (& request->qualcomm, 0, (VS_SW_VER | MMTYPE_REQ));
  79. request->COOKIE = HTOLE32 (plc->cookie);
  80. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  81. if (SendMME (plc) <= 0)
  82. {
  83. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  84. return (-1);
  85. }
  86. while (ReadMME (plc, 0, (VS_SW_VER | MMTYPE_CNF)) > 0)
  87. {
  88. if( LE32TOH (confirm->MVERLENGTH) == 0x0B )
  89. {
  90. #if 0
  91. // in the bootrom
  92. fprintf (stderr, "BR_DEVICE CLASS (%d)\n", LE32TOH (confirm1->MDEVICE_CLASS));
  93. fprintf (stderr, "BR_VERSION LENGTH (%d)\n", LE32TOH (confirm1->MVERLENGTH));
  94. fprintf (stderr, "BR_VERSION STRING [%s]\n", LE32TOH (confirm1->MVERSION));
  95. fprintf (stderr, "BR_IDENT [0x%08X]\n", LE32TOH (confirm1->IDENT));
  96. fprintf (stderr, "BR_STEPPING NUMBER [0x%08X]\n", LE32TOH (confirm1->STEPPING_NUM));
  97. fprintf (stderr, "BR_COOKIE [0x%08X]\n", LE32TOH (confirm1->COOKIE));
  98. #endif
  99. if (confirm1->MSTATUS)
  100. {
  101. Failure (plc, PLC_WONTDOIT);
  102. continue;
  103. }
  104. chipset (confirm1);
  105. Display (plc, "%s %s", ConvertChipSignatureId2ProductIdStr((enum tChipSignature)confirm1->IDENT), confirm1->MVERSION);
  106. }
  107. else
  108. {
  109. #if 0
  110. // in the fw
  111. fprintf (stderr, "DEVICE CLASS (%d)\n", LE32TOH (confirm->MDEVICE_CLASS));
  112. fprintf (stderr, "VERSION LENGTH (%d)\n", LE32TOH (confirm->MVERLENGTH));
  113. fprintf (stderr, "VERSION STRING [%s]\n", LE32TOH (confirm->MVERSION));
  114. fprintf (stderr, "IDENT [0x%08X]\n", LE32TOH (confirm->IDENT));
  115. fprintf (stderr, "STEPPING NUMBER [0x%08X]\n", LE32TOH (confirm->STEPPING_NUM));
  116. fprintf (stderr, "COOKIE [0x%08X]\n", LE32TOH (confirm->COOKIE));
  117. #endif
  118. if (confirm->MSTATUS)
  119. {
  120. Failure (plc, PLC_WONTDOIT);
  121. continue;
  122. }
  123. chipset (confirm);
  124. Display (plc, "%s %s", ConvertChipSignatureId2ProductIdStr((enum tChipSignature)confirm->IDENT), confirm->MVERSION);
  125. }
  126. }
  127. return (0);
  128. }
  129. #endif