FlashSoftloader.c 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed FlashSoftloader (struct plc * plc, uint32_t options);
  11. *
  12. * plc.h
  13. *
  14. * This plugin upgrades a device having NVRAM; runtime firmware must
  15. * be running for this to work; NVM and PIB files in struct plc must
  16. * be opened before calling this plugin; this plugin is used by many
  17. * programs;
  18. *
  19. * WriteModuleParameters and WriteModuleFirmware use VS_MODULE_OPERATION instead
  20. * of VS_WR_MOD and VS_MOD_NVM messages;
  21. *
  22. * This function is for panther/lynx devices although is should also
  23. * work for AR7400 devices, too.
  24. *
  25. * Contributor(s):
  26. * Charles Maier <cmaier@qca.qualcomm.com>
  27. *
  28. *--------------------------------------------------------------------*/
  29. #ifndef FLASHSOFTLOADER_SOURCE
  30. #define FLASHSOFTLOADER_SOURCE
  31. #include "../plc/plc.h"
  32. signed FlashSoftloader (struct plc * plc, uint32_t options)
  33. {
  34. struct vs_module_spec vs_module_spec =
  35. {
  36. PLC_MODULEID_SOFTLOADER,
  37. 0,
  38. 0,
  39. 0
  40. };
  41. ModuleSpec (& plc->SFT, & vs_module_spec);
  42. if (ModuleSession (plc, 1, & vs_module_spec))
  43. {
  44. return (-1);
  45. }
  46. if (ModuleWrite (plc, & plc->SFT, 0, & vs_module_spec))
  47. {
  48. return (-1);
  49. }
  50. if (ModuleCommit (plc, options))
  51. {
  52. return (-1);
  53. }
  54. return (0);
  55. }
  56. #endif