manifetch.c 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * void * manifetch (void const * memory, size_t extent);
  11. *
  12. * nvm.h
  13. *
  14. * search an nvm manifest for a given variable type and return a
  15. * void pointer to the value, if present, or NULL if not; users
  16. * must apply the correct type cast to the pointer to access the
  17. * value;
  18. *
  19. *
  20. * Contributor(s):
  21. * Charles Maier <cmaier@qca.qualcomm.com>
  22. *
  23. *--------------------------------------------------------------------*/
  24. #ifndef MANIFETCH_SOURCE
  25. #define MANIFETCH_SOURCE
  26. #include <stdio.h>
  27. #include <stdint.h>
  28. #include "../tools/endian.h"
  29. #include "../tools/tlv.h"
  30. void * manifetch (void const * memory, size_t extent, uint32_t type)
  31. {
  32. uint8_t * offset = (uint8_t *) (memory);
  33. while (extent)
  34. {
  35. struct TLVNode * node = (struct TLVNode *) (offset);
  36. if (LE32TOH (node->type) == type)
  37. {
  38. return ((void *) (& node->data));
  39. }
  40. extent -= TLVSPAN (node);
  41. offset += TLVSPAN (node);
  42. }
  43. return ((void *) (0));
  44. }
  45. #endif