WriteMEM.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed WriteMEM (struct plc * plc, struct _file_ * file, unsigned module, uint32_t offset, uint32_t length);
  11. *
  12. * plc.h
  13. *
  14. * Write the contents of a file directly into device SDRAM using
  15. * VS_WR_MEM messages; the bootloader must be running for this to
  16. * work; the function is used to dowload firmware or test applets;
  17. *
  18. * this function makes no attempt to validate the information sent
  19. * to the device;
  20. *
  21. * Contributor(s):
  22. * Charles Maier <cmaier@qca.qualcomm.com>
  23. * Nathaniel Houghton <nhoughto@qca.qualcomm.com>
  24. *
  25. *--------------------------------------------------------------------*/
  26. #ifndef WRITEMEM_SOURCE
  27. #define WRITEMEM_SOURCE
  28. #include <stdint.h>
  29. #include <unistd.h>
  30. #include <memory.h>
  31. #include "../tools/files.h"
  32. #include "../tools/memory.h"
  33. #include "../tools/error.h"
  34. #include "../plc/plc.h"
  35. signed WriteMEM (struct plc * plc, struct _file_ * file, unsigned module, uint32_t offset, uint32_t extent)
  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_mem_request
  43. {
  44. struct ethernet_hdr ethernet;
  45. struct qualcomm_hdr qualcomm;
  46. uint32_t MOFFSET;
  47. uint32_t MLENGTH;
  48. uint8_t BUFFER [PLC_RECORD_SIZE];
  49. }
  50. * request = (struct vs_wr_mem_request *) (message);
  51. struct __packed vs_wr_mem_confirm
  52. {
  53. struct ethernet_hdr ethernet;
  54. struct qualcomm_hdr qualcomm;
  55. uint8_t MSTATUS;
  56. uint32_t MOFFSET;
  57. uint32_t MLENGTH;
  58. }
  59. * confirm = (struct vs_wr_mem_confirm *) (message);
  60. #ifndef __GNUC__
  61. #pragma pack (pop)
  62. #endif
  63. uint32_t length = PLC_RECORD_SIZE;
  64. Request (plc, "Write %s (%d) (%08X:%d)", file->name, module, offset, extent);
  65. while (extent)
  66. {
  67. memset (message, 0, sizeof (* message));
  68. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  69. QualcommHeader (& request->qualcomm, 0, (VS_WR_MEM | MMTYPE_REQ));
  70. if (length > extent)
  71. {
  72. length = extent;
  73. }
  74. if (read (file->file, request->BUFFER, length) != (signed) (length))
  75. {
  76. error (1, errno, FILE_CANTREAD, file->name);
  77. }
  78. request->MLENGTH = HTOLE32 (length);
  79. request->MOFFSET = HTOLE32 (offset);
  80. plc->packetsize = sizeof (* request);
  81. if (SendMME (plc) <= 0)
  82. {
  83. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  84. return (-1);
  85. }
  86. if (ReadMME (plc, 0, (VS_WR_MEM | MMTYPE_CNF)) <= 0)
  87. {
  88. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  89. return (-1);
  90. }
  91. if (confirm->MSTATUS)
  92. {
  93. Failure (plc, PLC_WONTDOIT);
  94. return (-1);
  95. }
  96. if (LE32TOH (confirm->MLENGTH) != length)
  97. {
  98. error (PLC_EXIT (plc), 0, PLC_ERR_LENGTH);
  99. return (-1);
  100. }
  101. if (LE32TOH (confirm->MOFFSET) != offset)
  102. {
  103. error (PLC_EXIT (plc), 0, PLC_ERR_OFFSET);
  104. return (-1);
  105. }
  106. offset += length;
  107. extent -= length;
  108. }
  109. return (0);
  110. }
  111. #endif