WriteCFG.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed WriteCFG (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * This plugin for program plc writes the contents of an SDRAM
  15. * confirmation file to a device using a VS_SET_SDRAM message; the
  16. * CFG file in struct plc must be opened before this function is
  17. * called; the bootloader must be running for this to work;
  18. *
  19. * the VS_SET_SDRAM message is recognized by the INT600 BootLoader
  20. * only; the INT6400 BootLoader recognizes it but does nothing with
  21. * it;
  22. *
  23. * Contributor(s):
  24. * Charles Maier <cmaier@qca.qualcomm.com>
  25. *
  26. *--------------------------------------------------------------------*/
  27. #ifndef WRITECFG_SOURCE
  28. #define WRITECFG_SOURCE
  29. #include <stdint.h>
  30. #include <unistd.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. #include "../ram/sdram.h"
  37. int WriteCFG (struct plc * plc)
  38. {
  39. struct channel * channel = (struct channel *) (plc->channel);
  40. struct message * message = (struct message *) (plc->message);
  41. #ifndef __GNUC__
  42. #pragma pack (push,1)
  43. #endif
  44. struct __packed vs_set_sdram_request
  45. {
  46. struct ethernet_hdr ethernet;
  47. struct qualcomm_hdr qualcomm;
  48. struct config_ram config_ram;
  49. uint32_t CHECKSUM;
  50. }
  51. * request = (struct vs_set_sdram_request *) (message);
  52. struct __packed vs_set_sdram_confirm
  53. {
  54. struct ethernet_hdr ethernet;
  55. struct qualcomm_hdr qualcomm;
  56. uint8_t MSTATUS;
  57. }
  58. * confirm = (struct vs_set_sdram_confirm *) (message);
  59. #ifndef __GNUC__
  60. #pragma pack (pop)
  61. #endif
  62. Request (plc, "Write Configuration Applet from %s", plc->CFG.name);
  63. memset (message, 0, sizeof (* message));
  64. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  65. QualcommHeader (& request->qualcomm, 0, (VS_SET_SDRAM | MMTYPE_REQ));
  66. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  67. if (lseek (plc->CFG.file, 0, SEEK_SET))
  68. {
  69. error (PLC_EXIT (plc), errno, FILE_CANTHOME, plc->CFG.name);
  70. return (-1);
  71. }
  72. if (read (plc->CFG.file, & request->config_ram, sizeof (struct config_ram)) != sizeof (struct config_ram))
  73. {
  74. error (PLC_EXIT (plc), errno, FILE_CANTREAD, plc->CFG.name);
  75. return (-1);
  76. }
  77. if (read (plc->CFG.file, & request->CHECKSUM, sizeof (request->CHECKSUM)) != sizeof (request->CHECKSUM))
  78. {
  79. error (PLC_EXIT (plc), errno, "can't read %s checksum", plc->CFG.name);
  80. return (-1);
  81. }
  82. if (SendMME (plc) <= 0)
  83. {
  84. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  85. return (-1);
  86. }
  87. if (ReadMME (plc, 0, (VS_SET_SDRAM | MMTYPE_CNF)) <= 0)
  88. {
  89. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  90. return (-1);
  91. }
  92. if (confirm->MSTATUS)
  93. {
  94. Failure (plc, PLC_WONTDOIT);
  95. return (-1);
  96. }
  97. Confirm (plc, "Written");
  98. return (0);
  99. }
  100. #endif