WriteExecuteFirmware.c 1011 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed WriteExecuteFirmware (struct plc * plc, unsigned module, void const * nvm_header);
  11. *
  12. * plc.h
  13. *
  14. * call appropriate firmware download function based on the
  15. * image file format;
  16. *
  17. * Contributor(s):
  18. * Charles Maier <cmaier@qca.qualcomm.com>
  19. *
  20. *--------------------------------------------------------------------*/
  21. #ifndef WRITEEXECUTEFIRMWARE_SOURCE
  22. #define WRITEEXECUTEFIRMWARE_SOURCE
  23. #include "../plc/plc.h"
  24. signed WriteExecuteFirmware (struct plc * plc, unsigned module, void const * nvm_header)
  25. {
  26. return ((LE32TOH (* (uint32_t *) (nvm_header)) == 0x60000000)? WriteExecuteFirmware1 (plc, module, nvm_header): WriteExecuteFirmware2 (plc, module, nvm_header));
  27. }
  28. #endif