WriteFirmware2.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed WriteFirmware2 (struct plc * plc, unsigned module, const struct panther_nvm_header * nvm_header);
  11. *
  12. * plc.h
  13. *
  14. * use VS_WR_MEM message to 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_WR_MEM messages;
  20. *
  21. * future devices will ignore VS_WR_MEM messages, so use function
  22. * WriteExecuteFirmware2, instead;
  23. *
  24. * Contributor(s):
  25. * Charles Maier <cmaier@qca.qualcomm.com>
  26. *
  27. *--------------------------------------------------------------------*/
  28. #ifndef WRITEFIRMWARE2_SOURCE
  29. #define WRITEFIRMWARE2_SOURCE
  30. #include <stdint.h>
  31. #include <unistd.h>
  32. #include <memory.h>
  33. #include "../tools/files.h"
  34. #include "../tools/error.h"
  35. #include "../tools/memory.h"
  36. #include "../plc/plc.h"
  37. signed WriteFirmware2 (struct plc * plc, unsigned module, const struct panther_nvm_header * nvm_header)
  38. {
  39. struct channel * channel = (struct channel *) (plc->channel);
  40. struct message * message = (struct message *) (plc->message);
  41. #ifndef __GNUC__
  42. #pragma pack (push,1)
  43. #endif
  44. struct __packed vs_wr_mem_request
  45. {
  46. struct ethernet_hdr ethernet;
  47. struct qualcomm_hdr qualcomm;
  48. uint32_t MOFFSET;
  49. uint32_t MLENGTH;
  50. uint8_t BUFFER [PLC_RECORD_SIZE];
  51. }
  52. * request = (struct vs_wr_mem_request *) (message);
  53. struct __packed vs_wr_mem_confirm
  54. {
  55. struct ethernet_hdr ethernet;
  56. struct qualcomm_hdr qualcomm;
  57. uint8_t MSTATUS;
  58. uint32_t MOFFSET;
  59. uint32_t MLENGTH;
  60. }
  61. * confirm = (struct vs_wr_mem_confirm *) (message);
  62. #ifndef __GNUC__
  63. #pragma pack (pop)
  64. #endif
  65. uint32_t length = PLC_RECORD_SIZE;
  66. uint32_t offset = LE32TOH (nvm_header->ImageAddress);
  67. uint32_t extent = LE32TOH (nvm_header->ImageLength);
  68. Request (plc, "Write %s (%d) (%08X:%d)", plc->NVM.name, module, offset, extent);
  69. while (extent)
  70. {
  71. memset (message, 0, sizeof (* message));
  72. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  73. QualcommHeader (& request->qualcomm, 0, (VS_WR_MEM | MMTYPE_REQ));
  74. if (length > extent)
  75. {
  76. length = extent;
  77. }
  78. if (read (plc->NVM.file, request->BUFFER, length) != (signed) (length))
  79. {
  80. error (1, errno, FILE_CANTREAD, plc->NVM.name);
  81. }
  82. request->MLENGTH = HTOLE32 (length);
  83. request->MOFFSET = HTOLE32 (offset);
  84. plc->packetsize = sizeof (* request);
  85. if (SendMME (plc) <= 0)
  86. {
  87. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  88. return (-1);
  89. }
  90. if (ReadMME (plc, 0, (VS_WR_MEM | MMTYPE_CNF)) <= 0)
  91. {
  92. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  93. return (-1);
  94. }
  95. if (confirm->MSTATUS)
  96. {
  97. Failure (plc, PLC_WONTDOIT);
  98. return (-1);
  99. }
  100. if (LE32TOH (confirm->MLENGTH) != length)
  101. {
  102. error (PLC_EXIT (plc), 0, PLC_ERR_LENGTH);
  103. return (-1);
  104. }
  105. if (LE32TOH (confirm->MOFFSET) != offset)
  106. {
  107. error (PLC_EXIT (plc), 0, PLC_ERR_OFFSET);
  108. return (-1);
  109. }
  110. offset += length;
  111. extent -= length;
  112. }
  113. return (0);
  114. }
  115. #endif