lightning_nvm_peek.c 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * void lightning_nvm_peek (void const * memory);
  11. *
  12. * print a memory resident firmware image header on stdout;
  13. *
  14. * Contributor(s):
  15. * Charles Maier <cmaier@qca.qualcomm.com>
  16. *
  17. *--------------------------------------------------------------------*/
  18. #ifndef LIGHTNING_NVM_PEEK_SOURCE
  19. #define LIGHTNING_NVM_PEEK_SOURCE
  20. #include <stdio.h>
  21. #include "../tools/memory.h"
  22. #include "../tools/format.h"
  23. #include "../nvm/nvm.h"
  24. void lightning_nvm_peek (void const * memory)
  25. {
  26. extern char const * nvm_imagetypes [];
  27. extern char const * nvm_platforms [];
  28. struct lightning_nvm_header * header = (struct lightning_nvm_header *) (memory);
  29. char const * string = "Unknown";
  30. char platform [100];
  31. printf ("\tHeader Version = 0x%08X-%02X\n", LE32TOH (header->HEADERVERSION), header->HEADERMINORVERSION);
  32. printf ("\tHeader Checksum = 0x%08X\n", LE32TOH (header->HEADERCHECKSUM));
  33. printf ("\tHeader Next = 0x%08X\n", LE32TOH (header->NEXTHEADER));
  34. printf ("\tFlash Address = 0x%08X\n", LE32TOH (header->IMAGEROMADDR));
  35. printf ("\tImage Address = 0x%08X\n", LE32TOH (header->IMAGEADDRESS));
  36. printf ("\tEntry Address = 0x%08X\n", LE32TOH (header->ENTRYPOINT));
  37. printf ("\tImage Checksum = 0x%08X\n", LE32TOH (header->IMAGECHECKSUM));
  38. printf ("\tImage Size = 0x%08X (%d)\n", LE32TOH (header->IMAGELENGTH), LE32TOH (header->IMAGELENGTH));
  39. if (LE32TOH (header->IMAGETYPE) < NVM_IMAGETYPES)
  40. {
  41. string = nvm_imagetypes [LE32TOH (header->IMAGETYPE)];
  42. }
  43. printf ("\tImage Type = %s\n", string);
  44. strfbits (platform, sizeof (platform), nvm_platforms, "|", LE16TOH (header->IGNOREMASK));
  45. printf ("\tImage Omit = %s\n", platform);
  46. return;
  47. }
  48. #endif