BootDevice2.c 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*====================================================================*
  2. Copyright (c) 2013,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 BootDevice2 (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * boot a powerline device by writing parameters and firmware into
  15. * volatile memory and starting execution; volatile memory must be
  16. * initialized and configured before calling this function;
  17. *
  18. * this function is identical to BootDevice1 but calls functions
  19. * that expect the newer image file format;
  20. *
  21. * Contributor(s):
  22. * Charles Maier <cmaier@qca.qualcomm.com>
  23. *
  24. *--------------------------------------------------------------------*/
  25. #ifndef BOOTDEVICE2_SOURCE
  26. #define BOOTDEVICE2_SOURCE
  27. #include <memory.h>
  28. #include "../plc/plc.h"
  29. signed BootDevice2 (struct plc * plc)
  30. {
  31. char string [PLC_VERSION_STRING];
  32. if (BootParameters2 (plc))
  33. {
  34. return (-1);
  35. }
  36. if (BootFirmware2 (plc))
  37. {
  38. return (-1);
  39. }
  40. if (WaitForStart (plc, string, sizeof (string)))
  41. {
  42. return (-1);
  43. }
  44. Confirm (plc, "%s is running", string);
  45. return (0);
  46. }
  47. signed BootDevice2_no_wait(struct plc* plc)
  48. {
  49. if (BootParameters2(plc))
  50. {
  51. return (-1);
  52. }
  53. if (BootFirmware2(plc))
  54. {
  55. return (-1);
  56. }
  57. return (0);
  58. }
  59. #endif