trxhdr.h 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*
  2. * TRX image file header format.
  3. *
  4. * Portions of this code are copyright (c) 2020 Cypress Semiconductor Corporation
  5. *
  6. * Copyright (C) 1999-2020, Broadcom Corporation
  7. *
  8. * Unless you and Broadcom execute a separate written software license
  9. * agreement governing use of this software, this software is licensed to you
  10. * under the terms of the GNU General Public License version 2 (the "GPL"),
  11. * available at http://www.broadcom.com/licenses/GPLv2.php, with the
  12. * following added to such license:
  13. *
  14. * As a special exception, the copyright holders of this software give you
  15. * permission to link this software with independent modules, and to copy and
  16. * distribute the resulting executable under terms of your choice, provided that
  17. * you also meet, for each linked independent module, the terms and conditions of
  18. * the license of that module. An independent module is a module which is not
  19. * derived from this software. The special exception does not apply to any
  20. * modifications of the software.
  21. *
  22. * Notwithstanding the above, under no circumstances may you combine this
  23. * software in any way with any other Broadcom software provided under a license
  24. * other than the GPL, without Broadcom's express prior written consent.
  25. *
  26. *
  27. * <<Broadcom-WL-IPTag/Open:>>
  28. *
  29. * $Id: trxhdr.h 520026 2014-12-10 01:29:40Z $
  30. */
  31. #ifndef _TRX_HDR_H
  32. #define _TRX_HDR_H
  33. #include <typedefs.h>
  34. #define TRX_MAGIC 0x30524448 /* "HDR0" */
  35. #define TRX_MAX_LEN 0x3B0000 /* Max length */
  36. #define TRX_NO_HEADER 1 /* Do not write TRX header */
  37. #define TRX_GZ_FILES 0x2 /* Contains up to TRX_MAX_OFFSET individual gzip files */
  38. #define TRX_EMBED_UCODE 0x8 /* Trx contains embedded ucode image */
  39. #define TRX_ROMSIM_IMAGE 0x10 /* Trx contains ROM simulation image */
  40. #define TRX_UNCOMP_IMAGE 0x20 /* Trx contains uncompressed rtecdc.bin image */
  41. #define TRX_BOOTLOADER 0x40 /* the image is a bootloader */
  42. #define TRX_V1 1
  43. #define TRX_V1_MAX_OFFSETS 3 /* V1: Max number of individual files */
  44. #ifndef BCMTRXV2
  45. #define TRX_VERSION TRX_V1 /* Version 1 */
  46. #define TRX_MAX_OFFSET TRX_V1_MAX_OFFSETS
  47. #endif // endif
  48. /* BMAC Host driver/application like bcmdl need to support both Ver 1 as well as
  49. * Ver 2 of trx header. To make it generic, trx_header is structure is modified
  50. * as below where size of "offsets" field will vary as per the TRX version.
  51. * Currently, BMAC host driver and bcmdl are modified to support TRXV2 as well.
  52. * To make sure, other applications like "dhdl" which are yet to be enhanced to support
  53. * TRXV2 are not broken, new macro and structure defintion take effect only when BCMTRXV2
  54. * is defined.
  55. */
  56. struct trx_header {
  57. uint32 magic; /* "HDR0" */
  58. uint32 len; /* Length of file including header */
  59. uint32 crc32; /* 32-bit CRC from flag_version to end of file */
  60. uint32 flag_version; /* 0:15 flags, 16:31 version */
  61. #ifndef BCMTRXV2
  62. uint32 offsets[TRX_MAX_OFFSET]; /* Offsets of partitions from start of header */
  63. #else
  64. uint32 offsets[1]; /* Offsets of partitions from start of header */
  65. #endif // endif
  66. };
  67. #ifdef BCMTRXV2
  68. #define TRX_VERSION TRX_V2 /* Version 2 */
  69. #define TRX_MAX_OFFSET TRX_V2_MAX_OFFSETS
  70. #define TRX_V2 2
  71. /* V2: Max number of individual files
  72. * To support SDR signature + Config data region
  73. */
  74. #define TRX_V2_MAX_OFFSETS 5
  75. #define SIZEOF_TRXHDR_V1 (sizeof(struct trx_header)+(TRX_V1_MAX_OFFSETS-1)*sizeof(uint32))
  76. #define SIZEOF_TRXHDR_V2 (sizeof(struct trx_header)+(TRX_V2_MAX_OFFSETS-1)*sizeof(uint32))
  77. #define TRX_VER(trx) ((trx)->flag_version>>16)
  78. #define ISTRX_V1(trx) (TRX_VER(trx) == TRX_V1)
  79. #define ISTRX_V2(trx) (TRX_VER(trx) == TRX_V2)
  80. /* For V2, return size of V2 size: others, return V1 size */
  81. #define SIZEOF_TRX(trx) (ISTRX_V2(trx) ? SIZEOF_TRXHDR_V2: SIZEOF_TRXHDR_V1)
  82. #else
  83. #define SIZEOF_TRX(trx) (sizeof(struct trx_header))
  84. #endif /* BCMTRXV2 */
  85. /* Compatibility */
  86. typedef struct trx_header TRXHDR, *PTRXHDR;
  87. #endif /* _TRX_HDR_H */