PLCNetworkInfo.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed PLCNetworkInfo (struct plc * plc)
  11. *
  12. * Request network membership information from the peer device using
  13. * the VS_NW_INFO message;
  14. *
  15. * This function is similar to function NetworkInformation() but the
  16. * output format is different;
  17. *
  18. * Contributor(s):
  19. * Charles Maier <cmaier@qca.qualcomm.com>
  20. *
  21. *--------------------------------------------------------------------*/
  22. #ifndef PLCNETWORKINFO_SOURCE
  23. #define PLCNETWORKINFO_SOURCE
  24. #include <unistd.h>
  25. #include <stdlib.h>
  26. #include <stdint.h>
  27. #include <limits.h>
  28. #include "../tools/types.h"
  29. #include "../tools/flags.h"
  30. #include "../tools/error.h"
  31. #include "../plc/plc.h"
  32. signed PLCNetworkInfo (struct plc * plc)
  33. {
  34. signed status;
  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_sw_ver_request
  41. {
  42. struct ethernet_hdr ethernet;
  43. struct qualcomm_hdr qualcomm;
  44. uint8_t MSTATUS;
  45. uint8_t MDEVICEID;
  46. uint8_t MVERLENGTH;
  47. char MVERSION [PLC_VERSION_STRING];
  48. }
  49. * request = (struct vs_sw_ver_request *) (message);
  50. struct __packed vs_sw_ver_confirm
  51. {
  52. struct ethernet_hdr ethernet;
  53. struct qualcomm_hdr qualcomm;
  54. uint8_t MSTATUS;
  55. uint8_t MDEVICEID;
  56. uint8_t MVERLENGTH;
  57. char MVERSION [PLC_VERSION_STRING];
  58. }
  59. * confirm = (struct vs_sw_ver_confirm *) (message);
  60. #ifndef __GNUC__
  61. #pragma pack (pop)
  62. #endif
  63. memset (message, 0, sizeof (* message));
  64. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  65. QualcommHeader (& request->qualcomm, 0, (VS_SW_VER | MMTYPE_REQ));
  66. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  67. if (SendMME (plc) <= 0)
  68. {
  69. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  70. return (-1);
  71. }
  72. if (ReadMME (plc, 0, (VS_SW_VER | MMTYPE_CNF)) <= 0)
  73. {
  74. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  75. return (-1);
  76. }
  77. if (confirm->MSTATUS)
  78. {
  79. Failure (plc, "Device will not start");
  80. return (-1);
  81. }
  82. chipset (confirm);
  83. if ((plc->hardwareID = confirm->MDEVICEID) < CHIPSET_AR7400)
  84. {
  85. status = NetInfo1 (plc);
  86. }
  87. else
  88. {
  89. status = NetInfo2 (plc);
  90. }
  91. return (status);
  92. }
  93. #endif