Attributes2.c 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. /*====================================================================*
  2. Copyright (c) 2013-2018 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 Attributes2 (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * This plugin for program plc requests device attributes using
  15. * a VS_OP_ATTRIBUTES message; attributes are pre-parsed versions
  16. * of information returned by VS_SW_VER and other messages;
  17. *
  18. * The VS_OP_ATTRIBUTES message structure changed between FW 3.3.4
  19. * and 3.3.5 and fields are ocassionally appended to the end; you
  20. * should not use this message for operational systems because the
  21. * format may change again; it was originally intended for PTS use
  22. * only;
  23. *
  24. *. Qualcomm Atheros HomePlug AV Powerline Toolkit
  25. *: Published 2009-2012, Qualcomm Atheros. ALL RIGHTS RESERVED
  26. *; For demonstration and evaluation only. Not for production use
  27. *
  28. * Contributor(s):
  29. * Charles Maier <cmaier@qca.qualcomm.com>
  30. *
  31. *--------------------------------------------------------------------*/
  32. #ifndef ATTRIBUTES2_SOURCE
  33. #define ATTRIBUTES2_SOURCE
  34. #include <stdint.h>
  35. #include <memory.h>
  36. #include "../plc/plc.h"
  37. #include "../tools/memory.h"
  38. #include "../tools/format.h"
  39. #include "../tools/error.h"
  40. #include "../tools/flags.h"
  41. #ifdef WIN32
  42. #define snprintf _snprintf
  43. #endif
  44. signed Attributes2 (struct plc * plc)
  45. {
  46. struct channel * channel = (struct channel *) (plc->channel);
  47. struct message * message = (struct message *) (plc->message);
  48. #ifndef __GNUC__
  49. #pragma pack (push,1)
  50. #endif
  51. struct __packed vs_op_attributes_request
  52. {
  53. struct ethernet_hdr ethernet;
  54. struct qualcomm_hdr qualcomm;
  55. uint32_t COOKIE;
  56. uint8_t RTYPE;
  57. }
  58. * request = (struct vs_op_attributes_request *) (message);
  59. struct __packed vs_op_attributes_confirm
  60. {
  61. struct ethernet_hdr ethernet;
  62. struct qualcomm_hdr qualcomm;
  63. uint16_t MSTATUS;
  64. uint32_t COOKIE;
  65. uint8_t RTYPE;
  66. uint16_t MLENGTH;
  67. uint8_t MBUFFER [1024];
  68. }
  69. * confirm = (struct vs_op_attributes_confirm *) (message);
  70. struct __packed attributes
  71. {
  72. uint8_t DEVICEFAMILY [16];
  73. uint8_t DEVICETYPE [16];
  74. uint32_t FWMAJORVERSION;
  75. uint32_t FWMINORVERSION;
  76. uint32_t COMPOSITEVERSION;
  77. uint32_t SUSTAININGVERSION;
  78. uint32_t BUILDNUMBER;
  79. uint8_t BUILDDATE [8];
  80. uint8_t RELEASETYPE [12];
  81. uint8_t FLAGS [3];
  82. uint32_t DRAMSIZE;
  83. uint32_t RAMBLOCKRXCOUNT;
  84. uint32_t RAMBLOCKTXCOUNT;
  85. uint32_t RAMBLOCKSHAREDCOUNT;
  86. uint32_t RAMBLOCKFREERXCOUNT;
  87. uint32_t RAMBLOCKFREETXCOUNT;
  88. uint32_t RAMBLOCKFREESHAREDCOUNT;
  89. uint32_t RELATIVESNRDIFFDB;
  90. uint32_t DSP384THREGVAL;
  91. uint8_t AFETXGAINDB;
  92. uint8_t AUTHMODE;
  93. uint8_t MICROCONTROLLERDIAGENABLED;
  94. uint8_t ADAPTERTYPE;
  95. uint8_t EN50561MODE;
  96. uint16_t EN50561TONE;
  97. uint32_t DEVICEUPTIMESINCELASTWARMRESET;
  98. uint32_t DEVICEUPTIMESINCELASTHARDRESET;
  99. }
  100. * attributes = (struct attributes *) (confirm->MBUFFER);
  101. #ifndef __GNUC__
  102. #pragma pack (pop)
  103. #endif
  104. Request (plc, "Fetch Device Attributes");
  105. memset (message, 0, sizeof (* message));
  106. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  107. QualcommHeader (& request->qualcomm, 0, (VS_OP_ATTRIBUTES | MMTYPE_REQ));
  108. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  109. request->COOKIE = HTOLE32 (plc->cookie);
  110. request->RTYPE = 0;
  111. if (SendMME (plc) <= 0)
  112. {
  113. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  114. return (-1);
  115. }
  116. while (ReadMME (plc, 0, (VS_OP_ATTRIBUTES | MMTYPE_CNF)) > 0)
  117. {
  118. #if 0
  119. static char const * frequency [] =
  120. {
  121. "Unknown Frequency",
  122. "50Hz",
  123. "60Hz",
  124. };
  125. static char const * zero_cross [] =
  126. {
  127. "Not yet detected",
  128. "Detected",
  129. "Missing",
  130. };
  131. #endif
  132. #if 1
  133. static char const * adapt_type [] =
  134. {
  135. "Unknown",
  136. "Wall Adapter",
  137. "SmartLink",
  138. "SmartLink Plus",
  139. };
  140. static char const * en_mode [] =
  141. {
  142. "EN50561-1 Not detected",
  143. "EN50561-1 Static mode",
  144. "EN50561-1 Dynamic mode",
  145. };
  146. #endif
  147. char string [512];
  148. size_t length = 0;
  149. if (confirm->MSTATUS)
  150. {
  151. Failure (plc, PLC_WONTDOIT);
  152. continue;
  153. }
  154. #if 0
  155. #if defined (__GNUC__)
  156. #warning "Debug code active in module Attributes2"
  157. #endif
  158. fprintf (stderr, "DEVICE FAMILY=[%-16.16s]\n", attributes->DEVICEFAMILY);
  159. fprintf (stderr, "DEVICE TYPE=[%-16.16s]\n", attributes->DEVICETYPE);
  160. fprintf (stderr, "FIRMWARE MAJOR VERSION=(%d)\n", LE32TOH (attributes->FWMAJORVERSION));
  161. fprintf (stderr, "FIRMWARE MINOR VERSION=(%d)\n", LE32TOH (attributes->FWMINORVERSION));
  162. fprintf (stderr, "COMPOSITE VERSION=(%d)\n", LE32TOH (attributes->COMPOSITEVERSION));
  163. fprintf (stderr, "SUSTAINING VERSION=(%d)\n", LE32TOH (attributes->SUSTAININGVERSION));
  164. fprintf (stderr, "BUILD NUMBER=(%d)\n", LE32TOH (attributes->BUILDNUMBER));
  165. fprintf (stderr, "BUILD DATE=[%-8.8s]\n", attributes->BUILDDATE);
  166. fprintf (stderr, "RELEASE TYPE=[%-12.12s]\n", attributes->RELEASETYPE);
  167. fprintf (stderr, "DRAM SIZE=[0x%08X](%d)\n", LE32TOH (attributes->DRAMSIZE), LE32TOH (attributes->DRAMSIZE));
  168. fprintf (stderr, "DRAM TYPES=[0x%02X]\n", attributes->FLAGS [0]);
  169. fprintf (stderr, "RESERVED FLAG=[0x%02X]\n", attributes->FLAGS [1]);
  170. fprintf (stderr, "LINE FREQUENCY=[0x%02X]\n", attributes->FLAGS [2]);
  171. fprintf (stderr, "AUTHORIZATION MODE=[0x%02X]\n", attributes->AUTHMODE);
  172. fprintf (stderr, "DSP384THREGVAL=[0x%02X]\n", attributes->DSP384THREGVAL);
  173. fprintf (stderr, "AFETXGAINDB=[0x%02X]\n", attributes->AFETXGAINDB);
  174. fprintf (stderr, "AUTHORIZATION MODE=[0x%02X]\n", attributes->AUTHMODE);
  175. fprintf (stderr, "ADAPTER TYPE=[0x%02X]\n", attributes->ADAPTERTYPE);
  176. fprintf (stderr, "EN50561 MODE=[0x%02X]\n", attributes->EN50561MODE);
  177. fprintf (stderr, "EN50561 TONES=[0x%02X]\n", attributes->EN50561TONE);
  178. #if 0
  179. fprintf (stderr, "DSP384THREGVAL=[0x%08X]\n", LE32TOH (attributes->DSP384THREGVAL));
  180. fprintf (stderr, "AFETXGAINDB=[0x%02X]\n", attributes->AFETXGAINDB);
  181. #endif
  182. #endif
  183. length += snprintf (string + length, sizeof (string) - length, "%s", attributes->DEVICEFAMILY);
  184. length += snprintf (string + length, sizeof (string) - length, "-%s", attributes->DEVICETYPE);
  185. length += snprintf (string + length, sizeof (string) - length, "-%s", attributes->DEVICEFAMILY);
  186. length += snprintf (string + length, sizeof (string) - length, "-%d", LE32TOH (attributes->FWMAJORVERSION));
  187. length += snprintf (string + length, sizeof (string) - length, ".%d", LE32TOH (attributes->FWMINORVERSION));
  188. length += snprintf (string + length, sizeof (string) - length, ".%d", LE32TOH (attributes->COMPOSITEVERSION));
  189. length += snprintf (string + length, sizeof (string) - length, ".%d", LE32TOH (attributes->BUILDNUMBER));
  190. length += snprintf (string + length, sizeof (string) - length, "-%02d", LE32TOH (attributes->SUSTAININGVERSION));
  191. length += snprintf (string + length, sizeof (string) - length, "-%8.8s", attributes->BUILDDATE);
  192. length += snprintf (string + length, sizeof (string) - length, "-%s", attributes->RELEASETYPE);
  193. length += snprintf (string + length, sizeof (string) - length, " (%dmb)", LE32TOH (attributes->DRAMSIZE));
  194. length += snprintf (string + length, sizeof (string) - length, " (%s)", adapt_type [attributes->ADAPTERTYPE]);
  195. length += snprintf (string + length, sizeof (string) - length, " (%s)", en_mode [attributes->EN50561MODE]);
  196. length += snprintf (string + length, sizeof (string) - length, " (%d)", LE32TOH (attributes->EN50561TONE));
  197. length += snprintf (string + length, sizeof (string) - length, " Uptime since last Warm Reset(%d) secs", LE32TOH (attributes->DEVICEUPTIMESINCELASTWARMRESET));
  198. length += snprintf (string + length, sizeof (string) - length, " Hard Reset(%d) secs", LE32TOH (attributes->DEVICEUPTIMESINCELASTHARDRESET));
  199. /*
  200. * length += snprintf (string + length, sizeof (string) - length, " (0x%02X) \"%s\" \"%s\" ", attributes->FLAGS, frequency [attributes->FLAGS [1] & 0x03], zero_cross [(attributes->FLAGS [2] & 0x0C) >> 2]);
  201. */
  202. Display (plc, "%s", string);
  203. }
  204. return (0);
  205. }
  206. #endif