FlashFirmware.c 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed FlashFirmware (struct plc * plc, uint32_t options);
  11. *
  12. * plc.h
  13. *
  14. * write powerline parameters and firmware into flash memory using
  15. * VS_MODULE_OPERATION messages; force flash and do not reset;
  16. *
  17. * struct vs_module_spec is defined in plc.h;
  18. *
  19. * Contributor(s):
  20. * Charles Maier <cmaier@qca.qualcomm.com>
  21. *
  22. *--------------------------------------------------------------------*/
  23. #ifndef FLASHFIRMWARE_SOURCE
  24. #define FLASHFIRMWARE_SOURCE
  25. #include "../plc/plc.h"
  26. signed FlashFirmware (struct plc * plc, uint32_t options)
  27. {
  28. struct vs_module_spec vs_module_spec [] =
  29. {
  30. {
  31. PLC_MODULEID_PARAMETERS,
  32. 0,
  33. 0,
  34. 0
  35. },
  36. {
  37. PLC_MODULEID_FIRMWARE,
  38. 0,
  39. 0,
  40. 0
  41. }
  42. };
  43. ModuleSpec (& plc->PIB, & vs_module_spec [0]);
  44. ModuleSpec (& plc->NVM, & vs_module_spec [1]);
  45. if (ModuleSession (plc, (sizeof (vs_module_spec) / sizeof (struct vs_module_spec)), vs_module_spec))
  46. {
  47. return (-1);
  48. }
  49. if (ModuleWrite (plc, & plc->PIB, 0, & vs_module_spec [0]))
  50. {
  51. return (-1);
  52. }
  53. if (ModuleWrite (plc, & plc->NVM, 1, & vs_module_spec [1]))
  54. {
  55. return (-1);
  56. }
  57. if (ModuleCommit (plc, options))
  58. {
  59. return (-1);
  60. }
  61. return (0);
  62. }
  63. #endif