Topology1.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed Topology1 (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. * Contributor(s):
  21. * Charles Maier <cmaier@qca.qualcomm.com>
  22. * Matthieu Poullet <m.poullet@avm.de>
  23. *
  24. *--------------------------------------------------------------------*/
  25. #ifndef TOPOLOGY1_SOURCE
  26. #define TOPOLOGY1_SOURCE
  27. #include <memory.h>
  28. #include <errno.h>
  29. #include "../ether/channel.h"
  30. #include "../tools/memory.h"
  31. #include "../tools/error.h"
  32. #include "../tools/flags.h"
  33. #include "../plc/plc.h"
  34. signed Topology1 (struct plc * plc)
  35. {
  36. struct channel * channel = (struct channel *) (plc->channel);
  37. struct message * message = (struct message *) (plc->message);
  38. #ifndef __GNUC__
  39. #pragma pack (push,1)
  40. #endif
  41. struct __packed vs_nw_info_request
  42. {
  43. struct ethernet_hdr ethernet;
  44. struct qualcomm_hdr qualcomm;
  45. }
  46. * request = (struct vs_nw_info_request *) (message);
  47. struct __packed vs_nw_info_confirm
  48. {
  49. struct ethernet_hdr ethernet;
  50. struct qualcomm_hdr qualcomm;
  51. uint8_t data [1];
  52. }
  53. * confirm = (struct vs_nw_info_confirm *) (message);
  54. struct __packed station
  55. {
  56. uint8_t MAC [ETHER_ADDR_LEN];
  57. uint8_t TEI;
  58. uint8_t BDA [ETHER_ADDR_LEN];
  59. uint8_t AVGTX;
  60. uint8_t AVGRX;
  61. }
  62. * station;
  63. struct __packed network
  64. {
  65. uint8_t NID [7];
  66. uint8_t SNID;
  67. uint8_t TEI;
  68. uint8_t ROLE;
  69. uint8_t CCO_MAC [ETHER_ADDR_LEN];
  70. uint8_t CCO_TEI;
  71. uint8_t NUMSTAS;
  72. struct station stations [1];
  73. }
  74. * network;
  75. struct __packed networks
  76. {
  77. uint8_t NUMAVLNS;
  78. struct network networks [1];
  79. }
  80. * networks = (struct networks *) (confirm->data);
  81. #ifndef __GNUC__
  82. #pragma pack (pop)
  83. #endif
  84. byte list [255] [ETHER_ADDR_LEN];
  85. signed bridges = LocalDevices (channel, message, list, sizeof (list));
  86. while (bridges--)
  87. {
  88. char address [ETHER_ADDR_LEN * 3];
  89. memset (message, 0, sizeof (* message));
  90. EthernetHeader (& request->ethernet, list [bridges], channel->host, channel->type);
  91. QualcommHeader (& request->qualcomm, 0, (VS_NW_INFO | MMTYPE_REQ));
  92. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  93. if (SendMME (plc) <= 0)
  94. {
  95. error (1, errno, CHANNEL_CANTSEND);
  96. }
  97. if (ReadMME (plc, 0, (VS_NW_INFO | MMTYPE_CNF)) <= 0)
  98. {
  99. error (0, errno, CHANNEL_CANTREAD);
  100. continue;
  101. }
  102. network = (struct network *) (& networks->networks);
  103. if (_allclr (channel->flags, PLC_SILENCE))
  104. {
  105. printf (" P/L NET TEI ------ MAC ------ ------ BDA ------ TX RX CHIPSET FIRMWARE\n");
  106. }
  107. printf (" LOC");
  108. printf (" %s", memcmp (confirm->ethernet.OSA, network->CCO_MAC, sizeof (confirm->ethernet.OSA))? "STA": "CCO");
  109. printf (" %03d", network->TEI);
  110. printf (" %s", hexstring (address, sizeof (address), confirm->ethernet.OSA, sizeof (confirm->ethernet.OSA)));
  111. printf (" %s", hexstring (address, sizeof (address), confirm->ethernet.ODA, sizeof (confirm->ethernet.ODA)));
  112. printf (" n/a");
  113. printf (" n/a");
  114. Platform (channel, confirm->ethernet.OSA);
  115. printf ("\n");
  116. while (networks->NUMAVLNS--)
  117. {
  118. station = (struct station *) (& network->stations);
  119. while (network->NUMSTAS--)
  120. {
  121. printf (" REM");
  122. printf (" %s", memcmp (station->MAC, network->CCO_MAC, sizeof (station->MAC))? "STA": "CCO");
  123. printf (" %03d", station->TEI);
  124. printf (" %s", hexstring (address, sizeof (address), station->MAC, sizeof (station->MAC)));
  125. printf (" %s", hexstring (address, sizeof (address), station->BDA, sizeof (station->BDA)));
  126. printf (" %03d", station->AVGTX);
  127. printf (" %03d", station->AVGRX);
  128. Platform (channel, station->MAC);
  129. printf ("\n");
  130. station++;
  131. }
  132. network = (struct network *) (station);
  133. }
  134. }
  135. return (0);
  136. }
  137. #endif