WriteExecutePIB.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed WriteExecutePIB (struct plc * plc, uint32_t offset, struct pib_header * header);
  11. *
  12. * plc.h
  13. *
  14. * write parameters to SDRAM using VS_WRITE_AND_EXECUTE_APPLET; the memory
  15. * offset depends on the firmware release;
  16. *
  17. * plc->PIB must be positioned to the start of the PIB file or this
  18. * function will not work;
  19. *
  20. * pass in the PIB header since it contains the PIB file length and
  21. * checksum needed by the VS_WRITE_AND_EXECUTE_APPLET request;
  22. *
  23. * Contributor(s):
  24. * Charles Maier <cmaier@qca.qualcomm.com>
  25. *
  26. *--------------------------------------------------------------------*/
  27. #ifndef WRITEEXECUTEPIB_SOURCE
  28. #define WRITEEXECUTEPIB_SOURCE
  29. #include "../tools/files.h"
  30. #include "../tools/error.h"
  31. #include "../plc/plc.h"
  32. signed WriteExecutePIB (struct plc * plc, uint32_t offset, struct pib_header * header)
  33. {
  34. struct channel * channel = (struct channel *) (plc->channel);
  35. struct message * message = (struct message *) (plc->message);
  36. #ifndef __GNUC__
  37. #pragma pack (push,1)
  38. #endif
  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 extent = LE16TOH (header->PIBLENGTH);
  80. Request (plc, "Write %s (0) (%08X:%d)", plc->PIB.name, offset, extent);
  81. while (extent)
  82. {
  83. memset (message, 0, sizeof (* message));
  84. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  85. QualcommHeader (& request->qualcomm, 0, (VS_WRITE_AND_EXECUTE_APPLET | MMTYPE_REQ));
  86. if (length > extent)
  87. {
  88. length = extent;
  89. }
  90. if (read (plc->PIB.file, request->IMAGE, length) != (signed) (length))
  91. {
  92. error (1, errno, FILE_CANTREAD, plc->PIB.name);
  93. }
  94. request->CLIENT_SESSION_ID = HTOLE32 (plc->cookie);
  95. request->SERVER_SESSION_ID = HTOLE32 (0);
  96. request->FLAGS = HTOLE32 (PLC_MODULE_ABSOLUTE);
  97. request->ALLOWED_MEM_TYPES [0] = 1;
  98. request->TOTAL_LENGTH = header->PIBLENGTH;
  99. request->CURR_PART_LENGTH = HTOLE32 (length);
  100. request->CURR_PART_OFFSET = HTOLE32 (offset);
  101. request->START_ADDR = HTOLE32 (0);
  102. request->CHECKSUM = header->CHECKSUM;
  103. plc->packetsize = sizeof (* request);
  104. if (SendMME (plc) <= 0)
  105. {
  106. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  107. return (-1);
  108. }
  109. if (ReadMME (plc, 0, (VS_WRITE_AND_EXECUTE_APPLET | MMTYPE_CNF)) <= 0)
  110. {
  111. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  112. return (-1);
  113. }
  114. if (confirm->MSTATUS)
  115. {
  116. Failure (plc, PLC_WONTDOIT);
  117. return (-1);
  118. }
  119. if (LE32TOH (confirm->CURR_PART_LENGTH) != length)
  120. {
  121. error (PLC_EXIT (plc), 0, PLC_ERR_LENGTH);
  122. return (-1);
  123. }
  124. if (LE32TOH (confirm->CURR_PART_OFFSET) != offset)
  125. {
  126. error (PLC_EXIT (plc), 0, PLC_ERR_OFFSET);
  127. return (-1);
  128. }
  129. offset += length;
  130. extent -= length;
  131. }
  132. return (0);
  133. }
  134. #endif