WriteMOD.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed WriteMOD (struct channel * channel, uint8_t module, void const * memory, size_t extent);
  11. *
  12. * plc.h
  13. *
  14. * This plugin writes a memory resident NVM image to device SDRAM
  15. * using as many VS_WR_MOD messages as needed to complete transfer;
  16. * runtime firmware must be running for this to work; the NVM file
  17. * in struct plc must be opened before calling this function;
  18. *
  19. * This function is functionally similar to WriteNVM but downloads
  20. * the image from memory instead of reading the image from a file;
  21. *
  22. * Contributor(s):
  23. * Charles Maier <cmaier@qca.qualcomm.com>
  24. * Nathaniel Houghton <nhoughto@qca.qualcomm.com>
  25. *
  26. *--------------------------------------------------------------------*/
  27. #ifndef WRITEMOD_SOURCE
  28. #define WRITEMOD_SOURCE
  29. #include <unistd.h>
  30. #include <stdint.h>
  31. #include <memory.h>
  32. #include "../plc/plc.h"
  33. #include "../tools/memory.h"
  34. #include "../tools/error.h"
  35. #include "../tools/files.h"
  36. signed WriteMOD (struct plc * plc, uint8_t module, void const * memory, size_t extent)
  37. {
  38. struct channel * channel = (struct channel *) (plc->channel);
  39. struct message * message = (struct message *) (plc->message);
  40. #ifndef __GNUC__
  41. #pragma pack (push,1)
  42. #endif
  43. struct __packed vs_wr_mod_request
  44. {
  45. struct ethernet_hdr ethernet;
  46. struct qualcomm_hdr qualcomm;
  47. uint8_t MODULEID;
  48. uint8_t MACCESS;
  49. uint16_t MLENGTH;
  50. uint32_t MOFFSET;
  51. uint32_t MCHKSUM;
  52. uint8_t MBUFFER [PLC_RECORD_SIZE];
  53. }
  54. * request = (struct vs_wr_mod_request *) (message);
  55. struct __packed vs_wr_mod_confirm
  56. {
  57. struct ethernet_hdr ethernet;
  58. struct qualcomm_hdr qualcomm;
  59. uint8_t MSTATUS;
  60. uint8_t MODULEID;
  61. uint8_t MACCESS;
  62. uint16_t MLENGTH;
  63. uint32_t MOFFSET;
  64. }
  65. * confirm = (struct vs_wr_mod_confirm *) (message);
  66. #ifndef __GNUC__
  67. #pragma pack (pop)
  68. #endif
  69. uint32_t length = PLC_RECORD_SIZE;
  70. uint32_t offset = 0;
  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_MOD | MMTYPE_REQ));
  76. if (length > extent)
  77. {
  78. length = (signed) (extent);
  79. }
  80. memcpy (request->MBUFFER, (byte *) (memory) + offset, length);
  81. request->MODULEID = module;
  82. request->MACCESS = 0;
  83. request->MLENGTH = HTOLE16 (length);
  84. request->MOFFSET = HTOLE32 (offset);
  85. request->MCHKSUM = checksum32 (request->MBUFFER, length, 0);
  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_MOD | 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 (LE16TOH (confirm->MLENGTH) != length)
  103. {
  104. error (PLC_EXIT (plc), 0, PLC_ERR_LENGTH);
  105. return (-1);
  106. }
  107. if (LE32TOH (confirm->MOFFSET) != offset)
  108. {
  109. error (PLC_EXIT (plc), 0, PLC_ERR_OFFSET);
  110. return (-1);
  111. }
  112. offset += length;
  113. extent -= length;
  114. }
  115. return (0);
  116. }
  117. #endif