ModuleCommit.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed ModuleCommit (struct plc * plc, uint32_t options);
  11. *
  12. * commit previously downloaded modules to NVM; this action closes
  13. * the current module download session; the timer is temporarily
  14. * set to 10 seconds so that the operation can complete;
  15. *
  16. *--------------------------------------------------------------------*/
  17. #ifndef MODULECOMMIT_SOURCE
  18. #define MODULECOMMIT_SOURCE
  19. #include "../tools/error.h"
  20. #include "../plc/plc.h"
  21. signed ModuleCommit (struct plc * plc, uint32_t options)
  22. {
  23. struct channel * channel = (struct channel *) (plc->channel);
  24. struct message * message = (struct message *) (plc->message);
  25. #ifndef __GNUC__
  26. #pragma pack (push,1)
  27. #endif
  28. struct __packed vs_module_operation_commit_request
  29. {
  30. struct ethernet_hdr ethernet;
  31. struct qualcomm_hdr qualcomm;
  32. uint32_t RESERVED;
  33. uint8_t NUM_OP_DATA;
  34. struct __packed
  35. {
  36. uint16_t MOD_OP;
  37. uint16_t MOD_OP_DATA_LEN;
  38. uint32_t MOD_OP_RSVD;
  39. uint32_t MOD_OP_SESSION_ID;
  40. uint32_t COMMIT_CODE;
  41. }
  42. request;
  43. uint8_t RSVD [20];
  44. }
  45. * request = (struct vs_module_operation_commit_request *) (message);
  46. struct __packed vs_module_operation_commit_confirm
  47. {
  48. struct ethernet_hdr ethernet;
  49. struct qualcomm_hdr qualcomm;
  50. uint16_t MSTATUS;
  51. uint16_t ERR_REC_CODE;
  52. uint32_t RESERVED1;
  53. uint8_t NUM_OP_DATA;
  54. struct __packed
  55. {
  56. uint16_t MOD_OP;
  57. uint16_t MOD_OP_DATA_LEN;
  58. uint32_t MOD_OP_RSVD;
  59. uint32_t MOD_OP_SESSION_ID;
  60. uint32_t COMMIT_CODE;
  61. uint8_t NUM_MODULES;
  62. }
  63. request;
  64. struct __packed
  65. {
  66. uint16_t MOD_STATUS;
  67. uint16_t ERR_REC_CODE;
  68. }
  69. MOD_OP_DATA [1];
  70. }
  71. * confirm = (struct vs_module_operation_commit_confirm *) (message);
  72. #ifndef __GNUC__
  73. #pragma pack (pop)
  74. #endif
  75. unsigned timer = channel->timeout;
  76. Request (plc, "Close Session");
  77. memset (message, 0, sizeof (* message));
  78. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  79. QualcommHeader (& request->qualcomm, 0, (VS_MODULE_OPERATION | MMTYPE_REQ));
  80. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  81. request->NUM_OP_DATA = 1;
  82. request->request.MOD_OP = HTOLE16 (PLC_MOD_OP_CLOSE_SESSION);
  83. request->request.MOD_OP_DATA_LEN = HTOLE16 (sizeof (request->request) + sizeof (request->RSVD));
  84. request->request.MOD_OP_SESSION_ID = HTOLE32 (plc->cookie);
  85. request->request.COMMIT_CODE = HTOLE32 (options);
  86. if (SendMME (plc) <= 0)
  87. {
  88. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  89. return (-1);
  90. }
  91. channel->timeout = PLC_MODULE_WRITE_TIMEOUT;
  92. if (ReadMME (plc, 0, (VS_MODULE_OPERATION | MMTYPE_CNF)) <= 0)
  93. {
  94. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  95. channel->timeout = timer;
  96. return (-1);
  97. }
  98. channel->timeout = timer;
  99. if (confirm->MSTATUS)
  100. {
  101. Failure (plc, PLC_WONTDOIT);
  102. return (-1);
  103. }
  104. return (0);
  105. }
  106. #endif