flash.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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/ppc4xx.h>
  25. #include <asm/processor.h>
  26. /*
  27. * include common flash code (for esd boards)
  28. */
  29. #include "../common/flash.c"
  30. /*-----------------------------------------------------------------------
  31. * Functions
  32. */
  33. static ulong flash_get_size (vu_long * addr, flash_info_t * info);
  34. static void flash_get_offsets (ulong base, flash_info_t * info);
  35. /*-----------------------------------------------------------------------
  36. */
  37. unsigned long flash_init (void)
  38. {
  39. #ifdef __DEBUG_START_FROM_SRAM__
  40. return CONFIG_SYS_DUMMY_FLASH_SIZE;
  41. #else
  42. unsigned long size;
  43. int i;
  44. uint pbcr;
  45. unsigned long base;
  46. int size_val = 0;
  47. debug("[%s, %d] Entering ...\n", __FUNCTION__, __LINE__);
  48. debug("[%s, %d] flash_info = 0x%p ...\n", __func__, __LINE__,
  49. flash_info);
  50. /* Init: no FLASHes known */
  51. for (i=0; i<CONFIG_SYS_MAX_FLASH_BANKS; ++i) {
  52. flash_info[i].flash_id = FLASH_UNKNOWN;
  53. }
  54. /* Static FLASH Bank configuration here - FIXME XXX */
  55. debug("[%s, %d] Calling flash_get_size ...\n", __FUNCTION__, __LINE__);
  56. size = flash_get_size((vu_long *)FLASH_BASE0_PRELIM, &flash_info[0]);
  57. if (flash_info[0].flash_id == FLASH_UNKNOWN) {
  58. printf ("## Unknown FLASH on Bank 0 - Size = 0x%08lx = %ld MB\n",
  59. size, size<<20);
  60. }
  61. debug("[%s, %d] Test point ...\n", __FUNCTION__, __LINE__);
  62. /* Setup offsets */
  63. flash_get_offsets (-size, &flash_info[0]);
  64. debug("[%s, %d] Test point ...\n", __FUNCTION__, __LINE__);
  65. /* Re-do sizing to get full correct info */
  66. mtdcr(EBC0_CFGADDR, PB0CR);
  67. pbcr = mfdcr(EBC0_CFGDATA);
  68. mtdcr(EBC0_CFGADDR, PB0CR);
  69. base = -size;
  70. switch (size) {
  71. case 1 << 20:
  72. size_val = 0;
  73. break;
  74. case 2 << 20:
  75. size_val = 1;
  76. break;
  77. case 4 << 20:
  78. size_val = 2;
  79. break;
  80. case 8 << 20:
  81. size_val = 3;
  82. break;
  83. case 16 << 20:
  84. size_val = 4;
  85. break;
  86. }
  87. pbcr = (pbcr & 0x0001ffff) | base | (size_val << 17);
  88. mtdcr(EBC0_CFGDATA, pbcr);
  89. debug("[%s, %d] Test point ...\n", __FUNCTION__, __LINE__);
  90. /* Monitor protection ON by default */
  91. (void)flash_protect(FLAG_PROTECT_SET,
  92. -CONFIG_SYS_MONITOR_LEN,
  93. 0xffffffff,
  94. &flash_info[0]);
  95. debug("[%s, %d] Test point ...\n", __FUNCTION__, __LINE__);
  96. flash_info[0].size = size;
  97. return (size);
  98. #endif
  99. }