NVMSelect.c 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed NVMSelect (struct plc * plc, signed old (struct plc *), signed new (struct plc *));
  11. *
  12. * plc.h
  13. *
  14. * read the .nvm header to determine file format; rewind the file
  15. * then call the right function to execute the applets;
  16. *
  17. * Contributor(s):
  18. * Charles Maier <cmaier@qca.qualcomm.com>
  19. *
  20. *--------------------------------------------------------------------*/
  21. #ifndef NVMSELECT_SOURCE
  22. #define NVMSELECT_SOURCE
  23. #include "../tools/error.h"
  24. #include "../tools/files.h"
  25. #include "../plc/plc.h"
  26. signed NVMSelect (struct plc * plc, signed old (struct plc *), signed new (struct plc *))
  27. {
  28. uint32_t version;
  29. if (lseek (plc->NVM.file, 0, SEEK_SET))
  30. {
  31. error (1, errno, FILE_CANTHOME, plc->NVM.name);
  32. }
  33. if (read (plc->NVM.file, & version, sizeof (version)) != sizeof (version))
  34. {
  35. error (1, errno, FILE_CANTREAD, plc->NVM.name);
  36. }
  37. if (lseek (plc->NVM.file, 0, SEEK_SET))
  38. {
  39. error (1, errno, FILE_CANTHOME, plc->NVM.name);
  40. }
  41. return (LE32TOH (version) == 0x60000000? old (plc): new (plc));
  42. }
  43. #endif