nvmfile.c 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed nvmfile (struct _file_ const * file);
  11. *
  12. * nvm.h
  13. *
  14. * open an NVM file and validate it by walking the header and image
  15. * chain and validating all checksums; rewind valid files; return a
  16. * file descriptor on success or terminate the program on error;
  17. *
  18. * the checksum of the entire header, including header checksum, is
  19. * always 0 for valid headers; similarly, the checksum of the image
  20. * and image checksum is always 0 for valid images;
  21. *
  22. * Contributor(s):
  23. * Charles Maier <cmaier@qca.qualcomm.com>
  24. *
  25. *--------------------------------------------------------------------*/
  26. #ifndef NVMFILE_SOURCE
  27. #define NVMFILE_SOURCE
  28. #include "../tools/endian.h"
  29. #include "../tools/files.h"
  30. #include "../tools/error.h"
  31. #include "../nvm/nvm.h"
  32. signed nvmfile (struct _file_ const * file)
  33. {
  34. uint32_t version;
  35. if (lseek (file->file, 0, SEEK_SET))
  36. {
  37. error (1, errno, FILE_CANTHOME, file->name);
  38. }
  39. if (read (file->file, & version, sizeof (version)) != sizeof (version))
  40. {
  41. error (1, errno, FILE_CANTREAD, file->name);
  42. }
  43. if (lseek (file->file, 0, SEEK_SET))
  44. {
  45. error (1, errno, FILE_CANTHOME, file->name);
  46. }
  47. if (LE32TOH (version) == 0x60000000)
  48. {
  49. return (lightning_nvm_file (file));
  50. }
  51. return (panther_nvm_file (file));
  52. }
  53. #endif