CPLFirmware.hpp 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * CPLFirmware.hpp - interface for the CPLFirmware class
  11. *
  12. * read/write runtime firmware images from/to a device/file;
  13. *
  14. * Contributor(s):
  15. * Charles Maier <charles.maier@intellon.com>
  16. *
  17. *--------------------------------------------------------------------*/
  18. #ifndef CPLFIRMWARE_HEADER
  19. #define CPLFIRMWARE_HEADER
  20. /*====================================================================*
  21. * system header files;
  22. *--------------------------------------------------------------------*/
  23. #include <stdint.h>
  24. #include <cstddef>
  25. /*====================================================================*
  26. * custom header files;
  27. *--------------------------------------------------------------------*/
  28. #include "../classes/stdafx.hpp"
  29. #include "../classes/CPLChannel.hpp"
  30. #define NVM_HEADER_VERSION 0x60000000
  31. #define NVM_HEADER_MINOR_VERSION 1
  32. /*====================================================================*
  33. * class declaration;
  34. *--------------------------------------------------------------------*/
  35. class __declspec (dllexport) CPLFirmware
  36. {
  37. public:
  38. CPLFirmware ();
  39. explicit CPLFirmware (char const * filename);
  40. explicit CPLFirmware (CPLChannel * channel);
  41. virtual ~ CPLFirmware ();
  42. void * Data () const;
  43. size_t Size () const;
  44. bool IsValid () const;
  45. signed Write (char const * filename);
  46. signed Write (CPLChannel * channel);
  47. signed Read (char const * filename);
  48. signed Read (CPLChannel *);
  49. signed Flash (CPLChannel * channel);
  50. void Peek (void const * memory) const;
  51. private:
  52. void bitmap (char const * operands [], unsigned flagword) const;
  53. CPLFirmware & Init ();
  54. #ifndef __GNUC__
  55. #pragma pack (push,1)
  56. #endif
  57. typedef struct __packed
  58. {
  59. uint32_t HEADERVERSION;
  60. uint32_t IMAGEROMADDR;
  61. uint32_t IMAGEADDR;
  62. uint32_t IMAGELENGTH;
  63. uint32_t IMAGECHECKSUM;
  64. uint32_t ENTRYPOINT;
  65. uint8_t HEADERMINORVERSION;
  66. uint8_t IMAGETYPE;
  67. uint16_t IGNOREMASK;
  68. uint32_t RESERVED [2];
  69. uint32_t NEXTHEADER;
  70. uint32_t HEADERCHECKSUM;
  71. } Header;
  72. #ifndef __GNUC__
  73. #pragma pack (pop)
  74. #endif
  75. uint8_t * mbuffer;
  76. uint16_t mextent;
  77. };
  78. /*====================================================================*
  79. * end definition;
  80. *--------------------------------------------------------------------*/
  81. #endif