BootParameters1.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed BootParameters1 (struct plc * plc)
  11. *
  12. * pib.h
  13. *
  14. * write the parameter information block to SDRAM on a thunderbolt/
  15. * lightning powerline device;
  16. *
  17. * The PIB is written to different SDRAM locations depending on the
  18. * chipset used; we use PIB major/minor version to determine where
  19. * to write the PIB but may switch to using the hardware platform
  20. * code derived from the VS_SW_VER message;
  21. *
  22. * Contributor(s):
  23. * Charles Maier <cmaier@qca.qualcomm.com>
  24. *
  25. *--------------------------------------------------------------------*/
  26. #ifndef BOOTPARAMETERS1_SOURCE
  27. #define BOOTPARAMETERS1_SOURCE
  28. #include <stdint.h>
  29. #include <unistd.h>
  30. #include <memory.h>
  31. #include <errno.h>
  32. #include "../tools/files.h"
  33. #include "../tools/error.h"
  34. #include "../tools/flags.h"
  35. #include "../plc/plc.h"
  36. #include "../pib/pib.h"
  37. signed BootParameters1 (struct plc * plc)
  38. {
  39. struct pib_header pib_header;
  40. uint32_t offset;
  41. if (lseek (plc->PIB.file, 0, SEEK_SET))
  42. {
  43. error (PLC_EXIT (plc), errno, FILE_CANTHOME, plc->PIB.name);
  44. }
  45. if (read (plc->PIB.file, & pib_header, sizeof (pib_header)) != sizeof (pib_header))
  46. {
  47. error (PLC_EXIT (plc), errno, FILE_CANTREAD, plc->PIB.name);
  48. }
  49. if (lseek (plc->PIB.file, 0, SEEK_SET))
  50. {
  51. error (PLC_EXIT (plc), errno, FILE_CANTHOME, plc->PIB.name);
  52. }
  53. #if 1
  54. /*
  55. * this code is a fix to accommodate PIB relocation in memory; it is not needed when
  56. * the PIB is stored in an NVM file since the memory address is recorded in the image
  57. * header;
  58. */
  59. if (BE16TOH (* (uint16_t *) (& pib_header)) < 0x0305)
  60. {
  61. offset = LEGACY_PIBOFFSET;
  62. }
  63. else if (BE16TOH (* (uint16_t *) (& pib_header)) < 0x0500)
  64. {
  65. offset = INT6x00_PIBOFFSET;
  66. }
  67. else
  68. {
  69. offset = AR7x00_PIBOFFSET;
  70. }
  71. #endif
  72. if (plc->hardwareID < CHIPSET_QCA7420)
  73. {
  74. if (WriteMEM (plc, & plc->PIB, 0, offset, LE16TOH (pib_header.PIBLENGTH)))
  75. {
  76. return (-1);
  77. }
  78. return (0);
  79. }
  80. if (WriteExecutePIB (plc, offset, & pib_header))
  81. {
  82. return (-1);
  83. }
  84. return (0);
  85. }
  86. #endif