Topology2.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed Topology2 (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * display network topology on stdout; the topology shows bridges
  15. * associated with a target bridge along with the tx/rx phy rates
  16. * between the target and associated bridge plus the hardware and
  17. * firmware revison of each bridge; the target bridge is shown on
  18. * the first line and associated bridge are shown after;
  19. *
  20. * this function is a variation on function NetworkInfo but shows
  21. * more information in more compact form;
  22. *
  23. * Contributor(s):
  24. * Charles Maier <cmaier@qca.qualcomm.com>
  25. * Matthieu Poullet <m.poullet@avm.de>
  26. *
  27. *--------------------------------------------------------------------*/
  28. #ifndef TOPOLOGY2_SOURCE
  29. #define TOPOLOGY2_SOURCE
  30. #include <memory.h>
  31. #include <errno.h>
  32. #include "../ether/channel.h"
  33. #include "../tools/memory.h"
  34. #include "../tools/error.h"
  35. #include "../tools/flags.h"
  36. #include "../plc/plc.h"
  37. signed Topology2 (struct plc * plc)
  38. {
  39. struct channel * channel = (struct channel *) (plc->channel);
  40. struct message * message = (struct message *) (plc->message);
  41. #ifndef __GNUC__
  42. #pragma pack (push,1)
  43. #endif
  44. struct __packed vs_nw_info_request
  45. {
  46. struct ethernet_hdr ethernet;
  47. struct qualcomm_fmi qualcomm;
  48. }
  49. * request = (struct vs_nw_info_request *) (message);
  50. struct __packed vs_nw_info_confirm
  51. {
  52. struct ethernet_hdr ethernet;
  53. struct qualcomm_fmi qualcomm;
  54. uint8_t SUB_VERSION;
  55. uint8_t Reserved;
  56. uint16_t DATA_LEN;
  57. uint8_t DATA [1];
  58. }
  59. * confirm = (struct vs_nw_info_confirm *) (message);
  60. struct __packed station
  61. {
  62. uint8_t MAC [ETHER_ADDR_LEN];
  63. uint8_t TEI;
  64. uint8_t Reserved [3];
  65. uint8_t BDA [ETHER_ADDR_LEN];
  66. uint16_t AVGTX;
  67. uint8_t COUPLING;
  68. uint8_t Reserved3;
  69. uint16_t AVGRX;
  70. uint16_t Reserved4;
  71. }
  72. * station;
  73. struct __packed network
  74. {
  75. uint8_t NID [7];
  76. uint8_t Reserved1 [2];
  77. uint8_t SNID;
  78. uint8_t TEI;
  79. uint8_t Reserved2 [4];
  80. uint8_t ROLE;
  81. uint8_t CCO_MAC [ETHER_ADDR_LEN];
  82. uint8_t CCO_TEI;
  83. uint8_t Reserved3 [3];
  84. uint8_t NUMSTAS;
  85. uint8_t Reserved4 [5];
  86. struct station stations [1];
  87. }
  88. * network;
  89. struct __packed networks
  90. {
  91. uint8_t Reserved;
  92. uint8_t NUMAVLNS;
  93. struct network networks [1];
  94. }
  95. * networks = (struct networks *) (confirm->DATA);
  96. #ifndef __GNUC__
  97. #pragma pack (pop)
  98. #endif
  99. uint8_t list [255] [ETHER_ADDR_LEN];
  100. signed bridges = LocalDevices (channel, message, list, sizeof (list));
  101. while (bridges--)
  102. {
  103. char address [ETHER_ADDR_LEN * 3];
  104. memset (message, 0, sizeof (* message));
  105. EthernetHeader (& request->ethernet, list [bridges], channel->host, channel->type);
  106. QualcommHeader1 (& request->qualcomm, 1, (VS_NW_INFO | MMTYPE_REQ));
  107. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  108. if (SendMME (plc) <= 0)
  109. {
  110. error (1, errno, CHANNEL_CANTSEND);
  111. }
  112. if (ReadMME (plc, 1, (VS_NW_INFO | MMTYPE_CNF)) <= 0)
  113. {
  114. error (0, errno, CHANNEL_CANTREAD);
  115. continue;
  116. }
  117. network = (struct network *) (& networks->networks);
  118. if (_allclr (channel->flags, PLC_SILENCE))
  119. {
  120. printf (" P/L NET TEI ------ MAC ------ ------ BDA ------ TX RX CHIPSET FIRMWARE\n");
  121. }
  122. printf (" LOC");
  123. printf (" %s", memcmp (confirm->ethernet.OSA, network->CCO_MAC, sizeof (confirm->ethernet.OSA))? "STA": "CCO");
  124. printf (" %03d", network->TEI);
  125. printf (" %s", hexstring (address, sizeof (address), confirm->ethernet.OSA, sizeof (confirm->ethernet.OSA)));
  126. printf (" %s", hexstring (address, sizeof (address), confirm->ethernet.ODA, sizeof (confirm->ethernet.ODA)));
  127. printf (" n/a");
  128. printf (" n/a");
  129. Platform (channel, confirm->ethernet.OSA);
  130. printf ("\n");
  131. while (networks->NUMAVLNS--)
  132. {
  133. station = (struct station *) (& network->stations);
  134. while (network->NUMSTAS--)
  135. {
  136. printf (" REM");
  137. printf (" %s", memcmp (station->MAC, network->CCO_MAC, sizeof (station->MAC))? "STA": "CCO");
  138. printf (" %03d", station->TEI);
  139. printf (" %s", hexstring (address, sizeof (address), station->MAC, sizeof (station->MAC)));
  140. printf (" %s", hexstring (address, sizeof (address), station->BDA, sizeof (station->BDA)));
  141. station->AVGTX = LE16TOH (station->AVGTX);
  142. station->AVGRX = LE16TOH (station->AVGRX);
  143. printf (" %03d", station->AVGTX);
  144. printf (" %03d", station->AVGRX);
  145. Platform (channel, station->MAC);
  146. printf ("\n");
  147. station++;
  148. }
  149. network = (struct network *) (station);
  150. }
  151. }
  152. return (0);
  153. }
  154. #endif