ModuleSession.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed ModuleSession (struct plc * plc, unsigned modules, struct vs_module_spec * vs_module_spec);
  11. *
  12. * Establish a module download session; the session expires after
  13. * 30 minutes; the session is lost if no modules are committed in
  14. * that time; the timeout is set to 10 seconds so that the device
  15. * has enouth time to reply;
  16. *
  17. * array vs_module_spec contains information about each module in
  18. * this session;
  19. *
  20. *--------------------------------------------------------------------*/
  21. #ifndef MODULESESSION_SOURCE
  22. #define MODULESESSION_SOURCE
  23. #include "../tools/error.h"
  24. #include "../plc/plc.h"
  25. signed ModuleSession (struct plc * plc, unsigned modules, struct vs_module_spec * vs_module_spec)
  26. {
  27. struct channel * channel = (struct channel *) (plc->channel);
  28. struct message * message = (struct message *) (plc->message);
  29. #ifndef __GNUC__
  30. #pragma pack (push,1)
  31. #endif
  32. struct __packed vs_module_operation_start_request
  33. {
  34. struct ethernet_hdr ethernet;
  35. struct qualcomm_hdr qualcomm;
  36. uint32_t RESERVED1;
  37. uint8_t NUM_OP_DATA;
  38. struct __packed
  39. {
  40. uint16_t MOD_OP;
  41. uint16_t MOD_OP_DATA_LEN;
  42. uint32_t MOD_OP_RSVD;
  43. uint32_t MOD_OP_SESSION_ID;
  44. uint8_t NUM_MODULES;
  45. }
  46. MODULE_SPEC;
  47. struct vs_module_spec MOD_OP_SPEC [10];
  48. }
  49. * request = (struct vs_module_operation_start_request *) (message);
  50. struct __packed vs_module_operation_start_confirm
  51. {
  52. struct ethernet_hdr ethernet;
  53. struct qualcomm_hdr qualcomm;
  54. uint16_t MSTATUS;
  55. uint16_t ERR_REC_CODE;
  56. uint32_t RESERVED;
  57. uint8_t NUM_OP_DATA;
  58. struct __packed
  59. {
  60. uint16_t MOD_OP;
  61. uint16_t MOD_OP_DATA_LEN;
  62. uint32_t MOD_OP_RSVD;
  63. uint32_t MOD_OP_SESSION_ID;
  64. uint8_t NUM_MODULES;
  65. }
  66. MODULE_SPEC;
  67. struct __packed
  68. {
  69. uint16_t MOD_STATUS;
  70. uint16_t ERR_REC_CODE;
  71. }
  72. MOD_OP_DATA [1];
  73. }
  74. * confirm = (struct vs_module_operation_start_confirm *) (message);
  75. #ifndef __GNUC__
  76. #pragma pack (pop)
  77. #endif
  78. unsigned timer = channel->timeout;
  79. struct vs_module_spec * request_spec = (struct vs_module_spec *) (& request->MOD_OP_SPEC);
  80. Request (plc, "Start Module Write Session");
  81. memset (message, 0, sizeof (* message));
  82. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  83. QualcommHeader (& request->qualcomm, 0, (VS_MODULE_OPERATION | MMTYPE_REQ));
  84. plc->packetsize = sizeof (* request);
  85. request->NUM_OP_DATA = 1;
  86. request->MODULE_SPEC.MOD_OP = HTOLE16 (PLC_MOD_OP_START_SESSION);
  87. request->MODULE_SPEC.MOD_OP_DATA_LEN = HTOLE16 ((uint16_t) (sizeof (request->MODULE_SPEC)) + modules * sizeof (struct vs_module_spec));
  88. request->MODULE_SPEC.MOD_OP_SESSION_ID = HTOLE32 (plc->cookie);
  89. request->MODULE_SPEC.NUM_MODULES = modules;
  90. while (modules--)
  91. {
  92. request_spec->MODULE_ID = HTOLE16 (vs_module_spec->MODULE_ID);
  93. request_spec->MODULE_SUB_ID = HTOLE16 (vs_module_spec->MODULE_SUB_ID);
  94. request_spec->MODULE_LENGTH = HTOLE32 (vs_module_spec->MODULE_LENGTH);
  95. request_spec->MODULE_CHKSUM = vs_module_spec->MODULE_CHKSUM;
  96. vs_module_spec++;
  97. request_spec++;
  98. }
  99. if (SendMME (plc) <= 0)
  100. {
  101. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  102. return (-1);
  103. }
  104. channel->timeout = PLC_MODULE_REQUEST_TIMEOUT;
  105. if (ReadMME (plc, 0, (VS_MODULE_OPERATION | MMTYPE_CNF)) <= 0)
  106. {
  107. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  108. channel->timeout = timer;
  109. return (-1);
  110. }
  111. channel->timeout = timer;
  112. if (confirm->MSTATUS)
  113. {
  114. Failure (plc, PLC_WONTDOIT);
  115. return (-1);
  116. }
  117. return (0);
  118. }
  119. #endif