WaitForStart.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. /****************************************************************************
  2. # Copyright (c) 2020 Qualcomm Technologies, Inc.
  3. # All Rights Reserved.
  4. # Confidential and Proprietary - Qualcomm Technologies, Inc.
  5. #**********************************************************************
  6. # 2013 Qualcomm Atheros, Inc.
  7. #
  8. ****************************************************************************/
  9. /*====================================================================*
  10. *
  11. * signed WaitForStart (struct plc * plc, char string [], size_t length);
  12. *
  13. * plc.h
  14. *
  15. * poll the local device with VS_SW_VER requests until it responds
  16. * with a confirmation or the retry count expires; return 0 if the
  17. * device responds in time or -1 if it does not;
  18. *
  19. * if the device responds then set the struct plc hardwareID field
  20. * to indicate the true hardware platform; function chipset corrects
  21. * some unfortunate bootloader errors;
  22. *
  23. * Contributor(s):
  24. * Charles Maier <cmaier@qca.qualcomm.com>
  25. * Nathaniel Houghton <nhoughto@qca.qualcomm.com>
  26. * Werner Henze <w.henze@avm.de>
  27. *
  28. *--------------------------------------------------------------------*/
  29. #ifndef WAITFORSTART_SOURCE
  30. #define WAITFORSTART_SOURCE
  31. #include <stdint.h>
  32. #include <unistd.h>
  33. #include <memory.h>
  34. #include <string.h>
  35. #include <sys/time.h>
  36. #include "../plc/plc.h"
  37. #include "../tools/timer.h"
  38. #include "../tools/error.h"
  39. #include "../tools/flags.h"
  40. signed WaitForStart (struct plc * plc, char string [], size_t length)
  41. {
  42. extern const byte localcast [ETHER_ADDR_LEN];
  43. struct channel * channel = (struct channel *) (plc->channel);
  44. struct message * message = (struct message *) (plc->message);
  45. struct timeval ts;
  46. struct timeval tc;
  47. unsigned timer = 0;
  48. #ifndef __GNUC__
  49. #pragma pack (push,1)
  50. #endif
  51. struct __packed vs_sw_ver_request
  52. {
  53. struct ethernet_hdr ethernet;
  54. struct qualcomm_hdr qualcomm;
  55. }
  56. * request = (struct vs_sw_ver_request *) (message);
  57. struct __packed vs_sw_ver_confirm
  58. {
  59. struct ethernet_hdr ethernet;
  60. struct qualcomm_hdr qualcomm;
  61. uint8_t MSTATUS;
  62. uint8_t MDEVICEID;
  63. uint8_t MVERLENGTH;
  64. char MVERSION [PLC_VERSION_STRING];
  65. uint16_t MPLATFORM;
  66. }
  67. * confirm = (struct vs_sw_ver_confirm *) (message);
  68. #ifndef __GNUC__
  69. #pragma pack (pop)
  70. #endif
  71. flag_t flags = channel->flags;
  72. memset (string, 0, length);
  73. if (gettimeofday (& ts, NULL) == -1)
  74. {
  75. error (1, errno, CANT_START_TIMER);
  76. }
  77. for (timer = 0; timer < plc->timer; timer = SECONDS (ts, tc))
  78. {
  79. memset (message, 0, sizeof (* message));
  80. EthernetHeader (& request->ethernet, localcast, channel->host, channel->type);
  81. QualcommHeader (& request->qualcomm, 0, (VS_SW_VER | MMTYPE_REQ));
  82. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  83. _clrbits (channel->flags, CHANNEL_VERBOSE);
  84. if (SendMME (plc) <= 0)
  85. {
  86. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  87. channel->flags = flags;
  88. return (-1);
  89. }
  90. if (ReadMME (plc, 0, (VS_SW_VER | MMTYPE_CNF)) < 0)
  91. {
  92. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  93. channel->flags = flags;
  94. return (-1);
  95. }
  96. channel->flags = flags;
  97. if (gettimeofday (& tc, NULL) == -1)
  98. {
  99. error (1, errno, CANT_RESET_TIMER);
  100. }
  101. if (plc->packetsize)
  102. {
  103. chipset (confirm);
  104. plc->hardwareID = confirm->MDEVICEID;
  105. memcpy (channel->peer, request->ethernet.OSA, sizeof (channel->peer));
  106. if (confirm->MVERLENGTH > length)
  107. {
  108. confirm->MVERLENGTH = length;
  109. }
  110. memcpy (string, confirm->MVERSION, confirm->MVERLENGTH);
  111. return (0);
  112. }
  113. }
  114. return (-1);
  115. }
  116. signed WaitForStart_Destination(struct plc* plc)
  117. {
  118. struct channel* channel = (struct channel*) (plc->channel);
  119. struct message* message = (struct message*) (plc->message);
  120. struct timeval ts;
  121. struct timeval tc;
  122. #ifndef __GNUC__
  123. #pragma pack (push,1)
  124. #endif
  125. struct __packed vs_sw_ver_request
  126. {
  127. struct ethernet_hdr ethernet;
  128. struct qualcomm_hdr qualcomm;
  129. }
  130. *request = (struct vs_sw_ver_request*) (message);
  131. struct __packed vs_sw_ver_confirm
  132. {
  133. struct ethernet_hdr ethernet;
  134. struct qualcomm_hdr qualcomm;
  135. uint8_t MSTATUS;
  136. uint8_t MDEVICEID;
  137. uint8_t MVERLENGTH;
  138. char MVERSION[PLC_VERSION_STRING];
  139. uint16_t MPLATFORM;
  140. }
  141. *confirm = (struct vs_sw_ver_confirm*) (message);
  142. #ifndef __GNUC__
  143. #pragma pack (pop)
  144. #endif
  145. flag_t flags = channel->flags;
  146. if (gettimeofday(&ts, NULL) == -1)
  147. {
  148. error(1, errno, CANT_START_TIMER);
  149. }
  150. memset(message, 0, sizeof(*message));
  151. EthernetHeader(&request->ethernet, channel->peer, channel->host, channel->type);
  152. QualcommHeader(&request->qualcomm, 0, (VS_SW_VER | MMTYPE_REQ));
  153. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  154. _clrbits(channel->flags, CHANNEL_VERBOSE);
  155. if (SendMME(plc) <= 0)
  156. {
  157. error(PLC_EXIT(plc), errno, CHANNEL_CANTSEND);
  158. channel->flags = flags;
  159. return (-1);
  160. }
  161. if (ReadMME(plc, 0, (VS_SW_VER | MMTYPE_CNF)) < 0)
  162. {
  163. error(PLC_EXIT(plc), errno, CHANNEL_CANTREAD);
  164. channel->flags = flags;
  165. return (-1);
  166. }
  167. channel->flags = flags;
  168. if (gettimeofday(&tc, NULL) == -1)
  169. {
  170. error(1, errno, CANT_RESET_TIMER);
  171. }
  172. if (plc->packetsize)
  173. {
  174. chipset(confirm);
  175. plc->hardwareID = confirm->MDEVICEID;
  176. memcpy(channel->peer, request->ethernet.OSA, sizeof(channel->peer));
  177. return (0);
  178. }
  179. return (-1);
  180. }
  181. #endif