2
0

myloader.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /*
  2. * Compex's MyLoader specific definitions
  3. *
  4. * Copyright (C) 2006-2008 Gabor Juhos <juhosg@openwrt.org>
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License version 2 as published
  8. * by the Free Software Foundation.
  9. *
  10. */
  11. #ifndef _MYLOADER_H_
  12. #define _MYLOADER_H_
  13. /* Myloader specific magic numbers */
  14. #define MYLO_MAGIC_SYS_PARAMS 0x20021107
  15. #define MYLO_MAGIC_PARTITIONS 0x20021103
  16. #define MYLO_MAGIC_BOARD_PARAMS 0x20021103
  17. /* Vendor ID's (seems to be same as the PCI vendor ID's) */
  18. #define VENID_COMPEX 0x11F6
  19. /* Devices based on the ADM5120 */
  20. #define DEVID_COMPEX_NP27G 0x0078
  21. #define DEVID_COMPEX_NP28G 0x044C
  22. #define DEVID_COMPEX_NP28GHS 0x044E
  23. #define DEVID_COMPEX_WP54Gv1C 0x0514
  24. #define DEVID_COMPEX_WP54G 0x0515
  25. #define DEVID_COMPEX_WP54AG 0x0546
  26. #define DEVID_COMPEX_WPP54AG 0x0550
  27. #define DEVID_COMPEX_WPP54G 0x0555
  28. /* Devices based on the Atheros AR2317 */
  29. #define DEVID_COMPEX_NP25G 0x05E6
  30. #define DEVID_COMPEX_WPE53G 0x05DC
  31. /* Devices based on the Atheros AR71xx */
  32. #define DEVID_COMPEX_WP543 0x0640
  33. #define DEVID_COMPEX_WPE72 0x0672
  34. /* Devices based on the IXP422 */
  35. #define DEVID_COMPEX_WP18 0x047E
  36. #define DEVID_COMPEX_NP18A 0x0489
  37. /* Other devices */
  38. #define DEVID_COMPEX_NP26G8M 0x03E8
  39. #define DEVID_COMPEX_NP26G16M 0x03E9
  40. struct mylo_partition {
  41. uint16_t flags; /* partition flags */
  42. uint16_t type; /* type of the partition */
  43. uint32_t addr; /* relative address of the partition from the
  44. flash start */
  45. uint32_t size; /* size of the partition in bytes */
  46. uint32_t param; /* if this is the active partition, the
  47. MyLoader load code to this address */
  48. };
  49. #define PARTITION_FLAG_ACTIVE 0x8000 /* this is the active partition,
  50. * MyLoader loads firmware from here */
  51. #define PARTITION_FLAG_ISRAM 0x2000 /* FIXME: this is a RAM partition? */
  52. #define PARTIIION_FLAG_RAMLOAD 0x1000 /* FIXME: load this partition into the RAM? */
  53. #define PARTITION_FLAG_PRELOAD 0x0800 /* the partition data preloaded to RAM
  54. * before decompression */
  55. #define PARTITION_FLAG_LZMA 0x0100 /* partition data compressed by LZMA */
  56. #define PARTITION_FLAG_HAVEHDR 0x0002 /* the partition data have a header */
  57. #define PARTITION_TYPE_FREE 0
  58. #define PARTITION_TYPE_USED 1
  59. #define MYLO_MAX_PARTITIONS 8 /* maximum number of partitions in the
  60. partition table */
  61. struct mylo_partition_table {
  62. uint32_t magic; /* must be MYLO_MAGIC_PARTITIONS */
  63. uint32_t res0; /* unknown/unused */
  64. uint32_t res1; /* unknown/unused */
  65. uint32_t res2; /* unknown/unused */
  66. struct mylo_partition partitions[MYLO_MAX_PARTITIONS];
  67. };
  68. struct mylo_partition_header {
  69. uint32_t len; /* length of the partition data */
  70. uint32_t crc; /* CRC value of the partition data */
  71. };
  72. struct mylo_system_params {
  73. uint32_t magic; /* must be MYLO_MAGIC_SYS_PARAMS */
  74. uint32_t res0;
  75. uint32_t res1;
  76. uint32_t mylo_ver;
  77. uint16_t vid; /* Vendor ID */
  78. uint16_t did; /* Device ID */
  79. uint16_t svid; /* Sub Vendor ID */
  80. uint16_t sdid; /* Sub Device ID */
  81. uint32_t rev; /* device revision */
  82. uint32_t fwhi;
  83. uint32_t fwlo;
  84. uint32_t tftp_addr;
  85. uint32_t prog_start;
  86. uint32_t flash_size; /* size of boot FLASH in bytes */
  87. uint32_t dram_size; /* size of onboard RAM in bytes */
  88. };
  89. struct mylo_eth_addr {
  90. uint8_t mac[6];
  91. uint8_t csum[2];
  92. };
  93. #define MYLO_ETHADDR_COUNT 8 /* maximum number of ethernet address
  94. in the board parameters */
  95. struct mylo_board_params {
  96. uint32_t magic; /* must be MYLO_MAGIC_BOARD_PARAMS */
  97. uint32_t res0;
  98. uint32_t res1;
  99. uint32_t res2;
  100. struct mylo_eth_addr addr[MYLO_ETHADDR_COUNT];
  101. };
  102. #endif /* _MYLOADER_H_*/