FlashDevice2.c 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /*====================================================================*
  2. Copyright (c) 2013,2019,2021 Qualcomm Technologies, Inc.
  3. All Rights Reserved.
  4. Confidential and Proprietary - Qualcomm Technologies, Inc.
  5. ******************************************************************
  6. 2013 Qualcomm Atheros, Inc.
  7. *--------------------------------------------------------------------*/
  8. /*====================================================================*
  9. *
  10. * signed FlashDevice2 (struct plc * plc, uint32_t options);
  11. *
  12. * plc.h
  13. *
  14. * flash a QCA7420 device; force a reset because a reset is not
  15. * automatic;
  16. *
  17. * Contributor(s):
  18. * Charles Maier <cmaier@qca.qualcomm.com>
  19. * Kalaivani Somasundaram <kalaivan@qti.qualcomm.com>
  20. *
  21. *--------------------------------------------------------------------*/
  22. #ifndef FLASHDEVICE2_SOURCE
  23. #define FLASHDEVICE2_SOURCE
  24. #include "../plc/plc.h"
  25. signed FlashDevice2 (struct plc * plc, uint32_t options)
  26. {
  27. char firmware [256];
  28. if (plc->SFT.file != -1)
  29. {
  30. if (FlashSoftloader (plc, options))
  31. {
  32. return (-1);
  33. }
  34. }
  35. if ((plc->NVM.file != -1) && (plc->PIB.file != -1))
  36. {
  37. if (FlashFirmware (plc, options))
  38. {
  39. return (-1);
  40. }
  41. }
  42. else if (plc->PIB.file != -1)
  43. {
  44. if (FlashParameters (plc, options))
  45. {
  46. return (-1);
  47. }
  48. }
  49. if(IsFlashExists(plc))
  50. {
  51. if (ResetDevice (plc))
  52. {
  53. return (-1);
  54. }
  55. }
  56. sleep (5);
  57. if (WaitForStart (plc, firmware, sizeof (firmware)))
  58. {
  59. return (-1);
  60. }
  61. return (0);
  62. }
  63. signed FlashDevice2_no_wait(struct plc* plc, uint32_t options)
  64. {
  65. if (plc->SFT.file != -1)
  66. {
  67. if (FlashSoftloader(plc, options))
  68. {
  69. return (-1);
  70. }
  71. }
  72. if ((plc->NVM.file != -1) && (plc->PIB.file != -1))
  73. {
  74. if (FlashFirmware(plc, options))
  75. {
  76. return (-1);
  77. }
  78. }
  79. else if (plc->PIB.file != -1)
  80. {
  81. if (FlashParameters(plc, options))
  82. {
  83. return (-1);
  84. }
  85. }
  86. if (IsFlashExists(plc))
  87. {
  88. if (ResetDevice(plc))
  89. {
  90. return (-1);
  91. }
  92. }
  93. return (0);
  94. }
  95. #endif