RxRates2.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed RxRates2 (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * An AR7x00 only version;
  15. *
  16. * Contributor(s):
  17. * Charles Maier <cmaier@qca.qualcomm.com>
  18. *
  19. *--------------------------------------------------------------------*/
  20. #ifndef RXRATES2_SOURCE
  21. #define RXRATES2_SOURCE
  22. #include <stdint.h>
  23. #include <memory.h>
  24. #include "../tools/memory.h"
  25. #include "../tools/error.h"
  26. #include "../tools/flags.h"
  27. #include "../plc/plc.h"
  28. signed RxRates2 (struct plc * plc)
  29. {
  30. extern const byte broadcast [ETHER_ADDR_LEN];
  31. struct channel * channel = (struct channel *) (plc->channel);
  32. struct message * message = (struct message *) (plc->message);
  33. #ifndef __GNUC__
  34. #pragma pack (push,1)
  35. #endif
  36. struct __packed vs_nw_info_request
  37. {
  38. struct ethernet_hdr ethernet;
  39. struct qualcomm_fmi qualcomm;
  40. }
  41. * request = (struct vs_nw_info_request *) (message);
  42. struct __packed vs_nw_info_confirm
  43. {
  44. struct ethernet_hdr ethernet;
  45. struct qualcomm_fmi qualcomm;
  46. uint8_t SUB_VERSION;
  47. uint8_t Reserved;
  48. uint16_t DATA_LEN;
  49. uint8_t DATA [1];
  50. }
  51. * confirm = (struct vs_nw_info_confirm *) (message);
  52. struct __packed station
  53. {
  54. uint8_t MAC [ETHER_ADDR_LEN];
  55. uint8_t TEI;
  56. uint8_t Reserved [3];
  57. uint8_t BDA [ETHER_ADDR_LEN];
  58. uint16_t AVGTX;
  59. uint8_t COUPLING;
  60. uint8_t Reserved3;
  61. uint16_t AVGRX;
  62. uint16_t Reserved4;
  63. }
  64. * station;
  65. struct __packed network
  66. {
  67. uint8_t NID [7];
  68. uint8_t Reserved1 [2];
  69. uint8_t SNID;
  70. uint8_t TEI;
  71. uint8_t Reserved2 [4];
  72. uint8_t ROLE;
  73. uint8_t CCO_MAC [ETHER_ADDR_LEN];
  74. uint8_t CCO_TEI;
  75. uint8_t Reserved3 [3];
  76. uint8_t NUMSTAS;
  77. uint8_t Reserved4 [5];
  78. struct station stations [1];
  79. }
  80. * network;
  81. struct __packed networks
  82. {
  83. uint8_t Reserved;
  84. uint8_t NUMAVLNS;
  85. struct network networks [1];
  86. }
  87. * networks = (struct networks *) (confirm->DATA);
  88. #ifndef __GNUC__
  89. #pragma pack (pop)
  90. #endif
  91. memset (message, 0, sizeof (* message));
  92. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  93. QualcommHeader1 (& request->qualcomm, 1, (VS_NW_INFO | MMTYPE_REQ));
  94. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  95. if (SendMME (plc) <= 0)
  96. {
  97. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  98. return (-1);
  99. }
  100. while (ReadMME (plc, 1, (VS_NW_INFO | MMTYPE_CNF)) > 0)
  101. {
  102. network = (struct network *) (& networks->networks);
  103. while (networks->NUMAVLNS--)
  104. {
  105. station = (struct station *) (& network->stations);
  106. while (network->NUMSTAS--)
  107. {
  108. if (memcmp (station->MAC, broadcast, sizeof (broadcast)))
  109. {
  110. station->AVGTX = LE16TOH (station->AVGTX);
  111. station->AVGRX = LE16TOH (station->AVGRX);
  112. if (_anyset (plc->flags, PLC_UNCODED_RATES))
  113. {
  114. station->AVGTX = ((station->AVGTX * 21) >> 4);
  115. station->AVGRX = ((station->AVGRX * 21) >> 4);
  116. }
  117. printf ("%d", _anyset (plc->flags, PLC_TXONLY)? station->AVGTX: station->AVGRX);
  118. if (network->NUMSTAS)
  119. {
  120. printf (", ");
  121. }
  122. }
  123. station++;
  124. }
  125. printf ("\n");
  126. network = (struct network *) (station);
  127. }
  128. }
  129. fflush (stdout);
  130. return (0);
  131. }
  132. #endif