nvmpeek.c 958 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * void nvmpeek (void const * memory);
  11. *
  12. * nvm.h
  13. *
  14. * assume memory points to a Qualcomm Atheros .nvm file header and
  15. * call the appropriate function to display it based on the header
  16. * version number;
  17. *
  18. * Contributor(s):
  19. * Charles Maier <cmaier@qca.qualcomm.com>
  20. *
  21. *--------------------------------------------------------------------*/
  22. #ifndef NVMPEEK_SOURCE
  23. #define NVMPEEK_SOURCE
  24. #include "../tools/memory.h"
  25. #include "../nvm/nvm.h"
  26. void nvmpeek (void const * memory)
  27. {
  28. if (LE32TOH (* (uint32_t *) (memory)) == 0x60000000)
  29. {
  30. lightning_nvm_peek (memory);
  31. return;
  32. }
  33. panther_nvm_peek (memory);
  34. return;
  35. }
  36. #endif