piboffset.c 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * uint32_t piboffset (struct _file_ * file)
  11. *
  12. * The PIB is written to different SDRAM locations depending on
  13. * the chipset used; we use the PIN major/minor version here to
  14. * determine where to write the PIB but probably should switch
  15. * to using the hardware platform code derived from the
  16. * VS_SW_VER message;
  17. *
  18. *--------------------------------------------------------------------*/
  19. #include <stdlib.h>
  20. #include "../plc/plc.h"
  21. #include "../pib/pib.h"
  22. uint32_t piboffset (struct _file_ * file)
  23. {
  24. struct pib_header pib_header;
  25. uint32_t offset = 0;
  26. if (lseek (file->file, 0, SEEK_SET))
  27. {
  28. error (1, errno, FILE_CANTHOME, file->name);
  29. }
  30. if (read (file->file, & pib_header, sizeof (pib_header)) < sizeof (pib_header))
  31. {
  32. error (1, errno, FILE_CANTREAD, file->name);
  33. }
  34. if (lseek (file->file, 0, SEEK_SET))
  35. {
  36. error (1, errno, FILE_CANTHOME, file->name);
  37. }
  38. if (BE16TOH (* (uint16_t *) (& pib_header)) < 0x0305)
  39. {
  40. offset = LEGACY_PIBOFFSET;
  41. }
  42. else if (BE16TOH (* (uint16_t *) (& pib_header)) < 0x0500)
  43. {
  44. offset = INT6x00_PIBOFFSET;
  45. }
  46. else
  47. {
  48. offset = AR7x00_PIBOFFSET;
  49. }
  50. return (offset);
  51. }