WriteFirmware1.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed WriteFirmware1 (struct plc * plc, unsigned module, const struct lightning_nvm_header * nvm_header);
  11. *
  12. * plc.h
  13. *
  14. * read a firmware image from an image file and write it to SDRAM;
  15. * this function assumes that the calling program has positioned the
  16. * file to the start of the image;
  17. *
  18. * this function is deprecated on INT6400, AR7400 and later chipsets;
  19. * use function WriteAndExecuteFirmware1 or WriteAndExectuteFirmware2
  20. * instead;
  21. *
  22. * the boot loader must be running for this to work since runtime
  23. * firmware ignores VS_WR_MEM messages;
  24. *
  25. * future devices will ignore VS_WR_MEM messages to use function
  26. * WriteExecuteFirmware1, instead;
  27. *
  28. * Contributor(s):
  29. * Charles Maier <cmaier@qca.qualcomm.com>
  30. *
  31. *--------------------------------------------------------------------*/
  32. #ifndef WRITEFIRMWARE1_SOURCE
  33. #define WRITEFIRMWARE1_SOURCE
  34. #include <stdint.h>
  35. #include <unistd.h>
  36. #include <memory.h>
  37. #include "../tools/files.h"
  38. #include "../tools/error.h"
  39. #include "../tools/memory.h"
  40. #include "../plc/plc.h"
  41. signed WriteFirmware1 (struct plc * plc, unsigned module, const struct lightning_nvm_header * nvm_header)
  42. {
  43. struct channel * channel = (struct channel *) (plc->channel);
  44. struct message * message = (struct message *) (plc->message);
  45. #ifndef __GNUC__
  46. #pragma pack (push,1)
  47. #endif
  48. struct __packed vs_wr_mem_request
  49. {
  50. struct ethernet_hdr ethernet;
  51. struct qualcomm_hdr qualcomm;
  52. uint32_t MOFFSET;
  53. uint32_t MLENGTH;
  54. uint8_t BUFFER [PLC_RECORD_SIZE];
  55. }
  56. * request = (struct vs_wr_mem_request *) (message);
  57. struct __packed vs_wr_mem_confirm
  58. {
  59. struct ethernet_hdr ethernet;
  60. struct qualcomm_hdr qualcomm;
  61. uint8_t MSTATUS;
  62. uint32_t MOFFSET;
  63. uint32_t MLENGTH;
  64. }
  65. * confirm = (struct vs_wr_mem_confirm *) (message);
  66. #ifndef __GNUC__
  67. #pragma pack (pop)
  68. #endif
  69. uint32_t length = PLC_RECORD_SIZE;
  70. uint32_t offset = LE32TOH (nvm_header->IMAGEADDRESS);
  71. uint32_t extent = LE32TOH (nvm_header->IMAGELENGTH);
  72. Request (plc, "Write %s (%d) (%08X:%d)", plc->NVM.name, module, offset, extent);
  73. while (extent)
  74. {
  75. memset (message, 0, sizeof (* message));
  76. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  77. QualcommHeader (& request->qualcomm, 0, (VS_WR_MEM | MMTYPE_REQ));
  78. if (length > extent)
  79. {
  80. length = extent;
  81. }
  82. if (read (plc->NVM.file, request->BUFFER, length) != (signed) (length))
  83. {
  84. error (1, errno, FILE_CANTREAD, plc->NVM.name);
  85. }
  86. request->MLENGTH = HTOLE32 (length);
  87. request->MOFFSET = HTOLE32 (offset);
  88. plc->packetsize = sizeof (* request);
  89. if (SendMME (plc) <= 0)
  90. {
  91. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  92. return (-1);
  93. }
  94. if (ReadMME (plc, 0, (VS_WR_MEM | MMTYPE_CNF)) <= 0)
  95. {
  96. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  97. return (-1);
  98. }
  99. if (confirm->MSTATUS)
  100. {
  101. Failure (plc, PLC_WONTDOIT);
  102. return (-1);
  103. }
  104. if (LE32TOH (confirm->MLENGTH) != length)
  105. {
  106. error (PLC_EXIT (plc), 0, PLC_ERR_LENGTH);
  107. return (-1);
  108. }
  109. if (LE32TOH (confirm->MOFFSET) != offset)
  110. {
  111. error (PLC_EXIT (plc), 0, PLC_ERR_OFFSET);
  112. return (-1);
  113. }
  114. offset += length;
  115. extent -= length;
  116. }
  117. return (0);
  118. }
  119. #endif