WriteParameters2.c 3.4 KB

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