ResetAndWait.c 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed ResetAndWait (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * Reset the device using a VS_RS_DEV Request message then wait for
  15. * the device to reset and reboot before returning;
  16. *
  17. * Contributor(s):
  18. * Charles Maier <cmaier@qca.qualcomm.com>
  19. *
  20. *--------------------------------------------------------------------*/
  21. #ifndef RESETANDWAIT_SOURCE
  22. #define RESETANDWAIT_SOURCE
  23. #include <stdint.h>
  24. #include <memory.h>
  25. #include "../plc/plc.h"
  26. #include "../tools/error.h"
  27. #include "../tools/memory.h"
  28. signed ResetAndWait (struct plc * plc)
  29. {
  30. struct channel * channel = (struct channel *) (plc->channel);
  31. struct message * message = (struct message *) (plc->message);
  32. #ifndef __GNUC__
  33. #pragma pack (push,1)
  34. #endif
  35. struct __packed vs_rs_dev_request
  36. {
  37. struct ethernet_hdr ethernet;
  38. struct qualcomm_hdr qualcomm;
  39. uint8_t MSTATUS;
  40. }
  41. * request = (struct vs_rs_dev_request *) (message);
  42. struct __packed vs_rs_dev_confirm
  43. {
  44. struct ethernet_hdr ethernet;
  45. struct qualcomm_hdr qualcomm;
  46. uint8_t MSTATUS;
  47. uint8_t MDEVICEID;
  48. uint8_t MVERLENGTH;
  49. char MVERSION [PLC_VERSION_STRING];
  50. }
  51. * confirm = (struct vs_rs_dev_confirm *) (message);
  52. #ifndef __GNUC__
  53. #pragma pack (pop)
  54. #endif
  55. char firmware [PLC_VERSION_STRING];
  56. Request (plc, "Reset Device");
  57. memset (message, 0, sizeof (* message));
  58. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  59. QualcommHeader (& request->qualcomm, 0, (VS_RS_DEV | MMTYPE_REQ));
  60. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  61. if (SendMME (plc) <= 0)
  62. {
  63. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  64. return (-1);
  65. }
  66. memset (firmware, 0, sizeof (firmware));
  67. #if 0
  68. if (ReadMME (plc, (VS_RS_DEV | MMTYPE_CNF)) <= 0)
  69. {
  70. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  71. return (-1);
  72. }
  73. if (confirm->MSTATUS)
  74. {
  75. Failure (plc, PLC_WONTDOIT);
  76. return (-1);
  77. }
  78. Confirm (plc, "Resetting ...");
  79. if (WaitForReset (plc))
  80. {
  81. Failure (plc, "Device did not Reset");
  82. return (-1);
  83. }
  84. if (WaitForStart (plc, firmware, sizeof (firmware)))
  85. {
  86. Failure (plc, "Device did not Start");
  87. return (-1);
  88. }
  89. #else
  90. while (ReadMME (plc, 0, (VS_RS_DEV | MMTYPE_CNF)) > 0)
  91. {
  92. if (confirm->MSTATUS)
  93. {
  94. continue;
  95. }
  96. return (0);
  97. }
  98. #endif
  99. return (-1);
  100. }
  101. #endif