Attributes1.c 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed Attributes1 (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 ATTRIBUTES1_SOURCE
  33. #define ATTRIBUTES1_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 Attributes1 (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 HARDWARE [16];
  73. uint8_t SOFTWARE [16];
  74. uint32_t FWVERSION [5];
  75. uint8_t RELEASEDATE [8];
  76. uint8_t RELEASETYPE [12];
  77. uint8_t SDRAMTYPE;
  78. uint8_t RESERVED;
  79. uint8_t LINEFREQ;
  80. uint32_t SDRAMSIZE;
  81. uint8_t AUTHMODE;
  82. }
  83. * attributes = (struct attributes *) (confirm->MBUFFER);
  84. #ifndef __GNUC__
  85. #pragma pack (pop)
  86. #endif
  87. Request (plc, "Fetch Device Attributes");
  88. memset (message, 0, sizeof (* message));
  89. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  90. QualcommHeader (& request->qualcomm, 0, (VS_OP_ATTRIBUTES | MMTYPE_REQ));
  91. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  92. request->COOKIE = HTOLE32 (plc->cookie);
  93. request->RTYPE = 0;
  94. if (SendMME (plc) <= 0)
  95. {
  96. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  97. return (-1);
  98. }
  99. while (ReadMME (plc, 0, (VS_OP_ATTRIBUTES | MMTYPE_CNF)) > 0)
  100. {
  101. static char const * frequency [] =
  102. {
  103. "Unknown Frequency",
  104. "50Hz",
  105. "60Hz",
  106. };
  107. static char const * zero_cross [] =
  108. {
  109. "Not yet detected",
  110. "Detected",
  111. "Missing",
  112. };
  113. char string [512];
  114. size_t length = 0;
  115. if (confirm->MSTATUS)
  116. {
  117. Failure (plc, PLC_WONTDOIT);
  118. continue;
  119. }
  120. #if 0
  121. #if defined (__GNUC__)
  122. #warning "Debug code active in module Attributes1"
  123. #endif
  124. fprintf (stderr, "HARDWARE=[%-16.16s]\n", attributes->HARDWARE);
  125. fprintf (stderr, "SOFTWARE=[%-16.16s]\n", attributes->SOFTWARE);
  126. fprintf (stderr, "FIRMWARE MAJOR VERSION=(%d)\n", LE32TOH (attributes->FWVERSION [0]));
  127. fprintf (stderr, "FIRMWARE MINOR VERSION=(%d)\n", LE32TOH (attributes->FWVERSION [1]));
  128. fprintf (stderr, "FIRMWARE [2]=(%d)\n", LE32TOH (attributes->FWVERSION [2]));
  129. fprintf (stderr, "FIRMWARE [3]=(%d)\n", LE32TOH (attributes->FWVERSION [3]));
  130. fprintf (stderr, "FIRMWARE [4]=(%d)\n", LE32TOH (attributes->FWVERSION [4]));
  131. fprintf (stderr, "RELEASE DATE=[%-8.8s]\n", attributes->RELEASEDATE);
  132. fprintf (stderr, "RELEASE TYPE=[%-12.12s]\n", attributes->RELEASETYPE);
  133. fprintf (stderr, "SDRAM SIZE=[0x%08X]\n", LE32TOH (attributes->SDRAMSIZE));
  134. fprintf (stderr, "SDRAM TYPE=[0x%02X]\n", attributes->SDRAMTYPE);
  135. fprintf (stderr, "RESERVED=[0x%02X]\n", attributes->RESERVED);
  136. fprintf (stderr, "LINE FREQUENCY=[0x%02X]\n", attributes->LINEFREQ);
  137. fprintf (stderr, "AUTHORIZATION MODE=[0x%02X]\n", attributes->AUTHMODE);
  138. #endif
  139. length += snprintf (string + length, sizeof (string) - length, "%s", attributes->HARDWARE);
  140. length += snprintf (string + length, sizeof (string) - length, "-%s", attributes->SOFTWARE);
  141. length += snprintf (string + length, sizeof (string) - length, "-%d", LE32TOH (attributes->FWVERSION [0]));
  142. length += snprintf (string + length, sizeof (string) - length, "-%d", LE32TOH (attributes->FWVERSION [1]));
  143. length += snprintf (string + length, sizeof (string) - length, "-%04d", LE32TOH (attributes->FWVERSION [2]));
  144. length += snprintf (string + length, sizeof (string) - length, "-%02d", LE32TOH (attributes->FWVERSION [3]));
  145. length += snprintf (string + length, sizeof (string) - length, "-%04d", LE32TOH (attributes->FWVERSION [4]));
  146. length += snprintf (string + length, sizeof (string) - length, "-%-8.8s", attributes->RELEASEDATE);
  147. length += snprintf (string + length, sizeof (string) - length, "-%s", attributes->RELEASETYPE);
  148. length += snprintf (string + length, sizeof (string) - length, "-%c", attributes->SDRAMTYPE);
  149. length += snprintf (string + length, sizeof (string) - length, " (%dmb)", LE32TOH (attributes->SDRAMSIZE));
  150. length += snprintf (string + length, sizeof (string) - length, " (0x%02X) \"%s\" \"%s\" ", attributes->LINEFREQ, frequency [attributes->LINEFREQ & 0x03], zero_cross [(attributes->LINEFREQ & 0x0C) >> 2]);
  151. length += snprintf (string + length, sizeof (string) - length, " 0x%02X", attributes->AUTHMODE);
  152. Display (plc, "%s", string);
  153. }
  154. return (0);
  155. }
  156. #endif