StartDevice1.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * int StartDevice1 (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * This int6kboot plugin initialize a device having no NVRAM or blank
  15. * or corrupted NVRAM; ensure Bootloader is running before starting;
  16. * write SDRAM configuration then NVM and PIB files to SDRAM and
  17. * start firmware execution;
  18. *
  19. * Contributor(s):
  20. * Charles Maier <cmaier@qca.qualcomm.com>
  21. *
  22. *--------------------------------------------------------------------*/
  23. #ifndef STARTDEVICE1_SOURCE
  24. #define STARTDEVICE1_SOURCE
  25. #include <stdint.h>
  26. #include <unistd.h>
  27. #include <memory.h>
  28. #include <errno.h>
  29. #include "../tools/error.h"
  30. #include "../tools/files.h"
  31. #include "../nvm/nvm.h"
  32. #include "../pib/pib.h"
  33. #include "../plc/plc.h"
  34. int StartDevice1 (struct plc * plc)
  35. {
  36. unsigned module = 0;
  37. struct lightning_nvm_header nvm_header;
  38. struct pib_header pib_header;
  39. uint32_t offset = INT6x00_PIBOFFSET;
  40. if (WriteCFG (plc))
  41. {
  42. return (-1);
  43. }
  44. if (lseek (plc->NVM.file, 0, SEEK_SET))
  45. {
  46. error (PLC_EXIT (plc), errno, FILE_CANTHOME, plc->NVM.name);
  47. return (-1);
  48. }
  49. if (read (plc->NVM.file, & nvm_header, sizeof (nvm_header)) != sizeof (nvm_header))
  50. {
  51. error (PLC_EXIT (plc), errno, FILE_CANTREAD, plc->NVM.name);
  52. return (-1);
  53. }
  54. while (nvm_header.NEXTHEADER)
  55. {
  56. if (lseek (plc->NVM.file, LE32TOH (nvm_header.NEXTHEADER), SEEK_SET) == -1)
  57. {
  58. error (PLC_EXIT (plc), errno, FILE_CANTHOME, plc->NVM.name);
  59. return (-1);
  60. }
  61. if (read (plc->NVM.file, & nvm_header, sizeof (nvm_header)) != sizeof (nvm_header))
  62. {
  63. error (PLC_EXIT (plc), errno, FILE_CANTREAD, plc->NVM.name);
  64. return (-1);
  65. }
  66. module++;
  67. }
  68. if (lseek (plc->PIB.file, 0, SEEK_SET))
  69. {
  70. error (1, errno, FILE_CANTHOME, plc->PIB.name);
  71. }
  72. if (read (plc->PIB.file, & pib_header, sizeof (pib_header)) != sizeof (pib_header))
  73. {
  74. error (1, errno, FILE_CANTREAD, plc->PIB.name);
  75. }
  76. if (lseek (plc->PIB.file, 0, SEEK_SET))
  77. {
  78. error (1, errno, FILE_CANTHOME, plc->PIB.name);
  79. }
  80. if (BE16TOH (* (uint16_t *) (& pib_header)) < 0x0305)
  81. {
  82. offset = LEGACY_PIBOFFSET;
  83. }
  84. #if 0
  85. else if (BE16TOH (* (uint16_t *) (& pib_header)) < 0x0500)
  86. {
  87. offset = INT6x00_PIBOFFSET;
  88. }
  89. else
  90. {
  91. offset = AR7x00_PIBOFFSET;
  92. }
  93. #endif
  94. if (WriteMEM (plc, & plc->PIB, 0, offset, LE16TOH (pib_header.PIBLENGTH)))
  95. {
  96. return (-1);
  97. }
  98. if (WriteFirmware1 (plc, module, & nvm_header))
  99. {
  100. return (-1);
  101. }
  102. if (StartFirmware1 (plc, module, & nvm_header))
  103. {
  104. return (-1);
  105. }
  106. if (lseek (plc->NVM.file, 0, SEEK_SET))
  107. {
  108. error (PLC_EXIT (plc), errno, FILE_CANTHOME, plc->NVM.name);
  109. return (-1);
  110. }
  111. return (0);
  112. }
  113. #endif