FlashNVM.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 FlashNVM (struct plc * plc);
  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 their local host because they have no NVRAM; the host must
  17. * be prepared to handle this situation;
  18. *
  19. * Contributor(s):
  20. * Charles Maier <cmaier@qca.qualcomm.com>
  21. * Nathaniel Houghton <nhoughto@qca.qualcomm.com>
  22. *
  23. *--------------------------------------------------------------------*/
  24. #ifndef FLASHNVM_SOURCE
  25. #define FLASHNVM_SOURCE
  26. #include <stdint.h>
  27. #include <memory.h>
  28. #include "../plc/plc.h"
  29. #include "../tools/error.h"
  30. #include "../tools/memory.h"
  31. signed FlashNVM (struct plc * plc)
  32. {
  33. struct channel * channel = (struct channel *) (plc->channel);
  34. struct message * message = (struct message *) (plc->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. Request (plc, "Flash device");
  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 = plc->module;
  61. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  62. if (SendMME (plc) <= 0)
  63. {
  64. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  65. return (-1);
  66. }
  67. if (ReadMME (plc, 0, (VS_MOD_NVM | MMTYPE_CNF)) <= 0)
  68. {
  69. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  70. return (-1);
  71. }
  72. if (confirm->MSTATUS)
  73. {
  74. Failure (plc, PLC_WONTDOIT);
  75. return (-1);
  76. }
  77. return (0);
  78. }
  79. #endif