WriteExecuteParameters2.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed WriteExecuteParameters2 (struct plc * plc, unsigned module, const struct panther_nvm_header * nvm_header);
  11. *
  12. * plc.h
  13. *
  14. * write parameters to SDRAM using VS_WRITE_AND_EXECUTE_APPLET;
  15. *
  16. * we pass in the PIB image header because that is how the caller
  17. * located the PIB image in the file but we must write the entire
  18. * file into SDRAM at the address found in the PIB image header;
  19. * consequenctly, we have to rewind the file position and compute
  20. * the actual file size;
  21. *
  22. * Contributor(s):
  23. * Charles Maier <cmaier@qca.qualcomm.com>
  24. *
  25. *--------------------------------------------------------------------*/
  26. #ifndef WRITEEXECUTEPARAMETERS2_SOURCE
  27. #define WRITEEXECUTEPARAMETERS2_SOURCE
  28. #include "../tools/files.h"
  29. #include "../tools/error.h"
  30. #include "../plc/plc.h"
  31. signed WriteExecuteParameters2 (struct plc * plc, unsigned module, const struct panther_nvm_header * nvm_header)
  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 panther_nvm_header tmp_header;
  39. struct __packed vs_write_execute_request
  40. {
  41. struct ethernet_hdr ethernet;
  42. struct qualcomm_hdr qualcomm;
  43. uint32_t CLIENT_SESSION_ID;
  44. uint32_t SERVER_SESSION_ID;
  45. uint32_t FLAGS;
  46. uint8_t ALLOWED_MEM_TYPES [8];
  47. uint32_t TOTAL_LENGTH;
  48. uint32_t CURR_PART_LENGTH;
  49. uint32_t CURR_PART_OFFSET;
  50. uint32_t START_ADDR;
  51. uint32_t CHECKSUM;
  52. uint8_t RESERVED2 [8];
  53. uint8_t IMAGE [PLC_MODULE_SIZE];
  54. }
  55. * request = (struct vs_write_execute_request *) (message);
  56. struct __packed vs_write_execute_confirm
  57. {
  58. struct ethernet_hdr ethernet;
  59. struct qualcomm_hdr qualcomm;
  60. uint32_t MSTATUS;
  61. uint32_t CLIENT_SESSION_ID;
  62. uint32_t SERVER_SESSION_ID;
  63. uint32_t FLAGS;
  64. uint8_t ALLOWED_MEM_TYPES [8];
  65. uint32_t TOTAL_LENGTH;
  66. uint32_t CURR_PART_LENGTH;
  67. uint32_t CURR_PART_OFFSET;
  68. uint32_t START_ADDR;
  69. uint32_t CHECKSUM;
  70. uint8_t RESERVED2 [8];
  71. uint32_t CURR_PART_ABSOLUTE_ADDR;
  72. uint32_t ABSOLUTE_START_ADDR;
  73. }
  74. * confirm = (struct vs_write_execute_confirm *) (message);
  75. #ifndef __GNUC__
  76. #pragma pack (pop)
  77. #endif
  78. uint32_t length = PLC_MODULE_SIZE;
  79. uint32_t offset = LE32TOH (nvm_header->ImageAddress);
  80. uint32_t extent = LE32TOH (nvm_header->ImageLength);
  81. #if 1
  82. /*
  83. * adjust the file extent to include the the manifest image header, the manifest image, the PIB
  84. * image header and the PIB image; this should in principle, equal the PIB filesize for Panther
  85. * and Lynx .pib files;
  86. */
  87. if (lseek (plc->PIB.file, 0, SEEK_SET))
  88. {
  89. error (1, errno, FILE_CANTHOME, plc->PIB.name);
  90. }
  91. if (read (plc->PIB.file, & tmp_header, sizeof (tmp_header)) != sizeof (tmp_header))
  92. {
  93. error (1, errno, FILE_CANTREAD, plc->PIB.name);
  94. }
  95. extent += sizeof (tmp_header);
  96. extent += LE32TOH (tmp_header.ImageLength);
  97. extent += sizeof (* nvm_header);
  98. if (lseek (plc->PIB.file, 0, SEEK_SET))
  99. {
  100. error (1, errno, FILE_CANTHOME, plc->PIB.name);
  101. }
  102. #endif
  103. Request (plc, "Write %s (%d) (%08X:%d)", plc->PIB.name, module, offset, extent);
  104. while (extent)
  105. {
  106. memset (message, 0, sizeof (* message));
  107. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  108. QualcommHeader (& request->qualcomm, 0, (VS_WRITE_AND_EXECUTE_APPLET | MMTYPE_REQ));
  109. if (length > extent)
  110. {
  111. length = extent;
  112. }
  113. if (read (plc->PIB.file, request->IMAGE, length) != (signed) (length))
  114. {
  115. error (1, errno, FILE_CANTREAD, plc->PIB.name);
  116. }
  117. request->CLIENT_SESSION_ID = HTOLE32 (plc->cookie);
  118. request->SERVER_SESSION_ID = HTOLE32 (0);
  119. request->FLAGS = HTOLE32 (PLC_MODULE_ABSOLUTE);
  120. request->ALLOWED_MEM_TYPES [0] = 0;
  121. request->TOTAL_LENGTH = nvm_header->ImageLength;
  122. request->CURR_PART_LENGTH = HTOLE32 (length);
  123. request->CURR_PART_OFFSET = HTOLE32 (offset);
  124. request->START_ADDR = nvm_header->EntryPoint;
  125. request->CHECKSUM = nvm_header->ImageChecksum;
  126. plc->packetsize = sizeof (* request);
  127. if (SendMME (plc) <= 0)
  128. {
  129. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  130. return (-1);
  131. }
  132. if (ReadMME (plc, 0, (VS_WRITE_AND_EXECUTE_APPLET | MMTYPE_CNF)) <= 0)
  133. {
  134. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  135. return (-1);
  136. }
  137. if (confirm->MSTATUS)
  138. {
  139. Failure (plc, PLC_WONTDOIT);
  140. return (-1);
  141. }
  142. if (LE32TOH (confirm->CURR_PART_LENGTH) != length)
  143. {
  144. error (PLC_EXIT (plc), 0, PLC_ERR_LENGTH);
  145. return (-1);
  146. }
  147. if (LE32TOH (confirm->CURR_PART_OFFSET) != offset)
  148. {
  149. error (PLC_EXIT (plc), 0, PLC_ERR_OFFSET);
  150. return (-1);
  151. }
  152. offset += length;
  153. extent -= length;
  154. }
  155. return (0);
  156. }
  157. #endif