WriteParameters1.c 3.6 KB

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