ModuleDump.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed ModuleDump (struct plc * plc, uint16_t source, uint16_t module, uint16_t submodule);
  11. *
  12. * read a module from volatile or non-volatile memory and write to
  13. * stdout in hex dump format;
  14. *
  15. * Contributor(s):
  16. * Charles Maier <cmaier@qca.qualcomm.com>
  17. *
  18. *--------------------------------------------------------------------*/
  19. #ifndef MODULEDUMP_SOURCE
  20. #define MODULEDUMP_SOURCE
  21. #include <stdint.h>
  22. #include <unistd.h>
  23. #include <memory.h>
  24. #include "../tools/error.h"
  25. #include "../plc/plc.h"
  26. signed ModuleDump (struct plc * plc, uint16_t source, uint16_t module, uint16_t submodule)
  27. {
  28. struct channel * channel = (struct channel *) (plc->channel);
  29. struct message * message = (struct message *) (plc->message);
  30. #ifndef __GNUC__
  31. #pragma pack (push,1)
  32. #endif
  33. struct __packed vs_module_operation_read_request
  34. {
  35. struct ethernet_hdr ethernet;
  36. struct qualcomm_hdr qualcomm;
  37. uint32_t RESERVED;
  38. uint8_t NUM_OP_DATA;
  39. struct __packed
  40. {
  41. uint16_t MOD_OP;
  42. uint16_t MOD_OP_DATA_LEN;
  43. uint32_t MOD_OP_RSVD;
  44. uint16_t MODULE_ID;
  45. uint16_t MODULE_SUB_ID;
  46. uint16_t MODULE_LENGTH;
  47. uint32_t MODULE_OFFSET;
  48. }
  49. MODULE_SPEC;
  50. }
  51. * request = (struct vs_module_operation_read_request *) (message);
  52. struct __packed vs_module_operation_read_confirm
  53. {
  54. struct ethernet_hdr ethernet;
  55. struct qualcomm_hdr qualcomm;
  56. uint16_t MSTATUS;
  57. uint16_t ERR_REC_CODE;
  58. uint32_t RESERVED;
  59. uint8_t NUM_OP_DATA;
  60. struct __packed
  61. {
  62. uint16_t MOD_OP;
  63. uint16_t MOD_OP_DATA_LEN;
  64. uint32_t MOD_OP_RSVD;
  65. uint16_t MODULE_ID;
  66. uint16_t MODULE_SUB_ID;
  67. uint16_t MODULE_LENGTH;
  68. uint32_t MODULE_OFFSET;
  69. }
  70. MODULE_SPEC;
  71. uint8_t MODULE_DATA [PLC_MODULE_SIZE];
  72. }
  73. * confirm = (struct vs_module_operation_read_confirm *) (message);
  74. #ifndef __GNUC__
  75. #pragma pack (pop)
  76. #endif
  77. unsigned offset = 0;
  78. unsigned length = PLC_MODULE_SIZE;
  79. unsigned timer = channel->timeout;
  80. Request (plc, "Read Module from Flash");
  81. while (length == PLC_MODULE_SIZE)
  82. {
  83. memset (message, 0, sizeof (* message));
  84. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  85. QualcommHeader (& request->qualcomm, 0, (VS_MODULE_OPERATION | MMTYPE_REQ));
  86. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  87. request->NUM_OP_DATA = 1;
  88. request->MODULE_SPEC.MOD_OP = HTOLE16 (source);
  89. request->MODULE_SPEC.MOD_OP_DATA_LEN = HTOLE16 (sizeof (request->MODULE_SPEC));
  90. request->MODULE_SPEC.MOD_OP_RSVD = HTOLE32 (0);
  91. request->MODULE_SPEC.MODULE_ID = HTOLE16 (module);
  92. request->MODULE_SPEC.MODULE_SUB_ID = HTOLE16 (submodule);
  93. request->MODULE_SPEC.MODULE_LENGTH = HTOLE16 (length);
  94. request->MODULE_SPEC.MODULE_OFFSET = HTOLE32 (offset);
  95. if (SendMME (plc) <= 0)
  96. {
  97. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  98. return (-1);
  99. }
  100. channel->timeout = PLC_MODULE_READ_TIMEOUT;
  101. if (ReadMME (plc, 0, (VS_MODULE_OPERATION | MMTYPE_CNF)) <= 0)
  102. {
  103. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  104. channel->timeout = timer;
  105. return (-1);
  106. }
  107. channel->timeout = timer;
  108. if (confirm->MSTATUS)
  109. {
  110. Failure (plc, PLC_WONTDOIT);
  111. return (-1);
  112. }
  113. length = LE16TOH (confirm->MODULE_SPEC.MODULE_LENGTH);
  114. offset = LE32TOH (confirm->MODULE_SPEC.MODULE_OFFSET);
  115. hexview (confirm->MODULE_DATA, LE32TOH (confirm->MODULE_SPEC.MODULE_OFFSET), LE16TOH (confirm->MODULE_SPEC.MODULE_LENGTH), stdout);
  116. offset += length;
  117. }
  118. return (0);
  119. }
  120. #endif