StartFirmware.c 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * struct StartFirmware (struct plc * plc, unsigned module, void const * 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 STARTSOFTWARE_SOURCE
  27. #define STARTSOFTWARE_SOURCE
  28. #include <stdint.h>
  29. #include <memory.h>
  30. #include "../tools/error.h"
  31. #include "../plc/plc.h"
  32. signed StartFirmware (struct plc * plc, unsigned module, void const * header)
  33. {
  34. return ((LE32TOH (* (uint32_t *) (header)) == 0x60000000)? StartFirmware1 (plc, module, header): StartFirmware2 (plc, module, header));
  35. }
  36. #endif