WriteNVM.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed WriteNVM (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * write an entire .nvm file into PLC SDRAM using as many VS_WR_MEM
  15. * messages as needed to complete the transfer;
  16. *
  17. * runtime firmware must be running for this to work; the NVM file
  18. * in struct plc must be opened before calling this function;
  19. *
  20. * Contributor(s):
  21. * Charles Maier <cmaier@qca.qualcomm.com>
  22. * Nathaniel Houghton <nhoughto@qca.qualcomm.com>
  23. *
  24. *--------------------------------------------------------------------*/
  25. #ifndef WRITENVM_SOURCE
  26. #define WRITENVM_SOURCE
  27. #include <stdint.h>
  28. #include <unistd.h>
  29. #include <memory.h>
  30. #include "../plc/plc.h"
  31. #include "../tools/memory.h"
  32. #include "../tools/error.h"
  33. #include "../tools/files.h"
  34. signed WriteNVM (struct plc * plc)
  35. {
  36. struct channel * channel = (struct channel *) (plc->channel);
  37. struct message * message = (struct message *) (plc->message);
  38. #ifndef __GNUC__
  39. #pragma pack (push,1)
  40. #endif
  41. struct __packed vs_wr_mod_request
  42. {
  43. struct ethernet_hdr ethernet;
  44. struct qualcomm_hdr qualcomm;
  45. uint8_t MODULEID;
  46. uint8_t RESERVED;
  47. uint16_t MLENGTH;
  48. uint32_t MOFFSET;
  49. uint32_t MCHKSUM;
  50. uint8_t MBUFFER [PLC_RECORD_SIZE];
  51. }
  52. * request = (struct vs_wr_mod_request *) (message);
  53. struct __packed vs_wr_mod_confirm
  54. {
  55. struct ethernet_hdr ethernet;
  56. struct qualcomm_hdr qualcomm;
  57. uint8_t MSTATUS;
  58. uint8_t MODULEID;
  59. uint8_t RESERVED;
  60. uint16_t MLENGTH;
  61. uint32_t MOFFSET;
  62. }
  63. * confirm = (struct vs_wr_mod_confirm *) (message);
  64. #ifndef __GNUC__
  65. #pragma pack (pop)
  66. #endif
  67. uint16_t length = PLC_RECORD_SIZE;
  68. uint32_t extent = lseek (plc->NVM.file, 0, SEEK_END);
  69. uint32_t offset = lseek (plc->NVM.file, 0, SEEK_SET);
  70. if (~ plc->NVM.file)
  71. {
  72. Request (plc, "Write %s to scratch", plc->NVM.name);
  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_MOD | MMTYPE_REQ));
  78. if (length > extent)
  79. {
  80. length = extent;
  81. }
  82. if (read (plc->NVM.file, request->MBUFFER, length) != length)
  83. {
  84. error (1, errno, FILE_CANTREAD, plc->NVM.name);
  85. }
  86. request->MODULEID = VS_MODULE_MAC;
  87. request->RESERVED = 0;
  88. request->MLENGTH = HTOLE16 (length);
  89. request->MOFFSET = HTOLE32 (offset);
  90. request->MCHKSUM = checksum32 (request->MBUFFER, length, 0);
  91. plc->packetsize = sizeof (* request);
  92. if (SendMME (plc) <= 0)
  93. {
  94. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  95. return (-1);
  96. }
  97. if (ReadMME (plc, 0, (VS_WR_MOD | MMTYPE_CNF)) <= 0)
  98. {
  99. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  100. return (-1);
  101. }
  102. if (confirm->MSTATUS)
  103. {
  104. Failure (plc, PLC_WONTDOIT);
  105. return (-1);
  106. }
  107. if (LE16TOH (confirm->MLENGTH) != length)
  108. {
  109. error (PLC_EXIT (plc), 0, PLC_ERR_LENGTH);
  110. return (-1);
  111. }
  112. if (LE32TOH (confirm->MOFFSET) != offset)
  113. {
  114. error (PLC_EXIT (plc), 0, PLC_ERR_OFFSET);
  115. return (-1);
  116. }
  117. extent -= length;
  118. offset += length;
  119. }
  120. }
  121. return (0);
  122. }
  123. #endif