NetInfo2.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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 NetInfo2 (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * Request network membership information from the peer device using
  15. * the VS_NW_INFO message;
  16. *
  17. * This function is similar to function NetworkInformation() but the
  18. * output format is different;
  19. *
  20. * Contributor(s):
  21. * Charles Maier <cmaier@qca.qualcomm.com>
  22. *
  23. *--------------------------------------------------------------------*/
  24. #ifndef NETWORKINFO2_SOURCE
  25. #define NETWORKINFO2_SOURCE
  26. #include <stdint.h>
  27. #include <memory.h>
  28. #include "../tools/memory.h"
  29. #include "../tools/number.h"
  30. #include "../tools/error.h"
  31. #include "../plc/plc.h"
  32. signed NetInfo2 (struct plc * plc)
  33. {
  34. extern char const * StationRole [];
  35. struct channel * channel = (struct channel *) (plc->channel);
  36. struct message * message = (struct message *) (plc->message);
  37. #ifndef __GNUC__
  38. #pragma pack (push,1)
  39. #endif
  40. struct __packed vs_nw_info_request
  41. {
  42. struct ethernet_hdr ethernet;
  43. struct qualcomm_fmi qualcomm;
  44. }
  45. * request = (struct vs_nw_info_request *) (message);
  46. struct __packed vs_nw_info_confirm
  47. {
  48. struct ethernet_hdr ethernet;
  49. struct qualcomm_fmi qualcomm;
  50. uint8_t SUB_VERSION;
  51. uint8_t Reserved;
  52. uint16_t DATA_LEN;
  53. uint8_t DATA [1];
  54. }
  55. * confirm = (struct vs_nw_info_confirm *) (message);
  56. struct __packed station
  57. {
  58. uint8_t MAC [ETHER_ADDR_LEN];
  59. uint8_t TEI;
  60. uint8_t AVGATTN_CH0;
  61. uint8_t AVGATTN_CH1;
  62. uint8_t Reserved;
  63. uint8_t BDA [ETHER_ADDR_LEN];
  64. uint16_t AVGTX;
  65. uint8_t COUPLING;
  66. uint8_t Reserved3;
  67. uint16_t AVGRX;
  68. uint16_t Reserved4;
  69. }
  70. * station;
  71. struct __packed network
  72. {
  73. uint8_t NID [7];
  74. uint8_t Reserved1 [2];
  75. uint8_t SNID;
  76. uint8_t TEI;
  77. uint8_t Reserved2 [4];
  78. uint8_t ROLE;
  79. uint8_t CCO_MAC [ETHER_ADDR_LEN];
  80. uint8_t CCO_TEI;
  81. uint8_t Reserved3 [3];
  82. uint8_t NUMSTAS;
  83. uint8_t Reserved4 [5];
  84. struct station stations [1];
  85. }
  86. * network;
  87. struct __packed networks
  88. {
  89. uint8_t Reserved;
  90. uint8_t NUMAVLNS;
  91. struct network networks [1];
  92. }
  93. * networks = (struct networks *) (confirm->DATA);
  94. #ifndef __GNUC__
  95. #pragma pack (pop)
  96. #endif
  97. Request (plc, "Fetch Network Information");
  98. memset (message, 0, sizeof (* message));
  99. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  100. QualcommHeader1 (& request->qualcomm, 1, (VS_NW_INFO | MMTYPE_REQ));
  101. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  102. if (SendMME (plc) <= 0)
  103. {
  104. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  105. return (-1);
  106. }
  107. while (ReadMME (plc, 1, (VS_NW_INFO | MMTYPE_CNF)) > 0)
  108. {
  109. char string [24];
  110. Confirm (plc, "Found %d Network(s)\n", networks->NUMAVLNS);
  111. network = (struct network *) (& networks->networks);
  112. while (networks->NUMAVLNS--)
  113. {
  114. printf ("\tnetwork->NID = %s\n", hexstring (string, sizeof (string), network->NID, sizeof (network->NID)));
  115. printf ("\tnetwork->SNID = %d\n", network->SNID);
  116. printf ("\tnetwork->TEI = %d\n", network->TEI);
  117. printf ("\tnetwork->ROLE = 0x%02X (%s)\n", network->ROLE, StationRole [network->ROLE]);
  118. printf ("\tnetwork->CCO_DA = %s\n", hexstring (string, sizeof (string), network->CCO_MAC, sizeof (network->CCO_MAC)));
  119. printf ("\tnetwork->CCO_TEI = %d\n", network->CCO_TEI);
  120. printf ("\tnetwork->STATIONS = %d\n", network->NUMSTAS);
  121. printf ("\n");
  122. station = (struct station *) (& network->stations);
  123. while (network->NUMSTAS--)
  124. {
  125. static char const * coupling [] =
  126. {
  127. "Primary",
  128. "Alternate",
  129. "MIMO",
  130. ""
  131. };
  132. printf ("\t\tstation->MAC = %s\n", hexstring (string, sizeof (string), station->MAC, sizeof (station->MAC)));
  133. printf ("\t\tstation->TEI = %d\n", station->TEI);
  134. printf ("\t\tstation->AVGATTN_CH0 = %d dB\n", station->AVGATTN_CH0);
  135. printf ("\t\tstation->AVGATTN_CH1 = %d dB\n", station->AVGATTN_CH1);
  136. printf ("\t\tstation->BDA = %s\n", hexstring (string, sizeof (string), station->BDA, sizeof (station->BDA)));
  137. station->AVGTX = LE16TOH (station->AVGTX);
  138. station->AVGRX = LE16TOH (station->AVGRX);
  139. printf ("\t\tstation->AvgPHYDR_RX = %03d mbps %s\n", station->AVGRX, coupling [(station->COUPLING >> 4) & 0x03]);
  140. printf ("\t\tstation->AvgPHYDR_TX = %03d mbps %s\n", station->AVGTX, coupling [(station->COUPLING >> 0) & 0x03]);
  141. printf ("\n");
  142. station++;
  143. }
  144. network = (struct network *) (station);
  145. }
  146. }
  147. return (0);
  148. }
  149. #endif