BootParameters2.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed BootParameters2 (struct plc * plc)
  11. *
  12. * pib.h
  13. *
  14. * write the parameter information block to SDRAM on a panther/
  15. * lynx powerline device;
  16. *
  17. * the parameter information block is stored in an NVM image chain
  18. * and the image header specifies the memory location;
  19. *
  20. * Contributor(s):
  21. * Charles Maier <cmaier@qca.qualcomm.com>
  22. *
  23. *--------------------------------------------------------------------*/
  24. #ifndef BOOTPARAMETERS2_SOURCE
  25. #define BOOTPARAMETERS2_SOURCE
  26. #include <stdint.h>
  27. #include <unistd.h>
  28. #include <memory.h>
  29. #include <errno.h>
  30. #include "../tools/files.h"
  31. #include "../tools/error.h"
  32. #include "../tools/flags.h"
  33. #include "../plc/plc.h"
  34. #include "../pib/pib.h"
  35. signed BootParameters2 (struct plc * plc)
  36. {
  37. unsigned module = 0;
  38. struct panther_nvm_header nvm_header;
  39. if (lseek (plc->PIB.file, 0, SEEK_SET))
  40. {
  41. error (1, errno, FILE_CANTHOME, plc->PIB.name);
  42. }
  43. do
  44. {
  45. if (read (plc->PIB.file, & nvm_header, sizeof (nvm_header)) != sizeof (nvm_header))
  46. {
  47. error (1, errno, NVM_HDR_CANTREAD, plc->PIB.name, module);
  48. }
  49. if (LE16TOH (nvm_header.MajorVersion) != 1)
  50. {
  51. error (1, ECANCELED, NVM_HDR_VERSION, plc->PIB.name, module);
  52. }
  53. if (LE16TOH (nvm_header.MinorVersion) != 1)
  54. {
  55. error (1, ECANCELED, NVM_HDR_VERSION, plc->PIB.name, module);
  56. }
  57. if (checksum32 (& nvm_header, sizeof (nvm_header), 0))
  58. {
  59. error (1, ECANCELED, NVM_HDR_CHECKSUM, plc->PIB.name, module);
  60. }
  61. #if 0
  62. if (_allclr (LE16TOH (nvm_header.ExecuteMask), (1 << (plc->hardwareID -1))))
  63. {
  64. if (lseek (plc->PIB.file, LE32TOH (nvm_header.NextHeader), SEEK_SET) == -1)
  65. {
  66. error (1, errno, "Can't skip module: %s (%d)", plc->PIB.name, module);
  67. }
  68. }
  69. else
  70. #endif
  71. if (LE32TOH (nvm_header.ImageType) == NVM_IMAGE_PIB)
  72. {
  73. if (WriteExecuteParameters2 (plc, module, & nvm_header))
  74. {
  75. return (-1);
  76. }
  77. break;
  78. }
  79. if (lseek (plc->PIB.file, LE32TOH (nvm_header.NextHeader), SEEK_SET) == -1)
  80. {
  81. error (1, errno, "Can't skip module: %s (%d)", plc->PIB.name, module);
  82. }
  83. module++;
  84. }
  85. while (~ nvm_header.NextHeader);
  86. return (0);
  87. }
  88. #endif