StartFirmware2.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * struct StartFirmware2 (struct plc * plc, unsigned module, const struct panther_nvm_header * nvm_header)
  11. *
  12. * plc.h
  13. *
  14. * This plugin starts software execution using VS_ST_MAC; despite
  15. * an affirmative respond from the device, there is no guarantee
  16. * that the firmware will actually start or continue to run so we
  17. * wait for a response and report the result;
  18. *
  19. * struct lightning_nvm_header must be little-endian order and ready to send
  20. * to the device;
  21. *
  22. * Contributor(s):
  23. * Charles Maier <cmaier@qca.qualcomm.com>
  24. *
  25. *--------------------------------------------------------------------*/
  26. #ifndef STARTSOFTWARE2_SOURCE
  27. #define STARTSOFTWARE2_SOURCE
  28. #include <stdint.h>
  29. #include <memory.h>
  30. #include "../tools/error.h"
  31. #include "../plc/plc.h"
  32. signed StartFirmware2 (struct plc * plc, unsigned module, const struct panther_nvm_header * nvm_header)
  33. {
  34. struct channel * channel = (struct channel *) (plc->channel);
  35. struct message * message = (struct message *) (plc->message);
  36. #ifndef __GNUC__
  37. #pragma pack (push,1)
  38. #endif
  39. struct __packed vs_st_mac_request
  40. {
  41. struct ethernet_hdr ethernet;
  42. struct qualcomm_hdr qualcomm;
  43. uint8_t MODULEID;
  44. uint8_t RESERVED [3];
  45. uint32_t IMAGEBOOT;
  46. uint32_t IMAGELENGTH;
  47. uint32_t IMAGECHECKSUM;
  48. uint32_t IMAGESTART;
  49. }
  50. * request = (struct vs_st_mac_request *) (message);
  51. struct __packed vs_st_mac_confirm
  52. {
  53. struct ethernet_hdr ethernet;
  54. struct qualcomm_hdr qualcomm;
  55. uint8_t MSTATUS;
  56. uint8_t MODULEID;
  57. }
  58. * confirm = (struct vs_st_mac_confirm *) (message);
  59. #ifndef __GNUC__
  60. #pragma pack (pop)
  61. #endif
  62. memset (message, 0, sizeof (* message));
  63. Request (plc, "Start %s (%d) (%08X)", plc->NVM.name, module, LE32TOH (nvm_header->EntryPoint));
  64. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  65. QualcommHeader (& request->qualcomm, 0, (VS_ST_MAC | MMTYPE_REQ));
  66. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  67. request->IMAGEBOOT = nvm_header->ImageAddress;
  68. request->IMAGELENGTH = nvm_header->ImageLength;
  69. request->IMAGECHECKSUM = nvm_header->ImageChecksum;
  70. request->IMAGESTART = nvm_header->EntryPoint;
  71. request->MODULEID = VS_MODULE_MAC;
  72. if (SendMME (plc) <= 0)
  73. {
  74. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  75. return (-1);
  76. }
  77. if (ReadMME (plc, 0, (VS_ST_MAC | MMTYPE_CNF)) <= 0)
  78. {
  79. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  80. return (-1);
  81. }
  82. if (confirm->MSTATUS)
  83. {
  84. Failure (plc, PLC_WONTDOIT);
  85. return (-1);
  86. }
  87. return (0);
  88. }
  89. #endif