WriteExecuteParameters1.c 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed WriteExecuteParameters1 (struct plc * plc, unsigned module, const struct lightning_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. * this implementeation will probably never be used because we do
  23. * not distribute parameter files in old image file format; but if
  24. * we then this is it;
  25. *
  26. * Contributor(s):
  27. * Charles Maier <cmaier@qca.qualcomm.com>
  28. *
  29. *--------------------------------------------------------------------*/
  30. #ifndef WRITEEXECUTEPARAMETERS1_SOURCE
  31. #define WRITEEXECUTEPARAMETERS1_SOURCE
  32. #include "../tools/files.h"
  33. #include "../tools/error.h"
  34. #include "../plc/plc.h"
  35. signed WriteExecuteParameters1 (struct plc * plc, unsigned module, const struct lightning_nvm_header * nvm_header)
  36. {
  37. struct channel * channel = (struct channel *) (plc->channel);
  38. struct message * message = (struct message *) (plc->message);
  39. #ifndef __GNUC__
  40. #pragma pack (push,1)
  41. #endif
  42. struct lightning_nvm_header nvm_manifest;
  43. struct __packed vs_write_execute_request
  44. {
  45. struct ethernet_hdr ethernet;
  46. struct qualcomm_hdr qualcomm;
  47. uint32_t CLIENT_SESSION_ID;
  48. uint32_t SERVER_SESSION_ID;
  49. uint32_t FLAGS;
  50. uint8_t ALLOWED_MEM_TYPES [8];
  51. uint32_t TOTAL_LENGTH;
  52. uint32_t CURR_PART_LENGTH;
  53. uint32_t CURR_PART_OFFSET;
  54. uint32_t START_ADDR;
  55. uint32_t CHECKSUM;
  56. uint8_t RESERVED2 [8];
  57. uint8_t IMAGE [PLC_MODULE_SIZE];
  58. }
  59. * request = (struct vs_write_execute_request *) (message);
  60. struct __packed vs_write_execute_confirm
  61. {
  62. struct ethernet_hdr ethernet;
  63. struct qualcomm_hdr qualcomm;
  64. uint32_t MSTATUS;
  65. uint32_t CLIENT_SESSION_ID;
  66. uint32_t SERVER_SESSION_ID;
  67. uint32_t FLAGS;
  68. uint8_t ALLOWED_MEM_TYPES [8];
  69. uint32_t TOTAL_LENGTH;
  70. uint32_t CURR_PART_LENGTH;
  71. uint32_t CURR_PART_OFFSET;
  72. uint32_t START_ADDR;
  73. uint32_t CHECKSUM;
  74. uint8_t RESERVED2 [8];
  75. uint32_t CURR_PART_ABSOLUTE_ADDR;
  76. uint32_t ABSOLUTE_START_ADDR;
  77. }
  78. * confirm = (struct vs_write_execute_confirm *) (message);
  79. #ifndef __GNUC__
  80. #pragma pack (pop)
  81. #endif
  82. uint32_t length = PLC_MODULE_SIZE;
  83. uint32_t offset = LE32TOH (nvm_header->IMAGEADDRESS);
  84. uint32_t extent = LE32TOH (nvm_header->IMAGELENGTH);
  85. #if 0
  86. Request (plc, "Write %s (%d) (%08X:%d)", plc->PIB.name, module, offset, extent);
  87. #else
  88. /*
  89. * adjust the file extent to include the the manifest image header, the manifest image, the PIB
  90. * image header and the PIB image; this should in principle, equal the PIB filesize for Panther
  91. * and Lynx .pib files;
  92. */
  93. if (lseek (plc->PIB.file, 0, SEEK_SET))
  94. {
  95. error (1, errno, FILE_CANTHOME, plc->PIB.name);
  96. }
  97. if (read (plc->PIB.file, & nvm_manifest, sizeof (nvm_manifest)) != sizeof (nvm_manifest))
  98. {
  99. error (1, errno, FILE_CANTREAD, plc->PIB.name);
  100. }
  101. extent += sizeof (* nvm_header);
  102. extent += LE32TOH (nvm_manifest.IMAGELENGTH);
  103. extent += sizeof (* nvm_header);
  104. Request (plc, "Write %s (%d) (%08X:%d)", plc->PIB.name, module, offset, extent);
  105. #endif
  106. while (extent)
  107. {
  108. memset (message, 0, sizeof (* message));
  109. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  110. QualcommHeader (& request->qualcomm, 0, (VS_WRITE_AND_EXECUTE_APPLET | MMTYPE_REQ));
  111. if (length > extent)
  112. {
  113. length = extent;
  114. }
  115. if (read (plc->PIB.file, request->IMAGE, length) != (signed) (length))
  116. {
  117. error (1, errno, FILE_CANTREAD, plc->PIB.name);
  118. }
  119. request->CLIENT_SESSION_ID = HTOLE32 (plc->cookie);
  120. request->SERVER_SESSION_ID = HTOLE32 (0);
  121. request->FLAGS = HTOLE32 (PLC_MODULE_ABSOLUTE);
  122. request->ALLOWED_MEM_TYPES [0] = 1;
  123. request->TOTAL_LENGTH = nvm_header->IMAGELENGTH;
  124. request->CURR_PART_LENGTH = HTOLE32 (length);
  125. request->CURR_PART_OFFSET = HTOLE32 (offset);
  126. request->START_ADDR = nvm_header->ENTRYPOINT;
  127. request->CHECKSUM = nvm_header->IMAGECHECKSUM;
  128. plc->packetsize = sizeof (* request);
  129. if (SendMME (plc) <= 0)
  130. {
  131. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  132. return (-1);
  133. }
  134. if (ReadMME (plc, 0, (VS_WRITE_AND_EXECUTE_APPLET | MMTYPE_CNF)) <= 0)
  135. {
  136. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  137. return (-1);
  138. }
  139. if (confirm->MSTATUS)
  140. {
  141. Failure (plc, PLC_WONTDOIT);
  142. return (-1);
  143. }
  144. if (LE32TOH (confirm->CURR_PART_LENGTH) != length)
  145. {
  146. error (PLC_EXIT (plc), 0, PLC_ERR_LENGTH);
  147. return (-1);
  148. }
  149. if (LE32TOH (confirm->CURR_PART_OFFSET) != offset)
  150. {
  151. error (PLC_EXIT (plc), 0, PLC_ERR_OFFSET);
  152. return (-1);
  153. }
  154. offset += length;
  155. extent -= length;
  156. }
  157. return (0);
  158. }
  159. #endif