flash.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. /*
  2. * (C) Copyright 2001-2003
  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 <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 calc_size(unsigned long size)
  38. {
  39. switch (size) {
  40. case 1 << 20:
  41. return 0;
  42. case 2 << 20:
  43. return 1;
  44. case 4 << 20:
  45. return 2;
  46. case 8 << 20:
  47. return 3;
  48. case 16 << 20:
  49. return 4;
  50. default:
  51. return 0;
  52. }
  53. }
  54. unsigned long flash_init (void)
  55. {
  56. unsigned long size_b0, size_b1;
  57. int i;
  58. uint pbcr;
  59. unsigned long base_b0, base_b1;
  60. /* Init: no FLASHes known */
  61. for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; ++i) {
  62. flash_info[i].flash_id = FLASH_UNKNOWN;
  63. }
  64. /* Static FLASH Bank configuration here - FIXME XXX */
  65. base_b0 = FLASH_BASE0_PRELIM;
  66. size_b0 = flash_get_size ((vu_long *) base_b0, &flash_info[0]);
  67. if (flash_info[0].flash_id == FLASH_UNKNOWN) {
  68. printf ("## Unknown FLASH on Bank 0 - Size = 0x%08lx = %ld MB\n",
  69. size_b0, size_b0 << 20);
  70. }
  71. base_b1 = FLASH_BASE1_PRELIM;
  72. size_b1 = flash_get_size ((vu_long *) base_b1, &flash_info[1]);
  73. /* Re-do sizing to get full correct info */
  74. if (size_b1) {
  75. if (size_b1 < (1 << 20)) {
  76. /* minimum CS size on PPC405GP is 1MB !!! */
  77. size_b1 = 1 << 20;
  78. }
  79. base_b1 = -size_b1;
  80. mtdcr (ebccfga, pb0cr);
  81. pbcr = mfdcr (ebccfgd);
  82. mtdcr (ebccfga, pb0cr);
  83. pbcr = (pbcr & 0x0001ffff) | base_b1 | (calc_size(size_b1) << 17);
  84. mtdcr (ebccfgd, pbcr);
  85. #if 0 /* test-only */
  86. printf("size_b1=%x base_b1=%x pb1cr = %x\n",
  87. size_b1, base_b1, pbcr); /* test-only */
  88. #endif
  89. }
  90. if (size_b0) {
  91. if (size_b0 < (1 << 20)) {
  92. /* minimum CS size on PPC405GP is 1MB !!! */
  93. size_b0 = 1 << 20;
  94. }
  95. base_b0 = base_b1 - size_b0;
  96. mtdcr (ebccfga, pb1cr);
  97. pbcr = mfdcr (ebccfgd);
  98. mtdcr (ebccfga, pb1cr);
  99. pbcr = (pbcr & 0x0001ffff) | base_b0 | (calc_size(size_b0) << 17);
  100. mtdcr (ebccfgd, pbcr);
  101. #if 0 /* test-only */
  102. printf("size_b0=%x base_b0=%x pb0cr = %x\n",
  103. size_b0, base_b0, pbcr); /* test-only */
  104. #endif
  105. }
  106. size_b0 = flash_get_size ((vu_long *) base_b0, &flash_info[0]);
  107. flash_get_offsets (base_b0, &flash_info[0]);
  108. /* monitor protection ON by default */
  109. flash_protect (FLAG_PROTECT_SET,
  110. base_b0 + size_b0 - monitor_flash_len,
  111. base_b0 + size_b0 - 1, &flash_info[0]);
  112. if (size_b1) {
  113. /* Re-do sizing to get full correct info */
  114. size_b1 = flash_get_size ((vu_long *) base_b1, &flash_info[1]);
  115. flash_get_offsets (base_b1, &flash_info[1]);
  116. /* monitor protection ON by default */
  117. flash_protect (FLAG_PROTECT_SET,
  118. base_b1 + size_b1 - monitor_flash_len,
  119. base_b1 + size_b1 - 1, &flash_info[1]);
  120. /* monitor protection OFF by default (one is enough) */
  121. flash_protect (FLAG_PROTECT_CLEAR,
  122. base_b0 + size_b0 - monitor_flash_len,
  123. base_b0 + size_b0 - 1, &flash_info[0]);
  124. } else {
  125. flash_info[1].flash_id = FLASH_UNKNOWN;
  126. flash_info[1].sector_count = -1;
  127. }
  128. flash_info[0].size = size_b0;
  129. flash_info[1].size = size_b1;
  130. return (size_b0 + size_b1);
  131. }