flash.c 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*
  2. * (C) Copyright 2001
  3. * Stefan Roese, esd gmbh germany, stefan.roese@esd-electronics.com
  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 <common.h>
  24. #include <asm/hardware.h>
  25. /*
  26. * include common flash code (for esd boards)
  27. */
  28. #include "../common/flash.c"
  29. /*-----------------------------------------------------------------------
  30. * Functions
  31. */
  32. static ulong flash_get_size (vu_long * addr, flash_info_t * info);
  33. static void flash_get_offsets (ulong base, flash_info_t * info);
  34. /*-----------------------------------------------------------------------
  35. */
  36. unsigned long flash_init (void)
  37. {
  38. #ifdef __DEBUG_START_FROM_SRAM__
  39. return CFG_DUMMY_FLASH_SIZE;
  40. #else
  41. unsigned long size_b0;
  42. int i;
  43. uint pbcr;
  44. unsigned long base_b0;
  45. int size_val = 0;
  46. /* Init: no FLASHes known */
  47. for (i=0; i<CFG_MAX_FLASH_BANKS; ++i) {
  48. flash_info[i].flash_id = FLASH_UNKNOWN;
  49. }
  50. /* Static FLASH Bank configuration here - FIXME XXX */
  51. size_b0 = flash_get_size((vu_long *)CFG_FLASH_BASE, &flash_info[0]);
  52. if (flash_info[0].flash_id == FLASH_UNKNOWN) {
  53. printf ("## Unknown FLASH on Bank 0 - Size = 0x%08lx = %ld MB\n",
  54. size_b0, size_b0<<20);
  55. }
  56. /* Setup offsets */
  57. flash_get_offsets (0, &flash_info[0]);
  58. /* Monitor protection ON by default */
  59. (void)flash_protect(FLAG_PROTECT_SET,
  60. -CFG_MONITOR_LEN,
  61. 0xffffffff,
  62. &flash_info[0]);
  63. flash_info[0].size = size_b0;
  64. return (size_b0);
  65. #endif
  66. }