ModuleWrite.c 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed ModuleWrite (struct plc * plc, struct _file_ * file, unsigned index, struct vs_module_spec * vs_module_spec);
  11. *
  12. * plc.h
  13. *
  14. * write an entire file to flash memory as a single module; write
  15. * the file in 1400 byte records; allow up to 80 seconds for each
  16. * write to complete; extra time is needed because memory must be
  17. * erased;
  18. *
  19. * Contributor(s):
  20. * Charles Maier <cmaier@qca.qualcomm.com>
  21. *
  22. *--------------------------------------------------------------------*/
  23. #ifndef MODULEWRITE_SOURCE
  24. #define MODULEWRITE_SOURCE
  25. #include <stdint.h>
  26. #include <limits.h>
  27. #include <unistd.h>
  28. #include <string.h>
  29. #include <memory.h>
  30. #include "../tools/error.h"
  31. #include "../tools/files.h"
  32. #include "../plc/plc.h"
  33. signed ModuleWrite (struct plc * plc, struct _file_ * file, unsigned index, struct vs_module_spec * vs_module_spec)
  34. {
  35. struct channel * channel = (struct channel *) (plc->channel);
  36. struct message * message = (struct message *) (plc->message);
  37. #ifndef __GNUC__
  38. #pragma pack (push,1)
  39. #endif
  40. struct __packed vs_module_operation_write_request
  41. {
  42. struct ethernet_hdr ethernet;
  43. struct qualcomm_hdr qualcomm;
  44. uint32_t RESERVED;
  45. uint8_t NUM_OP_DATA;
  46. struct __packed
  47. {
  48. uint16_t MOD_OP;
  49. uint16_t MOD_OP_DATA_LEN;
  50. uint32_t MOD_OP_RSVD;
  51. uint32_t MOD_OP_SESSION_ID;
  52. uint8_t MODULE_IDX;
  53. uint16_t MODULE_ID;
  54. uint16_t MODULE_SUB_ID;
  55. uint16_t MODULE_LENGTH;
  56. uint32_t MODULE_OFFSET;
  57. }
  58. MODULE_SPEC;
  59. uint8_t MODULE_DATA [PLC_MODULE_SIZE];
  60. }
  61. * request = (struct vs_module_operation_write_request *) (message);
  62. struct __packed vs_module_operation_write_confirm
  63. {
  64. struct ethernet_hdr ethernet;
  65. struct qualcomm_hdr qualcomm;
  66. uint16_t MSTATUS;
  67. uint16_t ERR_REC_CODE;
  68. uint32_t RESERVED;
  69. uint8_t NUM_OP_DATA;
  70. struct __packed
  71. {
  72. uint16_t MOD_OP;
  73. uint16_t MOD_OP_DATA_LEN;
  74. uint32_t MOD_OP_RSVD;
  75. uint32_t MOD_OP_SESSION_ID;
  76. uint8_t MODULE_IDX;
  77. uint16_t MODULE_ID;
  78. uint16_t MODULE_SUB_ID;
  79. uint16_t MODULE_LENGTH;
  80. uint32_t MODULE_OFFSET;
  81. }
  82. MODULE_SPEC;
  83. }
  84. * confirm = (struct vs_module_operation_write_confirm *) (message);
  85. #ifndef __GNUC__
  86. #pragma pack (pop)
  87. #endif
  88. unsigned timer = channel->timeout;
  89. uint16_t length = PLC_MODULE_SIZE;
  90. uint32_t extent = vs_module_spec->MODULE_LENGTH;
  91. uint32_t offset = 0;
  92. Request (plc, "Flash %s", file->name);
  93. while (extent)
  94. {
  95. memset (message, 0, sizeof (* message));
  96. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  97. QualcommHeader (& request->qualcomm, 0, (VS_MODULE_OPERATION | MMTYPE_REQ));
  98. plc->packetsize = sizeof (struct vs_module_operation_write_request);
  99. if (length > extent)
  100. {
  101. length = extent;
  102. }
  103. if (read (file->file, request->MODULE_DATA, length) != length)
  104. {
  105. error (1, errno, FILE_CANTREAD, file->name);
  106. }
  107. request->NUM_OP_DATA = 1;
  108. request->MODULE_SPEC.MOD_OP = HTOLE16 (PLC_MOD_OP_WRITE_MODULE);
  109. request->MODULE_SPEC.MOD_OP_DATA_LEN = HTOLE16 (sizeof (request->MODULE_SPEC) + sizeof (request->MODULE_DATA));
  110. request->MODULE_SPEC.MOD_OP_SESSION_ID = HTOLE32 (plc->cookie);
  111. request->MODULE_SPEC.MODULE_IDX = index;
  112. request->MODULE_SPEC.MODULE_ID = HTOLE16 (vs_module_spec->MODULE_ID);
  113. request->MODULE_SPEC.MODULE_SUB_ID = HTOLE16 (vs_module_spec->MODULE_SUB_ID);
  114. request->MODULE_SPEC.MODULE_LENGTH = HTOLE16 (length);
  115. request->MODULE_SPEC.MODULE_OFFSET = HTOLE32 (offset);
  116. #if 0
  117. fprintf (stderr, "RESERVED 0x%08X\n", LE32TOH (request->RESERVED));
  118. fprintf (stderr, "NUM_OP_DATA %d\n", request->NUM_OP_DATA);
  119. fprintf (stderr, "MOD_OP 0x%02X\n", LE16TOH (request->MODULE_SPEC.MOD_OP));
  120. fprintf (stderr, "MOD_OP_DATA_LEN %d\n", LE16TOH (request->MODULE_SPEC.MOD_OP_DATA_LEN));
  121. fprintf (stderr, "RESERVED 0x%08X\n", LE32TOH (request->MODULE_SPEC.MOD_OP_RSVD));
  122. fprintf (stderr, "MODULE_ID 0x%04X\n", LE16TOH (request->MODULE_SPEC.MODULE_ID));
  123. fprintf (stderr, "MODULE_SUB_ID 0x%04X\n", LE16TOH (request->MODULE_SPEC.MODULE_SUB_ID));
  124. fprintf (stderr, "MODULE_LENGTH %d\n", LE16TOH (request->MODULE_SPEC.MODULE_LENGTH));
  125. fprintf (stderr, "MODULE_OFFSET 0x%08X\n", LE32TOH (request->MODULE_SPEC.MODULE_OFFSET));
  126. fflush (stderr);
  127. #endif
  128. if (SendMME (plc) <= 0)
  129. {
  130. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  131. return (-1);
  132. }
  133. channel->timeout = PLC_MODULE_WRITE_TIMEOUT;
  134. if (ReadMME (plc, 0, (VS_MODULE_OPERATION | MMTYPE_CNF)) <= 0)
  135. {
  136. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  137. channel->timeout = timer;
  138. return (-1);
  139. }
  140. channel->timeout = timer;
  141. #if 0
  142. fprintf (stderr, "MSTATUS 0x%04X\n", LE16TOH (confirm->MSTATUS));
  143. fprintf (stderr, "ERROR_REC_CODE %d\n", LE16TOH (confirm->ERR_REC_CODE));
  144. fprintf (stderr, "RESERVED 0x%08X\n", LE32TOH (confirm->RESERVED));
  145. fprintf (stderr, "NUM_OP_DATA %d\n", confirm->NUM_OP_DATA);
  146. fprintf (stderr, "MOD_OP 0x%02X\n", LE16TOH (confirm->MODULE_SPEC.MOD_OP));
  147. fprintf (stderr, "MOD_OP_DATA_LEN %d\n", LE16TOH (confirm->MODULE_SPEC.MOD_OP_DATA_LEN));
  148. fprintf (stderr, "RESERVED 0x%08X\n", LE32TOH (confirm->MODULE_SPEC.MOD_OP_RSVD));
  149. fprintf (stderr, "MODULE_ID 0x%04X\n", LE16TOH (confirm->MODULE_SPEC.MODULE_ID));
  150. fprintf (stderr, "MODULE_SUB_ID 0x%04X\n", LE16TOH (confirm->MODULE_SPEC.MODULE_SUB_ID));
  151. fprintf (stderr, "MODULE_LENGTH %d\n", LE16TOH (confirm->MODULE_SPEC.MODULE_LENGTH));
  152. fprintf (stderr, "MODULE_OFFSET 0x%08X\n", LE32TOH (confirm->MODULE_SPEC.MODULE_OFFSET));
  153. fflush (stderr);
  154. #endif
  155. if (confirm->MSTATUS)
  156. {
  157. Failure (plc, PLC_WONTDOIT);
  158. return (-1);
  159. }
  160. if (LE16TOH (confirm->MODULE_SPEC.MODULE_LENGTH) != length)
  161. {
  162. error (PLC_EXIT (plc), 0, PLC_ERR_LENGTH);
  163. return (-1);
  164. }
  165. if (LE32TOH (confirm->MODULE_SPEC.MODULE_OFFSET) != offset)
  166. {
  167. error (PLC_EXIT (plc), 0, PLC_ERR_OFFSET);
  168. return (-1);
  169. }
  170. extent -= length;
  171. offset += length;
  172. }
  173. return (0);
  174. }
  175. #endif