ModuleRead.c 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed ModuleRead (struct plc * plc, struct _file_ * file, uint16_t source, uint16_t module, uint16_t submodule);
  11. *
  12. * plc.h
  13. *
  14. * Read a module from volatile or non-volatile memory and write it
  15. * to file;
  16. *
  17. * Contributor(s):
  18. * Charles Maier <cmaier@qca.qualcomm.com>
  19. *
  20. *--------------------------------------------------------------------*/
  21. #ifndef MODULEREAD_SOURCE
  22. #define MODULEREAD_SOURCE
  23. #include <stdint.h>
  24. #include <unistd.h>
  25. #include <memory.h>
  26. #include "../tools/error.h"
  27. #include "../tools/files.h"
  28. #include "../tools/endian.h"
  29. #include "../tools/memory.h"
  30. #include "../plc/plc.h"
  31. signed ModuleRead (struct plc * plc, struct _file_ * file, uint16_t source, uint16_t module, uint16_t submodule)
  32. {
  33. struct channel * channel = (struct channel *) (plc->channel);
  34. struct message * message = (struct message *) (plc->message);
  35. #ifndef __GNUC__
  36. #pragma pack (push,1)
  37. #endif
  38. struct __packed vs_module_operation_read_request
  39. {
  40. struct ethernet_hdr ethernet;
  41. struct qualcomm_hdr qualcomm;
  42. uint32_t RESERVED;
  43. uint8_t NUM_OP_DATA;
  44. struct __packed
  45. {
  46. uint16_t MOD_OP;
  47. uint16_t MOD_OP_DATA_LEN;
  48. uint32_t MOD_OP_RSVD;
  49. uint16_t MODULE_ID;
  50. uint16_t MODULE_SUB_ID;
  51. uint16_t MODULE_LENGTH;
  52. uint32_t MODULE_OFFSET;
  53. }
  54. MODULE_SPEC;
  55. }
  56. * request = (struct vs_module_operation_read_request *) (message);
  57. struct __packed vs_module_operation_read_confirm
  58. {
  59. struct ethernet_hdr ethernet;
  60. struct qualcomm_hdr qualcomm;
  61. uint16_t MSTATUS;
  62. uint16_t ERR_REC_CODE;
  63. uint32_t RESERVED;
  64. uint8_t NUM_OP_DATA;
  65. struct __packed
  66. {
  67. uint16_t MOD_OP;
  68. uint16_t MOD_OP_DATA_LEN;
  69. uint32_t MOD_OP_RSVD;
  70. uint16_t MODULE_ID;
  71. uint16_t MODULE_SUB_ID;
  72. uint16_t MODULE_LENGTH;
  73. uint32_t MODULE_OFFSET;
  74. }
  75. MODULE_SPEC;
  76. uint8_t MODULE_DATA [PLC_MODULE_SIZE];
  77. }
  78. * confirm = (struct vs_module_operation_read_confirm *) (message);
  79. #ifndef __GNUC__
  80. #pragma pack (pop)
  81. #endif
  82. unsigned timer = channel->timeout;
  83. uint16_t length = PLC_MODULE_SIZE;
  84. uint32_t offset = 0;
  85. Request (plc, "Read Module from %s", source? "Flash": "Memory");
  86. if (lseek (file->file, 0, SEEK_SET) == -1)
  87. {
  88. error (PLC_EXIT (plc), errno, FILE_CANTHOME, file->name);
  89. return (-1);
  90. }
  91. while (length == PLC_MODULE_SIZE)
  92. {
  93. memset (message, 0, sizeof (* message));
  94. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  95. QualcommHeader (& request->qualcomm, 0, (VS_MODULE_OPERATION | MMTYPE_REQ));
  96. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  97. request->NUM_OP_DATA = 1;
  98. request->MODULE_SPEC.MOD_OP = HTOLE16 (source);
  99. request->MODULE_SPEC.MOD_OP_DATA_LEN = HTOLE16 (sizeof (request->MODULE_SPEC));
  100. request->MODULE_SPEC.MOD_OP_RSVD = HTOLE32 (0);
  101. request->MODULE_SPEC.MODULE_ID = HTOLE16 (module);
  102. request->MODULE_SPEC.MODULE_SUB_ID = HTOLE16 (submodule);
  103. request->MODULE_SPEC.MODULE_LENGTH = HTOLE16 (length);
  104. request->MODULE_SPEC.MODULE_OFFSET = HTOLE32 (offset);
  105. #if 0
  106. #if defined (__GNUC__)
  107. #warning "Debug code active in module ModuleRead"
  108. #endif
  109. fprintf (stderr, "----- \n");
  110. fprintf (stderr, "RESERVED 0x%08X\n", LE32TOH (request->RESERVED));
  111. fprintf (stderr, "NUM_OP_DATA %d\n", request->NUM_OP_DATA);
  112. fprintf (stderr, "MOD_OP 0x%02X\n", LE16TOH (request->MODULE_SPEC.MOD_OP));
  113. fprintf (stderr, "MOD_OP_DATA_LEN %d\n", LE16TOH (request->MODULE_SPEC.MOD_OP_DATA_LEN));
  114. fprintf (stderr, "RESERVED 0x%08X\n", LE32TOH (request->MODULE_SPEC.MOD_OP_RSVD));
  115. fprintf (stderr, "MODULE_ID 0x%04X\n", LE16TOH (request->MODULE_SPEC.MODULE_ID));
  116. fprintf (stderr, "MODULE_SUB_ID 0x%04X\n", LE16TOH (request->MODULE_SPEC.MODULE_SUB_ID));
  117. fprintf (stderr, "MODULE_LENGTH %d\n", LE16TOH (request->MODULE_SPEC.MODULE_LENGTH));
  118. fprintf (stderr, "MODULE_OFFSET 0x%08X\n", LE32TOH (request->MODULE_SPEC.MODULE_OFFSET));
  119. fprintf (stderr, "\n");
  120. #endif
  121. if (SendMME (plc) <= 0)
  122. {
  123. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  124. return (-1);
  125. }
  126. channel->timeout = PLC_MODULE_READ_TIMEOUT;
  127. if (ReadMME (plc, 0, (VS_MODULE_OPERATION | MMTYPE_CNF)) <= 0)
  128. {
  129. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  130. return (-1);
  131. }
  132. channel->timeout = timer;
  133. #if 0
  134. #if defined (__GNUC__)
  135. #warning "Debug code active in module ModuleRead"
  136. #endif
  137. fprintf (stderr, "MSTATUS 0x%04X\n", LE16TOH (confirm->MSTATUS));
  138. fprintf (stderr, "ERROR_REC_CODE %d\n", LE16TOH (confirm->ERR_REC_CODE));
  139. fprintf (stderr, "RESERVED 0x%08X\n", LE32TOH (confirm->RESERVED));
  140. fprintf (stderr, "NUM_OP_DATA %d\n", confirm->NUM_OP_DATA);
  141. fprintf (stderr, "MOD_OP 0x%02X\n", LE16TOH (confirm->MODULE_SPEC.MOD_OP));
  142. fprintf (stderr, "MOD_OP_DATA_LEN %d\n", LE16TOH (confirm->MODULE_SPEC.MOD_OP_DATA_LEN));
  143. fprintf (stderr, "RESERVED 0x%08X\n", LE32TOH (confirm->MODULE_SPEC.MOD_OP_RSVD));
  144. fprintf (stderr, "MODULE_ID 0x%04X\n", LE16TOH (confirm->MODULE_SPEC.MODULE_ID));
  145. fprintf (stderr, "MODULE_SUB_ID 0x%04X\n", LE16TOH (confirm->MODULE_SPEC.MODULE_SUB_ID));
  146. fprintf (stderr, "MODULE_LENGTH %d\n", LE16TOH (confirm->MODULE_SPEC.MODULE_LENGTH));
  147. fprintf (stderr, "MODULE_OFFSET 0x%08X\n", LE32TOH (confirm->MODULE_SPEC.MODULE_OFFSET));
  148. fprintf (stderr, "\n");
  149. #endif
  150. if (LE16TOH (confirm->MSTATUS))
  151. {
  152. Failure (plc, PLC_WONTDOIT);
  153. return (-1);
  154. }
  155. length = LE16TOH (confirm->MODULE_SPEC.MODULE_LENGTH);
  156. offset = LE32TOH (confirm->MODULE_SPEC.MODULE_OFFSET);
  157. if (write (file->file, confirm->MODULE_DATA, length) != (signed) (length))
  158. {
  159. error (PLC_EXIT (plc), errno, FILE_CANTSAVE, file->name);
  160. return (-1);
  161. }
  162. offset += length;
  163. }
  164. return (0);
  165. }
  166. #endif