FlashMOD.c 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed FlashMOD (struct channel * channel, uint8_t module);
  11. *
  12. * plc.h
  13. *
  14. * commit downloaded firmware and/or parameters to NVRAM using a
  15. * VS_MOD_NVM message; flash-less devices will attempt to upload
  16. * to the local host since they have no NVRAM; the host must be
  17. * ready to receive the module;
  18. *
  19. * Contributor(s):
  20. * Charles Maier <cmaier@qca.qualcomm.com>
  21. * Nathaniel Houghton <nhoughto@qca.qualcomm.com>
  22. * Matthieu Poullet <m.poullet@avm.de>
  23. *
  24. *--------------------------------------------------------------------*/
  25. #ifndef FLASHMOD_SOURCE
  26. #define FLASHMOD_SOURCE
  27. #include <stdint.h>
  28. #include <memory.h>
  29. #include "../plc/plc.h"
  30. #include "../tools/error.h"
  31. #include "../tools/memory.h"
  32. signed FlashMOD (struct channel * channel, uint8_t module)
  33. {
  34. struct message message;
  35. #ifndef __GNUC__
  36. #pragma pack (push,1)
  37. #endif
  38. struct __packed vs_mod_nvm_request
  39. {
  40. struct ethernet_hdr ethernet;
  41. struct qualcomm_hdr qualcomm;
  42. uint8_t MODULEID;
  43. }
  44. * request = (struct vs_mod_nvm_request *) (& message);
  45. struct __packed vs_mod_nvm_confirm
  46. {
  47. struct ethernet_hdr ethernet;
  48. struct qualcomm_hdr qualcomm;
  49. uint8_t MSTATUS;
  50. uint8_t MODULEID;
  51. }
  52. * confirm = (struct vs_mod_nvm_confirm *) (& message);
  53. #ifndef __GNUC__
  54. #pragma pack (pop)
  55. #endif
  56. ssize_t packetsize;
  57. memset (& message, 0, sizeof (message));
  58. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  59. QualcommHeader (& request->qualcomm, 0, (VS_MOD_NVM | MMTYPE_REQ));
  60. request->MODULEID = module;
  61. if (sendpacket (channel, & message, (ETHER_MIN_LEN - ETHER_CRC_LEN)) <= 0)
  62. {
  63. error (1, errno, CHANNEL_CANTSEND);
  64. }
  65. if ((packetsize = readpacket (channel, & message, sizeof (message))) <= 0)
  66. {
  67. error (1, errno, CHANNEL_CANTREAD);
  68. }
  69. if (UnwantedMessage (& message, packetsize, 0, (VS_MOD_NVM | MMTYPE_CNF)))
  70. {
  71. error (1, ECANCELED, PLC_BADFRAME);
  72. }
  73. if (confirm->MSTATUS)
  74. {
  75. error (1, ECANCELED, PLC_WONTDOIT);
  76. }
  77. return (0);
  78. }
  79. #endif