WritePIB.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed WritePIB (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 WRITEPIB_SOURCE
  26. #define WRITEPIB_SOURCE
  27. #include <stdint.h>
  28. #include <unistd.h>
  29. #include <string.h>
  30. #include <memory.h>
  31. #include "../tools/memory.h"
  32. #include "../tools/error.h"
  33. #include "../tools/files.h"
  34. #include "../plc/plc.h"
  35. signed WritePIB (struct plc * plc)
  36. {
  37. struct channel * channel = (struct channel *) (plc->channel);
  38. struct message * message = (struct message *) (plc->message);
  39. #ifndef __GNUC__
  40. #pragma pack (push,1)
  41. #endif
  42. struct __packed vs_wr_mod_request
  43. {
  44. struct ethernet_hdr ethernet;
  45. struct qualcomm_hdr qualcomm;
  46. uint8_t MODULEID;
  47. uint8_t RESERVED;
  48. uint16_t MLENGTH;
  49. uint32_t MOFFSET;
  50. uint32_t MCHKSUM;
  51. uint8_t MBUFFER [PLC_RECORD_SIZE];
  52. }
  53. * request = (struct vs_wr_mod_request *) (message);
  54. struct __packed vs_wr_mod_confirm
  55. {
  56. struct ethernet_hdr ethernet;
  57. struct qualcomm_hdr qualcomm;
  58. uint8_t MSTATUS;
  59. uint8_t MODULEID;
  60. uint8_t RESERVED;
  61. uint16_t MLENGTH;
  62. uint32_t MOFFSET;
  63. }
  64. * confirm = (struct vs_wr_mod_confirm *) (message);
  65. #ifndef __GNUC__
  66. #pragma pack (pop)
  67. #endif
  68. uint16_t length = PLC_RECORD_SIZE;
  69. uint32_t extent = lseek (plc->PIB.file, 0, SEEK_END);
  70. uint32_t offset = lseek (plc->PIB.file, 0, SEEK_SET);
  71. if (~ plc->PIB.file)
  72. {
  73. Request (plc, "Write %s to scratch", plc->PIB.name);
  74. while (extent)
  75. {
  76. memset (message, 0, sizeof (* message));
  77. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  78. QualcommHeader (& request->qualcomm, 0, (VS_WR_MOD | MMTYPE_REQ));
  79. if (length > extent)
  80. {
  81. length = extent;
  82. }
  83. if (read (plc->PIB.file, request->MBUFFER, length) != length)
  84. {
  85. error (1, errno, FILE_CANTREAD, plc->PIB.name);
  86. }
  87. request->MODULEID = VS_MODULE_PIB;
  88. request->RESERVED = 0;
  89. request->MLENGTH = HTOLE16 (length);
  90. request->MOFFSET = HTOLE32 (offset);
  91. request->MCHKSUM = checksum32 (request->MBUFFER, length, 0);
  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_MOD | 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 (LE16TOH (confirm->MLENGTH) != length)
  109. {
  110. error (PLC_EXIT (plc), 0, PLC_ERR_LENGTH);
  111. length = PLC_RECORD_SIZE;
  112. offset = 0;
  113. continue;
  114. }
  115. if (LE32TOH (confirm->MOFFSET) != offset)
  116. {
  117. error (PLC_EXIT (plc), 0, PLC_ERR_OFFSET);
  118. length = PLC_RECORD_SIZE;
  119. offset = 0;
  120. continue;
  121. }
  122. extent -= length;
  123. offset += length;
  124. }
  125. }
  126. return (0);
  127. }
  128. #endif