envcrc.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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 <stdio.h>
  24. #include <stdlib.h>
  25. #include <unistd.h>
  26. #define __ASSEMBLY__ /* Dirty trick to get only #defines */
  27. #include <config.h>
  28. #undef __ASSEMBLY__
  29. #if defined(CFG_ENV_IS_IN_FLASH)
  30. # ifndef CFG_ENV_ADDR
  31. # define CFG_ENV_ADDR (CFG_FLASH_BASE + CFG_ENV_OFFSET)
  32. # endif
  33. # ifndef CFG_ENV_OFFSET
  34. # define CFG_ENV_OFFSET (CFG_ENV_ADDR - CFG_FLASH_BASE)
  35. # endif
  36. # if !defined(CFG_ENV_ADDR_REDUND) && defined(CFG_ENV_OFFSET_REDUND)
  37. # define CFG_ENV_ADDR_REDUND (CFG_FLASH_BASE + CFG_ENV_OFFSET_REDUND)
  38. # endif
  39. # ifndef CFG_ENV_SIZE
  40. # define CFG_ENV_SIZE CFG_ENV_SECT_SIZE
  41. # endif
  42. # if defined(CFG_ENV_ADDR_REDUND) && !defined(CFG_ENV_SIZE_REDUND)
  43. # define CFG_ENV_SIZE_REDUND CFG_ENV_SIZE
  44. # endif
  45. # if (CFG_ENV_ADDR >= CFG_MONITOR_BASE) && \
  46. ((CFG_ENV_ADDR + CFG_ENV_SIZE) <= (CFG_MONITOR_BASE + CFG_MONITOR_LEN))
  47. # define ENV_IS_EMBEDDED 1
  48. # endif
  49. # if defined(CFG_ENV_ADDR_REDUND) || defined(CFG_ENV_OFFSET_REDUND)
  50. # define CFG_REDUNDAND_ENVIRONMENT 1
  51. # endif
  52. #endif /* CFG_ENV_IS_IN_FLASH */
  53. #ifdef CFG_REDUNDAND_ENVIRONMENT
  54. # define ENV_HEADER_SIZE (sizeof(unsigned long) + 1)
  55. #else
  56. # define ENV_HEADER_SIZE (sizeof(unsigned long))
  57. #endif
  58. #define ENV_SIZE (CFG_ENV_SIZE - ENV_HEADER_SIZE)
  59. extern unsigned long crc32 (unsigned long, const unsigned char *, unsigned int);
  60. #ifdef ENV_IS_EMBEDDED
  61. extern unsigned int env_size;
  62. extern unsigned char environment;
  63. #endif /* ENV_IS_EMBEDDED */
  64. int main (int argc, char **argv)
  65. {
  66. #ifdef ENV_IS_EMBEDDED
  67. int crc ;
  68. unsigned char *envptr = &environment,
  69. *dataptr = envptr + ENV_HEADER_SIZE;
  70. unsigned int datasize = ENV_SIZE;
  71. crc = crc32(0, dataptr, datasize) ;
  72. /* Check if verbose mode is activated passing a parameter to the program */
  73. if (argc > 1) {
  74. printf("CRC32 from offset %08X to %08X of environment = %08X\n",
  75. (unsigned int)(dataptr - envptr),
  76. (unsigned int)(dataptr - envptr) + datasize,
  77. crc);
  78. } else {
  79. printf("0x%08X\n", crc);
  80. }
  81. #else
  82. printf("0\n");
  83. #endif
  84. return EXIT_SUCCESS;
  85. }