WriteExecuteApplet2.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed WriteExecuteApplet2 (struct plc * plc, unsigned module, const struct panther_nvm_header * nvm_header);
  11. *
  12. * plc.h
  13. *
  14. * use VS_WRITE_AND_EXECUTE_APPLET write a firmware image into SDRAM and
  15. * start execution when the image is stored in the new image file
  16. * format;
  17. *
  18. * the boot loader must be running for this to work since runtime
  19. * firmware ignores VS_WRITE_AND_EXECUTE_APPLET messages;
  20. *
  21. * beware that this function is identical to WriteExecuteFirmware2
  22. * except that the ALLOWDED_MEM_TYPE is set to 1;
  23. *
  24. * Contributor(s):
  25. * Charles Maier <cmaier@qca.qualcomm.com>
  26. *
  27. *--------------------------------------------------------------------*/
  28. #ifndef WRITEEXECUTEAPPLET2_SOURCE
  29. #define WRITEEXECUTEAPPLET2_SOURCE
  30. #include "../tools/files.h"
  31. #include "../tools/error.h"
  32. #include "../plc/plc.h"
  33. signed WriteExecuteApplet2 (struct plc * plc, unsigned module, const struct panther_nvm_header * nvm_header)
  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_write_execute_request
  41. {
  42. struct ethernet_hdr ethernet;
  43. struct qualcomm_hdr qualcomm;
  44. uint32_t CLIENT_SESSION_ID;
  45. uint32_t SERVER_SESSION_ID;
  46. uint32_t FLAGS;
  47. uint8_t ALLOWED_MEM_TYPES [8];
  48. uint32_t TOTAL_LENGTH;
  49. uint32_t CURR_PART_LENGTH;
  50. uint32_t CURR_PART_OFFSET;
  51. uint32_t START_ADDR;
  52. uint32_t CHECKSUM;
  53. uint8_t RESERVED2 [8];
  54. uint8_t IMAGE [PLC_MODULE_SIZE];
  55. }
  56. * request = (struct vs_write_execute_request *) (message);
  57. struct __packed vs_write_execute_confirm
  58. {
  59. struct ethernet_hdr ethernet;
  60. struct qualcomm_hdr qualcomm;
  61. uint32_t MSTATUS;
  62. uint32_t CLIENT_SESSION_ID;
  63. uint32_t SERVER_SESSION_ID;
  64. uint32_t FLAGS;
  65. uint8_t ALLOWED_MEM_TYPES [8];
  66. uint32_t TOTAL_LENGTH;
  67. uint32_t CURR_PART_LENGTH;
  68. uint32_t CURR_PART_OFFSET;
  69. uint32_t START_ADDR;
  70. uint32_t CHECKSUM;
  71. uint8_t RESERVED2 [8];
  72. uint32_t CURR_PART_ABSOLUTE_ADDR;
  73. uint32_t ABSOLUTE_START_ADDR;
  74. }
  75. * confirm = (struct vs_write_execute_confirm *) (message);
  76. #ifndef __GNUC__
  77. #pragma pack (pop)
  78. #endif
  79. unsigned action = PLC_MODULE_ABSOLUTE;
  80. uint32_t length = PLC_MODULE_SIZE;
  81. uint32_t offset = LE32TOH (nvm_header->ImageAddress);
  82. uint32_t extent = LE32TOH (nvm_header->ImageLength);
  83. Request (plc, "Write %s (%d) (%08X:%d)", plc->NVM.name, module, offset, extent);
  84. while (extent)
  85. {
  86. memset (message, 0, sizeof (* message));
  87. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  88. QualcommHeader (& request->qualcomm, 0, (VS_WRITE_AND_EXECUTE_APPLET | MMTYPE_REQ));
  89. if (length > extent)
  90. {
  91. if (! (LE32TOH (nvm_header->EntryPoint) % sizeof (nvm_header->EntryPoint)))
  92. {
  93. Request (plc, "Start %s (%d) (%08X)", plc->NVM.name, module, LE32TOH (nvm_header->EntryPoint));
  94. action |= PLC_MODULE_EXECUTE;
  95. }
  96. length = extent;
  97. }
  98. if (read (plc->NVM.file, request->IMAGE, length) != (signed) (length))
  99. {
  100. error (1, errno, FILE_CANTREAD, plc->NVM.name);
  101. }
  102. request->CLIENT_SESSION_ID = HTOLE32 (plc->cookie);
  103. request->SERVER_SESSION_ID = HTOLE32 (0);
  104. request->FLAGS = HTOLE32 (action);
  105. request->ALLOWED_MEM_TYPES [0] = 1;
  106. request->TOTAL_LENGTH = nvm_header->ImageLength;
  107. request->CURR_PART_LENGTH = HTOLE32 (length);
  108. request->CURR_PART_OFFSET = HTOLE32 (offset);
  109. request->START_ADDR = nvm_header->EntryPoint;
  110. request->CHECKSUM = nvm_header->ImageChecksum;
  111. plc->packetsize = sizeof (* request);
  112. if (SendMME (plc) <= 0)
  113. {
  114. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  115. return (-1);
  116. }
  117. if (ReadMME (plc, 0, (VS_WRITE_AND_EXECUTE_APPLET | MMTYPE_CNF)) <= 0)
  118. {
  119. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  120. return (-1);
  121. }
  122. if (confirm->MSTATUS)
  123. {
  124. Failure (plc, PLC_WONTDOIT);
  125. return (-1);
  126. }
  127. if (LE32TOH (confirm->CURR_PART_LENGTH) != length)
  128. {
  129. error (PLC_EXIT (plc), 0, PLC_ERR_LENGTH);
  130. return (-1);
  131. }
  132. if (LE32TOH (confirm->CURR_PART_OFFSET) != offset)
  133. {
  134. error (PLC_EXIT (plc), 0, PLC_ERR_OFFSET);
  135. return (-1);
  136. }
  137. offset += length;
  138. extent -= length;
  139. }
  140. return (0);
  141. }
  142. #endif