envcrc.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. /*
  2. * (C) Copyright 2001
  3. * Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), arsenio@tin.it
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. */
  23. #include <errno.h>
  24. #include <stdio.h>
  25. #include <stdint.h>
  26. #include <stdlib.h>
  27. #include <string.h>
  28. #include <unistd.h>
  29. #ifndef __ASSEMBLY__
  30. #define __ASSEMBLY__ /* Dirty trick to get only #defines */
  31. #endif
  32. #define __ASM_STUB_PROCESSOR_H__ /* don't include asm/processor. */
  33. #include <config.h>
  34. #undef __ASSEMBLY__
  35. #if defined(CONFIG_ENV_IS_IN_FLASH)
  36. # ifndef CONFIG_ENV_ADDR
  37. # define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + CONFIG_ENV_OFFSET)
  38. # endif
  39. # ifndef CONFIG_ENV_OFFSET
  40. # define CONFIG_ENV_OFFSET (CONFIG_ENV_ADDR - CONFIG_SYS_FLASH_BASE)
  41. # endif
  42. # if !defined(CONFIG_ENV_ADDR_REDUND) && defined(CONFIG_ENV_OFFSET_REDUND)
  43. # define CONFIG_ENV_ADDR_REDUND (CONFIG_SYS_FLASH_BASE + CONFIG_ENV_OFFSET_REDUND)
  44. # endif
  45. # ifndef CONFIG_ENV_SIZE
  46. # define CONFIG_ENV_SIZE CONFIG_ENV_SECT_SIZE
  47. # endif
  48. # if defined(CONFIG_ENV_ADDR_REDUND) && !defined(CONFIG_ENV_SIZE_REDUND)
  49. # define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE
  50. # endif
  51. # if (CONFIG_ENV_ADDR >= CONFIG_SYS_MONITOR_BASE) && \
  52. ((CONFIG_ENV_ADDR + CONFIG_ENV_SIZE) <= (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN))
  53. # define ENV_IS_EMBEDDED 1
  54. # endif
  55. # if defined(CONFIG_ENV_ADDR_REDUND) || defined(CONFIG_ENV_OFFSET_REDUND)
  56. # define CONFIG_SYS_REDUNDAND_ENVIRONMENT 1
  57. # endif
  58. #endif /* CONFIG_ENV_IS_IN_FLASH */
  59. #if defined(ENV_IS_EMBEDDED) && !defined(CONFIG_BUILD_ENVCRC)
  60. # define CONFIG_BUILD_ENVCRC 1
  61. #endif
  62. #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
  63. # define ENV_HEADER_SIZE (sizeof(uint32_t) + 1)
  64. #else
  65. # define ENV_HEADER_SIZE (sizeof(uint32_t))
  66. #endif
  67. #define ENV_SIZE (CONFIG_ENV_SIZE - ENV_HEADER_SIZE)
  68. extern uint32_t crc32 (uint32_t, const unsigned char *, unsigned int);
  69. #ifdef CONFIG_BUILD_ENVCRC
  70. extern unsigned int env_size;
  71. extern unsigned char environment;
  72. #endif /* CONFIG_BUILD_ENVCRC */
  73. int main (int argc, char **argv)
  74. {
  75. #ifdef CONFIG_BUILD_ENVCRC
  76. unsigned char pad = 0x00;
  77. uint32_t crc;
  78. unsigned char *envptr = &environment,
  79. *dataptr = envptr + ENV_HEADER_SIZE;
  80. unsigned int datasize = ENV_SIZE;
  81. unsigned int eoe;
  82. if (argv[1] && !strncmp(argv[1], "--binary", 8)) {
  83. int ipad = 0xff;
  84. if (argv[1][8] == '=')
  85. sscanf(argv[1] + 9, "%i", &ipad);
  86. pad = ipad;
  87. }
  88. if (pad) {
  89. /* find the end of env */
  90. for (eoe = 0; eoe < datasize - 1; ++eoe)
  91. if (!dataptr[eoe] && !dataptr[eoe+1]) {
  92. eoe += 2;
  93. break;
  94. }
  95. if (eoe < datasize - 1)
  96. memset(dataptr + eoe, pad, datasize - eoe);
  97. }
  98. crc = crc32 (0, dataptr, datasize);
  99. /* Check if verbose mode is activated passing a parameter to the program */
  100. if (argc > 1) {
  101. if (!strncmp(argv[1], "--binary", 8)) {
  102. int le = (argc > 2 ? !strcmp(argv[2], "le") : 1);
  103. size_t i, start, end, step;
  104. if (le) {
  105. start = 0;
  106. end = ENV_HEADER_SIZE;
  107. step = 1;
  108. } else {
  109. start = ENV_HEADER_SIZE - 1;
  110. end = -1;
  111. step = -1;
  112. }
  113. for (i = start; i != end; i += step)
  114. printf("%c", (crc & (0xFF << (i * 8))) >> (i * 8));
  115. if (fwrite(dataptr, 1, datasize, stdout) != datasize)
  116. fprintf(stderr, "fwrite() failed: %s\n", strerror(errno));
  117. } else {
  118. printf("CRC32 from offset %08X to %08X of environment = %08X\n",
  119. (unsigned int) (dataptr - envptr),
  120. (unsigned int) (dataptr - envptr) + datasize,
  121. crc);
  122. }
  123. } else {
  124. printf ("0x%08X\n", crc);
  125. }
  126. #else
  127. printf ("0\n");
  128. #endif
  129. return EXIT_SUCCESS;
  130. }