WaitForReset.c 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed WaitForReset (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * poll the device using VS_SW_VER messages until no confirmation
  15. * messages are received indicating that the firmware has stopped
  16. * running; return 0 if the firmware stops responding within the
  17. * allotted time or -1 if it does not or if a transmission error
  18. * occurs;
  19. *
  20. * this function cannot distinguish between a software reset and
  21. * a power failure;
  22. *
  23. * retry is number of times to poll the device before returniung
  24. * an error to indicate that the device failed to reset; timer is
  25. * is the time between poll attempts;
  26. *
  27. * Contributor(s):
  28. * Charles Maier <cmaier@qca.qualcomm.com>
  29. * Nathaniel Houghton <nhoughto@qca.qualcomm.com>
  30. * Werner Henze <w.henze@avm.de>
  31. *
  32. *--------------------------------------------------------------------*/
  33. #ifndef WAITFORRESET_SOURCE
  34. #define WAITFORRESET_SOURCE
  35. #include <stdint.h>
  36. #include <unistd.h>
  37. #include <memory.h>
  38. #include <sys/time.h>
  39. #include "../plc/plc.h"
  40. #include "../tools/timer.h"
  41. #include "../tools/error.h"
  42. signed WaitForReset (struct plc * plc)
  43. {
  44. extern const byte localcast [ETHER_ADDR_LEN];
  45. struct channel * channel = (struct channel *) (plc->channel);
  46. struct message * message = (struct message *) (plc->message);
  47. struct timeval ts;
  48. struct timeval tc;
  49. unsigned timer = 0;
  50. #ifndef __GNUC__
  51. #pragma pack (push,1)
  52. #endif
  53. struct __packed vs_sw_ver_request
  54. {
  55. struct ethernet_hdr ethernet;
  56. struct qualcomm_hdr qualcomm;
  57. }
  58. * request = (struct vs_sw_ver_request *) (message);
  59. #ifndef __GNUC__
  60. #pragma pack (pop)
  61. #endif
  62. if (gettimeofday (& ts, NULL) == -1)
  63. {
  64. error (1, errno, CANT_START_TIMER);
  65. }
  66. for (timer = 0; timer < plc->timer; timer = SECONDS (ts, tc))
  67. {
  68. memset (message, 0, sizeof (* message));
  69. EthernetHeader (& request->ethernet, localcast, channel->host, channel->type);
  70. QualcommHeader (& request->qualcomm, 0, (VS_SW_VER | MMTYPE_REQ));
  71. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  72. if (SendMME (plc) <= 0)
  73. {
  74. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  75. return (-1);
  76. }
  77. if (ReadMME (plc, 0, (VS_SW_VER | MMTYPE_CNF)) < 0)
  78. {
  79. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  80. return (-1);
  81. }
  82. if (gettimeofday (& tc, NULL) == -1)
  83. {
  84. error (1, errno, CANT_RESET_TIMER);
  85. }
  86. if (! plc->packetsize)
  87. {
  88. return (0);
  89. }
  90. }
  91. return (-1);
  92. }
  93. #endif