env_sf.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. /*
  2. * (C) Copyright 2000-2002
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. *
  5. * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
  6. * Andreas Heppel <aheppel@sysgo.de>
  7. *
  8. * (C) Copyright 2008 Atmel Corporation
  9. *
  10. * See file CREDITS for list of people who contributed to this
  11. * project.
  12. *
  13. * This program is free software; you can redistribute it and/or
  14. * modify it under the terms of the GNU General Public License as
  15. * published by the Free Software Foundation; either version 2 of
  16. * the License, or (at your option) any later version.
  17. *
  18. * This program is distributed in the hope that it will be useful,
  19. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. * GNU General Public License for more details.
  22. *
  23. * You should have received a copy of the GNU General Public License
  24. * along with this program; if not, write to the Free Software
  25. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  26. * MA 02111-1307 USA
  27. */
  28. #include <common.h>
  29. #include <environment.h>
  30. #include <spi_flash.h>
  31. #ifndef CONFIG_ENV_SPI_BUS
  32. # define CONFIG_ENV_SPI_BUS 0
  33. #endif
  34. #ifndef CONFIG_ENV_SPI_CS
  35. # define CONFIG_ENV_SPI_CS 0
  36. #endif
  37. #ifndef CONFIG_ENV_SPI_MAX_HZ
  38. # define CONFIG_ENV_SPI_MAX_HZ 1000000
  39. #endif
  40. #ifndef CONFIG_ENV_SPI_MODE
  41. # define CONFIG_ENV_SPI_MODE SPI_MODE_3
  42. #endif
  43. DECLARE_GLOBAL_DATA_PTR;
  44. /* references to names in env_common.c */
  45. extern uchar default_environment[];
  46. extern int default_environment_size;
  47. char * env_name_spec = "SPI Flash";
  48. env_t *env_ptr;
  49. static struct spi_flash *env_flash;
  50. uchar env_get_char_spec(int index)
  51. {
  52. return *((uchar *)(gd->env_addr + index));
  53. }
  54. int saveenv(void)
  55. {
  56. u32 sector = 1;
  57. if (!env_flash) {
  58. puts("Environment SPI flash not initialized\n");
  59. return 1;
  60. }
  61. if (CONFIG_ENV_SIZE > CONFIG_ENV_SECT_SIZE) {
  62. sector = CONFIG_ENV_SIZE / CONFIG_ENV_SECT_SIZE;
  63. if (CONFIG_ENV_SIZE % CONFIG_ENV_SECT_SIZE)
  64. sector++;
  65. }
  66. puts("Erasing SPI flash...");
  67. if (spi_flash_erase(env_flash, CONFIG_ENV_OFFSET, sector * CONFIG_ENV_SECT_SIZE))
  68. return 1;
  69. puts("Writing to SPI flash...");
  70. if (spi_flash_write(env_flash, CONFIG_ENV_OFFSET, CONFIG_ENV_SIZE, env_ptr))
  71. return 1;
  72. puts("done\n");
  73. return 0;
  74. }
  75. void env_relocate_spec(void)
  76. {
  77. int ret;
  78. env_flash = spi_flash_probe(CONFIG_ENV_SPI_BUS, CONFIG_ENV_SPI_CS,
  79. CONFIG_ENV_SPI_MAX_HZ, CONFIG_ENV_SPI_MODE);
  80. if (!env_flash)
  81. goto err_probe;
  82. ret = spi_flash_read(env_flash, CONFIG_ENV_OFFSET, CONFIG_ENV_SIZE, env_ptr);
  83. if (ret)
  84. goto err_read;
  85. if (crc32(0, env_ptr->data, ENV_SIZE) != env_ptr->crc)
  86. goto err_crc;
  87. gd->env_valid = 1;
  88. return;
  89. err_read:
  90. spi_flash_free(env_flash);
  91. env_flash = NULL;
  92. err_probe:
  93. err_crc:
  94. puts("*** Warning - bad CRC, using default environment\n\n");
  95. if (default_environment_size > CONFIG_ENV_SIZE) {
  96. gd->env_valid = 0;
  97. puts("*** Error - default environment is too large\n\n");
  98. return;
  99. }
  100. memset(env_ptr, 0, sizeof(env_t));
  101. memcpy(env_ptr->data, default_environment, default_environment_size);
  102. env_ptr->crc = crc32(0, env_ptr->data, ENV_SIZE);
  103. gd->env_valid = 1;
  104. }
  105. int env_init(void)
  106. {
  107. /* SPI flash isn't usable before relocation */
  108. gd->env_addr = (ulong)&default_environment[0];
  109. gd->env_valid = 1;
  110. return 0;
  111. }