PLCPhyRates.c 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed PhyRates (struct plc * plc)
  11. *
  12. * detect the chipset type and call appropriate function to
  13. * display the PHY rates; older devices use 16-bit rates but newer
  14. * devices use 32-bit;
  15. *
  16. * if you already know the chipset being interrogated, then you can
  17. * call INTPhyRate or AMPPhyRate directly and save some overhead;
  18. *
  19. * Contributor(s):
  20. * Charles Maier <cmaier@qca.qualcomm.com>
  21. *
  22. *--------------------------------------------------------------------*/
  23. #ifndef PHYRATES_SOURCE
  24. #define PHYRATES_SOURCE
  25. #include <unistd.h>
  26. #include <stdlib.h>
  27. #include <stdint.h>
  28. #include <limits.h>
  29. #include "../tools/types.h"
  30. #include "../tools/flags.h"
  31. #include "../tools/error.h"
  32. #include "../plc/plc.h"
  33. signed PLCPhyRates (struct plc * plc)
  34. {
  35. signed status;
  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_sw_ver_request
  42. {
  43. struct ethernet_hdr ethernet;
  44. struct qualcomm_hdr qualcomm;
  45. uint8_t MSTATUS;
  46. uint8_t MDEVICEID;
  47. uint8_t MVERLENGTH;
  48. char MVERSION [PLC_VERSION_STRING];
  49. }
  50. * request = (struct vs_sw_ver_request *) (message);
  51. struct __packed vs_sw_ver_confirm
  52. {
  53. struct ethernet_hdr ethernet;
  54. struct qualcomm_hdr qualcomm;
  55. uint8_t MSTATUS;
  56. uint8_t MDEVICEID;
  57. uint8_t MVERLENGTH;
  58. char MVERSION [PLC_VERSION_STRING];
  59. }
  60. * confirm = (struct vs_sw_ver_confirm *) (message);
  61. #ifndef __GNUC__
  62. #pragma pack (pop)
  63. #endif
  64. memset (message, 0, sizeof (* message));
  65. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  66. QualcommHeader (& request->qualcomm, 0, (VS_SW_VER | MMTYPE_REQ));
  67. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  68. if (SendMME (plc) <= 0)
  69. {
  70. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  71. return (-1);
  72. }
  73. if (ReadMME (plc, 0, (VS_SW_VER | MMTYPE_CNF)) <= 0)
  74. {
  75. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  76. return (-1);
  77. }
  78. if (confirm->MSTATUS)
  79. {
  80. Failure (plc, "Device will not start");
  81. return (-1);
  82. }
  83. chipset (confirm);
  84. if ((plc->hardwareID = confirm->MDEVICEID) < CHIPSET_AR7400)
  85. {
  86. status = PhyRates1 (plc);
  87. }
  88. else
  89. {
  90. status = PhyRates2 (plc);
  91. }
  92. return (status);
  93. }
  94. #endif